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

Compare commits

..

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

229 changed files with 588 additions and 2224 deletions

View File

@ -12,13 +12,13 @@ SRC_DIR=`dirname $0`"/.."
RELEASE_VERSION=${1}
echo "Release version set to ${RELEASE_VERSION}"
#which npm > /dev/null
#which gulp > /dev/null
#which wget > /dev/null
which npm > /dev/null
which gulp > /dev/null
which wget > /dev/null
sed -ri 's/(.*)<version>(.+)<\/version>/\1<version>'${RELEASE_VERSION}'<\/version>/g' ${SRC_DIR}/appinfo/info.xml
npm install
node_modules/gulp/bin/gulp.js uglify
gulp uglify
git commit -am "Release "${RELEASE_VERSION}
git tag ${RELEASE_VERSION}
git push

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]
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
host = https://www.transifex.com
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
source_file = translationfiles/templates/ocsms.pot
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>
<summary>An app to sync SMS with your cloud</summary>
<description>An app to sync SMS with your cloud</description>
<licence>agpl</licence>
<author>Loic Blot</author>
<author>e-alfred</author>
<version>2.2.0</version>
<licence>agpl</licence>
<version>2.1.6</version>
<category>multimedia</category>
<category>tools</category>
<dependencies>
<nextcloud min-version="18" max-version="20" />
<nextcloud min-version="14" max-version="17" />
</dependencies>
<website>https://github.com/nextcloud/ocsms</website>
@ -28,12 +27,4 @@
<step>OCA\OcSms\Migration\FixConversationReadStates</step>
</post-migration>
</repair-steps>
<navigations>
<navigation>
<id>ocsms</id>
<name>Phone Sync</name>
<route>ocsms.sms.index</route>
<icon>app.svg</icon>
</navigation>
</navigations>
</info>

View File

@ -3,10 +3,6 @@
width: 100%;
}
body.dark #app {
color: var(--color-background-dark);
}
#app-navigation {
box-sizing: border-box;
border-left: 1px solid #ddd;

View File

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

2
js/app.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -26,52 +26,4 @@ function toBool(str) {
return false;
}
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,12 +1,6 @@
OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Foonsinchronisering",
"Cancel" : "Kanselleer",
"Confirm" : "Bevestig",
"Settings" : "Instellings",
"Label" : "Etiket",
"Enable" : "Aktiveer",
"Disable" : "Deaktiveer"
"Phone Sync" : "Foonsinchronisering"
},
"nplurals=2; plural=(n != 1);");

View File

@ -1,10 +1,4 @@
{ "translations": {
"Phone Sync" : "Foonsinchronisering",
"Cancel" : "Kanselleer",
"Confirm" : "Bevestig",
"Settings" : "Instellings",
"Label" : "Etiket",
"Enable" : "Aktiveer",
"Disable" : "Deaktiveer"
"Phone Sync" : "Foonsinchronisering"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

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,10 @@
OC.L10N.register(
"ocsms",
{
"Phone Sync" : "مُزامنة الهاتف",
"An app to sync SMS with your cloud" : "تطبيق لمزامنة رسالة SMS إلى مخزنك السحابي",
"Cancel" : "إلغاء",
"Confirm" : "تأكيد",
"No contact found." : "لا توجد أي جهة اتصال",
"Settings" : "الإعدادات",
"Max messages to load per conversation" : "أقصى عدد من الرسائل لكل محادثة",
"Invalid message limit" : "الحد الأقصى للرسائل غير مقبول",
"Default country code" : "الرمز الافتراضي للدولة",
"Contact ordering" : "ترتيب جهات الاتصال",
"Last message" : "آخر رسالة",
"Label" : "تسمية",
"Reverse ?" : "عكسي؟",
"Notification settings" : "إعداد الإشعارات",
"Enable" : "تفعيل",
"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." : "رجاءً، اختر محادثةً من القائمة لرفعها."
"Disable" : "مُعطّل"
},
"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,8 @@
{ "translations": {
"Phone Sync" : "مُزامنة الهاتف",
"An app to sync SMS with your cloud" : "تطبيق لمزامنة رسالة SMS إلى مخزنك السحابي",
"Cancel" : "إلغاء",
"Confirm" : "تأكيد",
"No contact found." : "لا توجد أي جهة اتصال",
"Settings" : "الإعدادات",
"Max messages to load per conversation" : "أقصى عدد من الرسائل لكل محادثة",
"Invalid message limit" : "الحد الأقصى للرسائل غير مقبول",
"Default country code" : "الرمز الافتراضي للدولة",
"Contact ordering" : "ترتيب جهات الاتصال",
"Last message" : "آخر رسالة",
"Label" : "تسمية",
"Reverse ?" : "عكسي؟",
"Notification settings" : "إعداد الإشعارات",
"Enable" : "تفعيل",
"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." : "رجاءً، اختر محادثةً من القائمة لرفعها."
"Disable" : "مُعطّل"
},"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,14 +1,6 @@
OC.L10N.register(
"ocsms",
{
"An app to sync SMS with your cloud" : "Una aplicación pa sincronizar los SMS cola nube",
"Cancel" : "Encaboxar",
"Confirm" : "Confirmar",
"No contact found." : "Nun s'atopó nengún contautu.",
"Settings" : "Configuración",
"Invalid message limit" : "La llende de mensaxes ye inválida",
"Notification settings" : "Configuración de los avisos",
"Enable" : "Activar",
"Disable" : "Desactivar"
"Phone Sync" : "Sincronización de teléfonu"
},
"nplurals=2; plural=(n != 1);");

View File

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

View File

@ -1,10 +0,0 @@
OC.L10N.register(
"ocsms",
{
"Cancel" : "Dayandır",
"Confirm" : "Təsdiq edin",
"Settings" : "Quraşdırmalar",
"Enable" : "İşə sal",
"Disable" : "Dayandır"
},
"nplurals=2; plural=(n != 1);");

View File

@ -1,8 +0,0 @@
{ "translations": {
"Cancel" : "Dayandır",
"Confirm" : "Təsdiq edin",
"Settings" : "Quraşdırmalar",
"Enable" : "İşə sal",
"Disable" : "Dayandır"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -1,7 +0,0 @@
OC.L10N.register(
"ocsms",
{
"Cancel" : "Cancel",
"Settings" : "Налады"
},
"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);");

View File

@ -1,5 +0,0 @@
{ "translations": {
"Cancel" : "Cancel",
"Settings" : "Налады"
},"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"
}

View File

@ -2,24 +2,7 @@ OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Синхронизиране на телефона",
"An app to sync SMS with your cloud" : "Приложение за синхронизиране на SMS с вашия облак",
"Cancel" : "Отказ",
"Confirm" : "Потвърди",
"No contact found." : "Няма намерен контакт.",
"Settings" : "Настройки",
"Max messages to load per conversation" : "Максимален брой съобщения за зареждане за един разговор",
"Invalid message limit" : "Невалидно ограничение за съобщения",
"Default country code" : "Код на държавата по подразбиране",
"Contact ordering" : "Контакт на поръчката",
"Last message" : "Последно съобщение",
"Label" : "Име",
"Reverse ?" : "Осчетоводяване?",
"Notification settings" : "Настройки на известие",
"Enable" : "Включване",
"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." : "Моля, изберете разговор от списъка, за да го заредите."
"Settings" : "Настройки"
},
"nplurals=2; plural=(n != 1);");

View File

@ -1,23 +1,6 @@
{ "translations": {
"Phone Sync" : "Синхронизиране на телефона",
"An app to sync SMS with your cloud" : "Приложение за синхронизиране на SMS с вашия облак",
"Cancel" : "Отказ",
"Confirm" : "Потвърди",
"No contact found." : "Няма намерен контакт.",
"Settings" : "Настройки",
"Max messages to load per conversation" : "Максимален брой съобщения за зареждане за един разговор",
"Invalid message limit" : "Невалидно ограничение за съобщения",
"Default country code" : "Код на държавата по подразбиране",
"Contact ordering" : "Контакт на поръчката",
"Last message" : "Последно съобщение",
"Label" : "Име",
"Reverse ?" : "Осчетоводяване?",
"Notification settings" : "Настройки на известие",
"Enable" : "Включване",
"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." : "Моля, изберете разговор от списъка, за да го заредите."
"Settings" : "Настройки"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -1,9 +0,0 @@
OC.L10N.register(
"ocsms",
{
"Cancel" : "বাতির",
"Settings" : "সেটিংস",
"Enable" : "সক্রিয় ",
"Disable" : "নিষ্ক্রিয়"
},
"nplurals=2; plural=(n != 1);");

View File

@ -1,7 +0,0 @@
{ "translations": {
"Cancel" : "বাতির",
"Settings" : "সেটিংস",
"Enable" : "সক্রিয় ",
"Disable" : "নিষ্ক্রিয়"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -1,25 +0,0 @@
OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Kemprenn hezouk",
"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);");

View File

@ -1,23 +0,0 @@
{ "translations": {
"Phone Sync" : "Kemprenn hezouk",
"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);"
}

View File

@ -1,9 +0,0 @@
OC.L10N.register(
"ocsms",
{
"Cancel" : "Otkaži",
"Settings" : "Podešavanje",
"Enable" : "Omogući",
"Disable" : "Onemogući"
},
"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);");

View File

@ -1,7 +0,0 @@
{ "translations": {
"Cancel" : "Otkaži",
"Settings" : "Podešavanje",
"Enable" : "Omogući",
"Disable" : "Onemogući"
},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"
}

View File

@ -2,24 +2,24 @@ OC.L10N.register(
"ocsms",
{
"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",
"Confirm" : "Confirma",
"No contact found." : "No s'ha trobat cap contacte.",
"No contact found." : "No s'ha trobat el contacte",
"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",
"Default country code" : "Codi de país per defecte",
"Contact ordering" : "Ordre dels contactes",
"Default country code" : "Codi del país predeterminat",
"Contact ordering" : "Ordenació de contactes",
"Last message" : "Darrer missatge",
"Label" : "Etiqueta",
"Reverse ?" : "Inverteix",
"Reverse ?" : "Inverteix?",
"Notification settings" : "Paràmetres de les notificacions",
"Enable" : "Habilita",
"Disable" : "Inhabilita",
"Are you sure you want to wipe all your messages ?" : "Segur que voleu esborrar tots els vostres missatges?",
"Reset all messages" : "Reinicialitza 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." : "Seleccioneu una conversa de la llista per a carregar-la."
"Enable" : "Activa",
"Disable" : "Desactiva",
"Are you sure you want to wipe all your messages ?" : "Esteu segurs que voleu suprimir tots els vostres missatges?",
"Reset all messages" : "Restableix tots els missatges",
"%s message(s) shown of %s message(s) stored in database." : "%s missatge(s) mostrat(s) de %s missatges(s) emmagatzemat(s) 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."
},
"nplurals=2; plural=(n != 1);");

View File

@ -1,23 +1,23 @@
{ "translations": {
"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",
"Confirm" : "Confirma",
"No contact found." : "No s'ha trobat cap contacte.",
"No contact found." : "No s'ha trobat el contacte",
"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",
"Default country code" : "Codi de país per defecte",
"Contact ordering" : "Ordre dels contactes",
"Default country code" : "Codi del país predeterminat",
"Contact ordering" : "Ordenació de contactes",
"Last message" : "Darrer missatge",
"Label" : "Etiqueta",
"Reverse ?" : "Inverteix",
"Reverse ?" : "Inverteix?",
"Notification settings" : "Paràmetres de les notificacions",
"Enable" : "Habilita",
"Disable" : "Inhabilita",
"Are you sure you want to wipe all your messages ?" : "Segur que voleu esborrar tots els vostres missatges?",
"Reset all messages" : "Reinicialitza 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." : "Seleccioneu una conversa de la llista per a carregar-la."
"Enable" : "Activa",
"Disable" : "Desactiva",
"Are you sure you want to wipe all your messages ?" : "Esteu segurs que voleu suprimir tots els vostres missatges?",
"Reset all messages" : "Restableix tots els missatges",
"%s message(s) shown of %s message(s) stored in database." : "%s missatge(s) mostrat(s) de %s missatges(s) emmagatzemat(s) 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."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -1,11 +1,11 @@
OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Synchr. s telefonem",
"Phone Sync" : "Synchronizace s telefonem",
"An app to sync SMS with your cloud" : "Aplikace pro synchronizaci SMS s vaším cloudem",
"Cancel" : "Storno",
"Confirm" : "Potvrdit",
"No contact found." : "Nenalezen žádný kontakt.",
"No contact found." : "Nebyl nalezen žádný kontakt.",
"Settings" : "Nastavení",
"Max messages to load per conversation" : "Pro každou z konverzací načíst zpráv nejvýše",
"Invalid message limit" : "Neplatný limit zprávy",
@ -13,13 +13,13 @@ OC.L10N.register(
"Contact ordering" : "Řazení kontaktů",
"Last message" : "Poslední zpráva",
"Label" : "Štítek",
"Reverse ?" : "Obrátit?",
"Notification settings" : "Nastavení upozorňování",
"Reverse ?" : "Obrátit ?",
"Notification settings" : "Nastavení oznamování",
"Enable" : "Zapnout",
"Disable" : "Vypnout",
"Are you sure you want to wipe all your messages ?" : "Opravdu chcete vymazat všechny své zprávy?",
"Reset all messages" : "Resetovat všechny zprávy",
"%s messages shown of %s messages stored in database." : "Zobrazeno %s zpráv ze %s zpráv uložených v databázi.",
"%s message(s) shown of %s message(s) stored in database." : "Zobrazeno %s zpráv z %s uložených v databázi.",
"Please select a conversation from the list to load it." : "Pro načtení konverzace ji vyberte ze seznamu."
},
"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;");

View File

@ -1,9 +1,9 @@
{ "translations": {
"Phone Sync" : "Synchr. s telefonem",
"Phone Sync" : "Synchronizace s telefonem",
"An app to sync SMS with your cloud" : "Aplikace pro synchronizaci SMS s vaším cloudem",
"Cancel" : "Storno",
"Confirm" : "Potvrdit",
"No contact found." : "Nenalezen žádný kontakt.",
"No contact found." : "Nebyl nalezen žádný kontakt.",
"Settings" : "Nastavení",
"Max messages to load per conversation" : "Pro každou z konverzací načíst zpráv nejvýše",
"Invalid message limit" : "Neplatný limit zprávy",
@ -11,13 +11,13 @@
"Contact ordering" : "Řazení kontaktů",
"Last message" : "Poslední zpráva",
"Label" : "Štítek",
"Reverse ?" : "Obrátit?",
"Notification settings" : "Nastavení upozorňování",
"Reverse ?" : "Obrátit ?",
"Notification settings" : "Nastavení oznamování",
"Enable" : "Zapnout",
"Disable" : "Vypnout",
"Are you sure you want to wipe all your messages ?" : "Opravdu chcete vymazat všechny své zprávy?",
"Reset all messages" : "Resetovat všechny zprávy",
"%s messages shown of %s messages stored in database." : "Zobrazeno %s zpráv ze %s zpráv uložených v databázi.",
"%s message(s) shown of %s message(s) stored in database." : "Zobrazeno %s zpráv z %s uložených v databázi.",
"Please select a conversation from the list to load it." : "Pro načtení konverzace ji vyberte ze seznamu."
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"
}

View File

@ -1,9 +0,0 @@
OC.L10N.register(
"ocsms",
{
"Cancel" : "Diddymu",
"Confirm" : "Cadarnhau",
"Settings" : "Gosodiadau",
"Disable" : "Analluogi"
},
"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;");

View File

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

View File

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

View File

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

View File

@ -2,7 +2,7 @@ OC.L10N.register(
"ocsms",
{
"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",
"Confirm" : "Bestätigen",
"No contact found." : "Kein Kontakt gefunden.",
@ -17,9 +17,9 @@ OC.L10N.register(
"Notification settings" : "Benachrichtigungseinstellungen",
"Enable" : "Aktivieren",
"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",
"%s messages shown of %s messages stored in database." : "%s Nachrichten angezeigt von %s in der Datenbank gespeicherten Nachrichten",
"%s message(s) shown of %s message(s) stored in database." : "%s Nachricht(en) angezeigt von %s in der Datenbank gespeicherte Nachricht(en)",
"Please select a conversation from the list to load it." : "Wähle eine Unterhaltung zum Laden aus der Liste aus."
},
"nplurals=2; plural=(n != 1);");

View File

@ -1,6 +1,6 @@
{ "translations": {
"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",
"Confirm" : "Bestätigen",
"No contact found." : "Kein Kontakt gefunden.",
@ -15,9 +15,9 @@
"Notification settings" : "Benachrichtigungseinstellungen",
"Enable" : "Aktivieren",
"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",
"%s messages shown of %s messages stored in database." : "%s Nachrichten angezeigt von %s in der Datenbank gespeicherten Nachrichten",
"%s message(s) shown of %s message(s) stored in database." : "%s Nachricht(en) angezeigt von %s in der Datenbank gespeicherte Nachricht(en)",
"Please select a conversation from the list to load it." : "Wähle eine Unterhaltung zum Laden aus der Liste aus."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -2,7 +2,7 @@ OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Telefon-Sync",
"An app to sync SMS with your cloud" : "Eine App, die SMSen mit Ihrer Cloud synchronisiert",
"An app to sync SMS with your cloud" : "Eine App die SMSen mit Ihrer Cloud synchronisiert",
"Cancel" : "Abbrechen",
"Confirm" : "Bestätigen",
"No contact found." : "Kein Kontakt gefunden.",
@ -19,7 +19,7 @@ OC.L10N.register(
"Disable" : "Deaktivieren",
"Are you sure you want to wipe all your messages ?" : "Möchten Sie wirklich all Ihre Nachrichten löschen?",
"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 message(s) shown of %s message(s) stored in database." : "%s Nachricht(en) angezeigt von %s in der Datenbank gespeicherte Nachricht(en)",
"Please select a conversation from the list to load it." : "Wähle eine Unterhaltung zum Laden aus der Liste aus."
},
"nplurals=2; plural=(n != 1);");

View File

@ -1,6 +1,6 @@
{ "translations": {
"Phone Sync" : "Telefon-Sync",
"An app to sync SMS with your cloud" : "Eine App, die SMSen mit Ihrer Cloud synchronisiert",
"An app to sync SMS with your cloud" : "Eine App die SMSen mit Ihrer Cloud synchronisiert",
"Cancel" : "Abbrechen",
"Confirm" : "Bestätigen",
"No contact found." : "Kein Kontakt gefunden.",
@ -17,7 +17,7 @@
"Disable" : "Deaktivieren",
"Are you sure you want to wipe all your messages ?" : "Möchten Sie wirklich all Ihre Nachrichten löschen?",
"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 message(s) shown of %s message(s) stored in database." : "%s Nachricht(en) angezeigt von %s in der Datenbank gespeicherte Nachricht(en)",
"Please select a conversation from the list to load it." : "Wähle eine Unterhaltung zum Laden aus der Liste aus."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -2,24 +2,12 @@ OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Συγχρονισμός τηλεφώνου",
"An app to sync SMS with your cloud" : "Εφαρμογή συγχρονισμού SMS με το σύννεφό σας",
"Cancel" : "Ακύρωση",
"Confirm" : "Επιβεβαίωση",
"No contact found." : "Δεν βρέθηκε επαφή.",
"Settings" : "Ρυθμίσεις",
"Max messages to load per conversation" : "Μέγιστα μηνύματα εμφάνισης ανά συζήτηση",
"Invalid message limit" : "Μη έγκυρο όριο μηνυμάτων",
"Default country code" : "Προεπιλεγμένος κωδικός χώρας",
"Contact ordering" : "Contact ordering",
"Last message" : "Τελευταίο μήνυμα",
"Label" : "Ετικέτα",
"Reverse ?" : "Αντιστροφή ;",
"Notification settings" : "Ρυθμίσεις ειδοποιήσεων",
"Enable" : "Ενεργοποίηση",
"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." : "Παρακαλώ επιλέξτε συνομιλία από την λίστα για εμφάνιση."
"Disable" : "Απενεργοποίηση"
},
"nplurals=2; plural=(n != 1);");

View File

@ -1,23 +1,11 @@
{ "translations": {
"Phone Sync" : "Συγχρονισμός τηλεφώνου",
"An app to sync SMS with your cloud" : "Εφαρμογή συγχρονισμού SMS με το σύννεφό σας",
"Cancel" : "Ακύρωση",
"Confirm" : "Επιβεβαίωση",
"No contact found." : "Δεν βρέθηκε επαφή.",
"Settings" : "Ρυθμίσεις",
"Max messages to load per conversation" : "Μέγιστα μηνύματα εμφάνισης ανά συζήτηση",
"Invalid message limit" : "Μη έγκυρο όριο μηνυμάτων",
"Default country code" : "Προεπιλεγμένος κωδικός χώρας",
"Contact ordering" : "Contact ordering",
"Last message" : "Τελευταίο μήνυμα",
"Label" : "Ετικέτα",
"Reverse ?" : "Αντιστροφή ;",
"Notification settings" : "Ρυθμίσεις ειδοποιήσεων",
"Enable" : "Ενεργοποίηση",
"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." : "Παρακαλώ επιλέξτε συνομιλία από την λίστα για εμφάνιση."
"Disable" : "Απενεργοποίηση"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -2,24 +2,6 @@ OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Phone Sync",
"An app to sync SMS with your cloud" : "An app to sync SMS with your cloud",
"Cancel" : "Cancel",
"Confirm" : "Confirm",
"No contact found." : "No contact found.",
"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",
"Reverse ?" : "Reverse ?",
"Notification settings" : "Notification settings",
"Enable" : "Enable",
"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."
"An app to sync SMS with your cloud" : "An app to sync SMS with your cloud"
},
"nplurals=2; plural=(n != 1);");

View File

@ -1,23 +1,5 @@
{ "translations": {
"Phone Sync" : "Phone Sync",
"An app to sync SMS with your cloud" : "An app to sync SMS with your cloud",
"Cancel" : "Cancel",
"Confirm" : "Confirm",
"No contact found." : "No contact found.",
"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",
"Reverse ?" : "Reverse ?",
"Notification settings" : "Notification settings",
"Enable" : "Enable",
"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."
"An app to sync SMS with your cloud" : "An app to sync SMS with your cloud"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -2,11 +2,6 @@ OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Telefono Sinkronigo",
"An app to sync SMS with your cloud" : " Aplikaĵo por sinkronigi SMS al via nubo",
"Cancel" : "Nuligi",
"Confirm" : "Konfirmi",
"Settings" : "Agordoj",
"Enable" : "Ŝalti la opcion",
"Disable" : "Malŝalti"
"An app to sync SMS with your cloud" : " Aplikaĵo por sinkronigi SMS al via nubo"
},
"nplurals=2; plural=(n != 1);");

View File

@ -1,10 +1,5 @@
{ "translations": {
"Phone Sync" : "Telefono Sinkronigo",
"An app to sync SMS with your cloud" : " Aplikaĵo por sinkronigi SMS al via nubo",
"Cancel" : "Nuligi",
"Confirm" : "Konfirmi",
"Settings" : "Agordoj",
"Enable" : "Ŝalti la opcion",
"Disable" : "Malŝalti"
"An app to sync SMS with your cloud" : " Aplikaĵo por sinkronigi SMS al via nubo"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -6,7 +6,7 @@ OC.L10N.register(
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"No contact found." : "Contacto no encontrado",
"Settings" : "Ajustes",
"Settings" : "Configuración",
"Max messages to load per conversation" : "Máximo de mensajes que cargar por conversación",
"Invalid message limit" : "Límite de mensajes no válido",
"Default country code" : "Código de país por defecto",
@ -19,7 +19,7 @@ OC.L10N.register(
"Disable" : "Desactivar",
"Are you sure you want to wipe all your messages ?" : "¿Estás seguro de que quieres eliminar todos tus 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 message(s) shown of %s message(s) stored in database." : "%s mensaje(s) mostrado(s) de %s mensaje(s) almacenado(s) 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

@ -4,7 +4,7 @@
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"No contact found." : "Contacto no encontrado",
"Settings" : "Ajustes",
"Settings" : "Configuración",
"Max messages to load per conversation" : "Máximo de mensajes que cargar por conversación",
"Invalid message limit" : "Límite de mensajes no válido",
"Default country code" : "Código de país por defecto",
@ -17,7 +17,7 @@
"Disable" : "Desactivar",
"Are you sure you want to wipe all your messages ?" : "¿Estás seguro de que quieres eliminar todos tus 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 message(s) shown of %s message(s) stored in database." : "%s mensaje(s) mostrado(s) de %s mensaje(s) almacenado(s) 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;"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -1,12 +1,6 @@
OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
"Phone Sync" : "Sincronizar teléfono"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@ -1,10 +1,4 @@
{ "translations": {
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
"Phone Sync" : "Sincronizar teléfono"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -1,13 +1,6 @@
OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Ajustes",
"Label" : "Etiqueta",
"Notification settings" : "Configuración de las notificaciones",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
"Phone Sync" : "Sincronizar teléfono"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@ -1,11 +1,4 @@
{ "translations": {
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Ajustes",
"Label" : "Etiqueta",
"Notification settings" : "Configuración de las notificaciones",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
"Phone Sync" : "Sincronizar teléfono"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -1,12 +1,6 @@
OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
"Phone Sync" : "Sincronizar teléfono"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@ -1,10 +1,4 @@
{ "translations": {
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
"Phone Sync" : "Sincronizar teléfono"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -1,12 +1,6 @@
OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
"Phone Sync" : "Sincronizar teléfono"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@ -1,10 +1,4 @@
{ "translations": {
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
"Phone Sync" : "Sincronizar teléfono"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -1,12 +1,6 @@
OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
"Phone Sync" : "Sincronizar teléfono"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@ -1,10 +1,4 @@
{ "translations": {
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
"Phone Sync" : "Sincronizar teléfono"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -1,12 +1,6 @@
OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
"Phone Sync" : "Sincronizar teléfono"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@ -1,10 +1,4 @@
{ "translations": {
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
"Phone Sync" : "Sincronizar teléfono"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -1,25 +1,6 @@
OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Sincronizar teléfono",
"An app to sync SMS with your cloud" : "Una aplicación para sincronizar SMS con tu nube",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"No contact found." : "No se encontraron contactos.",
"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",
"Reverse ?" : "¿Invertir?",
"Notification settings" : "Configuración de notificaciones",
"Enable" : "Habilitar",
"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."
"Phone Sync" : "Sincronizar teléfono"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@ -1,23 +1,4 @@
{ "translations": {
"Phone Sync" : "Sincronizar teléfono",
"An app to sync SMS with your cloud" : "Una aplicación para sincronizar SMS con tu nube",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"No contact found." : "No se encontraron contactos.",
"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",
"Reverse ?" : "¿Invertir?",
"Notification settings" : "Configuración de notificaciones",
"Enable" : "Habilitar",
"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."
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
"Phone Sync" : "Sincronizar teléfono"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -1,12 +1,6 @@
OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
"Phone Sync" : "Sincronizar teléfono"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@ -1,10 +1,4 @@
{ "translations": {
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
"Phone Sync" : "Sincronizar teléfono"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -1,12 +1,6 @@
OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
"Phone Sync" : "Sincronizar teléfono"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@ -1,10 +1,4 @@
{ "translations": {
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
"Phone Sync" : "Sincronizar teléfono"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -2,12 +2,6 @@ OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Sincronizar teléfono",
"An app to sync SMS with your cloud" : "Una aplicación para sincronizar SMS con tu nube",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
"An app to sync SMS with your cloud" : "Una aplicación para sincronizar SMS con tu nube"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@ -1,11 +1,5 @@
{ "translations": {
"Phone Sync" : "Sincronizar teléfono",
"An app to sync SMS with your cloud" : "Una aplicación para sincronizar SMS con tu nube",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
"An app to sync SMS with your cloud" : "Una aplicación para sincronizar SMS con tu nube"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -1,12 +1,6 @@
OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
"Phone Sync" : "Sincronizar teléfono"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@ -1,10 +1,4 @@
{ "translations": {
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
"Phone Sync" : "Sincronizar teléfono"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -1,12 +1,6 @@
OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
"Phone Sync" : "Sincronizar teléfono"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@ -1,10 +1,4 @@
{ "translations": {
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
"Phone Sync" : "Sincronizar teléfono"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -1,12 +1,6 @@
OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
"Phone Sync" : "Sincronizar teléfono"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@ -1,10 +1,4 @@
{ "translations": {
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
"Phone Sync" : "Sincronizar teléfono"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -1,12 +1,6 @@
OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
"Phone Sync" : "Sincronizar teléfono"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@ -1,10 +1,4 @@
{ "translations": {
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
"Phone Sync" : "Sincronizar teléfono"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -1,12 +1,6 @@
OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
"Phone Sync" : "Sincronizar teléfono"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@ -1,10 +1,4 @@
{ "translations": {
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
"Phone Sync" : "Sincronizar teléfono"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -1,12 +1,6 @@
OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
"Phone Sync" : "Sincronizar teléfono"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@ -1,10 +1,4 @@
{ "translations": {
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
"Phone Sync" : "Sincronizar teléfono"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -1,12 +1,6 @@
OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
"Phone Sync" : "Sincronizar teléfono"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@ -1,10 +1,4 @@
{ "translations": {
"Phone Sync" : "Sincronizar teléfono",
"Cancel" : "Cancelar",
"Confirm" : "Confirmar",
"Settings" : "Configuraciones ",
"Label" : "Etiqueta",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
"Phone Sync" : "Sincronizar teléfono"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -1,25 +1,6 @@
OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Sünkroniseerimine telefoniga",
"An app to sync SMS with your cloud" : "Rakendus, mis sünkroniseerb SMS-id pilve",
"Cancel" : "Loobu",
"Confirm" : "Kinnita",
"No contact found." : "Kontakti ei leidu.",
"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",
"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."
"Phone Sync" : "Telefoniga Sünkroniseerimine"
},
"nplurals=2; plural=(n != 1);");

View File

@ -1,23 +1,4 @@
{ "translations": {
"Phone Sync" : "Sünkroniseerimine telefoniga",
"An app to sync SMS with your cloud" : "Rakendus, mis sünkroniseerb SMS-id pilve",
"Cancel" : "Loobu",
"Confirm" : "Kinnita",
"No contact found." : "Kontakti ei leidu.",
"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",
"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."
"Phone Sync" : "Telefoniga Sünkroniseerimine"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -2,24 +2,13 @@ OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Telefonoa sinkronizatu",
"An app to sync SMS with your cloud" : "SMSak zure hodeian sinkronizatzeko aplikazio bat",
"Cancel" : "Utzi",
"Confirm" : "Berretsi",
"No contact found." : "Ez da kontakturik aurkitu.",
"Settings" : "Ezarpenak",
"Max messages to load per conversation" : "Hizketaldi bakoitzeko, gehienez zenbat mezu kargatu",
"Invalid message limit" : "Mezu kopuruaren muga ez da zuzena",
"Default country code" : "Herrialde-kode lehenetsia",
"Contact ordering" : "Kontaktuak ordenatzea",
"Last message" : "Azken mezua",
"Label" : "Etiketa",
"Reverse ?" : "Alderantzikatu ?",
"Notification settings" : "Jakinarazpen-ezarpenak",
"Enable" : "Aktibatu",
"Disable" : "Desaktibatu",
"Are you sure you want to wipe all your messages ?" : "Zure mezu guztiak ezabatu nahi dituzu?",
"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"
"Disable" : "Desaktibatu"
},
"nplurals=2; plural=(n != 1);");

View File

@ -1,23 +1,12 @@
{ "translations": {
"Phone Sync" : "Telefonoa sinkronizatu",
"An app to sync SMS with your cloud" : "SMSak zure hodeian sinkronizatzeko aplikazio bat",
"Cancel" : "Utzi",
"Confirm" : "Berretsi",
"No contact found." : "Ez da kontakturik aurkitu.",
"Settings" : "Ezarpenak",
"Max messages to load per conversation" : "Hizketaldi bakoitzeko, gehienez zenbat mezu kargatu",
"Invalid message limit" : "Mezu kopuruaren muga ez da zuzena",
"Default country code" : "Herrialde-kode lehenetsia",
"Contact ordering" : "Kontaktuak ordenatzea",
"Last message" : "Azken mezua",
"Label" : "Etiketa",
"Reverse ?" : "Alderantzikatu ?",
"Notification settings" : "Jakinarazpen-ezarpenak",
"Enable" : "Aktibatu",
"Disable" : "Desaktibatu",
"Are you sure you want to wipe all your messages ?" : "Zure mezu guztiak ezabatu nahi dituzu?",
"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"
"Disable" : "Desaktibatu"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -1,25 +1,6 @@
OC.L10N.register(
"ocsms",
{
"Phone Sync" : "همگام سازی تلفن",
"An app to sync SMS with your cloud" : "برنامه ای برای همگام سازی پیام کوتاه با ابر شما",
"Cancel" : "لغو",
"Confirm" : "تائید",
"No contact found." : "هیچ تماس یافت نشد",
"Settings" : "تنظیمات",
"Max messages to load per conversation" : "حداکثر پیام برای بارگیری در هر مکالمه",
"Invalid message limit" : "حد مجاز پیام نامعتبر است",
"Default country code" : "کد کشور پیش فرض",
"Contact ordering" : "تماس با سفارش",
"Last message" : "آخرین پیام",
"Label" : "برچسب",
"Reverse ?" : "وارونه؟",
"Notification settings" : "تنظیمات اعلان",
"Enable" : "فعال",
"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." : "لطفاً یک بار مکالمه را از لیست انتخاب کنید تا بارگیری شود."
"Phone Sync" : "همگام سازی تلفن"
},
"nplurals=2; plural=(n > 1);");

View File

@ -1,23 +1,4 @@
{ "translations": {
"Phone Sync" : "همگام سازی تلفن",
"An app to sync SMS with your cloud" : "برنامه ای برای همگام سازی پیام کوتاه با ابر شما",
"Cancel" : "لغو",
"Confirm" : "تائید",
"No contact found." : "هیچ تماس یافت نشد",
"Settings" : "تنظیمات",
"Max messages to load per conversation" : "حداکثر پیام برای بارگیری در هر مکالمه",
"Invalid message limit" : "حد مجاز پیام نامعتبر است",
"Default country code" : "کد کشور پیش فرض",
"Contact ordering" : "تماس با سفارش",
"Last message" : "آخرین پیام",
"Label" : "برچسب",
"Reverse ?" : "وارونه؟",
"Notification settings" : "تنظیمات اعلان",
"Enable" : "فعال",
"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." : "لطفاً یک بار مکالمه را از لیست انتخاب کنید تا بارگیری شود."
"Phone Sync" : "همگام سازی تلفن"
},"pluralForm" :"nplurals=2; plural=(n > 1);"
}

View File

@ -2,17 +2,10 @@ OC.L10N.register(
"ocsms",
{
"Phone Sync" : "Puhelinsynkronointi",
"Cancel" : "Peruuta",
"Confirm" : "Vahvista",
"No contact found." : "Yhteystietoa ei löydy.",
"Settings" : "Asetukset",
"Default country code" : "Oletusmaakoodi",
"Contact ordering" : "Yhteystietojen järjestäminen",
"Last message" : "Viimeinen viesti",
"Label" : "Nimike",
"Notification settings" : "Ilmoitusasetukset",
"Enable" : "Ota käyttöön",
"Disable" : "Poista käytöstä",
"Please select a conversation from the list to load it." : "Valitse keskustelu listasta ladataksesi se"
"Notification settings" : "Ilmoitusasetukset"
},
"nplurals=2; plural=(n != 1);");

View File

@ -1,16 +1,9 @@
{ "translations": {
"Phone Sync" : "Puhelinsynkronointi",
"Cancel" : "Peruuta",
"Confirm" : "Vahvista",
"No contact found." : "Yhteystietoa ei löydy.",
"Settings" : "Asetukset",
"Default country code" : "Oletusmaakoodi",
"Contact ordering" : "Yhteystietojen järjestäminen",
"Last message" : "Viimeinen viesti",
"Label" : "Nimike",
"Notification settings" : "Ilmoitusasetukset",
"Enable" : "Ota käyttöön",
"Disable" : "Poista käytöstä",
"Please select a conversation from the list to load it." : "Valitse keskustelu listasta ladataksesi se"
"Notification settings" : "Ilmoitusasetukset"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

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

View File

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

View File

@ -7,7 +7,7 @@ OC.L10N.register(
"Confirm" : "Confirmer",
"No contact found." : "Aucun contact trouvé.",
"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",
"Default country code" : "Code pays par défaut",
"Contact ordering" : "Tri des contacts",
@ -19,7 +19,7 @@ OC.L10N.register(
"Disable" : "Désactiver",
"Are you sure you want to wipe all your messages ?" : "Êtes-vous sûr de vouloir effacer tous vos 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 message(s) shown of %s message(s) stored in database." : "%s message(s) affiché(s) sur %s message(s) 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."
},
"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",
"No contact found." : "Aucun contact trouvé.",
"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",
"Default country code" : "Code pays par défaut",
"Contact ordering" : "Tri des contacts",
@ -17,7 +17,7 @@
"Disable" : "Désactiver",
"Are you sure you want to wipe all your messages ?" : "Êtes-vous sûr de vouloir effacer tous vos 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 message(s) shown of %s message(s) stored in database." : "%s message(s) affiché(s) sur %s message(s) 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."
},"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;"
}

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