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.:
-
- هذه هى التعليمات الخاصة بتغيير تصريحات الملفات: وهل اتباع ارتباط من مكان آخر على موقعنا؟ STRONG> وهل تتبع وصلة من موقع آخر؟ يمكن في بعض الأحيان STRONG> وهل اكتب URL ؟ STRONG> Ето как да промените правата за писане: Ovdje se nalaze uputstva za mijenjanje dozvola za upravljanje fajlovima: Dali ste pratili neki link koji ste našli na drugom mjestu na našem sajtu? Dali ste pratili link sa nekog drugog sajta? Dali ste sami upisali URL? Podeu trobar més informaciõ per canviar permisos de fitxers a: Heu seguit un enllaç des d\'un altre lloc a aquest site? Heu seguit un enllaç des d\'un altre lloc? Heu escrit vosaltres mateixos la URL? Here are instructions for changing file permissions: Anweisungen wie man die Daterechte ändert: Bist Du einem Link von unserer Seite gefolgt? Bist Du von einer externen Seite gekommen? Hast Du die URL eingegeben? Ακολουθούν οι οδηγίες για την αλλαγή περιορισμών προσβασιμότητας των αρχείων Ακολούθησες κάποιο σύνδεσμο από κάποιο άλλο σημείο του site σου; Ακολούθησες κάποιο σύνδεσμο από ένα άλλο site; Πληκτρολόγησες τη διεύθυνση; Here are instructions for changing file permissions: Did you follow a link from somewhere else on our site? Did you follow a link from another site? Did you type the URL? Here are instructions for changing file permissions: Did you follow a link from somewhere else on our site? Did you follow a link from another site? Did you type the URL? Puede encontrar más información en cómo administrar permisos en: ¿Hiciste clic en un vínculo de alguna página de nuestro sitio? ¿Usaste un vínculo de otro sitio? ¿Escribiste la URL? ¿Ha seguido un enlace desde otro sitio en nuestro sitio? Strong> Puede encontrar más información en cómo administrar permisos en: ¿Hiciste clic en un vínculo de alguna página de nuestro sitio? ¿Usaste un vínculo de otro sitio? ¿Escribiste la URL? Gure webgunetik kanpoko lotura bat jarraitu duzu? Beste webgune bateko lotura jarraitu duzu? Zuk idatzi duzu URLa? در اینجا می توانید دستورالعمل های لازم برای تغییر اجازه ی دسترسی به فایل ها را بیابید: آیا با دنبال کردن از پیوندی از جای دیگری از این وبسایت به اینجا رسیدید؟ آیا از طریق پیوندی از وبسایت دیگری به اینجا رسیدید؟ آیا خودتان آدرس صفحه را تایپ کردید؟ Voici les instructions pour changer les permissions de fichiers : Avez vous suivi un lien depuis notre site ? Avez vous suivi un lien depuis un autre site ? Avez vous directement tapé l\'URL? Eiquí ten instruccións para trocar os permisos dos arquivos e directorios: Premeu nunha ligazóndalgunha páxina do noso site? Se premeu nunha ligazón doutro site, pode que ésta se atope desactualizada ou mal definida
+
',
+ '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 ساعة. إذا كنت إدخال وقت سابق في الحقل الثاني، سيكون انقلبت مع الأولى. يجب أن تكون هذه الأوقات في غضون يوم واحد. أيضا، يتم فحص هذه المرة ضد الوقت الذي تم تكوينه على موقع الويب الخاص بك في إعدادات موقع و لا strong> وبالضرورة خط الزمن للمستخدم التفاعل مع النشر الخاصة بك. اترك هذا في 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"> حتى نتمكن من تصحيح خطأ لدينا. P> على
روابط من مواقع أخرى تكون قديمة أو بها أخطاء إملائية. href="%s"> المكان الذي جئت منه، ويمكننا محاولة الاتصال بموقع الأخرى من أجل حل المشكلة. P> على
كنت قد كتبته عنوان (URL) بشكل غير صحيح. تحقق للتأكد من أنك قد حصلت على حق الإملاء الدقيق، وما إلى ذلك P>',
+ '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' => '⏎
',
+ '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.
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.
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.
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.
"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' => '
',
+ 'upgrade_tables' => 'Korak 3: Pogledajte unutar sql foldera. Ručno pokrenite nadgradnju
+
',
+ '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í.
Si vau arribar a aquesta pàgina des d\'una altra part del nostre lloc, si us plau poseu-vos en contacte amb nosaltres a> perquè puguem corregir el nostre error.
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.
É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 p>',
+ '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: strong> Mira a l\'interior de la carpeta sql strong>.Executa manualment l\'actualització
+
',
+ '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
"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' => '
+
',
+ '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.
Wenn Du einem internen Link gefolgt bist, bitte kontaktiere uns damit wir den Fehler beheben können.
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
Vielleicht war die (URL) falsch. Kontrolliere die richtige Schreibweise, etc.
"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' => '
',
+ 'upgrade_tables' => 'Schritt 3: Schau in den sql Ordner. Führe das Upgrade manuell durch⏎
',
+ '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 σου, παρακαλούμε επικοινώνησε μαζί μας για να διορθώσουμε το σφάλμα.
Τα links από άλλα site μπορούν να είναι παρωχημένα ή να περιέχουν εσφαλμένη ορθογραφία Πες μας από που ήρθες και θα επικοινωνήσουμε μαζί τους για να διορθώσουν το πρόβλημα.
Μπορεί να έχεις πληκτρολογήσει λάθος διεύθυνση (URL). Κάνε έλεγχο για να βεβαιωθείς ότι η ορθογραφία, τα πεζά - κεφαλαία κλπ είναι σωστά.
"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_tables' => 'Βήμα 3: Κοίτα μέσα στο φάκελο sql. Εκτέλεσε χειροκίνητα το αρχείο upgrade
+
',
+ '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.
If you reached this page from another part of our site, please contact us so that we can correct our mistake.
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.
You may have typed the address (URL) incorrectly. Check to make sure you have got the exact right spelling, capitalisation, etc.
"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' => '
',
+ 'upgrade_tables' => 'Step 3: Look inside the sql folder. Manuall run the upgrade
+
',
+ '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.
If you reached this page from another part of our site, please contact us so that we can correct our mistake.
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.
You may have typed the address (URL) incorrectly. Check to make sure you have got the exact right spelling, capitalization, etc.
"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' => '
',
+ 'upgrade_tables' => 'Step 3: Look inside the sql folder. Manuall run the upgrade
+
',
+ '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í.
Si llegaste a esta página desde otra parte de nuestro sitio, comunícate con nosotros para que podamos resolverlo.
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.
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.
"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
Si llegó a esta página desde otra parte de nuestro sitio , por favor contáctanos a> para que podamos corregir nuestro error. p> ¿Ha seguido un enlace desde otro sitio? strong>
Enlaces desde otros sitios a veces pueden ser obsoletos o mal escritos. Cuéntanos a> de donde vienes y nosotros trataremos de ponernos en contacto con el otro sitio con el fin de solucionar el problema. p> ¿Escribiste el URL? strong>
Es posible que haya escrito la dirección (URL) incorrectamente. Asegúrese de que usted tiene la ortografía exacta, mayúsculas, etc p>',
+ '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' => '
',
+ 'upgrade_tables' => 'Paso 3: Mira en el directorio sql. Ejecuta manualmente el fichero de actualización upgrade
+
',
+ '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í.
Si llegaste a esta página desde otra parte de nuestro sitio, comunícate con nosotros para que podamos resolverlo.
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.
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.
"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' => '
',
+ 'upgrade_tables' => 'Paso 3: Mira dentro de la carpeta sql. Ejecuta manualmente el archivo
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.
Orri honetara guneko beste toki batetik iritsi bazata, mesedez jarri gurekin harremanetan, akatsa zuzendu dezagun.
Beste guneetako loturak batzuetan zaharkituta egon daitezke edo gaizki idatziak.Esaiguzu non zegoen eta saiatu gara beste gunearekin harremanetan jartzen arazoa konpontzeko.
Baliteke (URL) helbidea gaizki idatzia izana. Ziurtatu ongi idatzia dagoela, ortografia, maisukulak, eta abar.
"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' => '
',
+ 'upgrade_tables' => '3: pausua Begiratu sql karpetan. Eskuz exekutatu ⏎
',
+ '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>به ما اطلاع دهید
ممکن است آدرس صفحه را اشتباه تایپ کرده باشید. لطفاً بررسی کنید که آدرس را حرف به حرف درست تایپ کرده باشید (از جمله بزرگ یا کوچک بودن حروف).
',
+ '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' => '
+
',
+ '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 strong> 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 strong> 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.
Si vous avez atteint cette page depuis un autre endrtoit de notre site, merci de nous contacter pour que nous puissions corriger cette erreur.
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.
Vous pourriez avoir écrit cette URL de manière incorrecte. Vérifiez que la casse, l\'orthographe, etc... sont exacts.
"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' => '
',
+ 'upgrade_tables' => 'Etape 3: Rendez-vous dans le dossier sql. Exécutez manuellement les fichier de mise à niveau
"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
+
',
+ '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 strong> 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.
Se é así, por favorpóñase en contacto connosco para que podamos solucionar 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.
תוכל למצוא הוראות לשינוי הרשאות הכתיבה של קבצים ותיקיות כאן:
+%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: strong> अपने शहर या स्थान का चयन करें:',
+ 'alerts_step2_send_alerts' => ' चरण 2: strong> मेरे अलर्ट भेजें यहाँ भेजें:',
+ 'alerts_step3_select_catgories' => ' चरण 3 (वैकल्पिक): strong> श्रेणियां चुनें',
+ '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:
+
+ - Unix/Linux
+ - Windows
+
',
+ '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 strong> 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' => 'აქ მოცემულია ინსტრუქციები ფაილის შეცვლის ნებართვისათვის:
+
+ - Unix/Linux
+ - Windows
+
',
+ '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' => '파일 권한을 변경하기 위한 지침:
+
+ - Unix/Linux
+ - Windows
+
',
+ '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 датотеки. Автоматски ја го пронајдовме оваа вредност, ве молиме проверете дали е точна. strong> Ако полето е празно, не грижете се, тоа значи 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' => 'Инструкции за промена на пермисиите на документите:
+
+ - Unix/Linux
+ - Windows
+
',
+ '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:
+
+ - Unix/Linux
+ - Windows
+
',
+ '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:
+
+ - Unix/Linux
+ - Windows
+
',
+ '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"
+" \n"
+" - Unix/Linux
\n"
+" - Windows
\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"
+" \n"
+" - Unix/Linux
\n"
+" - Windows
\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"
+" \n"
+" - Unix/Linux
\n"
+" - Windows
\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"
+" \n"
+" - Unix/Linux
\n"
+" - Windows
\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"
+" \n"
+" - Unix/Linux
\n"
+" - Windows
\n"
+"
"
+msgstr "هذه هى التعليمات الخاصة بتغيير تصريحات الملفات:
\n \n - Unix/Linux
\n - Windows
\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