1
0
mirror of https://github.com/nerzhul/ocsms.git synced 2025-06-08 00:16:24 +00:00

Compare commits

..

No commits in common. "master" and "2.1.8" have entirely different histories.

174 changed files with 499 additions and 1189 deletions

View File

@ -1,70 +0,0 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"
on:
push:
branches: [ master ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
schedule:
- cron: '20 1 * * 4'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'javascript' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://git.io/codeql-language-support
steps:
- name: Checkout repository
uses: actions/checkout@v2
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1
# Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language
#- run: |
# make bootstrap
# make release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1

View File

@ -1,10 +1,9 @@
[main] [main]
host = https://www.transifex.com host = https://www.transifex.com
lang_map = sk_SK: sk, th_TH: th, ja_JP: ja, bg_BG: bg, cs_CZ: cs, fi_FI: fi, hu_HU: hu, nb_NO: nb lang_map = bg_BG: bg, cs_CZ: cs, fi_FI: fi, hu_HU: hu, nb_NO: nb, sk_SK: sk, th_TH: th, ja_JP: ja
[o:nextcloud:p:nextcloud:r:ocsms] [nextcloud.ocsms]
file_filter = translationfiles/<lang>/ocsms.po file_filter = translationfiles/<lang>/ocsms.po
source_file = translationfiles/templates/ocsms.pot source_file = translationfiles/templates/ocsms.pot
source_lang = en source_lang = en
type = PO type = PO

37
appinfo/app.php Normal file
View File

@ -0,0 +1,37 @@
<?php
/**
* Nextcloud - Phone Sync
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
* @author Loic Blot <loic.blot@unix-experience.fr>
* @copyright Loic Blot 2014-2017
*/
namespace OCA\OcSms\AppInfo;
if (class_exists('\OCP\AppFramework\App')) {
\OC::$server->getNavigationManager()->add(array(
// the string under which your app will be referenced in owncloud
'id' => 'ocsms',
// sorting weight for the navigation. The higher the number, the higher
// will it be listed in the navigation
'order' => 10,
// the route that will be shown on startup
'href' => \OC::$server->getURLGenerator()->linkToRoute('ocsms.sms.index'),
// the icon that will be shown in the navigation
// this file needs to exist in img/
'icon' => \OC::$server->getURLGenerator()->imagePath('ocsms', 'app.svg'),
// the title of your application. This will be used in the
// navigation or on the settings page of your app
'name' => \OCP\Util::getL10N('ocsms')->t('Phone Sync')
));
} else {
$msg = 'Can not enable the OcSms app because the App Framework App is disabled';
\OC::$server->getLogger()->error($msg, array('ocsms'));
}

268
appinfo/database.xml Normal file
View File

@ -0,0 +1,268 @@
<?xml version="1.0" encoding="UTF-8" ?>
<database>
<name>*dbname*</name>
<create>true</create>
<overwrite>false</overwrite>
<charset>utf8</charset>
<table>
<name>*dbprefix*ocsms_user_datas</name>
<declaration>
<field>
<name>user_id</name>
<type>text</type>
<notnull>true</notnull>
<length>64</length>
</field>
<field>
<name>datakey</name>
<type>text</type>
<notnull>true</notnull>
<length>64</length>
</field>
<field>
<name>datavalue</name>
<type>text</type>
<length>64</length>
<notnull>true</notnull>
</field>
<index>
<name>user_datas_user_datakey</name>
<field>
<name>user_id</name>
</field>
<field>
<name>datakey</name>
</field>
</index>
</declaration>
</table>
<table>
<name>*dbprefix*ocsms_smsdatas</name>
<declaration>
<field>
<name>id</name>
<type>integer</type>
<default>0</default>
<notnull>true</notnull>
<autoincrement>1</autoincrement>
<length>10</length>
<primary>true</primary>
</field>
<field>
<name>user_id</name>
<type>text</type>
<notnull>true</notnull>
<length>64</length>
</field>
<field>
<name>added</name>
<type>timestamp</type>
<notnull>true</notnull>
<default>1970-01-01 00:00:00</default>
</field>
<field>
<name>lastmodified</name>
<type>timestamp</type>
<notnull>true</notnull>
<default>1970-01-01 00:00:00</default>
</field>
<field>
<name>sms_id</name>
<type>integer</type>
<notnull>true</notnull>
<length>5</length>
</field>
<field>
<name>sms_address</name>
<type>text</type>
<notnull>true</notnull>
<length>512</length>
</field>
<field>
<name>sms_msg</name>
<type>text</type>
<notnull>true</notnull>
<length>10240</length>
</field>
<field>
<name>sms_date</name>
<type>integer</type>
<notnull>true</notnull>
<length>10</length>
</field>
<field>
<name>sms_flags</name>
<type>text</type>
<notnull>true</notnull>
<default>00</default>
<length>2</length>
</field>
<field>
<name>sms_mailbox</name>
<type>integer</type>
<notnull>true</notnull>
<length>1</length>
</field>
<field>
<name>sms_type</name>
<type>integer</type>
<notnull>true</notnull>
<length>1</length>
</field>
<index>
<name>smsdata_user_mailbox</name>
<field>
<name>user_id</name>
</field>
<field>
<name>sms_mailbox</name>
</field>
</index>
<index>
<name>smsdata_user_smsid</name>
<field>
<name>user_id</name>
</field>
<field>
<name>sms_id</name>
</field>
</index>
<index>
<name>smsdata_user_mailbox_date</name>
<field>
<name>user_id</name>
</field>
<field>
<name>sms_mailbox</name>
</field>
<field>
<name>sms_date</name>
</field>
</index>
<index>
<name>smsdata_user_mailbox_address</name>
<field>
<name>user_id</name>
</field>
<field>
<name>sms_mailbox</name>
</field>
<field>
<name>sms_address</name>
</field>
</index>
<index>
<name>smsdata_user_mailbox_address_date</name>
<field>
<name>user_id</name>
</field>
<field>
<name>sms_mailbox</name>
</field>
<field>
<name>sms_address</name>
</field>
<field>
<name>sms_date</name>
</field>
</index>
</declaration>
</table>
<table>
<name>*dbprefix*ocsms_sendmessage_queue</name>
<declaration>
<field>
<name>id</name>
<type>integer</type>
<default>0</default>
<notnull>true</notnull>
<autoincrement>1</autoincrement>
<length>10</length>
<primary>true</primary>
</field>
<field>
<name>user_id</name>
<type>text</type>
<notnull>true</notnull>
<length>64</length>
</field>
<field>
<name>sms_address</name>
<type>text</type>
<notnull>true</notnull>
<length>64</length>
</field>
<field>
<name>sms_msg</name>
<type>text</type>
<notnull>true</notnull>
<length>2048</length>
</field>
</declaration>
</table>
<table>
<name>*dbprefix*ocsms_conversation_read_states</name>
<declaration>
<field>
<name>user_id</name>
<type>text</type>
<notnull>true</notnull>
<length>64</length>
</field>
<field>
<name>phone_number</name>
<type>text</type>
<notnull>true</notnull>
<length>64</length>
</field>
<field>
<name>int_date</name>
<type>integer</type>
<length>32</length>
<notnull>true</notnull>
</field>
<index>
<name>sms_conversation_rs_pkey</name>
<field>
<name>user_id</name>
</field>
<field>
<name>phone_number</name>
</field>
</index>
</declaration>
</table>
<table>
<name>*dbprefix*ocsms_config</name>
<declaration>
<field>
<name>user</name>
<type>text</type>
<notnull>true</notnull>
<length>255</length>
</field>
<field>
<name>key</name>
<type>text</type>
<notnull>true</notnull>
<length>255</length>
</field>
<field>
<name>value</name>
<type>text</type>
<notnull>false</notnull>
<length>10240</length>
</field>
<index>
<name>config_user_key</name>
<field>
<name>user</name>
</field>
<field>
<name>key</name>
</field>
</index>
</declaration>
</table>
</database>

View File

@ -5,14 +5,13 @@
<name>Phone Sync</name> <name>Phone Sync</name>
<summary>An app to sync SMS with your cloud</summary> <summary>An app to sync SMS with your cloud</summary>
<description>An app to sync SMS with your cloud</description> <description>An app to sync SMS with your cloud</description>
<author>Loic Blot</author>
<author>e-alfred</author>
<version>2.2.0</version>
<licence>agpl</licence> <licence>agpl</licence>
<author>Loic Blot</author>
<version>2.1.8</version>
<category>multimedia</category> <category>multimedia</category>
<category>tools</category> <category>tools</category>
<dependencies> <dependencies>
<nextcloud min-version="18" max-version="20" /> <nextcloud min-version="16" max-version="19" />
</dependencies> </dependencies>
<website>https://github.com/nextcloud/ocsms</website> <website>https://github.com/nextcloud/ocsms</website>
@ -28,12 +27,4 @@
<step>OCA\OcSms\Migration\FixConversationReadStates</step> <step>OCA\OcSms\Migration\FixConversationReadStates</step>
</post-migration> </post-migration>
</repair-steps> </repair-steps>
<navigations>
<navigation>
<id>ocsms</id>
<name>Phone Sync</name>
<route>ocsms.sms.index</route>
<icon>app.svg</icon>
</navigation>
</navigations>
</info> </info>

View File

@ -26,7 +26,7 @@ class ConversationStateMapper extends Mapper {
public function getLast ($userId) { public function getLast ($userId) {
$qb = $this->db->getQueryBuilder(); $qb = $this->db->getQueryBuilder();
$qb->selectAlias($qb->createFunction('MAX(int_date)'), 'mx') $qb->selectAlias($qb->createFunction('MAX(int_date)'), 'mx')
->from('ocsms_conv_r_states') ->from('ocsms_conversation_read_states')
->where($qb->expr()->andX( ->where($qb->expr()->andX(
$qb->expr()->eq('user_id', $qb->createNamedParameter($userId)) $qb->expr()->eq('user_id', $qb->createNamedParameter($userId))
)); ));
@ -42,7 +42,7 @@ class ConversationStateMapper extends Mapper {
public function getLastForPhoneNumber ($userId, $phoneNumber) { public function getLastForPhoneNumber ($userId, $phoneNumber) {
$qb = $this->db->getQueryBuilder(); $qb = $this->db->getQueryBuilder();
$qb->selectAlias($qb->createFunction('MAX(int_date)'), 'mx') $qb->selectAlias($qb->createFunction('MAX(int_date)'), 'mx')
->from('ocsms_conv_r_states') ->from('ocsms_conversation_read_states')
->where($qb->expr()->andX( ->where($qb->expr()->andX(
$qb->expr()->eq('user_id', $qb->createNamedParameter($userId)), $qb->expr()->eq('user_id', $qb->createNamedParameter($userId)),
$qb->expr()->eq('phone_number', $qb->createNamedParameter($phoneNumber)) $qb->expr()->eq('phone_number', $qb->createNamedParameter($phoneNumber))
@ -59,7 +59,7 @@ class ConversationStateMapper extends Mapper {
public function setLast ($userId, $phoneNumber, $lastDate) { public function setLast ($userId, $phoneNumber, $lastDate) {
$this->db->beginTransaction(); $this->db->beginTransaction();
$qb = $this->db->getQueryBuilder(); $qb = $this->db->getQueryBuilder();
$qb->delete('ocsms_conv_r_states') $qb->delete('ocsms_conversation_read_states')
->where($qb->expr()->andX( ->where($qb->expr()->andX(
$qb->expr()->eq('user_id', $qb->createNamedParameter($userId)), $qb->expr()->eq('user_id', $qb->createNamedParameter($userId)),
$qb->expr()->eq('phone_number', $qb->createNamedParameter($phoneNumber)) $qb->expr()->eq('phone_number', $qb->createNamedParameter($phoneNumber))
@ -67,7 +67,7 @@ class ConversationStateMapper extends Mapper {
$qb->execute(); $qb->execute();
$qb = $this->db->getQueryBuilder(); $qb = $this->db->getQueryBuilder();
$qb->insert('ocsms_conv_r_states') $qb->insert('ocsms_conversation_read_states')
->values(array( ->values(array(
'user_id' => $qb->createNamedParameter($userId), 'user_id' => $qb->createNamedParameter($userId),
'phone_number' => $qb->createNamedParameter($phoneNumber), 'phone_number' => $qb->createNamedParameter($phoneNumber),

2
js/app.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -27,51 +27,3 @@ function toBool(str) {
} }
return null; return null;
} }
function escapeHTML(string) {
var str = '' + string
var matchHtmlRegExp = /["'&<>]/
var match = matchHtmlRegExp.exec(str)
if (!match) {
return str
}
var escape
var html = ''
var index = 0
var lastIndex = 0
for (index = match.index; index < str.length; index++) {
switch (str.charCodeAt(index)) {
case 34: // "
escape = '&quot;'
break
case 38: // &
escape = '&amp;'
break
case 39: // '
escape = '&#39;'
break
case 60: // <
escape = '&lt;'
break
case 62: // >
escape = '&gt;'
break
default:
continue
}
if (lastIndex !== index) {
html += str.substring(lastIndex, index)
}
lastIndex = index + 1
html += escape
}
return lastIndex !== index
? html + str.substring(lastIndex, index)
: html
}

View File

@ -1,7 +0,0 @@
OC.L10N.register(
"ocsms",
{
"Cancel" : "Cancelar",
"Settings" : "Configuración"
},
"nplurals=2; plural=(n != 1);");

View File

@ -1,5 +0,0 @@
{ "translations": {
"Cancel" : "Cancelar",
"Settings" : "Configuración"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -1,25 +1,14 @@
OC.L10N.register( OC.L10N.register(
"ocsms", "ocsms",
{ {
"Phone Sync" : "مُزامنة الهاتف",
"An app to sync SMS with your cloud" : "تطبيق لمزامنة رسالة SMS إلى مخزنك السحابي",
"Cancel" : "إلغاء", "Cancel" : "إلغاء",
"Confirm" : "تأكيد", "Confirm" : "تأكيد",
"No contact found." : "لا توجد أي جهة اتصال",
"Settings" : "الإعدادات", "Settings" : "الإعدادات",
"Max messages to load per conversation" : "أقصى عدد من الرسائل لكل محادثة",
"Invalid message limit" : "الحد الأقصى للرسائل غير مقبول",
"Default country code" : "الرمز الافتراضي للدولة", "Default country code" : "الرمز الافتراضي للدولة",
"Contact ordering" : "ترتيب جهات الاتصال",
"Last message" : "آخر رسالة", "Last message" : "آخر رسالة",
"Label" : "تسمية", "Label" : "تسمية",
"Reverse ?" : "عكسي؟", "Notification settings" : "إعدادات الإشعار",
"Notification settings" : "إعداد الإشعارات",
"Enable" : "تفعيل", "Enable" : "تفعيل",
"Disable" : "مُعطّل", "Disable" : "مُعطّل"
"Are you sure you want to wipe all your messages ?" : "هل أنت متأكد أنك ترغب في محو كل رسائلك؟",
"Reset all messages" : "إعادة تعيين كافة الرسائل",
"%s messages shown of %s messages stored in database." : "%s رسالة معروضة من مجموع %s رسالة محفوظة في قاعدة البيانات؟",
"Please select a conversation from the list to load it." : "رجاءً، اختر محادثةً من القائمة لرفعها."
}, },
"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;"); "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;");

View File

@ -1,23 +1,12 @@
{ "translations": { { "translations": {
"Phone Sync" : "مُزامنة الهاتف",
"An app to sync SMS with your cloud" : "تطبيق لمزامنة رسالة SMS إلى مخزنك السحابي",
"Cancel" : "إلغاء", "Cancel" : "إلغاء",
"Confirm" : "تأكيد", "Confirm" : "تأكيد",
"No contact found." : "لا توجد أي جهة اتصال",
"Settings" : "الإعدادات", "Settings" : "الإعدادات",
"Max messages to load per conversation" : "أقصى عدد من الرسائل لكل محادثة",
"Invalid message limit" : "الحد الأقصى للرسائل غير مقبول",
"Default country code" : "الرمز الافتراضي للدولة", "Default country code" : "الرمز الافتراضي للدولة",
"Contact ordering" : "ترتيب جهات الاتصال",
"Last message" : "آخر رسالة", "Last message" : "آخر رسالة",
"Label" : "تسمية", "Label" : "تسمية",
"Reverse ?" : "عكسي؟", "Notification settings" : "إعدادات الإشعار",
"Notification settings" : "إعداد الإشعارات",
"Enable" : "تفعيل", "Enable" : "تفعيل",
"Disable" : "مُعطّل", "Disable" : "مُعطّل"
"Are you sure you want to wipe all your messages ?" : "هل أنت متأكد أنك ترغب في محو كل رسائلك؟",
"Reset all messages" : "إعادة تعيين كافة الرسائل",
"%s messages shown of %s messages stored in database." : "%s رسالة معروضة من مجموع %s رسالة محفوظة في قاعدة البيانات؟",
"Please select a conversation from the list to load it." : "رجاءً، اختر محادثةً من القائمة لرفعها."
},"pluralForm" :"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;" },"pluralForm" :"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;"
} }

View File

@ -1,13 +1,11 @@
OC.L10N.register( OC.L10N.register(
"ocsms", "ocsms",
{ {
"An app to sync SMS with your cloud" : "Una aplicación pa sincronizar los SMS cola nube", "Phone Sync" : "Sincronización de teléfonu",
"Cancel" : "Encaboxar", "Cancel" : "Encaboxar",
"Confirm" : "Confirmar", "Confirm" : "Confirmar",
"No contact found." : "Nun s'atopó nengún contautu.", "Settings" : "Settings",
"Settings" : "Configuración", "Label" : "Etiqueta",
"Invalid message limit" : "La llende de mensaxes ye inválida",
"Notification settings" : "Configuración de los avisos",
"Enable" : "Activar", "Enable" : "Activar",
"Disable" : "Desactivar" "Disable" : "Desactivar"
}, },

View File

@ -1,11 +1,9 @@
{ "translations": { { "translations": {
"An app to sync SMS with your cloud" : "Una aplicación pa sincronizar los SMS cola nube", "Phone Sync" : "Sincronización de teléfonu",
"Cancel" : "Encaboxar", "Cancel" : "Encaboxar",
"Confirm" : "Confirmar", "Confirm" : "Confirmar",
"No contact found." : "Nun s'atopó nengún contautu.", "Settings" : "Settings",
"Settings" : "Configuración", "Label" : "Etiqueta",
"Invalid message limit" : "La llende de mensaxes ye inválida",
"Notification settings" : "Configuración de los avisos",
"Enable" : "Activar", "Enable" : "Activar",
"Disable" : "Desactivar" "Disable" : "Desactivar"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"

View File

@ -2,7 +2,6 @@ OC.L10N.register(
"ocsms", "ocsms",
{ {
"Cancel" : "Dayandır", "Cancel" : "Dayandır",
"Confirm" : "Təsdiq edin",
"Settings" : "Quraşdırmalar", "Settings" : "Quraşdırmalar",
"Enable" : "İşə sal", "Enable" : "İşə sal",
"Disable" : "Dayandır" "Disable" : "Dayandır"

View File

@ -1,6 +1,5 @@
{ "translations": { { "translations": {
"Cancel" : "Dayandır", "Cancel" : "Dayandır",
"Confirm" : "Təsdiq edin",
"Settings" : "Quraşdırmalar", "Settings" : "Quraşdırmalar",
"Enable" : "İşə sal", "Enable" : "İşə sal",
"Disable" : "Dayandır" "Disable" : "Dayandır"

View File

@ -2,24 +2,11 @@ OC.L10N.register(
"ocsms", "ocsms",
{ {
"Phone Sync" : "Синхронизиране на телефона", "Phone Sync" : "Синхронизиране на телефона",
"An app to sync SMS with your cloud" : "Приложение за синхронизиране на SMS с вашия облак",
"Cancel" : "Отказ", "Cancel" : "Отказ",
"Confirm" : "Потвърди", "Confirm" : "Потвърди",
"No contact found." : "Няма намерен контакт.",
"Settings" : "Настройки", "Settings" : "Настройки",
"Max messages to load per conversation" : "Максимален брой съобщения за зареждане за един разговор",
"Invalid message limit" : "Невалидно ограничение за съобщения",
"Default country code" : "Код на държавата по подразбиране",
"Contact ordering" : "Контакт на поръчката",
"Last message" : "Последно съобщение",
"Label" : "Име", "Label" : "Име",
"Reverse ?" : "Осчетоводяване?",
"Notification settings" : "Настройки на известие",
"Enable" : "Включване", "Enable" : "Включване",
"Disable" : "Изключване", "Disable" : "Изключване"
"Are you sure you want to wipe all your messages ?" : "Сигурни ли сте, че искате да изтриете всичките си съобщения?",
"Reset all messages" : "Възстановяване на всички съобщения ",
"%s messages shown of %s messages stored in database." : "%sпоказвани съобщения от %s съобщения, съхранени в базата данни. ",
"Please select a conversation from the list to load it." : "Моля, изберете разговор от списъка, за да го заредите."
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@ -1,23 +1,10 @@
{ "translations": { { "translations": {
"Phone Sync" : "Синхронизиране на телефона", "Phone Sync" : "Синхронизиране на телефона",
"An app to sync SMS with your cloud" : "Приложение за синхронизиране на SMS с вашия облак",
"Cancel" : "Отказ", "Cancel" : "Отказ",
"Confirm" : "Потвърди", "Confirm" : "Потвърди",
"No contact found." : "Няма намерен контакт.",
"Settings" : "Настройки", "Settings" : "Настройки",
"Max messages to load per conversation" : "Максимален брой съобщения за зареждане за един разговор",
"Invalid message limit" : "Невалидно ограничение за съобщения",
"Default country code" : "Код на държавата по подразбиране",
"Contact ordering" : "Контакт на поръчката",
"Last message" : "Последно съобщение",
"Label" : "Име", "Label" : "Име",
"Reverse ?" : "Осчетоводяване?",
"Notification settings" : "Настройки на известие",
"Enable" : "Включване", "Enable" : "Включване",
"Disable" : "Изключване", "Disable" : "Изключване"
"Are you sure you want to wipe all your messages ?" : "Сигурни ли сте, че искате да изтриете всичките си съобщения?",
"Reset all messages" : "Възстановяване на всички съобщения ",
"%s messages shown of %s messages stored in database." : "%sпоказвани съобщения от %s съобщения, съхранени в базата данни. ",
"Please select a conversation from the list to load it." : "Моля, изберете разговор от списъка, за да го заредите."
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@ -1,25 +1,6 @@
OC.L10N.register( OC.L10N.register(
"ocsms", "ocsms",
{ {
"Phone Sync" : "Kemprenn hezouk", "Settings" : "Arventennoù"
"An app to sync SMS with your cloud" : "Ur meziant evit kemprennañ ho SMS gant ho cloud",
"Cancel" : "Nullañ",
"Confirm" : "Kadarnañ",
"No contact found." : "Daremprenn kavet ebet.",
"Settings" : "Arventennoù",
"Max messages to load per conversation" : "Ar muiañ a gemenadenn da gargañ dre diviz",
"Invalid message limit" : "Bevenn kemenadenn fall",
"Default country code" : "Kod bro dre ziouer",
"Contact ordering" : "Renkañ darempred",
"Last message" : "Kemenadenn divezhañ",
"Label" : "Tiketenn",
"Reverse ?" : "En tu all ?",
"Notification settings" : "Arventennoù kemennadennoù",
"Enable" : "Aotreañ",
"Disable" : "Disaotreañ",
"Are you sure you want to wipe all your messages ?" : "Sur oc'h da lemel pep kemenadenn ?",
"Reset all messages" : "Adlakaat d'ho stad orin pep kemenadenn",
"%s messages shown of %s messages stored in database." : "%s kemenadenn diskouezet diwar %s kemenadenn enrollet er roadenn-diaz",
"Please select a conversation from the list to load it." : "Choazit un diviz eus ar roll evit e kargañ."
}, },
"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);"); "nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);");

View File

@ -1,23 +1,4 @@
{ "translations": { { "translations": {
"Phone Sync" : "Kemprenn hezouk", "Settings" : "Arventennoù"
"An app to sync SMS with your cloud" : "Ur meziant evit kemprennañ ho SMS gant ho cloud",
"Cancel" : "Nullañ",
"Confirm" : "Kadarnañ",
"No contact found." : "Daremprenn kavet ebet.",
"Settings" : "Arventennoù",
"Max messages to load per conversation" : "Ar muiañ a gemenadenn da gargañ dre diviz",
"Invalid message limit" : "Bevenn kemenadenn fall",
"Default country code" : "Kod bro dre ziouer",
"Contact ordering" : "Renkañ darempred",
"Last message" : "Kemenadenn divezhañ",
"Label" : "Tiketenn",
"Reverse ?" : "En tu all ?",
"Notification settings" : "Arventennoù kemennadennoù",
"Enable" : "Aotreañ",
"Disable" : "Disaotreañ",
"Are you sure you want to wipe all your messages ?" : "Sur oc'h da lemel pep kemenadenn ?",
"Reset all messages" : "Adlakaat d'ho stad orin pep kemenadenn",
"%s messages shown of %s messages stored in database." : "%s kemenadenn diskouezet diwar %s kemenadenn enrollet er roadenn-diaz",
"Please select a conversation from the list to load it." : "Choazit un diviz eus ar roll evit e kargañ."
},"pluralForm" :"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);" },"pluralForm" :"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);"
} }

View File

@ -2,24 +2,23 @@ OC.L10N.register(
"ocsms", "ocsms",
{ {
"Phone Sync" : "Sincronització del telèfon", "Phone Sync" : "Sincronització del telèfon",
"An app to sync SMS with your cloud" : "Aplicació per a sincronitzar els SMS amb el núvol", "An app to sync SMS with your cloud" : "Una aplicació per sincronitzar SMS amb el vostre núvol",
"Cancel" : "Cancel·la", "Cancel" : "Cancel·la",
"Confirm" : "Confirma", "Confirm" : "Confirma",
"No contact found." : "No s'ha trobat cap contacte.", "No contact found." : "No s'ha trobat el contacte",
"Settings" : "Paràmetres", "Settings" : "Paràmetres",
"Max messages to load per conversation" : "Nombre màxim de missatges que es carregaran per conversa", "Max messages to load per conversation" : "Màx. missatges per carregar per conversa",
"Invalid message limit" : "Límit de missatge no vàlid", "Invalid message limit" : "Límit de missatge no vàlid",
"Default country code" : "Codi de país per defecte", "Default country code" : "Codi del país predeterminat",
"Contact ordering" : "Ordre dels contactes", "Contact ordering" : "Ordenació de contactes",
"Last message" : "Darrer missatge", "Last message" : "Darrer missatge",
"Label" : "Etiqueta", "Label" : "Etiqueta",
"Reverse ?" : "Inverteix", "Reverse ?" : "Inverteix?",
"Notification settings" : "Paràmetres de les notificacions", "Notification settings" : "Paràmetres de les notificacions",
"Enable" : "Habilita", "Enable" : "Activa",
"Disable" : "Inhabilita", "Disable" : "Desactiva",
"Are you sure you want to wipe all your messages ?" : "Segur que voleu esborrar tots els vostres missatges?", "Are you sure you want to wipe all your messages ?" : "Esteu segurs que voleu suprimir tots els vostres missatges?",
"Reset all messages" : "Reinicialitza tots els missatges", "Reset all messages" : "Restableix tots els missatges",
"%s messages shown of %s messages stored in database." : "Es mostren %s missatges dels %s missatges emmagatzemats a la base de dades.", "Please select a conversation from the list to load it." : "Si us plau, seleccioneu una conversa de la llista per carregar-la."
"Please select a conversation from the list to load it." : "Seleccioneu una conversa de la llista per a carregar-la."
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@ -1,23 +1,22 @@
{ "translations": { { "translations": {
"Phone Sync" : "Sincronització del telèfon", "Phone Sync" : "Sincronització del telèfon",
"An app to sync SMS with your cloud" : "Aplicació per a sincronitzar els SMS amb el núvol", "An app to sync SMS with your cloud" : "Una aplicació per sincronitzar SMS amb el vostre núvol",
"Cancel" : "Cancel·la", "Cancel" : "Cancel·la",
"Confirm" : "Confirma", "Confirm" : "Confirma",
"No contact found." : "No s'ha trobat cap contacte.", "No contact found." : "No s'ha trobat el contacte",
"Settings" : "Paràmetres", "Settings" : "Paràmetres",
"Max messages to load per conversation" : "Nombre màxim de missatges que es carregaran per conversa", "Max messages to load per conversation" : "Màx. missatges per carregar per conversa",
"Invalid message limit" : "Límit de missatge no vàlid", "Invalid message limit" : "Límit de missatge no vàlid",
"Default country code" : "Codi de país per defecte", "Default country code" : "Codi del país predeterminat",
"Contact ordering" : "Ordre dels contactes", "Contact ordering" : "Ordenació de contactes",
"Last message" : "Darrer missatge", "Last message" : "Darrer missatge",
"Label" : "Etiqueta", "Label" : "Etiqueta",
"Reverse ?" : "Inverteix", "Reverse ?" : "Inverteix?",
"Notification settings" : "Paràmetres de les notificacions", "Notification settings" : "Paràmetres de les notificacions",
"Enable" : "Habilita", "Enable" : "Activa",
"Disable" : "Inhabilita", "Disable" : "Desactiva",
"Are you sure you want to wipe all your messages ?" : "Segur que voleu esborrar tots els vostres missatges?", "Are you sure you want to wipe all your messages ?" : "Esteu segurs que voleu suprimir tots els vostres missatges?",
"Reset all messages" : "Reinicialitza tots els missatges", "Reset all messages" : "Restableix tots els missatges",
"%s messages shown of %s messages stored in database." : "Es mostren %s missatges dels %s missatges emmagatzemats a la base de dades.", "Please select a conversation from the list to load it." : "Si us plau, seleccioneu una conversa de la llista per carregar-la."
"Please select a conversation from the list to load it." : "Seleccioneu una conversa de la llista per a carregar-la."
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@ -5,7 +5,7 @@ OC.L10N.register(
"An app to sync SMS with your cloud" : "Aplikace pro synchronizaci SMS s vaším cloudem", "An app to sync SMS with your cloud" : "Aplikace pro synchronizaci SMS s vaším cloudem",
"Cancel" : "Storno", "Cancel" : "Storno",
"Confirm" : "Potvrdit", "Confirm" : "Potvrdit",
"No contact found." : "Nenalezen žádný kontakt.", "No contact found." : "Nebyl nalezen žádný kontakt.",
"Settings" : "Nastavení", "Settings" : "Nastavení",
"Max messages to load per conversation" : "Pro každou z konverzací načíst zpráv nejvýše", "Max messages to load per conversation" : "Pro každou z konverzací načíst zpráv nejvýše",
"Invalid message limit" : "Neplatný limit zprávy", "Invalid message limit" : "Neplatný limit zprávy",

View File

@ -3,7 +3,7 @@
"An app to sync SMS with your cloud" : "Aplikace pro synchronizaci SMS s vaším cloudem", "An app to sync SMS with your cloud" : "Aplikace pro synchronizaci SMS s vaším cloudem",
"Cancel" : "Storno", "Cancel" : "Storno",
"Confirm" : "Potvrdit", "Confirm" : "Potvrdit",
"No contact found." : "Nenalezen žádný kontakt.", "No contact found." : "Nebyl nalezen žádný kontakt.",
"Settings" : "Nastavení", "Settings" : "Nastavení",
"Max messages to load per conversation" : "Pro každou z konverzací načíst zpráv nejvýše", "Max messages to load per conversation" : "Pro každou z konverzací načíst zpráv nejvýše",
"Invalid message limit" : "Neplatný limit zprávy", "Invalid message limit" : "Neplatný limit zprávy",

View File

@ -2,7 +2,6 @@ OC.L10N.register(
"ocsms", "ocsms",
{ {
"Cancel" : "Diddymu", "Cancel" : "Diddymu",
"Confirm" : "Cadarnhau",
"Settings" : "Gosodiadau", "Settings" : "Gosodiadau",
"Disable" : "Analluogi" "Disable" : "Analluogi"
}, },

View File

@ -1,6 +1,5 @@
{ "translations": { { "translations": {
"Cancel" : "Diddymu", "Cancel" : "Diddymu",
"Confirm" : "Cadarnhau",
"Settings" : "Gosodiadau", "Settings" : "Gosodiadau",
"Disable" : "Analluogi" "Disable" : "Analluogi"
},"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;" },"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"

View File

@ -1,13 +1,13 @@
OC.L10N.register( OC.L10N.register(
"ocsms", "ocsms",
{ {
"Phone Sync" : "Telefon synkronisering", "Phone Sync" : "Telefon sync",
"Cancel" : "Annuller", "Cancel" : "Annullér",
"Confirm" : "Bekræft", "Confirm" : "Bekræft",
"Settings" : "Indstillinger", "Settings" : "Indstillinger",
"Label" : "Mærkat", "Label" : "Mærkat",
"Notification settings" : "Meddelelsesindstillinger", "Notification settings" : "Meddelelsesindstillinger",
"Enable" : "Aktiver", "Enable" : "Aktivér",
"Disable" : "Deaktiver" "Disable" : "Deaktiver"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@ -1,11 +1,11 @@
{ "translations": { { "translations": {
"Phone Sync" : "Telefon synkronisering", "Phone Sync" : "Telefon sync",
"Cancel" : "Annuller", "Cancel" : "Annullér",
"Confirm" : "Bekræft", "Confirm" : "Bekræft",
"Settings" : "Indstillinger", "Settings" : "Indstillinger",
"Label" : "Mærkat", "Label" : "Mærkat",
"Notification settings" : "Meddelelsesindstillinger", "Notification settings" : "Meddelelsesindstillinger",
"Enable" : "Aktiver", "Enable" : "Aktivér",
"Disable" : "Deaktiver" "Disable" : "Deaktiver"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@ -2,7 +2,7 @@ OC.L10N.register(
"ocsms", "ocsms",
{ {
"Phone Sync" : "Telefon-Sync", "Phone Sync" : "Telefon-Sync",
"An app to sync SMS with your cloud" : "Eine App, die SMSen mit deiner Cloud synchronisiert", "An app to sync SMS with your cloud" : "Eine App, die SMSen mit Deiner Cloud synchronisiert",
"Cancel" : "Abbrechen", "Cancel" : "Abbrechen",
"Confirm" : "Bestätigen", "Confirm" : "Bestätigen",
"No contact found." : "Kein Kontakt gefunden.", "No contact found." : "Kein Kontakt gefunden.",
@ -17,7 +17,7 @@ OC.L10N.register(
"Notification settings" : "Benachrichtigungseinstellungen", "Notification settings" : "Benachrichtigungseinstellungen",
"Enable" : "Aktivieren", "Enable" : "Aktivieren",
"Disable" : "Deaktivieren", "Disable" : "Deaktivieren",
"Are you sure you want to wipe all your messages ?" : "Möchtest du wirklich all deine Nachrichten löschen?", "Are you sure you want to wipe all your messages ?" : "Möchtest Du wirklich all Deine Nachrichten löschen?",
"Reset all messages" : "Alle Nachrichten zurücksetzen", "Reset all messages" : "Alle Nachrichten zurücksetzen",
"%s messages shown of %s messages stored in database." : "%s Nachrichten angezeigt von %s in der Datenbank gespeicherten Nachrichten", "%s messages shown of %s messages stored in database." : "%s Nachrichten angezeigt von %s in der Datenbank gespeicherten Nachrichten",
"Please select a conversation from the list to load it." : "Wähle eine Unterhaltung zum Laden aus der Liste aus." "Please select a conversation from the list to load it." : "Wähle eine Unterhaltung zum Laden aus der Liste aus."

View File

@ -1,6 +1,6 @@
{ "translations": { { "translations": {
"Phone Sync" : "Telefon-Sync", "Phone Sync" : "Telefon-Sync",
"An app to sync SMS with your cloud" : "Eine App, die SMSen mit deiner Cloud synchronisiert", "An app to sync SMS with your cloud" : "Eine App, die SMSen mit Deiner Cloud synchronisiert",
"Cancel" : "Abbrechen", "Cancel" : "Abbrechen",
"Confirm" : "Bestätigen", "Confirm" : "Bestätigen",
"No contact found." : "Kein Kontakt gefunden.", "No contact found." : "Kein Kontakt gefunden.",
@ -15,7 +15,7 @@
"Notification settings" : "Benachrichtigungseinstellungen", "Notification settings" : "Benachrichtigungseinstellungen",
"Enable" : "Aktivieren", "Enable" : "Aktivieren",
"Disable" : "Deaktivieren", "Disable" : "Deaktivieren",
"Are you sure you want to wipe all your messages ?" : "Möchtest du wirklich all deine Nachrichten löschen?", "Are you sure you want to wipe all your messages ?" : "Möchtest Du wirklich all Deine Nachrichten löschen?",
"Reset all messages" : "Alle Nachrichten zurücksetzen", "Reset all messages" : "Alle Nachrichten zurücksetzen",
"%s messages shown of %s messages stored in database." : "%s Nachrichten angezeigt von %s in der Datenbank gespeicherten Nachrichten", "%s messages shown of %s messages stored in database." : "%s Nachrichten angezeigt von %s in der Datenbank gespeicherten Nachrichten",
"Please select a conversation from the list to load it." : "Wähle eine Unterhaltung zum Laden aus der Liste aus." "Please select a conversation from the list to load it." : "Wähle eine Unterhaltung zum Laden aus der Liste aus."

View File

@ -5,21 +5,10 @@ OC.L10N.register(
"An app to sync SMS with your cloud" : "An app to sync SMS with your cloud", "An app to sync SMS with your cloud" : "An app to sync SMS with your cloud",
"Cancel" : "Cancel", "Cancel" : "Cancel",
"Confirm" : "Confirm", "Confirm" : "Confirm",
"No contact found." : "No contact found.",
"Settings" : "Settings", "Settings" : "Settings",
"Max messages to load per conversation" : "Max messages to load per conversation",
"Invalid message limit" : "Invalid message limit",
"Default country code" : "Default country code",
"Contact ordering" : "Contact ordering",
"Last message" : "Last message",
"Label" : "Label", "Label" : "Label",
"Reverse ?" : "Reverse ?",
"Notification settings" : "Notification settings", "Notification settings" : "Notification settings",
"Enable" : "Enable", "Enable" : "Enable",
"Disable" : "Disable", "Disable" : "Disable"
"Are you sure you want to wipe all your messages ?" : "Are you sure you want to wipe all your messages ?",
"Reset all messages" : "Reset all messages",
"%s messages shown of %s messages stored in database." : "%s messages shown of %s messages stored in database.",
"Please select a conversation from the list to load it." : "Please select a conversation from the list to load it."
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@ -3,21 +3,10 @@
"An app to sync SMS with your cloud" : "An app to sync SMS with your cloud", "An app to sync SMS with your cloud" : "An app to sync SMS with your cloud",
"Cancel" : "Cancel", "Cancel" : "Cancel",
"Confirm" : "Confirm", "Confirm" : "Confirm",
"No contact found." : "No contact found.",
"Settings" : "Settings", "Settings" : "Settings",
"Max messages to load per conversation" : "Max messages to load per conversation",
"Invalid message limit" : "Invalid message limit",
"Default country code" : "Default country code",
"Contact ordering" : "Contact ordering",
"Last message" : "Last message",
"Label" : "Label", "Label" : "Label",
"Reverse ?" : "Reverse ?",
"Notification settings" : "Notification settings", "Notification settings" : "Notification settings",
"Enable" : "Enable", "Enable" : "Enable",
"Disable" : "Disable", "Disable" : "Disable"
"Are you sure you want to wipe all your messages ?" : "Are you sure you want to wipe all your messages ?",
"Reset all messages" : "Reset all messages",
"%s messages shown of %s messages stored in database." : "%s messages shown of %s messages stored in database.",
"Please select a conversation from the list to load it." : "Please select a conversation from the list to load it."
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@ -22,4 +22,4 @@ OC.L10N.register(
"%s messages shown of %s messages stored in database." : "%s mensaje mostrados de %s mensajes almacenados en la base de datos.", "%s messages shown of %s messages stored in database." : "%s mensaje mostrados de %s mensajes almacenados en la base de datos.",
"Please select a conversation from the list to load it." : "Por favor, selecciona una conversación de la lista para cargarla." "Please select a conversation from the list to load it." : "Por favor, selecciona una conversación de la lista para cargarla."
}, },
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); "nplurals=2; plural=(n != 1);");

View File

@ -19,5 +19,5 @@
"Reset all messages" : "Restablecer todos los mensajes", "Reset all messages" : "Restablecer todos los mensajes",
"%s messages shown of %s messages stored in database." : "%s mensaje mostrados de %s mensajes almacenados en la base de datos.", "%s messages shown of %s messages stored in database." : "%s mensaje mostrados de %s mensajes almacenados en la base de datos.",
"Please select a conversation from the list to load it." : "Por favor, selecciona una conversación de la lista para cargarla." "Please select a conversation from the list to load it." : "Por favor, selecciona una conversación de la lista para cargarla."
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@ -9,4 +9,4 @@ OC.L10N.register(
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
}, },
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); "nplurals=2; plural=(n != 1);");

View File

@ -6,5 +6,5 @@
"Label" : "Etiqueta", "Label" : "Etiqueta",
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@ -10,4 +10,4 @@ OC.L10N.register(
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
}, },
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); "nplurals=2; plural=(n != 1);");

View File

@ -7,5 +7,5 @@
"Notification settings" : "Configuración de las notificaciones", "Notification settings" : "Configuración de las notificaciones",
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@ -9,4 +9,4 @@ OC.L10N.register(
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
}, },
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); "nplurals=2; plural=(n != 1);");

View File

@ -6,5 +6,5 @@
"Label" : "Etiqueta", "Label" : "Etiqueta",
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@ -9,4 +9,4 @@ OC.L10N.register(
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
}, },
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); "nplurals=2; plural=(n != 1);");

View File

@ -6,5 +6,5 @@
"Label" : "Etiqueta", "Label" : "Etiqueta",
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@ -9,4 +9,4 @@ OC.L10N.register(
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
}, },
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); "nplurals=2; plural=(n != 1);");

View File

@ -6,5 +6,5 @@
"Label" : "Etiqueta", "Label" : "Etiqueta",
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@ -9,4 +9,4 @@ OC.L10N.register(
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
}, },
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); "nplurals=2; plural=(n != 1);");

View File

@ -6,5 +6,5 @@
"Label" : "Etiqueta", "Label" : "Etiqueta",
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@ -2,24 +2,11 @@ OC.L10N.register(
"ocsms", "ocsms",
{ {
"Phone Sync" : "Sincronizar teléfono", "Phone Sync" : "Sincronizar teléfono",
"An app to sync SMS with your cloud" : "Una aplicación para sincronizar SMS con tu nube",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"Confirm" : "Confirmar", "Confirm" : "Confirmar",
"No contact found." : "No se encontraron contactos.",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"Max messages to load per conversation" : "Límite máximo de mensajes a cargar por conversación",
"Invalid message limit" : "Límite de mensajes no válido",
"Default country code" : "Código de país predeterminado",
"Contact ordering" : "Orden de contactos",
"Last message" : "Último mensaje",
"Label" : "Etiqueta", "Label" : "Etiqueta",
"Reverse ?" : "¿Invertir?",
"Notification settings" : "Configuración de notificaciones",
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar", "Disable" : "Deshabilitar"
"Are you sure you want to wipe all your messages ?" : "¿Estás seguro de que quieres borrar todos tus mensajes?",
"Reset all messages" : "Restablecer todos los mensajes",
"%s messages shown of %s messages stored in database." : "%s mensajes mostrados de %s mensajes almacenados en la base de datos.",
"Please select a conversation from the list to load it." : "Por favor, selecciona una conversación de la lista para cargarla."
}, },
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); "nplurals=2; plural=(n != 1);");

View File

@ -1,23 +1,10 @@
{ "translations": { { "translations": {
"Phone Sync" : "Sincronizar teléfono", "Phone Sync" : "Sincronizar teléfono",
"An app to sync SMS with your cloud" : "Una aplicación para sincronizar SMS con tu nube",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"Confirm" : "Confirmar", "Confirm" : "Confirmar",
"No contact found." : "No se encontraron contactos.",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"Max messages to load per conversation" : "Límite máximo de mensajes a cargar por conversación",
"Invalid message limit" : "Límite de mensajes no válido",
"Default country code" : "Código de país predeterminado",
"Contact ordering" : "Orden de contactos",
"Last message" : "Último mensaje",
"Label" : "Etiqueta", "Label" : "Etiqueta",
"Reverse ?" : "¿Invertir?",
"Notification settings" : "Configuración de notificaciones",
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar", "Disable" : "Deshabilitar"
"Are you sure you want to wipe all your messages ?" : "¿Estás seguro de que quieres borrar todos tus mensajes?", },"pluralForm" :"nplurals=2; plural=(n != 1);"
"Reset all messages" : "Restablecer todos los mensajes",
"%s messages shown of %s messages stored in database." : "%s mensajes mostrados de %s mensajes almacenados en la base de datos.",
"Please select a conversation from the list to load it." : "Por favor, selecciona una conversación de la lista para cargarla."
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
} }

View File

@ -9,4 +9,4 @@ OC.L10N.register(
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
}, },
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); "nplurals=2; plural=(n != 1);");

View File

@ -6,5 +6,5 @@
"Label" : "Etiqueta", "Label" : "Etiqueta",
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@ -9,4 +9,4 @@ OC.L10N.register(
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
}, },
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); "nplurals=2; plural=(n != 1);");

View File

@ -6,5 +6,5 @@
"Label" : "Etiqueta", "Label" : "Etiqueta",
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@ -10,4 +10,4 @@ OC.L10N.register(
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
}, },
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); "nplurals=2; plural=(n != 1);");

View File

@ -7,5 +7,5 @@
"Label" : "Etiqueta", "Label" : "Etiqueta",
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@ -9,4 +9,4 @@ OC.L10N.register(
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
}, },
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); "nplurals=2; plural=(n != 1);");

View File

@ -6,5 +6,5 @@
"Label" : "Etiqueta", "Label" : "Etiqueta",
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@ -9,4 +9,4 @@ OC.L10N.register(
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
}, },
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); "nplurals=2; plural=(n != 1);");

View File

@ -6,5 +6,5 @@
"Label" : "Etiqueta", "Label" : "Etiqueta",
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@ -9,4 +9,4 @@ OC.L10N.register(
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
}, },
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); "nplurals=2; plural=(n != 1);");

View File

@ -6,5 +6,5 @@
"Label" : "Etiqueta", "Label" : "Etiqueta",
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@ -9,4 +9,4 @@ OC.L10N.register(
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
}, },
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); "nplurals=2; plural=(n != 1);");

View File

@ -6,5 +6,5 @@
"Label" : "Etiqueta", "Label" : "Etiqueta",
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@ -9,4 +9,4 @@ OC.L10N.register(
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
}, },
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); "nplurals=2; plural=(n != 1);");

View File

@ -6,5 +6,5 @@
"Label" : "Etiqueta", "Label" : "Etiqueta",
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@ -9,4 +9,4 @@ OC.L10N.register(
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
}, },
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); "nplurals=2; plural=(n != 1);");

View File

@ -6,5 +6,5 @@
"Label" : "Etiqueta", "Label" : "Etiqueta",
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@ -9,4 +9,4 @@ OC.L10N.register(
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
}, },
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); "nplurals=2; plural=(n != 1);");

View File

@ -6,5 +6,5 @@
"Label" : "Etiqueta", "Label" : "Etiqueta",
"Enable" : "Habilitar", "Enable" : "Habilitar",
"Disable" : "Deshabilitar" "Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@ -1,25 +1,11 @@
OC.L10N.register( OC.L10N.register(
"ocsms", "ocsms",
{ {
"Phone Sync" : "Sünkroniseerimine telefoniga", "Phone Sync" : "Telefoniga Sünkroniseerimine",
"An app to sync SMS with your cloud" : "Rakendus, mis sünkroniseerb SMS-id pilve",
"Cancel" : "Loobu", "Cancel" : "Loobu",
"Confirm" : "Kinnita", "Confirm" : "Kinnita",
"No contact found." : "Kontakti ei leidu.", "Settings" : "Seaded",
"Settings" : "Seadistused",
"Max messages to load per conversation" : "Maksimaalne vestlusekohaselt laaditavate sõnumite arv",
"Invalid message limit" : "Vigane sõnumite arvu piir",
"Default country code" : "Vaikimisi maakood",
"Contact ordering" : "Kontaktide järjestus",
"Last message" : "Viimane sõnum",
"Label" : "Silt",
"Reverse ?" : "Kas pöörame tagurpidi järjestusse?",
"Notification settings" : "Teavituse seadistused",
"Enable" : "Lülita sisse", "Enable" : "Lülita sisse",
"Disable" : "Lülita välja", "Disable" : "Lülita välja"
"Are you sure you want to wipe all your messages ?" : "Kas sa oled kindel, et soovid kustutada kõik oma sõnumid?",
"Reset all messages" : "Lähtesta kõik sõnumid",
"%s messages shown of %s messages stored in database." : "%s sõnumit näidatud %s-st sõnumist on andmebaasi salvestatud.",
"Please select a conversation from the list to load it." : "Laadimiseks palun vali loendist vestlus."
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@ -1,23 +1,9 @@
{ "translations": { { "translations": {
"Phone Sync" : "Sünkroniseerimine telefoniga", "Phone Sync" : "Telefoniga Sünkroniseerimine",
"An app to sync SMS with your cloud" : "Rakendus, mis sünkroniseerb SMS-id pilve",
"Cancel" : "Loobu", "Cancel" : "Loobu",
"Confirm" : "Kinnita", "Confirm" : "Kinnita",
"No contact found." : "Kontakti ei leidu.", "Settings" : "Seaded",
"Settings" : "Seadistused",
"Max messages to load per conversation" : "Maksimaalne vestlusekohaselt laaditavate sõnumite arv",
"Invalid message limit" : "Vigane sõnumite arvu piir",
"Default country code" : "Vaikimisi maakood",
"Contact ordering" : "Kontaktide järjestus",
"Last message" : "Viimane sõnum",
"Label" : "Silt",
"Reverse ?" : "Kas pöörame tagurpidi järjestusse?",
"Notification settings" : "Teavituse seadistused",
"Enable" : "Lülita sisse", "Enable" : "Lülita sisse",
"Disable" : "Lülita välja", "Disable" : "Lülita välja"
"Are you sure you want to wipe all your messages ?" : "Kas sa oled kindel, et soovid kustutada kõik oma sõnumid?",
"Reset all messages" : "Lähtesta kõik sõnumid",
"%s messages shown of %s messages stored in database." : "%s sõnumit näidatud %s-st sõnumist on andmebaasi salvestatud.",
"Please select a conversation from the list to load it." : "Laadimiseks palun vali loendist vestlus."
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@ -9,7 +9,7 @@ OC.L10N.register(
"Settings" : "Ezarpenak", "Settings" : "Ezarpenak",
"Max messages to load per conversation" : "Hizketaldi bakoitzeko, gehienez zenbat mezu kargatu", "Max messages to load per conversation" : "Hizketaldi bakoitzeko, gehienez zenbat mezu kargatu",
"Invalid message limit" : "Mezu kopuruaren muga ez da zuzena", "Invalid message limit" : "Mezu kopuruaren muga ez da zuzena",
"Default country code" : "Herrialde-kode lehenetsia", "Default country code" : "Defektuzko herrialde-kodea",
"Contact ordering" : "Kontaktuak ordenatzea", "Contact ordering" : "Kontaktuak ordenatzea",
"Last message" : "Azken mezua", "Last message" : "Azken mezua",
"Label" : "Etiketa", "Label" : "Etiketa",
@ -19,7 +19,6 @@ OC.L10N.register(
"Disable" : "Desaktibatu", "Disable" : "Desaktibatu",
"Are you sure you want to wipe all your messages ?" : "Zure mezu guztiak ezabatu nahi dituzu?", "Are you sure you want to wipe all your messages ?" : "Zure mezu guztiak ezabatu nahi dituzu?",
"Reset all messages" : "Berrezarri mezu guztiak", "Reset all messages" : "Berrezarri mezu guztiak",
"%s messages shown of %s messages stored in database." : "Datu basean gordetako %s mezutik %s mezu erakusten dira.",
"Please select a conversation from the list to load it." : "Aukeratu zerrendako hizketaldi bat kargatzeko" "Please select a conversation from the list to load it." : "Aukeratu zerrendako hizketaldi bat kargatzeko"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@ -7,7 +7,7 @@
"Settings" : "Ezarpenak", "Settings" : "Ezarpenak",
"Max messages to load per conversation" : "Hizketaldi bakoitzeko, gehienez zenbat mezu kargatu", "Max messages to load per conversation" : "Hizketaldi bakoitzeko, gehienez zenbat mezu kargatu",
"Invalid message limit" : "Mezu kopuruaren muga ez da zuzena", "Invalid message limit" : "Mezu kopuruaren muga ez da zuzena",
"Default country code" : "Herrialde-kode lehenetsia", "Default country code" : "Defektuzko herrialde-kodea",
"Contact ordering" : "Kontaktuak ordenatzea", "Contact ordering" : "Kontaktuak ordenatzea",
"Last message" : "Azken mezua", "Last message" : "Azken mezua",
"Label" : "Etiketa", "Label" : "Etiketa",
@ -17,7 +17,6 @@
"Disable" : "Desaktibatu", "Disable" : "Desaktibatu",
"Are you sure you want to wipe all your messages ?" : "Zure mezu guztiak ezabatu nahi dituzu?", "Are you sure you want to wipe all your messages ?" : "Zure mezu guztiak ezabatu nahi dituzu?",
"Reset all messages" : "Berrezarri mezu guztiak", "Reset all messages" : "Berrezarri mezu guztiak",
"%s messages shown of %s messages stored in database." : "Datu basean gordetako %s mezutik %s mezu erakusten dira.",
"Please select a conversation from the list to load it." : "Aukeratu zerrendako hizketaldi bat kargatzeko" "Please select a conversation from the list to load it." : "Aukeratu zerrendako hizketaldi bat kargatzeko"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@ -19,7 +19,6 @@ OC.L10N.register(
"Disable" : "غیرفعال کردن", "Disable" : "غیرفعال کردن",
"Are you sure you want to wipe all your messages ?" : "آیا مطمئن هستید که می خواهید تمام پیام های خود را پاک کنید؟", "Are you sure you want to wipe all your messages ?" : "آیا مطمئن هستید که می خواهید تمام پیام های خود را پاک کنید؟",
"Reset all messages" : "تنظیم مجدد همه پیام ها", "Reset all messages" : "تنظیم مجدد همه پیام ها",
"%s messages shown of %s messages stored in database." : "%s پیام از %s پیام ذخیره شده در پایگاه داده نشان داده شده است.",
"Please select a conversation from the list to load it." : "لطفاً یک بار مکالمه را از لیست انتخاب کنید تا بارگیری شود." "Please select a conversation from the list to load it." : "لطفاً یک بار مکالمه را از لیست انتخاب کنید تا بارگیری شود."
}, },
"nplurals=2; plural=(n > 1);"); "nplurals=2; plural=(n > 1);");

View File

@ -17,7 +17,6 @@
"Disable" : "غیرفعال کردن", "Disable" : "غیرفعال کردن",
"Are you sure you want to wipe all your messages ?" : "آیا مطمئن هستید که می خواهید تمام پیام های خود را پاک کنید؟", "Are you sure you want to wipe all your messages ?" : "آیا مطمئن هستید که می خواهید تمام پیام های خود را پاک کنید؟",
"Reset all messages" : "تنظیم مجدد همه پیام ها", "Reset all messages" : "تنظیم مجدد همه پیام ها",
"%s messages shown of %s messages stored in database." : "%s پیام از %s پیام ذخیره شده در پایگاه داده نشان داده شده است.",
"Please select a conversation from the list to load it." : "لطفاً یک بار مکالمه را از لیست انتخاب کنید تا بارگیری شود." "Please select a conversation from the list to load it." : "لطفاً یک بار مکالمه را از لیست انتخاب کنید تا بارگیری شود."
},"pluralForm" :"nplurals=2; plural=(n > 1);" },"pluralForm" :"nplurals=2; plural=(n > 1);"
} }

View File

@ -8,11 +8,8 @@ OC.L10N.register(
"Settings" : "Asetukset", "Settings" : "Asetukset",
"Default country code" : "Oletusmaakoodi", "Default country code" : "Oletusmaakoodi",
"Contact ordering" : "Yhteystietojen järjestäminen", "Contact ordering" : "Yhteystietojen järjestäminen",
"Last message" : "Viimeinen viesti",
"Label" : "Nimike",
"Notification settings" : "Ilmoitusasetukset", "Notification settings" : "Ilmoitusasetukset",
"Enable" : "Ota käyttöön", "Enable" : "Ota käyttöön",
"Disable" : "Poista käytöstä", "Disable" : "Poista käytöstä"
"Please select a conversation from the list to load it." : "Valitse keskustelu listasta ladataksesi se"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@ -6,11 +6,8 @@
"Settings" : "Asetukset", "Settings" : "Asetukset",
"Default country code" : "Oletusmaakoodi", "Default country code" : "Oletusmaakoodi",
"Contact ordering" : "Yhteystietojen järjestäminen", "Contact ordering" : "Yhteystietojen järjestäminen",
"Last message" : "Viimeinen viesti",
"Label" : "Nimike",
"Notification settings" : "Ilmoitusasetukset", "Notification settings" : "Ilmoitusasetukset",
"Enable" : "Ota käyttöön", "Enable" : "Ota käyttöön",
"Disable" : "Poista käytöstä", "Disable" : "Poista käytöstä"
"Please select a conversation from the list to load it." : "Valitse keskustelu listasta ladataksesi se"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@ -7,7 +7,7 @@ OC.L10N.register(
"Confirm" : "Confirmer", "Confirm" : "Confirmer",
"No contact found." : "Aucun contact trouvé.", "No contact found." : "Aucun contact trouvé.",
"Settings" : "Paramètres", "Settings" : "Paramètres",
"Max messages to load per conversation" : "Nombre maximum de messages à charger par conversation", "Max messages to load per conversation" : "Nombre maximum de messages à charger par conversion",
"Invalid message limit" : "Limite de message invalide", "Invalid message limit" : "Limite de message invalide",
"Default country code" : "Code pays par défaut", "Default country code" : "Code pays par défaut",
"Contact ordering" : "Tri des contacts", "Contact ordering" : "Tri des contacts",
@ -22,4 +22,4 @@ OC.L10N.register(
"%s messages shown of %s messages stored in database." : "%s messages affichés sur %s messages stockés dans la base de données.", "%s messages shown of %s messages stored in database." : "%s messages affichés sur %s messages stockés dans la base de données.",
"Please select a conversation from the list to load it." : "Veuillez sélectionner une conversation dans la liste pour la charger." "Please select a conversation from the list to load it." : "Veuillez sélectionner une conversation dans la liste pour la charger."
}, },
"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); "nplurals=2; plural=(n > 1);");

View File

@ -5,7 +5,7 @@
"Confirm" : "Confirmer", "Confirm" : "Confirmer",
"No contact found." : "Aucun contact trouvé.", "No contact found." : "Aucun contact trouvé.",
"Settings" : "Paramètres", "Settings" : "Paramètres",
"Max messages to load per conversation" : "Nombre maximum de messages à charger par conversation", "Max messages to load per conversation" : "Nombre maximum de messages à charger par conversion",
"Invalid message limit" : "Limite de message invalide", "Invalid message limit" : "Limite de message invalide",
"Default country code" : "Code pays par défaut", "Default country code" : "Code pays par défaut",
"Contact ordering" : "Tri des contacts", "Contact ordering" : "Tri des contacts",
@ -19,5 +19,5 @@
"Reset all messages" : "Réinitialiser tous les messages", "Reset all messages" : "Réinitialiser tous les messages",
"%s messages shown of %s messages stored in database." : "%s messages affichés sur %s messages stockés dans la base de données.", "%s messages shown of %s messages stored in database." : "%s messages affichés sur %s messages stockés dans la base de données.",
"Please select a conversation from the list to load it." : "Veuillez sélectionner une conversation dans la liste pour la charger." "Please select a conversation from the list to load it." : "Veuillez sélectionner une conversation dans la liste pour la charger."
},"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" },"pluralForm" :"nplurals=2; plural=(n > 1);"
} }

View File

@ -1,25 +0,0 @@
OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Sioncronú Fón",
"An app to sync SMS with your cloud" : "App chun SMS a shioncronú le do scamall",
"Cancel" : "Cealaigh",
"Confirm" : "Deimhnigh",
"No contact found." : "Níor aimsíodh aon teagmhálaí.",
"Settings" : "Socruithe",
"Max messages to load per conversation" : "Uasmhéid teachtaireachtaí le luchtú in aghaidh an chomhrá",
"Invalid message limit" : "Teorainn teachtaireachta neamhbhailí",
"Default country code" : "Cód tíre réamhshocraithe",
"Contact ordering" : "Ordú teagmhála",
"Last message" : "An teachtaireacht dheireanach",
"Label" : "Lipéad",
"Reverse ?" : "Droim ar ais ?",
"Notification settings" : "Socruithe fógra",
"Enable" : "Cumasaigh",
"Disable" : "Díchumasaigh",
"Are you sure you want to wipe all your messages ?" : "An bhfuil tú cinnte gur mhaith leat do chuid teachtaireachtaí go léir a scriosadh ?",
"Reset all messages" : "Athshocraigh gach teachtaireacht",
"%s messages shown of %s messages stored in database." : "%s teachtaireachtaí a thaispeántar as %s teachtaireacht atá stóráilte sa bhunachar sonraí. ",
"Please select a conversation from the list to load it." : "Roghnaigh comhrá ón liosta chun é a lódáil."
},
"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);");

View File

@ -1,23 +0,0 @@
{ "translations": {
"Phone Sync" : "Sioncronú Fón",
"An app to sync SMS with your cloud" : "App chun SMS a shioncronú le do scamall",
"Cancel" : "Cealaigh",
"Confirm" : "Deimhnigh",
"No contact found." : "Níor aimsíodh aon teagmhálaí.",
"Settings" : "Socruithe",
"Max messages to load per conversation" : "Uasmhéid teachtaireachtaí le luchtú in aghaidh an chomhrá",
"Invalid message limit" : "Teorainn teachtaireachta neamhbhailí",
"Default country code" : "Cód tíre réamhshocraithe",
"Contact ordering" : "Ordú teagmhála",
"Last message" : "An teachtaireacht dheireanach",
"Label" : "Lipéad",
"Reverse ?" : "Droim ar ais ?",
"Notification settings" : "Socruithe fógra",
"Enable" : "Cumasaigh",
"Disable" : "Díchumasaigh",
"Are you sure you want to wipe all your messages ?" : "An bhfuil tú cinnte gur mhaith leat do chuid teachtaireachtaí go léir a scriosadh ?",
"Reset all messages" : "Athshocraigh gach teachtaireacht",
"%s messages shown of %s messages stored in database." : "%s teachtaireachtaí a thaispeántar as %s teachtaireacht atá stóráilte sa bhunachar sonraí. ",
"Please select a conversation from the list to load it." : "Roghnaigh comhrá ón liosta chun é a lódáil."
},"pluralForm" :"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);"
}

View File

@ -1,8 +0,0 @@
OC.L10N.register(
"ocsms",
{
"Cancel" : "Sguir dheth",
"Settings" : "Roghainnean",
"Disable" : "Cuir à comas"
},
"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;");

View File

@ -1,6 +0,0 @@
{ "translations": {
"Cancel" : "Sguir dheth",
"Settings" : "Roghainnean",
"Disable" : "Cuir à comas"
},"pluralForm" :"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;"
}

View File

@ -5,7 +5,7 @@ OC.L10N.register(
"An app to sync SMS with your cloud" : "Unha aplicación para sincronizar os SMS coa súa nube", "An app to sync SMS with your cloud" : "Unha aplicación para sincronizar os SMS coa súa nube",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"Confirm" : "Confirmar", "Confirm" : "Confirmar",
"No contact found." : "Non se atopou ningún contacto.", "No contact found." : "Non se atopaou ningún contacto.",
"Settings" : "Axustes", "Settings" : "Axustes",
"Max messages to load per conversation" : "Máximo de mensaxes a cargar por conversa", "Max messages to load per conversation" : "Máximo de mensaxes a cargar por conversa",
"Invalid message limit" : "Límite incorrecto de mensaxes", "Invalid message limit" : "Límite incorrecto de mensaxes",

View File

@ -3,7 +3,7 @@
"An app to sync SMS with your cloud" : "Unha aplicación para sincronizar os SMS coa súa nube", "An app to sync SMS with your cloud" : "Unha aplicación para sincronizar os SMS coa súa nube",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"Confirm" : "Confirmar", "Confirm" : "Confirmar",
"No contact found." : "Non se atopou ningún contacto.", "No contact found." : "Non se atopaou ningún contacto.",
"Settings" : "Axustes", "Settings" : "Axustes",
"Max messages to load per conversation" : "Máximo de mensaxes a cargar por conversa", "Max messages to load per conversation" : "Máximo de mensaxes a cargar por conversa",
"Invalid message limit" : "Límite incorrecto de mensaxes", "Invalid message limit" : "Límite incorrecto de mensaxes",

View File

@ -21,4 +21,4 @@ OC.L10N.register(
"Reset all messages" : "איפוס כל ההודעות", "Reset all messages" : "איפוס כל ההודעות",
"Please select a conversation from the list to load it." : "נא לבחור דיון מהרשימה כדי לטעון אותו." "Please select a conversation from the list to load it." : "נא לבחור דיון מהרשימה כדי לטעון אותו."
}, },
"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;"); "nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;");

View File

@ -18,5 +18,5 @@
"Are you sure you want to wipe all your messages ?" : "למחוק את כל ההודעות שלך?", "Are you sure you want to wipe all your messages ?" : "למחוק את כל ההודעות שלך?",
"Reset all messages" : "איפוס כל ההודעות", "Reset all messages" : "איפוס כל ההודעות",
"Please select a conversation from the list to load it." : "נא לבחור דיון מהרשימה כדי לטעון אותו." "Please select a conversation from the list to load it." : "נא לבחור דיון מהרשימה כדי לטעון אותו."
},"pluralForm" :"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;" },"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"
} }

View File

@ -1,6 +0,0 @@
OC.L10N.register(
"ocsms",
{
"Cancel" : "Cancel"
},
"nplurals=2; plural=(n != 1);");

View File

@ -1,4 +0,0 @@
{ "translations": {
"Cancel" : "Cancel"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -1,7 +0,0 @@
OC.L10N.register(
"ocsms",
{
"Cancel" : "Cancel",
"Enable" : "zmóžnić"
},
"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);");

View File

@ -1,5 +0,0 @@
{ "translations": {
"Cancel" : "Cancel",
"Enable" : "zmóžnić"
},"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"
}

View File

@ -1,25 +1,23 @@
OC.L10N.register( OC.L10N.register(
"ocsms", "ocsms",
{ {
"Phone Sync" : "Telefonos szinkronizáció", "Phone Sync" : "Telefon szinkronizáció",
"An app to sync SMS with your cloud" : "Az alkalmazás szinkronizálja az SMS-eket a felhőjével", "An app to sync SMS with your cloud" : "Az alkalmazás szinkronizálja az SMS-eket a felhőddel",
"Cancel" : "Mégse", "Cancel" : "Mégse",
"Confirm" : "Megerősítés", "Confirm" : "Megerősít",
"No contact found." : "Nem található névjegy.", "No contact found." : "Nem található névjegy.",
"Settings" : "Beállítások", "Settings" : "Beállítások",
"Max messages to load per conversation" : "A legtöbb betölthető üzenet beszélgetésenként", "Invalid message limit" : "Érvénytelen üzenet korlát",
"Invalid message limit" : "Érvénytelen üzenetkorlát",
"Default country code" : "Alapértelmezett országkód", "Default country code" : "Alapértelmezett országkód",
"Contact ordering" : "Névjegyek rendezése", "Contact ordering" : "Névjegyek rendezése",
"Last message" : "Utolsó üzenet", "Last message" : "Utolsó üzenet",
"Label" : "Címke", "Label" : "Címke",
"Reverse ?" : "Fordítva?", "Reverse ?" : "Fordítva ?",
"Notification settings" : "Értesítési beállítások", "Notification settings" : "Értesítés beállításai",
"Enable" : "Engedélyezés", "Enable" : "Engedélyezés",
"Disable" : "Letiltás", "Disable" : "Letiltás",
"Are you sure you want to wipe all your messages ?" : "Biztos, hogy törli az összes üzenetet?", "Are you sure you want to wipe all your messages ?" : "Biztos benne, hogy törlöd az összes üzeneted?",
"Reset all messages" : "Összes üzenet visszaállítása", "Reset all messages" : "Összes üzenet visszaállítása",
"%s messages shown of %s messages stored in database." : "%s üzenet megjelenítve az adatbázisban tárolt %s üzenetből.", "Please select a conversation from the list to load it." : "Betöltéshez kérlek válassz egy beszélgetést a listából."
"Please select a conversation from the list to load it." : "A betöltéshez válasszon egy beszélgetést a listából."
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@ -1,23 +1,21 @@
{ "translations": { { "translations": {
"Phone Sync" : "Telefonos szinkronizáció", "Phone Sync" : "Telefon szinkronizáció",
"An app to sync SMS with your cloud" : "Az alkalmazás szinkronizálja az SMS-eket a felhőjével", "An app to sync SMS with your cloud" : "Az alkalmazás szinkronizálja az SMS-eket a felhőddel",
"Cancel" : "Mégse", "Cancel" : "Mégse",
"Confirm" : "Megerősítés", "Confirm" : "Megerősít",
"No contact found." : "Nem található névjegy.", "No contact found." : "Nem található névjegy.",
"Settings" : "Beállítások", "Settings" : "Beállítások",
"Max messages to load per conversation" : "A legtöbb betölthető üzenet beszélgetésenként", "Invalid message limit" : "Érvénytelen üzenet korlát",
"Invalid message limit" : "Érvénytelen üzenetkorlát",
"Default country code" : "Alapértelmezett országkód", "Default country code" : "Alapértelmezett országkód",
"Contact ordering" : "Névjegyek rendezése", "Contact ordering" : "Névjegyek rendezése",
"Last message" : "Utolsó üzenet", "Last message" : "Utolsó üzenet",
"Label" : "Címke", "Label" : "Címke",
"Reverse ?" : "Fordítva?", "Reverse ?" : "Fordítva ?",
"Notification settings" : "Értesítési beállítások", "Notification settings" : "Értesítés beállításai",
"Enable" : "Engedélyezés", "Enable" : "Engedélyezés",
"Disable" : "Letiltás", "Disable" : "Letiltás",
"Are you sure you want to wipe all your messages ?" : "Biztos, hogy törli az összes üzenetet?", "Are you sure you want to wipe all your messages ?" : "Biztos benne, hogy törlöd az összes üzeneted?",
"Reset all messages" : "Összes üzenet visszaállítása", "Reset all messages" : "Összes üzenet visszaállítása",
"%s messages shown of %s messages stored in database." : "%s üzenet megjelenítve az adatbázisban tárolt %s üzenetből.", "Please select a conversation from the list to load it." : "Betöltéshez kérlek válassz egy beszélgetést a listából."
"Please select a conversation from the list to load it." : "A betöltéshez válasszon egy beszélgetést a listából."
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@ -5,7 +5,6 @@ OC.L10N.register(
"Cancel" : "Membatalkan", "Cancel" : "Membatalkan",
"Confirm" : "Konfirmasi", "Confirm" : "Konfirmasi",
"Settings" : "Setelan", "Settings" : "Setelan",
"Notification settings" : "Pengaturan notifkasi",
"Enable" : "aktifkan", "Enable" : "aktifkan",
"Disable" : "Nonaktifkan" "Disable" : "Nonaktifkan"
}, },

View File

@ -3,7 +3,6 @@
"Cancel" : "Membatalkan", "Cancel" : "Membatalkan",
"Confirm" : "Konfirmasi", "Confirm" : "Konfirmasi",
"Settings" : "Setelan", "Settings" : "Setelan",
"Notification settings" : "Pengaturan notifkasi",
"Enable" : "aktifkan", "Enable" : "aktifkan",
"Disable" : "Nonaktifkan" "Disable" : "Nonaktifkan"
},"pluralForm" :"nplurals=1; plural=0;" },"pluralForm" :"nplurals=1; plural=0;"

View File

@ -1,6 +0,0 @@
OC.L10N.register(
"ocsms",
{
"Cancel" : "Cancel"
},
"nplurals=1; plural=0;");

View File

@ -1,4 +0,0 @@
{ "translations": {
"Cancel" : "Cancel"
},"pluralForm" :"nplurals=1; plural=0;"
}

View File

@ -22,4 +22,4 @@ OC.L10N.register(
"%s messages shown of %s messages stored in database." : "%s messaggi mostrati di %s messaggi archiviati nel database.", "%s messages shown of %s messages stored in database." : "%s messaggi mostrati di %s messaggi archiviati nel database.",
"Please select a conversation from the list to load it." : "Seleziona una conversazione dall'elenco per caricarla." "Please select a conversation from the list to load it." : "Seleziona una conversazione dall'elenco per caricarla."
}, },
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); "nplurals=2; plural=(n != 1);");

View File

@ -19,5 +19,5 @@
"Reset all messages" : "Ripristina tutti i messaggi", "Reset all messages" : "Ripristina tutti i messaggi",
"%s messages shown of %s messages stored in database." : "%s messaggi mostrati di %s messaggi archiviati nel database.", "%s messages shown of %s messages stored in database." : "%s messaggi mostrati di %s messaggi archiviati nel database.",
"Please select a conversation from the list to load it." : "Seleziona una conversazione dall'elenco per caricarla." "Please select a conversation from the list to load it." : "Seleziona una conversazione dall'elenco per caricarla."
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@ -19,7 +19,6 @@ OC.L10N.register(
"Disable" : "無効にする", "Disable" : "無効にする",
"Are you sure you want to wipe all your messages ?" : "すべてのメッセージを消去してもよろしいですか?", "Are you sure you want to wipe all your messages ?" : "すべてのメッセージを消去してもよろしいですか?",
"Reset all messages" : "すべてのメッセージをリセットする", "Reset all messages" : "すべてのメッセージをリセットする",
"%s messages shown of %s messages stored in database." : "データベースに格納されている%sメッセージの%sメッセージを表示",
"Please select a conversation from the list to load it." : "読み込む会話をリストから選択してください。" "Please select a conversation from the list to load it." : "読み込む会話をリストから選択してください。"
}, },
"nplurals=1; plural=0;"); "nplurals=1; plural=0;");

View File

@ -17,7 +17,6 @@
"Disable" : "無効にする", "Disable" : "無効にする",
"Are you sure you want to wipe all your messages ?" : "すべてのメッセージを消去してもよろしいですか?", "Are you sure you want to wipe all your messages ?" : "すべてのメッセージを消去してもよろしいですか?",
"Reset all messages" : "すべてのメッセージをリセットする", "Reset all messages" : "すべてのメッセージをリセットする",
"%s messages shown of %s messages stored in database." : "データベースに格納されている%sメッセージの%sメッセージを表示",
"Please select a conversation from the list to load it." : "読み込む会話をリストから選択してください。" "Please select a conversation from the list to load it." : "読み込む会話をリストから選択してください。"
},"pluralForm" :"nplurals=1; plural=0;" },"pluralForm" :"nplurals=1; plural=0;"
} }

Some files were not shown because too many files have changed in this diff Show More