diff --git a/app/schemas/org.fossify.smsmessenger.databases.MessagesDatabase/8.json b/app/schemas/org.fossify.smsmessenger.databases.MessagesDatabase/8.json
new file mode 100644
index 00000000..f5c963eb
--- /dev/null
+++ b/app/schemas/org.fossify.smsmessenger.databases.MessagesDatabase/8.json
@@ -0,0 +1,342 @@
+{
+ "formatVersion": 1,
+ "database": {
+ "version": 8,
+ "identityHash": "23811e41b338a810cf5df26a5dff67a5",
+ "entities": [
+ {
+ "tableName": "conversations",
+ "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`thread_id` INTEGER NOT NULL, `snippet` TEXT NOT NULL, `date` INTEGER NOT NULL, `read` INTEGER NOT NULL, `title` TEXT NOT NULL, `photo_uri` TEXT NOT NULL, `is_group_conversation` INTEGER NOT NULL, `phone_number` TEXT NOT NULL, `is_scheduled` INTEGER NOT NULL, `uses_custom_title` INTEGER NOT NULL, `archived` INTEGER NOT NULL, PRIMARY KEY(`thread_id`))",
+ "fields": [
+ {
+ "fieldPath": "threadId",
+ "columnName": "thread_id",
+ "affinity": "INTEGER",
+ "notNull": true
+ },
+ {
+ "fieldPath": "snippet",
+ "columnName": "snippet",
+ "affinity": "TEXT",
+ "notNull": true
+ },
+ {
+ "fieldPath": "date",
+ "columnName": "date",
+ "affinity": "INTEGER",
+ "notNull": true
+ },
+ {
+ "fieldPath": "read",
+ "columnName": "read",
+ "affinity": "INTEGER",
+ "notNull": true
+ },
+ {
+ "fieldPath": "title",
+ "columnName": "title",
+ "affinity": "TEXT",
+ "notNull": true
+ },
+ {
+ "fieldPath": "photoUri",
+ "columnName": "photo_uri",
+ "affinity": "TEXT",
+ "notNull": true
+ },
+ {
+ "fieldPath": "isGroupConversation",
+ "columnName": "is_group_conversation",
+ "affinity": "INTEGER",
+ "notNull": true
+ },
+ {
+ "fieldPath": "phoneNumber",
+ "columnName": "phone_number",
+ "affinity": "TEXT",
+ "notNull": true
+ },
+ {
+ "fieldPath": "isScheduled",
+ "columnName": "is_scheduled",
+ "affinity": "INTEGER",
+ "notNull": true
+ },
+ {
+ "fieldPath": "usesCustomTitle",
+ "columnName": "uses_custom_title",
+ "affinity": "INTEGER",
+ "notNull": true
+ },
+ {
+ "fieldPath": "isArchived",
+ "columnName": "archived",
+ "affinity": "INTEGER",
+ "notNull": true
+ }
+ ],
+ "primaryKey": {
+ "autoGenerate": false,
+ "columnNames": [
+ "thread_id"
+ ]
+ },
+ "indices": [
+ {
+ "name": "index_conversations_thread_id",
+ "unique": true,
+ "columnNames": [
+ "thread_id"
+ ],
+ "orders": [],
+ "createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_conversations_thread_id` ON `${TABLE_NAME}` (`thread_id`)"
+ }
+ ],
+ "foreignKeys": []
+ },
+ {
+ "tableName": "attachments",
+ "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT, `message_id` INTEGER NOT NULL, `uri_string` TEXT NOT NULL, `mimetype` TEXT NOT NULL, `width` INTEGER NOT NULL, `height` INTEGER NOT NULL, `filename` TEXT NOT NULL)",
+ "fields": [
+ {
+ "fieldPath": "id",
+ "columnName": "id",
+ "affinity": "INTEGER",
+ "notNull": false
+ },
+ {
+ "fieldPath": "messageId",
+ "columnName": "message_id",
+ "affinity": "INTEGER",
+ "notNull": true
+ },
+ {
+ "fieldPath": "uriString",
+ "columnName": "uri_string",
+ "affinity": "TEXT",
+ "notNull": true
+ },
+ {
+ "fieldPath": "mimetype",
+ "columnName": "mimetype",
+ "affinity": "TEXT",
+ "notNull": true
+ },
+ {
+ "fieldPath": "width",
+ "columnName": "width",
+ "affinity": "INTEGER",
+ "notNull": true
+ },
+ {
+ "fieldPath": "height",
+ "columnName": "height",
+ "affinity": "INTEGER",
+ "notNull": true
+ },
+ {
+ "fieldPath": "filename",
+ "columnName": "filename",
+ "affinity": "TEXT",
+ "notNull": true
+ }
+ ],
+ "primaryKey": {
+ "autoGenerate": true,
+ "columnNames": [
+ "id"
+ ]
+ },
+ "indices": [
+ {
+ "name": "index_attachments_message_id",
+ "unique": true,
+ "columnNames": [
+ "message_id"
+ ],
+ "orders": [],
+ "createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_attachments_message_id` ON `${TABLE_NAME}` (`message_id`)"
+ }
+ ],
+ "foreignKeys": []
+ },
+ {
+ "tableName": "message_attachments",
+ "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER NOT NULL, `text` TEXT NOT NULL, `attachments` TEXT NOT NULL, PRIMARY KEY(`id`))",
+ "fields": [
+ {
+ "fieldPath": "id",
+ "columnName": "id",
+ "affinity": "INTEGER",
+ "notNull": true
+ },
+ {
+ "fieldPath": "text",
+ "columnName": "text",
+ "affinity": "TEXT",
+ "notNull": true
+ },
+ {
+ "fieldPath": "attachments",
+ "columnName": "attachments",
+ "affinity": "TEXT",
+ "notNull": true
+ }
+ ],
+ "primaryKey": {
+ "autoGenerate": false,
+ "columnNames": [
+ "id"
+ ]
+ },
+ "indices": [],
+ "foreignKeys": []
+ },
+ {
+ "tableName": "messages",
+ "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER NOT NULL, `body` TEXT NOT NULL, `type` INTEGER NOT NULL, `status` INTEGER NOT NULL, `participants` TEXT NOT NULL, `date` INTEGER NOT NULL, `read` INTEGER NOT NULL, `thread_id` INTEGER NOT NULL, `is_mms` INTEGER NOT NULL, `attachment` TEXT, `sender_phone_number` TEXT NOT NULL, `sender_name` TEXT NOT NULL, `sender_photo_uri` TEXT NOT NULL, `subscription_id` INTEGER NOT NULL, `is_scheduled` INTEGER NOT NULL, PRIMARY KEY(`id`))",
+ "fields": [
+ {
+ "fieldPath": "id",
+ "columnName": "id",
+ "affinity": "INTEGER",
+ "notNull": true
+ },
+ {
+ "fieldPath": "body",
+ "columnName": "body",
+ "affinity": "TEXT",
+ "notNull": true
+ },
+ {
+ "fieldPath": "type",
+ "columnName": "type",
+ "affinity": "INTEGER",
+ "notNull": true
+ },
+ {
+ "fieldPath": "status",
+ "columnName": "status",
+ "affinity": "INTEGER",
+ "notNull": true
+ },
+ {
+ "fieldPath": "participants",
+ "columnName": "participants",
+ "affinity": "TEXT",
+ "notNull": true
+ },
+ {
+ "fieldPath": "date",
+ "columnName": "date",
+ "affinity": "INTEGER",
+ "notNull": true
+ },
+ {
+ "fieldPath": "read",
+ "columnName": "read",
+ "affinity": "INTEGER",
+ "notNull": true
+ },
+ {
+ "fieldPath": "threadId",
+ "columnName": "thread_id",
+ "affinity": "INTEGER",
+ "notNull": true
+ },
+ {
+ "fieldPath": "isMMS",
+ "columnName": "is_mms",
+ "affinity": "INTEGER",
+ "notNull": true
+ },
+ {
+ "fieldPath": "attachment",
+ "columnName": "attachment",
+ "affinity": "TEXT",
+ "notNull": false
+ },
+ {
+ "fieldPath": "senderPhoneNumber",
+ "columnName": "sender_phone_number",
+ "affinity": "TEXT",
+ "notNull": true
+ },
+ {
+ "fieldPath": "senderName",
+ "columnName": "sender_name",
+ "affinity": "TEXT",
+ "notNull": true
+ },
+ {
+ "fieldPath": "senderPhotoUri",
+ "columnName": "sender_photo_uri",
+ "affinity": "TEXT",
+ "notNull": true
+ },
+ {
+ "fieldPath": "subscriptionId",
+ "columnName": "subscription_id",
+ "affinity": "INTEGER",
+ "notNull": true
+ },
+ {
+ "fieldPath": "isScheduled",
+ "columnName": "is_scheduled",
+ "affinity": "INTEGER",
+ "notNull": true
+ }
+ ],
+ "primaryKey": {
+ "autoGenerate": false,
+ "columnNames": [
+ "id"
+ ]
+ },
+ "indices": [],
+ "foreignKeys": []
+ },
+ {
+ "tableName": "recycle_bin_messages",
+ "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER NOT NULL, `deleted_ts` INTEGER NOT NULL, PRIMARY KEY(`id`))",
+ "fields": [
+ {
+ "fieldPath": "id",
+ "columnName": "id",
+ "affinity": "INTEGER",
+ "notNull": true
+ },
+ {
+ "fieldPath": "deletedTS",
+ "columnName": "deleted_ts",
+ "affinity": "INTEGER",
+ "notNull": true
+ }
+ ],
+ "primaryKey": {
+ "autoGenerate": false,
+ "columnNames": [
+ "id"
+ ]
+ },
+ "indices": [
+ {
+ "name": "index_recycle_bin_messages_id",
+ "unique": true,
+ "columnNames": [
+ "id"
+ ],
+ "orders": [],
+ "createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_recycle_bin_messages_id` ON `${TABLE_NAME}` (`id`)"
+ }
+ ],
+ "foreignKeys": []
+ }
+ ],
+ "views": [],
+ "setupQueries": [
+ "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
+ "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '23811e41b338a810cf5df26a5dff67a5')"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/app/src/main/res/values-ar/strings.xml b/app/src/main/res/values-ar/strings.xml
index 7b9cbc19..3e58b8ab 100644
--- a/app/src/main/res/values-ar/strings.xml
+++ b/app/src/main/res/values-ar/strings.xml
@@ -19,9 +19,7 @@
ازالة التثبيت
اعادة ارسال
غير قادر على ضغط الصورة إلى الحجم المحدد
-
لم يتم تضمين عنصر مكرر
-
- و %d أخرى
- و %d أخرى
@@ -30,38 +28,29 @@
- و %d أخرون
- و %d أخرى
-
محادثة جديدة
إضافة جهة اتصال أو رقم …
اقتراحات
-
الأعضاء
اسم المحادثة
تفاصيل المحادثة
إعادة تسمية المحادثة
يمكنك أنت وحدك رؤية اسم المحادثة هذا
-
رسالة مجدولة
جدولة الرسالة
جدولة الإرسال
إلغاء جدولة الإرسال
يجب عليك اختيار وقت في المستقبل
استمر في تشغيل الهاتف وتأكد من عدم وجود شيء يقتل التطبيق أثناء وجوده في الخلفية.
- Update message
ارسل الان
-
- Message details
المرسل
المتلقي
أرسلت في
تلقيت في
-
تم تلقي الرسائل القصيرة
رسالة جديدة
ضع إشارة مقروء
وضع علامة كغير مقروءة
- Me
-
إلغاء الأرشفة
حذف جميع المحادثات المؤرشفة
أرشيف
@@ -70,17 +59,14 @@
لم يتم العثور على محادثات مؤرشفة
تم إفراغ الأرشيف بنجاح
هل أنت متأكد من أنك تريد إفراغ الأرشيف؟ ستفقد جميع المحادثات المؤرشفة نهائيا.
-
استعادة
استعادة جميع الرسائل
هل تريد بالتأكيد إفراغ سلة المحذوفات ؟ سيتم فقدان الرسائل نهائياً.
تخطي سلة المحذوفات ، وحذف الرسائل مباشرة
-
هل أنت متأكد أنك تريد حذف كافة رسائل هذه المحادثة؟
هل أنت متأكد من أنك تريد أرشفة %s؟
هل أنت متأكد من أنك تريد استعادة جميع رسائل هذه المحادثة؟
هل أنت متأكد من أنك تريد استعادة %s؟
-
- محادثة %d
- محادثة %d
@@ -89,7 +75,6 @@
- محادثات %d
- محادثات %d
-
- %d رسالة
- %d رسالة
@@ -98,7 +83,6 @@
- %d رسائل
- %d رسائل
-
الكلمة الرئيسية
الكلمات الرئيسية المحظورة
إدارة الكلمات الرئيسية المحظورة
@@ -115,7 +99,6 @@
الرسائل المرسلة
إرسال رسائل جماعية كرسائل MMS
إرسال رسائل طويلة كرسائل MMS
-
الرسائل
تصدير الرسائل
تصدير الرسائل القصيرة
@@ -124,7 +107,6 @@
استيراد الرسائل القصيرة
استيراد رسائل الوسائط المتعددة
يجب عليك تحديد عنصر واحد على الأقل
-
لا يمكن إرسال رسالة إلى رقم فارغ
غير قادر على حفظ الرسالة في قاعدة بيانات الاتصالات الهاتفية
لا يمكن إرسال رسالة، الخدمة غير متوفرة
@@ -136,15 +118,10 @@
يتجاوز حجم المرفق الحد الأقصى لرسائل الوسائط المتعددة
بطاقة SIM غير متوفرة
لا يمكن تحميل MMS
-
لماذا يتطلب التطبيق الوصول إلى الإنترنت؟
للأسف هناك حاجة لإرسال مرفقات رسائل الوسائط . عدم القدرة على إرسال رسائل الوسائط هذا سيكون عيبا كبيرا حقا بالمقارنة مع التطبيقات الأخرى ، لذلك قررنا الذهاب من هذا الطريق. ومع ذلك ، كما هو الحال عادة ، لا توجد إعلانات أو تتبع أو تحليلات للنشاط على الإطلاق ، يتم استخدام صلاحية الإنترنت فقط لإرسال رسائل الوسائط المتعددة.
الطرف الآخر لا يستقبل رسائل الوسائط المتعددة الخاصة بي ، فهل هناك أي شيء يمكنني القيام به حيال ذلك؟
حجم MMS محدود بواسطة شركات الاتصالات ، يمكنك محاولة تعيين حد أصغر في إعدادات التطبيق.
هل يدعم التطبيق الرسائل المجدولة؟
نعم ، يمكنك جدولة الرسائل ليتم إرسالها في المستقبل عن طريق الضغط مع الاستمرار على الزر \"إرسال\" واختيار التاريخ والوقت المطلوبين.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-az/strings.xml b/app/src/main/res/values-az/strings.xml
index d0695960..c2aa5bf4 100644
--- a/app/src/main/res/values-az/strings.xml
+++ b/app/src/main/res/values-az/strings.xml
@@ -1,138 +1,20 @@
- SMS Messenger
- Type a message…
- Message not sent
- Not sent. Touch to retry.
- Your message to \'%s\' has not been sent
- Add Person
- Attachment
- No stored conversations have been found
- Start a conversation
- Reply
- Show a character counter at writing messages
- Loading messages…
- Sender doesn\'t support replies
- Draft
- Sending…
- Pin to the top
- Unpin
- Forward
- Unable to compress image to selected size
-
- Duplicate item was not included
-
- and %d other
- and %d others
-
- New conversation
- Add Contact or Number…
- Suggestions
-
- Members
- Conversation name
- Conversation details
- Rename conversation
- Only you can see this conversation name
-
- Scheduled message
- Schedule message
- Schedule send
- Cancel schedule send
- You must pick a time in the future
- Keep the phone on and make sure there is nothing killing the app while in background.
- Update message
- Send now
-
- Message details
- Sender
- Receiver
- Sent at
- Received at
-
- Received SMS
- New message
- Mark as Read
- Mark as Unread
- Me
-
- Unarchive
- Delete all archived conversations
- Archive
- Show archived conversations
- Archive
- No archived conversations have been found
- The archive has been emptied successfully
- Are you sure you want to empty the archive? All archived conversations will be permanently lost.
-
- Restore
- Restore all messages
- Are you sure you want to empty the Recycle Bin? The messages will be permanently lost.
- Skip the Recycle Bin, delete messages directly
-
Are you sure you want to delete all messages of this conversation\?
- Are you sure you want to archive %s?
- Are you sure you want to restore all messages of this conversation?
- Are you sure you want to restore %s?
-
- %d conversation
- %d conversations
-
- %d message
- %d messages
-
- Keyword
- Blocked keywords
- Manage blocked keywords
- You are not blocking any keywords. You may add keywords here to block all messages containing them.
- Add a blocked keyword
- Lock screen notification visibility
- Sender and message
- Sender only
- Enable delivery reports
- Remove accents and diacritics at sending messages
- Send message on pressing Enter
- Resize sent MMS images
- No limit
- Outgoing messages
- Send group messages as MMS
- Send long messages as MMS
-
- Messages
- Export messages
- Export SMS
- Export MMS
- Import messages
- Import SMS
- Import MMS
- You have to select at least one item
-
- Can\'t send message to an empty number
- Unable to save message to the telephony database
- Couldn\'t send message, service unavailable
- Couldn\'t send message, radio turned off
- Couldn\'t send message, carrier error
Couldn\'t send message, error code: %1$d
- Can\'t reply to short codes like this
- You can only reply to short codes with numbers like \"503501\" but not to codes containing letters and numbers like \"AB-CD0\".
- Attachment size exceeds max MMS limit
- SIM card not available
- Couldn\'t download MMS
-
Why does the app require access to the internet\?
Sadly it is needed for sending MMS attachments. Not being able to send MMS would be a really huge disadvantage compared to other apps, so we decided to go this way. However, as usually, there are no ads, tracking or analytics whatsoever, the internet is used only for sending MMS.
The other end is not receiving my MMS, is there anything I can do about it\?
- MMS size is limited by carriers, you can try setting a smaller limit in the app settings.
- Does the app support scheduled messages?
- Yes, you can schedule messages to be sent in the future by long pressing the Send button and picking the desired date and time.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-be/strings.xml b/app/src/main/res/values-be/strings.xml
index b85a973a..09daa366 100644
--- a/app/src/main/res/values-be/strings.xml
+++ b/app/src/main/res/values-be/strings.xml
@@ -19,97 +19,43 @@
Адмацаваць
Пераслаць
Немагчыма сціснуць выяву да выбранага памеру
-
- Duplicate item was not included
-
- and %d other
- and %d others
- and %d others
- and %d others
-
Новая размова
Дадаць кантакт альбо нумар…
Прапановы
-
- Members
- Conversation name
- Conversation details
- Rename conversation
- Only you can see this conversation name
-
- Scheduled message
- Schedule message
- Schedule send
- Cancel schedule send
- You must pick a time in the future
- Keep the phone on and make sure there is nothing killing the app while in background.
- Update message
- Send now
-
- Message details
- Sender
- Receiver
- Sent at
- Received at
-
Атрымана паведамленне
Новае паведамленне
Прачытана
Не прачытана
Я
-
- Unarchive
- Delete all archived conversations
- Archive
- Show archived conversations
- Archive
- No archived conversations have been found
- The archive has been emptied successfully
- Are you sure you want to empty the archive? All archived conversations will be permanently lost.
-
- Restore
- Restore all messages
- Are you sure you want to empty the Recycle Bin? The messages will be permanently lost.
- Skip the Recycle Bin, delete messages directly
-
Выдаліць усе паведамленні ў гэтай размове\?
- Are you sure you want to archive %s?
- Are you sure you want to restore all messages of this conversation?
- Are you sure you want to restore %s?
-
- %d размову
- %d размовы
- %d размоў
- %d размоў
-
- %d паведамленне
- %d паведамлення
- %d паведамленняў
- %d паведамленняў
-
- Keyword
- Blocked keywords
- Manage blocked keywords
- You are not blocking any keywords. You may add keywords here to block all messages containing them.
- Add a blocked keyword
Паказ апавяшчэнняў на экране блакавання
Адпраўнік і паведамленне
Толькі адпраўнік
Уключыць справаздачы аб дастаўцы
Выдаляць націскі і дыякрытычныя знакі пры адпраўцы паведамленняў
- Send message on pressing Enter
Змяняць памер выяў, якія дасыляюцца ў MMS
Без абмежаванняў
Выходныя паведамленні
Адпраўляць групавыя паведамленні як MMS
Адпраўляць доўгія паведамленні як MMS
-
Паведамленні
Экспартаваць паведамленні
Экспартаваць SMS
@@ -118,27 +64,9 @@
Імпартаваць SMS
Імпартаваць MMS
Неабходна выбраць хаця б адзін элемент
-
- Can\'t send message to an empty number
- Unable to save message to the telephony database
- Couldn\'t send message, service unavailable
- Couldn\'t send message, radio turned off
- Couldn\'t send message, carrier error
Couldn\'t send message, error code: %1$d
- Can\'t reply to short codes like this
- You can only reply to short codes with numbers like \"503501\" but not to codes containing letters and numbers like \"AB-CD0\".
- Attachment size exceeds max MMS limit
- SIM card not available
- Couldn\'t download MMS
-
Чаму прыкладанне патрабуе доступ у Інтэрнет\?
На жаль, гэта неабходна для адпраўкі ўкладанняў MMS. Немагчымасць адпраўляць MMS было б вельмі вялікім недахопам нашага прыкладання ў параўнанні з іншымі, таму было вырашана пайсці гэтым шляхам. Аднак, як і ў іншых нашых прыкладаннях, гэта не ўтрымлівае ніякай рэкламы, адсочвання і аналітыкі. Інтэрнэт выкарыстоўваецца толькі для адпраўкі MMS.
Іншы бок не атрымлівае мае MMS, ці можна штосьці з гэтым зрабіць\?
Памер MMS абмежаваны аператарамі сувязі, магчыма паспрабаваць зменьшыць ліміт у наладах прыкладання.
- Does the app support scheduled messages?
- Yes, you can schedule messages to be sent in the future by long pressing the Send button and picking the desired date and time.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-bg/strings.xml b/app/src/main/res/values-bg/strings.xml
index aff59d5f..d4f72bbe 100644
--- a/app/src/main/res/values-bg/strings.xml
+++ b/app/src/main/res/values-bg/strings.xml
@@ -19,45 +19,34 @@
Откачване
Препращане
Невъзможно е да се компресира изображението до избрания размер
-
Дублиращият се елемент не беше включен
-
- и %d друг
- и %d други
-
Нов разговор
Добавете контакт или номер…
Предложения
-
Членове
Име на разговора
Подробности за разговора
Преименуване на разговора
Само вие можете да видите името на този разговор
-
Насрочено съобщение
Насрочи съобщение по график
Планирайте изпращане
Отмяна на насрочено изпращане
Трябва да изберете време в бъдещето
Дръжте телефона включен и се уверете, че нищо не убива приложението, докато е във фонов режим.
- Update message
Изпрати Сега
-
- Message details
Подател
Получател
Изпратено на
Получено на
-
Получено съобщение
Ново съобщение
Отбележи като прочетено
Отбележи като непрочетено
- Me
-
Разархивирай
Изтрий всички архивирани разговори
Архив
@@ -66,27 +55,22 @@
Не са намерени архивирани разговори
Архивът е изпразнен успешно
Сигурни ли сте, че искате да изпразните архива\? Всички архивирани разговори ще бъдат изтрити завинаги.
-
Възстанови
Възстанови всички съобщения
Сигурни ли сте, че искате да изпразните кошчето\? Съобщенията ще бъдат изтрити завинаги.
Пропусни кошчето, изтрий съобщенията директно
-
Сигурни ли сте, че искате да изтриете всички съобщения от този разговор\?
Сигурни ли сте, че искате да архивирате %s\?
Сигурни ли сте, че искате да възстановите всички съобщения от този разговор\?
Сигурни ли сте, че искате да възстановите %s\?
-
- %d разговор
- %d разговори
-
- %d съобщение
- %d съобщения
-
Ключова дума
Блокирани ключови думи
Управление на блокираните ключови думи
@@ -103,7 +87,6 @@
Изходящи съобщения
Изпращане на групови съобщения като MMS
Изпращане на дълги съобщения като MMS
-
Съобщения
Експортиране на съобщения
Експортиране на SMS
@@ -112,7 +95,6 @@
Импортиране на SMS
Импортиране на MMS
Трябва да изберете поне един елемент
-
Не може да се изпрати съобщение до празен номер
Неуспешен запис на съобщението в телефонната база данни
Неуспешно изпращане на съобщението, услугата на оператора е недостъпна
@@ -124,15 +106,10 @@
Размерът на прикачения файл надвишава максималното ограничение за MMS
SIM картата не е налична
Неуспешно изтегляне на MMS
-
Защо приложението изисква достъп до интернет\?
За съжаление това е нужно за изпращане на прикачени MMS. Да не може да се праща MMS би било наистина голям недостатък в сравнение с други приложения, така че решихме да тръгнем по този път. Въпреки това, както обикновено, няма реклами, следене или каквито и да е други анализаторски програми, интернетът се ползва само за изпращане на MMS.
От другата страна не получават моя MMS, мога ли да направя нещо\?
Размерът на MMS е ограничен от оператора, може да се опитате да зададете по-малък лимит в настройките на приложението.
Приложението поддържа ли планирани съобщения\?
Да, можете да планирате изпращане на съобщения в бъдеще, като натиснете продължително бутона Изпрати и изберете желаната дата и час.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-ca/strings.xml b/app/src/main/res/values-ca/strings.xml
index de399d2a..72acd856 100644
--- a/app/src/main/res/values-ca/strings.xml
+++ b/app/src/main/res/values-ca/strings.xml
@@ -19,45 +19,34 @@
No fixis
Reenvia
No s\'ha pogut comprimir la imatge a la mida seleccionada
-
No s\'ha inclòs l\'element duplicat
-
- i %d altra
- i %d altres
-
Conversa nova
Afegeix un contacte o número…
Suggeriments
-
Membres
Nom de la conversa
Detalls de la conversa
Canvia el nom de la conversa
Només vós podeu veure el nom d\'aquesta conversa
-
Missatge programat
Programa un missatge
Programa l\'enviament
Cancel·la la programació de l\'enviament
Cal triar una hora futura
Mantingueu el telèfon engegat i assegureu-vos que no hi hagi res que mati les aplicacions en segon pla.
- Update message
Envia ara
-
- Message details
Remitent
Receptor
Enviat a
Rebut a
-
SMS rebut
Missatge nou
Marca com a llegit
Marcar com no llegit
- Me
-
Desarxivar
Suprimeix totes les converses arxivades
Arxiva
@@ -66,27 +55,22 @@
No s\'ha trobat cap conversa arxivada
L\'arxiu s\'ha buidat correctament
Segur que voleu buidar l\'arxiu\? Totes les converses arxivades es perdran permanentment.
-
Restaura
Restaura tots els missatges
Segur que voleu buidar la paperera de reciclatge\? Els missatges es perdran definitivament.
Omet la paperera de reciclatge, suprimeix directament els missatges
-
Confirmeu que voleu suprimir tots els missatges d\'aquesta conversa\?
Segur que voleu arxivar %s\?
Segur que voleu restaurar tots els missatges d\'aquesta conversa\?
Segur que voleu restaurar %s\?
-
- %d conversa
- %d converses
-
- %d missatge
- %d missatges
-
Paraula clau
Paraules clau blocades
Gestiona les paraules clau blocades
@@ -103,7 +87,6 @@
Missatges sortints
Envia missatges de grup com a MMS
Envia missatges llargs com a MMS
-
Missatges
Exporta els missatges
Exporta SMS
@@ -112,7 +95,6 @@
Importa SMS
Importa MMS
Cal seleccionar almenys un element
-
El missatge no es pot enviar a un número buit
No es pot desar el missatge a la base de dades de telefonia
No s\'ha pogut enviar el missatge, servei no disponible
@@ -124,15 +106,10 @@
La mida del fitxer adjunt supera el límit màxim dels MMS
La targeta SIM no està disponible
No es poden baixar MMS
-
Per què l\'aplicació requereix accés a Internet\?
Malauradament, és necessari per enviar adjunts MMS. No poder enviar MMS seria un gran desavantatge en comparació amb altres aplicacions, així que vam decidir anar per aquest camí. Tanmateix, com sol ser, no hi ha cap anunci, seguiment o anàlisi de cap mena, Internet només s\'utilitza per enviar MMS.
La mida dels MMS està limitada pels operadors, podeu provar d\'establir un límit més petit a la configuració de l\'aplicació.
L\'aplicació admet missatges programats\?
Sí, podeu programar missatges per enviar-los en el futur prement prolongadament el botó Envia i escollint la data i l\'hora desitjades.
L\'altre extrem no ha rebut el meu MMS, hi puc fer alguna cosa\?
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-cr/strings.xml b/app/src/main/res/values-cr/strings.xml
index d0695960..c2aa5bf4 100644
--- a/app/src/main/res/values-cr/strings.xml
+++ b/app/src/main/res/values-cr/strings.xml
@@ -1,138 +1,20 @@
- SMS Messenger
- Type a message…
- Message not sent
- Not sent. Touch to retry.
- Your message to \'%s\' has not been sent
- Add Person
- Attachment
- No stored conversations have been found
- Start a conversation
- Reply
- Show a character counter at writing messages
- Loading messages…
- Sender doesn\'t support replies
- Draft
- Sending…
- Pin to the top
- Unpin
- Forward
- Unable to compress image to selected size
-
- Duplicate item was not included
-
- and %d other
- and %d others
-
- New conversation
- Add Contact or Number…
- Suggestions
-
- Members
- Conversation name
- Conversation details
- Rename conversation
- Only you can see this conversation name
-
- Scheduled message
- Schedule message
- Schedule send
- Cancel schedule send
- You must pick a time in the future
- Keep the phone on and make sure there is nothing killing the app while in background.
- Update message
- Send now
-
- Message details
- Sender
- Receiver
- Sent at
- Received at
-
- Received SMS
- New message
- Mark as Read
- Mark as Unread
- Me
-
- Unarchive
- Delete all archived conversations
- Archive
- Show archived conversations
- Archive
- No archived conversations have been found
- The archive has been emptied successfully
- Are you sure you want to empty the archive? All archived conversations will be permanently lost.
-
- Restore
- Restore all messages
- Are you sure you want to empty the Recycle Bin? The messages will be permanently lost.
- Skip the Recycle Bin, delete messages directly
-
Are you sure you want to delete all messages of this conversation\?
- Are you sure you want to archive %s?
- Are you sure you want to restore all messages of this conversation?
- Are you sure you want to restore %s?
-
- %d conversation
- %d conversations
-
- %d message
- %d messages
-
- Keyword
- Blocked keywords
- Manage blocked keywords
- You are not blocking any keywords. You may add keywords here to block all messages containing them.
- Add a blocked keyword
- Lock screen notification visibility
- Sender and message
- Sender only
- Enable delivery reports
- Remove accents and diacritics at sending messages
- Send message on pressing Enter
- Resize sent MMS images
- No limit
- Outgoing messages
- Send group messages as MMS
- Send long messages as MMS
-
- Messages
- Export messages
- Export SMS
- Export MMS
- Import messages
- Import SMS
- Import MMS
- You have to select at least one item
-
- Can\'t send message to an empty number
- Unable to save message to the telephony database
- Couldn\'t send message, service unavailable
- Couldn\'t send message, radio turned off
- Couldn\'t send message, carrier error
Couldn\'t send message, error code: %1$d
- Can\'t reply to short codes like this
- You can only reply to short codes with numbers like \"503501\" but not to codes containing letters and numbers like \"AB-CD0\".
- Attachment size exceeds max MMS limit
- SIM card not available
- Couldn\'t download MMS
-
Why does the app require access to the internet\?
Sadly it is needed for sending MMS attachments. Not being able to send MMS would be a really huge disadvantage compared to other apps, so we decided to go this way. However, as usually, there are no ads, tracking or analytics whatsoever, the internet is used only for sending MMS.
The other end is not receiving my MMS, is there anything I can do about it\?
- MMS size is limited by carriers, you can try setting a smaller limit in the app settings.
- Does the app support scheduled messages?
- Yes, you can schedule messages to be sent in the future by long pressing the Send button and picking the desired date and time.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml
index 7388142a..d3d037d8 100644
--- a/app/src/main/res/values-cs/strings.xml
+++ b/app/src/main/res/values-cs/strings.xml
@@ -19,46 +19,36 @@
Odepnout
Přeposlat
Nepodařilo se komprimovat obrázek na požadovanou velikost
-
Duplicitní položka nebyla zahrnuta
-
- a %d další
- a %d další
- a %d dalších
-
Nová konverzace
Přidejte kontakt nebo číslo…
Návrhy
-
Členové
Název konverzace
Detail konverzace
Přejmenovat konverzaci
Tento název konverzace vidíte pouze vy
-
Naplánovaná zpráva
Naplánovat zprávu
Naplánovat odeslání
Zrušit plánované odeslání
Musíte vybrat čas v budoucnosti
Ponechte telefon zapnutý a ujistěte se, že nic nezabije aplikaci běžící na pozadí.
- Update message
Odeslat nyní
-
- Message details
Odesílatel
Příjemce
Odesláno na
Přijato na
-
Přijaté SMS
Nová zpráva
Označit jako přečtené
Označit jako nepřečtené
Mé
-
Odarchivovat
Odstranit všechny archivované konverzace
Archiv
@@ -67,29 +57,24 @@
Nenalezeny žádné archivované konverzace
Archiv byl úspěšně vyprázdněn
Opravdu chcete archiv vyprázdnit\? Všechny archivované konverzace budou nenávratně ztraceny.
-
Obnovit
Obnovit všechny zprávy
Opravdu chcete vyprázdnit Koš\? Zprávy budou nenávratně ztraceny.
Vynechat koš – odstranit zprávy přímo
-
Opravdu chcete smazat všechny zprávy v této konverzaci\?
Opravdu chcete archivovat %s\?
Opravdu chcete obnovit všechny zprávy této konverzace\?
Opravdu chcete obnovit %s\?
-
- %d konverzace
- %d konverzace
- %d konverzací
-
- %d zpráva
- %d zprávy
- %d zpráv
-
Klíčové slovo
Blokovaná klíčová slova
Spravovat blokovaná klíčová slova
@@ -106,16 +91,13 @@
Odchozí zprávy
Odesílat skupinové zprávy jako MMS
Odesílat dlouhé zprávy jako MMS
-
Export zpráv
Zprávy
- Export SMS
Exportovat MMS
Import zpráv
Importovat SMS
Importovat MMS
Musíte vybrat alespoň jednu položku
-
Nelze poslat zprávu na prázdné číslo
Zprávu nelze uložit do databáze telefonu
Zprávu nelze odeslat, služba není dostupná
@@ -126,16 +108,10 @@
Lze odpovídat pouze na krátké kódy s čísly, jako „503501“, ale ne na kódy obsahující čísla a písmena, jako „AB-CD0“.
Velikost přílohy přesahuje maximální limit MMS
SIM karta není dostupná
- Couldn\'t download MMS
-
Proč aplikace vyžaduje přístup k internetu\?
Je smutné, že je to nutné pro odesílání příloh MMS. Nemít schopnost posílat MMS by byla opravdu obrovská nevýhoda ve srovnání s jinými aplikacemi, proto jsme se rozhodli jít touto cestou. Jako obvykle však neexistují žádné reklamy, sledování ani analytika. Internet se používá pouze k odesílání MMS.
Druhá strana nepřijímá mé MMS. Je něco, co s tím mohu udělat\?
Velikost MMS je omezena operátory. Můžete zkusit nastavit menší limit v nastavení aplikace.
Podporuje aplikace naplánované zprávy\?
Ano, odeslání zpráv můžete naplánovat na budoucí čas dlouhým stisknutím tlačítka Odeslat a výběrem požadovaného data a času.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-da/strings.xml b/app/src/main/res/values-da/strings.xml
index 0db90d93..1f1adcda 100644
--- a/app/src/main/res/values-da/strings.xml
+++ b/app/src/main/res/values-da/strings.xml
@@ -15,124 +15,47 @@
Afsender understøtter ikke svar
Udkast
Sender…
- Pin to the top
Frigør
Fremad
Billedet kan ikke komprimeres til den valgte størrelse
-
- Duplicate item was not included
-
- and %d other
- and %d others
-
Ny Samtale
Tilføj kontakt eller nummer…
Forslag
-
- Members
- Conversation name
- Conversation details
- Rename conversation
- Only you can see this conversation name
-
- Scheduled message
- Schedule message
- Schedule send
- Cancel schedule send
- You must pick a time in the future
- Keep the phone on and make sure there is nothing killing the app while in background.
- Update message
- Send now
-
- Message details
- Sender
- Receiver
- Sent at
- Received at
-
Modtag SMS
Ny Besked
Marker som læst
Marker som ulæst
- Me
-
- Unarchive
- Delete all archived conversations
- Archive
- Show archived conversations
- Archive
- No archived conversations have been found
- The archive has been emptied successfully
- Are you sure you want to empty the archive? All archived conversations will be permanently lost.
-
- Restore
- Restore all messages
- Are you sure you want to empty the Recycle Bin? The messages will be permanently lost.
- Skip the Recycle Bin, delete messages directly
-
Er du sikker på, at du vil slette alle beskeder i denne samtale\?
- Are you sure you want to archive %s?
- Are you sure you want to restore all messages of this conversation?
- Are you sure you want to restore %s?
-
- %d samtale
- %d samtaler
-
- %d besked
- %d beskeder
-
- Keyword
- Blocked keywords
- Manage blocked keywords
- You are not blocking any keywords. You may add keywords here to block all messages containing them.
- Add a blocked keyword
Synlighed af meddelelse på låseskærmen
Afsender og meddelelse
Kun afsender
Aktiver leveringsrapporter
Fjerne accenter og diakritiske tegn ved afsendelse af meddelelser
- Send message on pressing Enter
Ændr størrelse på MMS-billeder
Ingen grænse
Udgående meddelelser
Send gruppemeddelelser som MMS
Send lange beskeder som MMS
-
- Messages
Eksporter beskeder
- Export SMS
Eksportér MMS
Importer beskeder
- Import SMS
Importér MMS
Du skal vælge mindst ét element
-
- Can\'t send message to an empty number
- Unable to save message to the telephony database
- Couldn\'t send message, service unavailable
- Couldn\'t send message, radio turned off
- Couldn\'t send message, carrier error
Couldn\'t send message, error code: %1$d
- Can\'t reply to short codes like this
- You can only reply to short codes with numbers like \"503501\" but not to codes containing letters and numbers like \"AB-CD0\".
- Attachment size exceeds max MMS limit
- SIM card not available
- Couldn\'t download MMS
-
Hvorfor kræver appen adgang til internettet\?
Desværre er det nødvendigt for at sende MMS-vedhæftede filer. Ikke at kunne være i stand til at sende MMS ville være en virkelig stor ulempe i forhold til andre apps, så vi besluttede at gå denne vej. Men som normalt er der ingen annoncer, sporing eller analyse overhovedet, internettet bruges kun til at sende MMS.
Den anden ende modtager ikke min MMS, er der noget jeg kan gøre ved det\?
MMS-størrelsen er begrænset af udbydere, du kan prøve at sætte en mindre grænse i appindstillingerne.
- Does the app support scheduled messages?
- Yes, you can schedule messages to be sent in the future by long pressing the Send button and picking the desired date and time.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml
index 151d4e76..b08b1ac6 100644
--- a/app/src/main/res/values-de/strings.xml
+++ b/app/src/main/res/values-de/strings.xml
@@ -19,24 +19,19 @@
Lösen
Weiterleiten
Bild kann nicht auf ausgewählte Größe komprimiert werden
-
Doppeltes Element wurde nicht aufgenommen
-
- und %d andere
- und %d anderen
-
Neue Unterhaltung
Kontakt oder Nummer hinzufügen …
Vorschläge
-
Mitglieder
Unterhaltungsname
Unterhaltungsdetails
Unterhaltung umbenennen
Nur du kannst den Namen dieser Unterhaltung sehen
-
Geplante Nachricht
Nachricht planen
Versand planen
@@ -45,19 +40,16 @@
Lassen Sie das Telefon eingeschaltet und vergewissern Sie sich, dass die Anwendung im Hintergrund nicht abgeschaltet wird.
Nachricht aktualisieren
Jetzt senden
-
Nachrichtendetails
Absender
Empfänger
Gesendet am
Empfangen am
-
Empfangene SMS
Neue Nachricht
Als gelesen markieren
Als ungelesen markieren
Ich
-
Dearchivieren
Alle archivierten Unterhaltungen löschen
Archiv
@@ -66,27 +58,22 @@
Es wurden keine archivierten Unterhaltungen gefunden
Das Archiv wurde erfolgreich geleert
Das Archiv wirklich leeren\? Alle archivierten Unterhaltungen sind dann unwiederbringlich gelöscht.
-
Wiederherstellen
Alle Nachrichten wiederherstellen
Den Papierkorb wirklich leeren\? Die Nachrichten sind dann unwiederbringlich gelöscht.
Den Papierkorb auslassen, Nachrichten sofort löschen
-
Sollen wirklich alle Nachrichten dieser Unterhaltung gelöscht werden\?
%s wirklich archivieren\?
Sollen wirklich alle Nachrichten dieser Unterhaltung wiederhergestellt werden\?
%s wirklich wiederherstellen\?
-
- %d Unterhaltung
- %d Unterhaltungen
-
- %d Nachricht
- %d Nachrichten
-
Schlüsselwort
Blockierte Schlüsselwörter
Blockierte Schlüsselwörter verwalten
@@ -103,7 +90,6 @@
Ausgehende Nachrichten
Gruppennachrichten als MMS versenden
Lange Nachrichten als MMS senden
-
Nachrichten
Nachrichten exportieren
SMS exportieren
@@ -112,7 +98,6 @@
SMS importieren
MMS importieren
Mindestens ein Element muss auswählt werden
-
Nachricht kann nicht an eine leere Nummer gesendet werden
Nachricht konnte nicht in der Telefondatenbank gespeichert werden
Nachricht konnte nicht gesendet werden, Dienst nicht verfügbar
@@ -124,15 +109,10 @@
Die Größe des Anhangs überschreitet das MMS-Limit
SIM-Karte nicht vorhanden
MMS konnte nicht heruntergeladen werden
-
Warum benötigt die Anwendung einen Internetzugang\?
Leider ist dies nötig, um MMS-Anhänge zu versenden. Es wäre ein großer Nachteil gegenüber anderen Apps, wenn keine MMS versendet werden könnten, also haben wir uns für diesen Weg entschieden. Jedoch gibt es wie immer keine Werbung, Tracking oder Analytics, der Internetzugriff wird also nur für das Versenden von MMS verwendet.
Die Gegenseite empfängt meine MMS nicht. Kann ich etwas dagegen tun\?
Die MMS-Größe wird von den Netzbetreibern begrenzt. Du kannst versuchen, in den Anwendungseinstellungen ein kleineres Limit einzustellen.
Unterstützt die Anwendung geplante Nachrichten\?
Ja, du kannst den Versand von Nachrichten für die Zukunft planen, indem du lange auf die Senden-Schaltfläche drückst und das gewünschte Datum und die Uhrzeit auswählst.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-el/strings.xml b/app/src/main/res/values-el/strings.xml
index 36a0ec1a..24094496 100644
--- a/app/src/main/res/values-el/strings.xml
+++ b/app/src/main/res/values-el/strings.xml
@@ -1,6 +1,5 @@
- SMS Messenger
Πληκτρολογήστε ένα μήνυμα…
Το μήνυμα δεν εστάλη
Δεν εστάλη. Αγγίξτε για επανάληψη.
@@ -19,24 +18,19 @@
Ξεκαρφίτσωμα
Προώθηση
Αδυναμία συμπίεσης εικόνας στο επιλεγμένο μέγεθος
-
Δεν συμπεριλήφθηκε διπλότυπο στοιχείο
-
- και άλλος %d
- και άλλοι %d
-
Νέα συνομιλία
Προσθήκη επαφής ή αριθμού…
Προτάσεις
-
Μέλη
Όνομα συνομιλίας
Λεπτομέρειες συνομιλίας
Μετονομασία συνομιλίας
Μόνο εσείς βλέπετε αυτό το όνομα συνομιλίας
-
Προγραμματισμένο μήνυμα
Προγραμματισμός μηνύματος
Προγραμματισμός αποστολής
@@ -45,19 +39,16 @@
Κρατήστε το τηλέφωνο ανοιχτό και βεβαιωθείτε ότι δεν υπάρχει τίποτα που να κλείνει την εφαρμογή ενώ βρίσκεται στο παρασκήνιο.
Ενημέρωση μηνύματος
Αποστολή τώρα
-
Λεπτομέρειες μηνύματος
Αποστολέας
Παραλήπτης
Εστάλη στις
Ελήφθη στις
-
Ελήφθη SMS
Νέο μήνυμα
Σήμανση ως Αναγνωσμένο
Σήμανση ως Μη Αναγνωσμένο
Εγώ
-
Μη αρχειοθέτηση
Διαγραφή όλων των αρχειοθετημένων συνομιλιών
Αρχειοθέτηση
@@ -66,27 +57,22 @@
Δεν βρέθηκαν αρχειοθετημένες συνομιλίες
Το αρχείο άδειασε με επιτυχία
Είστε σίγουροι ότι θέλετε να αδειάσετε το αρχείο; Όλες οι αρχειοθετημένες συνομιλίες θα χαθούν οριστικά.
-
Επαναφορά
Επαναφορά όλων των μηνυμάτων
Είστε σίγουροι ότι θέλετε να αδειάσετε τον Κάδο Ανακύκλωσης; Τα μηνύματα θα χαθούν οριστικά.
Παρακάμψτε τον Κάδο Ανακύκλωσης, διαγράψτε τα μηνύματα απευθείας
-
Είστε βέβαιοι ότι θέλετε να διαγράψετε όλα τα μηνύματα αυτής της συνομιλίας;
Σίγουρα θέλετε να αρχειοθετήσετε %s;
Είστε σίγουροι ότι θέλετε να επαναφέρετε όλα τα μηνύματα αυτής της συνομιλίας;
Είστε σίγουροι ότι θέλετε να επαναφέρετε %s;
-
- %d συνομιλία
- %d συνομιλίες
-
- %d μήνυμα
- %d μηνύματα
-
Λέξη-κλειδί
Αποκλεισμένες λέξεις-κλειδιά
Διαχείριση αποκλεισμένων λέξεων-κλειδιών
@@ -103,7 +89,6 @@
Εξερχόμενα μηνύματα
Αποστολή ομαδικών μηνυμάτων ως MMS
Αποστολή μεγάλων μηνυμάτων ως MMS
-
Μηνύματα
Εξαγωγή μηνυμάτων
Εξαγωγή SMS
@@ -112,7 +97,6 @@
Εισαγωγή SMS
Εισαγωγή MMS
Πρέπει να επιλέξετε τουλάχιστον ένα στοιχείο
-
Αδυναμία αποστολής του μηνύματος σε έναν κενό αριθμό
Αδυναμία αποθήκευσης μηνύματος στη βάση δεδομένων τηλεφωνίας
Αδυναμία αποστολής μηνύματος. Η υπηρεσία δεν είναι διαθέσιμη
@@ -124,15 +108,10 @@
Το μέγεθος συνημμένου υπερβαίνει το μέγιστο όριο MMS
Δεν διατίθεται κάρτα SIM
Δεν ήταν δυνατή η λήψη MMS
-
Γιατί η εφαρμογή απαιτεί πρόσβαση στο διαδίκτυο;
Δυστυχώς, απαιτείται για την αποστολή συνημμένων MMS. Το να μην είμαστε σε θέση να στείλουμε MMS θα αποτελούσε πραγματικά τεράστιο μειονέκτημα σε σύγκριση με άλλες εφαρμογές, επομένως αποφασίσαμε να ακολουθήσουμε αυτόν τον δρόμο. Ωστόσο, όπως συνήθως, δεν υπάρχουν καθόλου διαφημίσεις, παρακολούθηση ή αναλύσεις, το διαδίκτυο χρησιμοποιείται μόνο για την αποστολή MMS.
Το άλλο άκρο δεν λαμβάνει τα MMS μου, μπορώ να κάνω κάτι γι\' αυτό;
Το μέγεθος των MMS περιορίζεται από τους παρόχους, μπορείτε να δοκιμάσετε να ορίσετε ένα μικρότερο όριο στις ρυθμίσεις της εφαρμογής.
Υποστηρίζει η εφαρμογή προγραμματισμένα μηνύματα;
Ναι, μπορείτε να προγραμματίσετε την αποστολή μηνυμάτων στο μέλλον πατώντας παρατεταμένα το κουμπί \"Αποστολή\" και επιλέγοντας την επιθυμητή ημερομηνία και ώρα.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-eo/strings.xml b/app/src/main/res/values-eo/strings.xml
index 1be7cbd7..d7b58850 100644
--- a/app/src/main/res/values-eo/strings.xml
+++ b/app/src/main/res/values-eo/strings.xml
@@ -1,138 +1,32 @@
- SMS Messenger
Tajpu mesaĝon…
- Message not sent
- Not sent. Touch to retry.
- Your message to \'%s\' has not been sent
- Add Person
- Attachment
- No stored conversations have been found
- Start a conversation
- Reply
- Show a character counter at writing messages
- Loading messages…
- Sender doesn\'t support replies
Malneto
Sendante…
Alpingli supren
Depingli
- Forward
- Unable to compress image to selected size
-
- Duplicate item was not included
-
- and %d other
- and %d others
-
- New conversation
- Add Contact or Number…
Sugestoj
-
- Members
- Conversation name
- Conversation details
- Rename conversation
- Only you can see this conversation name
-
- Scheduled message
- Schedule message
- Schedule send
- Cancel schedule send
- You must pick a time in the future
- Keep the phone on and make sure there is nothing killing the app while in background.
- Update message
- Send now
-
- Message details
- Sender
- Receiver
- Sent at
- Received at
-
- Received SMS
Nova mesaĝo
Marki kiel legitan
Marki kiel nelegitan
- Me
-
- Unarchive
- Delete all archived conversations
- Archive
- Show archived conversations
- Archive
- No archived conversations have been found
- The archive has been emptied successfully
- Are you sure you want to empty the archive? All archived conversations will be permanently lost.
-
- Restore
- Restore all messages
- Are you sure you want to empty the Recycle Bin? The messages will be permanently lost.
- Skip the Recycle Bin, delete messages directly
-
Are you sure you want to delete all messages of this conversation\?
- Are you sure you want to archive %s?
- Are you sure you want to restore all messages of this conversation?
- Are you sure you want to restore %s?
-
- %d konversacio
- %d konversacioj
-
- %d mesaĝo
- %d mesaĝoj
-
- Keyword
- Blocked keywords
- Manage blocked keywords
- You are not blocking any keywords. You may add keywords here to block all messages containing them.
- Add a blocked keyword
- Lock screen notification visibility
Sendinto kaj mesaĝo
Nur sendinto
- Enable delivery reports
- Remove accents and diacritics at sending messages
- Send message on pressing Enter
- Resize sent MMS images
- No limit
- Outgoing messages
- Send group messages as MMS
- Send long messages as MMS
-
Mesaĝoj
- Export messages
- Export SMS
- Export MMS
- Import messages
- Import SMS
- Import MMS
- You have to select at least one item
-
- Can\'t send message to an empty number
- Unable to save message to the telephony database
- Couldn\'t send message, service unavailable
- Couldn\'t send message, radio turned off
- Couldn\'t send message, carrier error
Couldn\'t send message, error code: %1$d
- Can\'t reply to short codes like this
- You can only reply to short codes with numbers like \"503501\" but not to codes containing letters and numbers like \"AB-CD0\".
- Attachment size exceeds max MMS limit
- SIM card not available
- Couldn\'t download MMS
-
Why does the app require access to the internet\?
Sadly it is needed for sending MMS attachments. Not being able to send MMS would be a really huge disadvantage compared to other apps, so we decided to go this way. However, as usually, there are no ads, tracking or analytics whatsoever, the internet is used only for sending MMS.
The other end is not receiving my MMS, is there anything I can do about it\?
- MMS size is limited by carriers, you can try setting a smaller limit in the app settings.
- Does the app support scheduled messages?
- Yes, you can schedule messages to be sent in the future by long pressing the Send button and picking the desired date and time.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml
index bbda6218..2fe263ce 100644
--- a/app/src/main/res/values-es/strings.xml
+++ b/app/src/main/res/values-es/strings.xml
@@ -19,25 +19,20 @@
Desanclar
Reenviar
Incapaz de comprimir la imagen al tamaño seleccionado
-
Los elementos duplicados no fueron incluidos
-
- y %d otro
- y %d otros
- y %d otros
-
Nueva conversación
Escribe contacto o número…
Sugerencias
-
Miembros
Nombre de la conversación
Detalles de la conversación
Renombrar la conversación
Sólo tú puedes ver el nombre de esta conversación
-
Mensaje programado
Programar mensaje
Programar envío
@@ -46,19 +41,16 @@
Mantenga el teléfono encendido y asegúrese de que no hay nada que mate la aplicación en segundo plano.
Actualizar mensaje
Enviar ahora
-
Detalles del mensaje
Remitente
Destinatario
Enviado a
Recibido en
-
Mensaje recibido
Nuevo mensaje
Marcar como leído
Marcar como no leído
Yo
-
Desarchivar
Borrar todas las conversaciones archivadas
Archivar
@@ -67,29 +59,24 @@
No se han encontrado conversaciones archivadas
El archivo se ha vaciado correctamente
¿Estás seguro de que quieres vaciar el archivo\? Todas las conversaciones archivadas se perderán permanentemente.
-
Restaurar
Restaurar todos los mensajes
¿Estás seguro de que quieres vaciar la papelera de reciclaje\? Los mensajes se perderán definitivamente.
Olvídate de la papelera de reciclaje, borra los mensajes directamente
-
¿Estás seguro que quieres eliminar todos los mensajes en esta conversación\?
¿Seguro que quieres archivar %s\?
¿Estás seguro de que quieres restaurar todos los mensajes de esta conversación\?
¿Estás seguro de que quieres restaurar %s\?
-
- %d conversación
- %d conversaciones
- %d conversaciones
-
- %d mensaje
- %d mensajes
- %d mensajes
-
Teclado
Teclado bloqueado
Gestionar los teclados bloqueados
@@ -106,7 +93,6 @@
Mensajes salientes
Enviar mensajes de grupo como MMS
Enviar mensajes largos como MMS
-
Mensajes
Exportar mensajes
Exportar SMS
@@ -115,7 +101,6 @@
Importar SMS
Importar MMS
Tienes que seleccionar al menos un elemento
-
No se puede enviar un mensaje sino hay un número de teléfono
No se puede guardar el mensaje en la base de datos del teléfono
No se ha podido enviar el mensaje, el servicio no está disponible
@@ -127,15 +112,10 @@
El tamaño del archivo adjunto supera el límite máximo de MMS
No hay una tarjeta SIM disponible
No se puede descargar el MMS
-
¿Por qué la aplicación requiere acceso a internet\?
Tristemente es necesitado para enviar archivos adjuntos MMS. El no poder enviar MMS sería una desventaja realmente enorme comparada con otras aplicaciones, así que decidimos tomar este camino. Sin embargo, como siempre, no hay anuncios, rastreo o análisis, por lo que el internet solo es usado para enviar MMS.
El otro extremo no recibe mi MMS, ¿hay algo que pueda hacer al respecto\?
El tamaño de los MMS está limitado por los operadores, puede intentar establecer un límite más pequeño en la configuración de la aplicación.
¿La aplicación admite mensajes programados\?
Sí, puedes programar el envío de mensajes en el futuro pulsando prolongadamente el botón de envío y eligiendo la fecha y hora deseadas.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-et/strings.xml b/app/src/main/res/values-et/strings.xml
index 6afb19f7..187ff1f5 100644
--- a/app/src/main/res/values-et/strings.xml
+++ b/app/src/main/res/values-et/strings.xml
@@ -19,45 +19,35 @@
Eemalda kinnitus
Edasta
Pildi muutmine valitud suurusesse ei õnnestu
-
Topeltelement jäi välja
-
- ja %d muu
- ja %d muud
-
Uus vestlus
Lisa kontakt või number…
Ettepanekud
-
Liikmed
Vestluse nimi
Vestluse üksikasjad
Muuda vestluse nime
Ainult sina näed seda vestluse nime
-
Ajastatud sõnum
Ajasta sõnumi saatmine
Ajasta saatmine
Tühista ajastatud saatmine
Palun vali ajahetk tulevikust
Vaata, et telefon oleks sisse lülitatud ja mitte miski ei katkestaks selle rakenduse tööd taustal.
- Update message
Saada kohe
-
- Message details
Saatja
Saaja
Saatmise aeg
Saabumise aeg
-
Vastuvõetud SMS
Uus sõnum
Märgi loetuks
Märgi mitteloetuks
Mina
-
Eemalda arhiivist
Kustuta kõik arhiveeritud vestlused
Vestluste arhiiv
@@ -66,27 +56,22 @@
Arhiveeritud vestlusi ei leidu
Arhiiv on edukalt tühjendatud
Kas kindlasti soovid arhiivi tühjendada\? Kõik arhiveeritud vestlused lähevad jäädavalt kaotsi.
-
Taasta
Taasta kõik sõnumid
Kas sa oled kindel, et soovid prügikasti tühjendada\? Kõik seal leiduvad sõnumid lähevad lõplikult kaduma.
Jäta prügikast vahele, kustuta sõnumid kohe lõplikult
-
Kas oled kindel, et soovid kustutada kõik selle vestluse sõnumid\?
Kas sa oled kindel, et soovid lisada „%s“ arhiivi\?
Kas oled kindel, et soovid taastada kõik selle vestluse sõnumid\?
Kas sa oled kindel, et soovid taastada %s\?
-
- %d vestlus
- %d vestlust
-
- %d sõnum
- %d sõnumit
-
Märksõna
Blokeeritud märksõnad
Halda blokeeritud märksõnu
@@ -103,7 +88,6 @@
Väljuvad sõnumid
Saada rühmasõnumid MMS-sõnumitena
Saada pikad sõnumid MMS-ina
-
Sõnumid
Ekspordi sõnumid
Ekspordi tekstisõnumid
@@ -112,7 +96,6 @@
Impordi tekstisõnumid
Impordi MMS-sõnumid
Palun vali vähemalt üks kirje
-
Kui number on sisestamata, siis sõnumit saata ei saa
Sõnumi salvestamine ei õnnestu
Kuna teenus pole saadaval, siis sõnumi saatmine ei õnnestu
@@ -124,15 +107,10 @@
Manuse suurus ületab MMS-sõnumite mahu ülempiiri
SIM-kaart pole saadaval
MMS\'i allalaadimine ei õnnestu
-
Miks on selle rakenduse jaoks vajalik ligipääs internetile\?
Kahjuks saadetakse MMS-sõnumite manused üle interneti. Kuna muudel sarnastel rakendustel on MMS-sõnumite saatmise võimalus, siis me ei saanud sellest funktsionaalsusest ka loobuda. Aga nagu kõikide meie rakenduste puhul standardiks on, siis me ei näita reklaame ega kasuta kasutajate jälgmist ega ka analüütikat ning internetiühendus on kasutusel vaid MMS-sõnumite saatmisel.
Teine osapool ei saa minu saadetud MMS-sõnumeid kätte. Kas ma saan seda olukorda kuidagi mõjutada\?
Erinevatel mobiilsideteenuse pakkujatel on erinevad MMS-sõnumite mahupiirid. Proovi rakendusest määrata väiksema sõnumi suuruse piirangu.
Kas see rakendus võimaldab ajastatud sõnumite saatmist\?
Jah, sa saad saata sõnumeid tulevikus - selleks kasuta pikka vajutust nupul „Saada“ ning vali soovitud kuupäev ja kellaaeg.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-fi/strings.xml b/app/src/main/res/values-fi/strings.xml
index 1669be19..12a0d1f4 100644
--- a/app/src/main/res/values-fi/strings.xml
+++ b/app/src/main/res/values-fi/strings.xml
@@ -1,6 +1,5 @@
- SMS Messenger
Kirjoita viesti…
Viestiä ei lähetetty
Ei lähetetty. Yritä uudelleen koskemalla.
@@ -19,24 +18,19 @@
Poista
Välitä
Kuvan pakkaaminen valittuun kokoon ei onnistu
-
Kaksoiskappaletta ei sisällytetty
-
- ja %d muu
- ja %d muuta
-
Uusi keskustelu
Lisää yhteystieto tai numero…
Ehdotuksia
-
Jäsenet
Keskustelun nimi
Keskustelun tiedot
Nimeä keskustelu uudelleen
Vain sinä voit nähdä tämän keskustelun nimen
-
Ajastettu viesti
Ajoita viestin lähetys
Ajasta lähetys
@@ -45,19 +39,16 @@
Pidä puhelin päällä ja varmista, ettei sovellusta lopeteta taustalla.
Päivitä viesti
Lähetä nyt
-
Viestin yksityiskohdat
Lähettäjä
Vastaanottaja
Lähetetty
Vastaanotettu
-
Vastaanotettu tekstiviesti
Uusi viesti
Merkitse luetuksi
Merkitse lukemattomaksi
Minä
-
Poista arkivointi
Poista kaikki arkivoidut keskustelut
Arkisto
@@ -66,27 +57,22 @@
Arkivoituja keskusteluja ei löytynyt
Arkisto tyhjennettiin onnistuneesti
Haluatko tyhjentää arkiston\? Kaikki arkivoidut keskustelut menetetään pysyvästi.
-
Palauta
Palauta kaikki viestit
Haluatko tyhjentää Roskakorin\? Viestit menetetään pysyvästi.
Ohita Roskakori, poista viestit välittömästi
-
Haluatko varmasti poistaa kaikki tämän keskustelun viestit\?
Haluatko arkivoida %s\?
Haluatko palauttaa tämän keskustelun kaikki viestit\?
Haluatko palauttaa %s\?
-
- %d keskustelu
- %d keskustelut
-
- %d viesti
- %d viestit
-
Avainsana
Estetyt avainsanat
Hallitse estettyjä avainsanoja
@@ -103,7 +89,6 @@
Lähtevät viestit
Lähetä ryhmäviestit MMS:nä
Lähetä pitkät viestit MMS:nä
-
Viestit
Vie viestejä
Vie tekstiviestit
@@ -112,7 +97,6 @@
Tuo tekstiviestejä
Tuo kuvaviestejä
Sinun on valittava vähintään yksi kohde
-
Et voi lähettää viestiä tyhjään numeroon
Viestin tallennus puhelintietokantaan ei onnistu
Viestin lähetys ei onnistu, palvelua ei tavoiteta
@@ -124,15 +108,10 @@
Liitteen koko ylittää MMS-viestin enimmäiskoon
SIM kortti ei saatavilla
MMS lataus epäonnistui
-
Miksi sovellus vaatii Internet-yhteyden\?
Valitettavasti sitä tarvitaan multimediaviestin liitteiden lähettämiseen. Multimediaviestien lähettämättä jättäminen olisi todella valtava haitta muihin sovelluksiin verrattuna, joten päätimme mennä tällä tavalla. Kuten yleensä, mainoksia, seurantaa tai analytiikkaa ei kuitenkaan ole, internetiä käytetään vain multimediaviestien lähettämiseen.
Vastaanottaja ei vastaanota MMS-viestejäni, voinko tehdä asialle mitään\?
Operaattorit rajoittavat MMS-kokoa, voit yrittää asettaa pienemmän rajan sovelluksen asetuksissa.
Tukeeko sovellus ajoitettua viestien lähetystä\?
Kyllä tukee ja voit ajoittaa viestin lähetyksen painamalla lähetyspainiketta pitkään ja valitsemalla halutun päivän ja kellonajan.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml
index 9391580a..eaa7643a 100644
--- a/app/src/main/res/values-fr/strings.xml
+++ b/app/src/main/res/values-fr/strings.xml
@@ -19,25 +19,19 @@
Désépingler
Transférer
Impossible de compresser l\'image à la taille sélectionnée
-
L\'élément en double n\'a pas été inclus
-
- et %d autre
- et %d autres
- et %d autres
-
Nouvelle conversation
Ajouter un contact ou un numéro…
- Suggestions
-
Membres
Nom de la conversation
Détails de la conversation
Renommer la conversation
Vous seul·e pouvez voir le nom de cette conversation
-
Message planifié
Planifier un message
Planifier l\'envoi
@@ -46,50 +40,40 @@
Gardez le téléphone allumé et assurez-vous que l\'application ne soit pas fermée en arrière-plan.
Mettre à jour le message
Envoyer maintenant
-
Détails du message
Expéditeur
Destinataire
Envoyé à
Reçu à
-
SMS reçus
Nouveau message
Marquer comme lu
Marquer comme non lu
Moi
-
Désarchiver
Supprimer toutes les conversations archivées
- Archive
Afficher les conversations archivées
- Archive
Aucune conversation archivée n\'a été trouvée
L\'archive a été vidée avec succès
Voulez-vous vraiment vider l\'archive \? Toutes les conversations archivées seront définitivement perdues.
-
Restaurer
Restaurer tous les messages
Voulez-vous vraiment vider la corbeille \? Les messages seront définitivement perdus.
Ignorer la corbeille, supprimer les messages directement
-
Voulez-vous vraiment supprimer tous les messages de cette conversation \?
Voulez-vous vraiment archiver %s \?
Voulez-vous vraiment restaurer tous les messages de cette conversation \?
Voulez-vous vraiment restaurer %s \?
-
- %d conversation
- %d conversations
- %d conversations
-
- %d message
- %d messages
- %d messages
-
Mot-clé
Mots-clés bloqués
Gérer les mots-clés bloqués
@@ -106,8 +90,6 @@
Messages sortants
Envoyer les messages de groupe en tant que MMS
Envoyer les messages longs en tant que MMS
-
- Messages
Exporter des messages
Exporter des SMS
Exporter des MMS
@@ -115,7 +97,6 @@
Importer des SMS
Importer des MMS
Vous devez sélectionner au moins un élément
-
Impossible d\'envoyer un message à un numéro vide
Impossible d\'enregistrer le message dans la base de données téléphonique
Impossible d\'envoyer le message, service indisponible
@@ -127,15 +108,10 @@
La taille de la pièce jointe dépasse la limite maximale d\'un MMS
Carte SIM indisponible
Impossible de télécharger le MMS
-
Pourquoi l\'application nécessite-t-elle un accès à Internet \?
Malheureusement, il est nécessaire pour envoyer des pièces jointes MMS. Ne pas pouvoir envoyer de MMS serait un énorme inconvénient par rapport à d\'autres applications. Nous avons donc décidé de suivre cette voie. Cependant, comme d’habitude, il n’y a aucune publicité, suivi ou analyse. Internet est utilisé uniquement pour l’envoi de MMS.
Le destinataire ne reçoit pas mes MMS. Y a-t-il quelque chose que je puisse faire \?
La taille des MMS est limitée par les opérateurs. Vous pouvez essayer de fixer une limite plus petite dans les paramètres de l\'application.
L\'application prend-elle en charge les messages planifiés \?
Oui, vous pouvez planifier l\'envoi de messages dans le futur en appuyant longuement sur le bouton Envoyer et en choisissant la date et l\'heure souhaitées.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-gl/strings.xml b/app/src/main/res/values-gl/strings.xml
index 81fe395d..571e6eef 100644
--- a/app/src/main/res/values-gl/strings.xml
+++ b/app/src/main/res/values-gl/strings.xml
@@ -15,83 +15,42 @@
O remitente non admite respostas
Borrador
Enviando…
- Pin to the top
Desenganche
Adiante
Non se puido comprimir a imaxe ao tamaño seleccionado
-
Non se incluíu o elemento duplicado
-
- E %d outro
- E %d outros
-
Nova conversa
Engadir contacto ou número…
Suxerencias
-
Membros
Nome da conversa
Detalles da conversa
Cambialo nome da conversa
Só ti podes velo nome desta conversa
-
Mensaxe programada
Programala mensaxe
Programar envío
Cancelar o envío programado
Debes escoller un momento no futuro
Mantén o teléfono acendido e asegúrate de que non hai nada que mate a aplicación en segundo plano.
- Update message
Enviar agora
-
- Message details
- Sender
- Receiver
- Sent at
- Received at
-
SMS recibida
Nova mensaxe
Marcar como lida
Marcar como non lida
- Me
-
- Unarchive
- Delete all archived conversations
- Archive
- Show archived conversations
- Archive
- No archived conversations have been found
- The archive has been emptied successfully
- Are you sure you want to empty the archive? All archived conversations will be permanently lost.
-
- Restore
- Restore all messages
- Are you sure you want to empty the Recycle Bin? The messages will be permanently lost.
- Skip the Recycle Bin, delete messages directly
-
Ten a certeza de que desexa eliminar todas as mensaxes desta conversa\?
- Are you sure you want to archive %s?
- Are you sure you want to restore all messages of this conversation?
- Are you sure you want to restore %s?
-
- %d conversa
- %d conversas
-
- %d mensaxe
- %d mensaxes
-
- Keyword
- Blocked keywords
- Manage blocked keywords
- You are not blocking any keywords. You may add keywords here to block all messages containing them.
- Add a blocked keyword
Visibilidade das notificacións na pantalla de bloqueo
Remitente e mensaxe
Só remitente
@@ -103,16 +62,9 @@
Mensaxes saíntes
Enviar mensaxes de grupo como MMS
Envía mensaxes longas como MMS
-
- Messages
- Export messages
- Export SMS
Exportar MMS
- Import messages
- Import SMS
Importar MMS
Ten que seleccionar polo menos un obxecto
-
Non se pode enviar a mensaxe a un número baleiro
Non se puido gardala mensaxe na base de datos
Non se puido enviala mensaxe, o servizo non está dispoñible
@@ -122,17 +74,10 @@
Non se pode responder a códigos curtos como este
Só podes responder a códigos curtos con números como \"503501\", pero non a códigos que conteñan letras e números como \"AB-CD0\".
O tamaño dos anexos supera o límite máximo dos MMS
- SIM card not available
- Couldn\'t download MMS
-
Por que o aplicativo necesita acceder a Internet\?
Infelizmente é a única forma para poder enviar anexos MMS. A incapacidade de non conseguir enviar MMS sería unha enorme desvantaxe comparativamente a outros aplicativos e, por iso, tomamos esta decisión. Pero, como habitualmente, o aplicativo non ten anuncios, non rastrea os utilizadores nin recolle datos persoais. Este permiso só é necesario para enviar as MMS.
O outro extremo non está recibindo o meu MMS, ¿podo facer algo ao respecto\?
O tamaño dos MMS está limitado polos operadores; podes tentar establecer un límite máis pequeno na configuración da aplicación.
A aplicación admite mensaxes programadas\?
Si, pode programalo envío de mensaxes no futuro premendo no botón Enviar e escollendo a data e a hora desexadas.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-hi/strings.xml b/app/src/main/res/values-hi/strings.xml
index d0695960..c2aa5bf4 100644
--- a/app/src/main/res/values-hi/strings.xml
+++ b/app/src/main/res/values-hi/strings.xml
@@ -1,138 +1,20 @@
- SMS Messenger
- Type a message…
- Message not sent
- Not sent. Touch to retry.
- Your message to \'%s\' has not been sent
- Add Person
- Attachment
- No stored conversations have been found
- Start a conversation
- Reply
- Show a character counter at writing messages
- Loading messages…
- Sender doesn\'t support replies
- Draft
- Sending…
- Pin to the top
- Unpin
- Forward
- Unable to compress image to selected size
-
- Duplicate item was not included
-
- and %d other
- and %d others
-
- New conversation
- Add Contact or Number…
- Suggestions
-
- Members
- Conversation name
- Conversation details
- Rename conversation
- Only you can see this conversation name
-
- Scheduled message
- Schedule message
- Schedule send
- Cancel schedule send
- You must pick a time in the future
- Keep the phone on and make sure there is nothing killing the app while in background.
- Update message
- Send now
-
- Message details
- Sender
- Receiver
- Sent at
- Received at
-
- Received SMS
- New message
- Mark as Read
- Mark as Unread
- Me
-
- Unarchive
- Delete all archived conversations
- Archive
- Show archived conversations
- Archive
- No archived conversations have been found
- The archive has been emptied successfully
- Are you sure you want to empty the archive? All archived conversations will be permanently lost.
-
- Restore
- Restore all messages
- Are you sure you want to empty the Recycle Bin? The messages will be permanently lost.
- Skip the Recycle Bin, delete messages directly
-
Are you sure you want to delete all messages of this conversation\?
- Are you sure you want to archive %s?
- Are you sure you want to restore all messages of this conversation?
- Are you sure you want to restore %s?
-
- %d conversation
- %d conversations
-
- %d message
- %d messages
-
- Keyword
- Blocked keywords
- Manage blocked keywords
- You are not blocking any keywords. You may add keywords here to block all messages containing them.
- Add a blocked keyword
- Lock screen notification visibility
- Sender and message
- Sender only
- Enable delivery reports
- Remove accents and diacritics at sending messages
- Send message on pressing Enter
- Resize sent MMS images
- No limit
- Outgoing messages
- Send group messages as MMS
- Send long messages as MMS
-
- Messages
- Export messages
- Export SMS
- Export MMS
- Import messages
- Import SMS
- Import MMS
- You have to select at least one item
-
- Can\'t send message to an empty number
- Unable to save message to the telephony database
- Couldn\'t send message, service unavailable
- Couldn\'t send message, radio turned off
- Couldn\'t send message, carrier error
Couldn\'t send message, error code: %1$d
- Can\'t reply to short codes like this
- You can only reply to short codes with numbers like \"503501\" but not to codes containing letters and numbers like \"AB-CD0\".
- Attachment size exceeds max MMS limit
- SIM card not available
- Couldn\'t download MMS
-
Why does the app require access to the internet\?
Sadly it is needed for sending MMS attachments. Not being able to send MMS would be a really huge disadvantage compared to other apps, so we decided to go this way. However, as usually, there are no ads, tracking or analytics whatsoever, the internet is used only for sending MMS.
The other end is not receiving my MMS, is there anything I can do about it\?
- MMS size is limited by carriers, you can try setting a smaller limit in the app settings.
- Does the app support scheduled messages?
- Yes, you can schedule messages to be sent in the future by long pressing the Send button and picking the desired date and time.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-hr/strings.xml b/app/src/main/res/values-hr/strings.xml
index b5dfe550..251c1e55 100644
--- a/app/src/main/res/values-hr/strings.xml
+++ b/app/src/main/res/values-hr/strings.xml
@@ -19,25 +19,20 @@
Otkvači
Proslijedi
Isključi za komprimiranje slike na odabranu veličinu
-
Duplikat elementa nije uključen
-
- i još %d druga
- i još %d druge
- i još %d drugih
-
Novi razgovor
Dodaj kontakt ili broj …
Prijedlozi
-
Članovi
Naslov razgovora
Detalji razgovora
Preimenuj razgovor
Naslov ovog razgovora možeš samo ti vidjeti
-
Zakazana poruka
Raspored poruka
Raspored slanja
@@ -46,19 +41,16 @@
Ostavi telefon uključen i provjeri da ništa ne prekida rad aplikacije kada je u pozadini.
Ažuriraj poruku
Pošalji sada
-
Pojedinosti poruke
Šalje
Prima
Poslano
Primljeno
-
Primljene SMS poruke
Nova poruka
Označi kao pročitano
Označi kao nepročitano
Ja
-
Vrati iz arhiva
Izbriši sve arhivirane razgovore
Arhiv
@@ -67,29 +59,24 @@
Nema arhiviranih razgovora
Arhiv je uspješno ispražnjen
Jeste li ste sigurni da želite isprazniti arhiv? Svi arhivirani razgovori će biti obrisani.
-
Vrati
Vrati sve poruke
Stvarno želiš isprazniti koš za smeće? Poruke će biti trajno izgubljene.
Preskoči koš za smeće, izbriši poruke odmah
-
Stvarno želiš izbrisati sve poruke ovog razgovora\?
Stvarno želiš arhivirati %s?
Stvarno želiš vratiti sve poruke iz ovog razgovora?
Stvarno želiš vratiti %s?
-
- %d razgovor
- %d razgovora
- %d razgovora
-
- %d poruka
- %d poruke
- %d poruka
-
Riječ
Blokirane riječi
Upravljanje blokiranim riječima
@@ -106,7 +93,6 @@
Izlazne poruke
Pošalji poruku za grupu kao MMS
Pošalji dugačku poruku kao MMS
-
Poruke
Izvezi poruke
Izvezi SMS poruke
@@ -115,7 +101,6 @@
Uvezi SMS poruke
Uvezi MMS poruke
Moraš odabrati barem jednu stavku
-
Nije moguće poslati poruku na prazan broj
Nije moguće spremiti poruku u bazu podataka telefoniranja
Nije moguće poslati poruku, usluga je nedostupna
@@ -126,16 +111,10 @@
Možeš odgovoriti samo na kratke kodove s brojevima poput „503501”, ali ne i na kodove koji sadrže slova i brojke poput „AB-CD0”.
Veličina privitka premašuje maksimalno ograničenje MMS-a
SIM kartica nije dostupna
- Couldn\'t download MMS
-
Zašto aplikacija zahtijeva pristup internetu\?
Nažalost, potreban je za slanje MMS privitaka. Nemogućnost slanja MMS-a bila bi zaista veliki nedostatak u usporedbi s drugim aplikacijama, pa smo odlučili krenuti ovim putem. No, kao i obično, nema reklama, praćenja ili analiziranja podataka, internet se koristi samo za slanje MMS-a.
Druga strana ne prima moj MMS. Mogu li išta učiniti po tom pitanju\?
Veličinu MMS-a ograničavaju operateri. Možeš pokušati smanjiti ograničenje u postavkama aplikacije.
Podržava li aplikacija zakazane poruke\?
Da, možete zakazati slanje poruka u budućnosti tako da dugo pritisnete gumb Pošalji i odaberete željeni datum i vrijeme.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml
index b1fb21e5..7872c48a 100644
--- a/app/src/main/res/values-hu/strings.xml
+++ b/app/src/main/res/values-hu/strings.xml
@@ -19,24 +19,19 @@
Kitűzés megszüntetése
Továbbítás
Nem lehet tömöríteni a képet a kiválasztott méretre
-
Az ismételt elem nem lett belevéve
-
- és még %d fő
- és még %d fő
-
Új beszélgetés
Névjegy vagy szám hozzáadása…
Javaslatok
-
Tagok
Beszélgetés neve
Beszélgetés részletei
Beszélgetés átnevezése
Csak Ön láthatja a beszélgetés nevét
-
Ütemezett üzenet
Üzenet ütemezése
Küldés ütemezése
@@ -45,53 +40,20 @@
Tartsa bekapcsolva a telefont, és győződjön meg róla, hogy semmi sem lövi ki az alkalmazást a háttérben.
Üzenet frissítése
Küldés most
-
- Message details
- Sender
- Receiver
- Sent at
- Received at
-
SMS fogadva
Új üzenet
Megjelölés olvasottként
Megjelölés olvasatlanként
Nekem
-
- Unarchive
- Delete all archived conversations
- Archive
- Show archived conversations
- Archive
- No archived conversations have been found
- The archive has been emptied successfully
- Are you sure you want to empty the archive? All archived conversations will be permanently lost.
-
- Restore
- Restore all messages
- Are you sure you want to empty the Recycle Bin? The messages will be permanently lost.
- Skip the Recycle Bin, delete messages directly
-
Biztos, hogy törli az összes üzenetet ebből a beszélgetésből\?
- Are you sure you want to archive %s?
- Are you sure you want to restore all messages of this conversation?
- Are you sure you want to restore %s?
-
- %d beszélgetést
- %d beszélgetéseket
-
- %d üzenetet
- %d üzeneteket
-
- Keyword
- Blocked keywords
- Manage blocked keywords
- You are not blocking any keywords. You may add keywords here to block all messages containing them.
- Add a blocked keyword
Értesítés láthatósága zárolt képernyőnél
Feladó és üzenet
Csak a feladó
@@ -103,7 +65,6 @@
Kimenő üzenetek
Csoportos üzenetek küldése MMS-ként
Hosszú üzenetek küldése MMS-ként
-
Üzenetek
Üzenetek exportálása
SMS exportálása
@@ -112,7 +73,6 @@
SMS importálása
MMS importálása
Legalább egy elemet ki kell választania
-
Üres számra nem küldhető üzenet
Az üzenet nem menthető a telefónia-adatbázisba
Nem sikerült az üzenet elküldése, a szolgáltatás nem érhető el
@@ -121,18 +81,10 @@
Nem sikerült az üzenet elküldése, hibakód: %d
Nem válaszolhat így a rövid kódokra
Csak a számokat tartalmazó rövid kódokra válaszolhat, például a „503501”-re, de a számokat és betűket tartalmazókra, például a „AB-CD0”-ra, nem.
- Attachment size exceeds max MMS limit
- SIM card not available
- Couldn\'t download MMS
-
Miért kér az alkalmazás hozzáférést az internethez\?
Sajnos szükséges az MMS-mellékletek küldéséhez. Az MMS-küldés hiánya olyan nagy hátrány más alkalmazásokhoz képest, hogy inkább mellette döntöttünk. Viszont, mint általában, nincsenek reklámok, követés, vagy analitika és az internetet csak az MMS küldéséhez használjuk.
A másik fél nem kapja meg az MMS-emet, tehetek valamit ez ellen\?
Az MMS méretét korlátozzák a szolgáltatók, próbáljon kisebb korlátot beállítani az alkalmazásbeállításokban.
Az alkalmazás támogatja az ütemezett üzeneteket\?
Igen, a Küldés gomb hosszú megnyomásával, és a kívánt dátum és idő kiválasztásával beütemezheti a jövőben elküldendő üzeneteket.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-in/strings.xml b/app/src/main/res/values-in/strings.xml
index 02bb5bdf..ff43c93d 100644
--- a/app/src/main/res/values-in/strings.xml
+++ b/app/src/main/res/values-in/strings.xml
@@ -1,6 +1,5 @@
- SMS Messenger
Ketik pesan…
Pesan tidak terkirim
Tidak terkirim. Sentuh untuk mencoba lagi.
@@ -15,80 +14,39 @@
Pengirim tidak mendukung balasan
Draf
Mengirim…
- Pin to the top
Lepas sematan
Teruskan
Tidak dapat mengompres gambar ke ukuran yang dipilih
-
Item duplikat tidak termasuk
-
- and %d others
-
Percakapan baru
Tambahkan Kontak atau Nomor…
Saran
-
Anggota
Nama percakapan
Detail percakapan
Ubah nama percakapan
Hanya Anda yang dapat melihat nama percakapan ini
-
Pesan terjadwal
Jadwalkan pesan
Jadwalkan pengiriman
Batalkan jadwal pengiriman
Anda harus memilih waktu di masa depan
Tetap nyalakan ponsel dan pastikan tidak ada apa pun yang menutup aplikasi selagi di latar belakang.
- Update message
Kirim sekarang
-
- Message details
- Sender
- Receiver
- Sent at
- Received at
-
Menerima SMS
Pesan baru
Tandai sebagai Dibaca
Tandai sebagai Belum dibaca
- Me
-
- Unarchive
- Delete all archived conversations
- Archive
- Show archived conversations
- Archive
- No archived conversations have been found
- The archive has been emptied successfully
- Are you sure you want to empty the archive? All archived conversations will be permanently lost.
-
- Restore
- Restore all messages
- Are you sure you want to empty the Recycle Bin? The messages will be permanently lost.
- Skip the Recycle Bin, delete messages directly
-
Apakah Anda yakin ingin menghapus semua pesan dari percakapan ini\?
- Are you sure you want to archive %s?
- Are you sure you want to restore all messages of this conversation?
- Are you sure you want to restore %s?
-
- %d percakapan
-
- %d pesan
-
- Keyword
- Blocked keywords
- Manage blocked keywords
- You are not blocking any keywords. You may add keywords here to block all messages containing them.
- Add a blocked keyword
Keterlihatan notifikasi layar kunci
Pengirim dan pesan
Hanya pengirim
@@ -100,16 +58,9 @@
Pesan keluar
Kirim pesan grup sebagai MMS
Kirim pesan panjang sebagai MMS
-
- Messages
- Export messages
- Export SMS
Ekspor MMS
- Import messages
- Import SMS
Impor MMS
Anda harus memilih setidaknya satu item
-
Tidak dapat mengirim pesan ke nomor kosong
Tidak dapat menyimpan pesan ke basis data telefoni
Tidak dapat mengirim pesan, layanan tidak tersedia
@@ -118,18 +69,10 @@
Tidak dapat mengirim pesan, kode kesalahan: %d
Tidak dapat membalas ke kode pendek seperti ini
Anda hanya dapat membalas ke kode pendek dengan nomor seperti \"503501\" tetapi tidak ke kode berisi huruf dan angka seperti \"AB-CD0\".
- Attachment size exceeds max MMS limit
- SIM card not available
- Couldn\'t download MMS
-
Mengapa aplikasi ini membutuhkan akses ke internet\?
Sayangnya itu diperlukan untuk mengirim lampiran MMS. Tidak dapat mengirim MMS akan menjadi kerugian yang sangat besar dibandingkan dengan aplikasi lain, jadi kami memutuskan untuk menggunakan cara ini. Namun, seperti biasanya, tidak ada iklan, pelacakan atau analitik apa pun, internet hanya digunakan untuk mengirim MMS.
Pihak lain tidak menerima MMS saya, adakah sesuatu yang saya bisa lakukan\?
Ukuran MMS dibatasi oleh penyedia, Anda dapat menetapkan batas yang lebih kecil dalam pengaturan aplikasi.
Apakah aplikasi mendukung penjadwalan pesan\?
Ya, Anda bisa menjadwalkan pesan untuk dikirim di masa depan dengan menekan lama pada tombol Kirim dan memilih tanggal dan waktu yang diinginkan.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-is/strings.xml b/app/src/main/res/values-is/strings.xml
index fa3b893c..ec0de1f1 100644
--- a/app/src/main/res/values-is/strings.xml
+++ b/app/src/main/res/values-is/strings.xml
@@ -1,134 +1,21 @@
- SMS Messenger
- Type a message…
- Message not sent
- Not sent. Touch to retry.
- Your message to \'%s\' has not been sent
- Add Person
- Attachment
- No stored conversations have been found
- Start a conversation
- Reply
- Show a character counter at writing messages
- Loading messages…
- Sender doesn\'t support replies
- Draft
- Sending…
- Pin to the top
- Unpin
- Forward
- Unable to compress image to selected size
-
- Duplicate item was not included
-
- and %d other
- and %d others
-
- New conversation
- Add Contact or Number…
- Suggestions
-
- Members
- Conversation name
- Conversation details
- Rename conversation
- Only you can see this conversation name
-
- Scheduled message
- Schedule message
- Schedule send
- Cancel schedule send
- You must pick a time in the future
- Keep the phone on and make sure there is nothing killing the app while in background.
- Update message
- Send now
-
- Message details
- Sender
- Receiver
- Sent at
- Received at
-
- Received SMS
- New message
- Mark as Read
- Mark as Unread
- Me
-
- Unarchive
- Delete all archived conversations
- Archive
- Show archived conversations
- Archive
- No archived conversations have been found
- The archive has been emptied successfully
- Are you sure you want to empty the archive? All archived conversations will be permanently lost.
-
- Restore
- Restore all messages
- Are you sure you want to empty the Recycle Bin? The messages will be permanently lost.
- Skip the Recycle Bin, delete messages directly
-
Are you sure you want to delete all messages of this conversation\?
- Are you sure you want to archive %s?
- Are you sure you want to restore all messages of this conversation?
- Are you sure you want to restore %s?
-
- %d conversation
- %d conversations
-
- %d message
- %d messages
-
- Keyword
- Blocked keywords
- Manage blocked keywords
- You are not blocking any keywords. You may add keywords here to block all messages containing them.
- Add a blocked keyword
- Lock screen notification visibility
- Sender and message
- Sender only
- Enable delivery reports
- Remove accents and diacritics at sending messages
- Send message on pressing Enter
- Resize sent MMS images
- No limit
- Outgoing messages
- Send group messages as MMS
- Send long messages as MMS
-
- Messages
- Export messages
- Export SMS
- Export MMS
- Import messages
- Import SMS
- Import MMS
- You have to select at least one item
-
- Can\'t send message to an empty number
- Unable to save message to the telephony database
- Couldn\'t send message, service unavailable
- Couldn\'t send message, radio turned off
- Couldn\'t send message, carrier error
Couldn\'t send message, error code: %1$d
- Can\'t reply to short codes like this
- You can only reply to short codes with numbers like \"503501\" but not to codes containing letters and numbers like \"AB-CD0\".
- Attachment size exceeds max MMS limit
- SIM card not available
- Couldn\'t download MMS
-
Why does the app require access to the internet\?
Sadly it is needed for sending MMS attachments. Not being able to send MMS would be a really huge disadvantage compared to other apps, so we decided to go this way. However, as usually, there are no ads, tracking or analytics whatsoever, the internet is used only for sending MMS.
The other end is not receiving my MMS, is there anything I can do about it\?
- MMS size is limited by carriers, you can try setting a smaller limit in the app settings.
Does the app support scheduled messages\?
- Yes, you can schedule messages to be sent in the future by long pressing the Send button and picking the desired date and time.
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml
index 98b4c057..0de56ff2 100644
--- a/app/src/main/res/values-it/strings.xml
+++ b/app/src/main/res/values-it/strings.xml
@@ -19,25 +19,20 @@
Rimuovi
Inoltra
Impossibile comprimere l\'immagine alla dimensione selezionata
-
L\'elemento duplicato non è stato incluso
-
- e %d altro
- e %d altri
- e %d altri
-
Nuova conversazione
Inserisci contatto o numero…
Suggerimenti
-
Membri
Nome della conversazione
Dettagli della conversazione
Rinomina la conversazione
Solo tu puoi vedere il nome di questa conversazione
-
Messaggio programmato
Messaggio programmato
Invio programmato
@@ -46,19 +41,16 @@
Tieni il telefono acceso e assicurati che non ci sia nulla che chiuda l\'app in sfondo.
Aggiorna il messaggio
Invia ora
-
Dettagli del messaggio
Mittente
Ricevente
Inviato alle
Ricevuto alle
-
SMS ricevuto
Nuovo messaggio
Letto
Non letto
Io
-
Disarchivia
Elimina tutte le conversazioni archiviate
Archivia
@@ -67,29 +59,24 @@
Non è stata trovata alcuna conversazione archiviata
L\'archivio è stato svuotato con successo
Sei sicuro/a di voler svuotare l\'archivio\? Tutte le conversazioni archiviate andranno perse definitivamente.
-
Ripristina
Ripristina tutti i messaggi
Sei sicuro/a di voler svuotare il Cestino\? I messaggi andranno persi definitivamente.
Salta il Cestino, elimina i messaggi direttamente
-
Vuoi davvero eliminare tutti i messaggi di questa conversazione\?
Sei sicuro/a di voler archiviare %s\?
Sei sicuro/a di voler ripristinare tutti i messaggi di questa conversazione\?
Sei sicuro/a di voler ripristinare %s\?
-
- %d conversazione
- %d conversazioni
- %d conversazioni
-
- %d messaggio
- %d messaggi
- %d messaggi
-
Parola chiave
Parole chiave bloccate
Gestisci le parole chiave bloccate
@@ -106,7 +93,6 @@
Messaggi in uscita
Invia messaggi di gruppo come MMS
Invia i messaggi lunghi come MMS
-
Messaggi
Esporta messaggi
Esporta SMS
@@ -115,7 +101,6 @@
Importa SMS
Importa MMS
Devi selezionare almeno un elemento
-
Non è possibile inviare un messaggio a un numero vuoto
Impossibile salvare il messaggio nella base di dati della telefonia
Impossibile inviare il messaggio, servizio non disponibile
@@ -127,15 +112,10 @@
La dimensione dell\'allegato supera il limite massimo degli MMS
Carta SIM non disponibile
Non è stato possibile scaricare MMS
-
Perché l\'applicazione richiede l\'accesso ad internet\?
Purtroppo è necessario per poter inviare gli allegati degli MMS. Non essere in grado di inviare gli MMS sarebbe un grosso svantaggio in confronto ad altre applicazioni, quindi abbiamo deciso di intraprendere questa strada. Ad ogni modo, come sempre, non ci sono pubblicità o tracciamenti, internet è utilizzato soltanto per l\'invio degli MMS.
L\'altro capo non riceve i miei MMS, c\'è qualcosa che posso fare\?
La dimensione degli MMS è limitata dai vettori, puoi provare a impostare un limite più piccolo nelle impostazioni dell\'app.
L\'app supporta i messaggi programmati\?
Sì, è possibile programmare l\'invio di messaggi in futuro premendo a lungo il pulsante Invia e scegliendo la data e l\'ora desiderate.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-iw/strings.xml b/app/src/main/res/values-iw/strings.xml
index 2fd8318d..686d0868 100644
--- a/app/src/main/res/values-iw/strings.xml
+++ b/app/src/main/res/values-iw/strings.xml
@@ -19,97 +19,43 @@
בטל הצמדה
התקדם
לא ניתן לדחוס תמונה לגודל שנבחר
-
- Duplicate item was not included
-
- and %d other
- and %d others
- and %d others
- and %d others
-
שיחה חדשה
הוסף איש קשר או מספר…
הצעות
-
- Members
- Conversation name
- Conversation details
- Rename conversation
- Only you can see this conversation name
-
- Scheduled message
- Schedule message
- Schedule send
- Cancel schedule send
- You must pick a time in the future
- Keep the phone on and make sure there is nothing killing the app while in background.
- Update message
- Send now
-
- Message details
- Sender
- Receiver
- Sent at
- Received at
-
קבלת סמס
הודעה חדשה
סמן כנקרא
סמן כלא נקרא
אני
-
- Unarchive
- Delete all archived conversations
- Archive
- Show archived conversations
- Archive
- No archived conversations have been found
- The archive has been emptied successfully
- Are you sure you want to empty the archive? All archived conversations will be permanently lost.
-
- Restore
- Restore all messages
- Are you sure you want to empty the Recycle Bin? The messages will be permanently lost.
- Skip the Recycle Bin, delete messages directly
-
האם אתה בטוח שברצונך למחוק את כל ההודעות של השיחה הזו\?
- Are you sure you want to archive %s?
- Are you sure you want to restore all messages of this conversation?
- Are you sure you want to restore %s?
-
- שיחה %d
- שיחות %d
- %d שיחה
- %d שיחות
-
- הודעה %d
- %d הודעות
- %d הודעות
- %d הודעות
-
- Keyword
- Blocked keywords
- Manage blocked keywords
- You are not blocking any keywords. You may add keywords here to block all messages containing them.
- Add a blocked keyword
נראות התראות מסך נעילה
שולח והודעה
השולח בלבד
אפשר דוחות מסירה
הסר מבטאים ודיאקריטים בעת שליחת הודעות
- Send message on pressing Enter
שנה את הגודל של תמונות MMS שנשלחו
ללא גבול
הודעות יוצאות
שלח הודעות קבוצתיות כ-MMS
שלח הודעות ארוכות כ-MMS
-
הודעות
ייצוא הודעות
ייצוא סמס
@@ -118,27 +64,9 @@
ייבוא סמס
ייבוא MMS
עליך לבחור לפחות פריט אחד
-
- Can\'t send message to an empty number
- Unable to save message to the telephony database
- Couldn\'t send message, service unavailable
- Couldn\'t send message, radio turned off
- Couldn\'t send message, carrier error
Couldn\'t send message, error code: %1$d
- Can\'t reply to short codes like this
- You can only reply to short codes with numbers like \"503501\" but not to codes containing letters and numbers like \"AB-CD0\".
- Attachment size exceeds max MMS limit
- SIM card not available
- Couldn\'t download MMS
-
מדוע האפליקציה דורשת גישה לאינטרנט\?
למרבה הצער, זה נחוץ לשליחת קבצי MMS מצורפים. אי היכולת לשלוח MMS תהיה חיסרון עצום בהשוואה לאפליקציות אחרות, אז החלטנו ללכת בדרך זו. עם זאת, כמו בדרך כלל, אין מודעות, מעקב או ניתוח כלשהם, האינטרנט משמש רק לשליחת MMS.
הקצה השני לא מקבל את ה-MMS שלי, האם יש משהו שאני יכול לעשות בנידון\?
גודל ה-MMS מוגבל על ידי הספקים, אתה יכול לנסות להגדיר מגבלה קטנה יותר בהגדרות האפליקציה.
- Does the app support scheduled messages?
- Yes, you can schedule messages to be sent in the future by long pressing the Send button and picking the desired date and time.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml
index e7ca6120..c0d6c656 100644
--- a/app/src/main/res/values-ja/strings.xml
+++ b/app/src/main/res/values-ja/strings.xml
@@ -19,23 +19,18 @@
固定を外す
転送
選択したサイズに画像を圧縮できません
-
重複したアイテムは含まれていませんでした
-
- and %d others
-
新しい会話
連絡先や電話番号を追加…
提案
-
メンバー
会話名
会話の詳細
会話名を変更
この会話名は相手には表示されません
-
予約されたメッセージ
予約メッセージ
予約送信
@@ -44,51 +39,18 @@
端末の電源を入れたままにしつつ、アプリがバックグラウンドで強制終了されないようにしてください(バッテリー節約設定からこのアプリを除外してください)。
メッセージを更新
今すぐ送信
-
- Message details
- Sender
- Receiver
- Sent at
- Received at
-
受信した SMS
新しいメッセージ
既読にする
未読にする
自分
-
- Unarchive
- Delete all archived conversations
- Archive
- Show archived conversations
- Archive
- No archived conversations have been found
- The archive has been emptied successfully
- Are you sure you want to empty the archive? All archived conversations will be permanently lost.
-
- Restore
- Restore all messages
- Are you sure you want to empty the Recycle Bin? The messages will be permanently lost.
- Skip the Recycle Bin, delete messages directly
-
本当にこの会話のすべてのメッセージを削除しますか?
- Are you sure you want to archive %s?
- Are you sure you want to restore all messages of this conversation?
- Are you sure you want to restore %s?
-
- %d 件の会話
-
- %d 件のメッセージ
-
- Keyword
- Blocked keywords
- Manage blocked keywords
- You are not blocking any keywords. You may add keywords here to block all messages containing them.
- Add a blocked keyword
ロック画面の通知表示
差出人とメッセージ
差出人のみ
@@ -100,7 +62,6 @@
送信するメッセージ
グループメッセージは MMS として送信
長いメッセージを MMS として送信
-
メッセージ
メッセージをエクスポート
SMS をエクスポート
@@ -109,7 +70,6 @@
SMS をインポート
MMS をインポート
1 つ以上のアイテムを選択する必要があります
-
番号を空にすることはできません
メッセージを電話データベースに保存できませんでした
メッセージを送信できませんでした (サービス利用不可)
@@ -118,18 +78,10 @@
メッセージを送信できませんでした (エラーコード: %d)
このようなショートコードには返信できません
「503501」のような数字のみのショートコードには返信できますが、「AB-CD0」のようなアルファベットと数字を含んだショートコードには返信できません。
- Attachment size exceeds max MMS limit
- SIM card not available
- Couldn\'t download MMS
-
なぜアプリの使用にインターネットへのアクセスが必要なのですか?
MMS (マルチメディアメッセージサービス) にはインターネットが必要となります。ほかのアプリでは使用できる MMS が使用できないことは大きな不利益となるため、このようになっています。 ただし、通常通り広告・追跡・分析は一切行わず、インターネットは MMS のみに使用されます。
メッセージ相手が MMS を受信できません。何かできますか?
MMS のサイズは通信キャリアによって制限されています。アプリの設定で制限を小さくしてみてください(「送信する MMS の画像をリサイズ」から制限を小さくできます)。
アプリは予約メッセージをサポートしていますか?
はい、送信ボタンを長押しして、希望の日付と時刻を選択することで、今後送信したいメッセージを予約できます。
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-lt/strings.xml b/app/src/main/res/values-lt/strings.xml
index 0a43bd99..da6b7248 100644
--- a/app/src/main/res/values-lt/strings.xml
+++ b/app/src/main/res/values-lt/strings.xml
@@ -19,93 +19,39 @@
Atjunkite
Pirmyn
Nepavyksta suspausti vaizdo iki pasirinkto dydžio
-
- Duplicate item was not included
-
- and %d other
- and %d others
-
Naujas pokalbis
Pridėti kontaktą arba numerį…
Pasiūlymai
-
- Members
- Conversation name
- Conversation details
- Rename conversation
- Only you can see this conversation name
-
- Scheduled message
- Schedule message
- Schedule send
- Cancel schedule send
- You must pick a time in the future
- Keep the phone on and make sure there is nothing killing the app while in background.
- Update message
- Send now
Aš
-
- Message details
- Sender
- Receiver
- Sent at
- Received at
-
Gautos žinutės
Nauja žinutė
Pažymėti kaip perskaitytą
Pažymėti kaip neskaitytą
-
- Unarchive
- Delete all archived conversations
- Archive
- Show archived conversations
- Archive
- No archived conversations have been found
- The archive has been emptied successfully
- Are you sure you want to empty the archive? All archived conversations will be permanently lost.
-
- Restore
- Restore all messages
- Are you sure you want to empty the Recycle Bin? The messages will be permanently lost.
- Skip the Recycle Bin, delete messages directly
-
Ar tikrai norite ištrinti visas šio pokalbio žinutes\?
- Are you sure you want to archive %s?
- Are you sure you want to restore all messages of this conversation?
- Are you sure you want to restore %s?
-
- %d pokalbis
- %d pokalbiai
- %d pokalbiai
-
- %d žinutė
- %d žinutės
- %d žinutės
-
- Keyword
- Blocked keywords
- Manage blocked keywords
- You are not blocking any keywords. You may add keywords here to block all messages containing them.
- Add a blocked keyword
Užrakinto ekrano pranešimų matomumas
Siuntėjas ir pranešimas
Tik siuntėjas
Įgalinti pristatymo ataskaitas
Pašalinti akcentus ir diakritinius ženklus siunčiant pranešimus
- Send message on pressing Enter
Atsiųstų MMS vaizdų dydžio keitimas
Jokių apribojimų
Išeinantys pranešimai
Grupės žinučių siuntimas kaip MMS
Ilgų žinučių siuntimas kaip MMS
-
Žinutės
Eksportuoti pranešimus
Eksportuoti SMS
@@ -114,27 +60,9 @@
Importuoti SMS
Importuoti MMS
Turite pasirinkti bent vieną elementą
-
- Can\'t send message to an empty number
- Unable to save message to the telephony database
- Couldn\'t send message, service unavailable
- Couldn\'t send message, radio turned off
- Couldn\'t send message, carrier error
Couldn\'t send message, error code: %1$d
- Can\'t reply to short codes like this
- You can only reply to short codes with numbers like \"503501\" but not to codes containing letters and numbers like \"AB-CD0\".
- Attachment size exceeds max MMS limit
- SIM card not available
- Couldn\'t download MMS
-
Kodėl programėlei reikalinga prieiga prie interneto\?
Deja, jis reikalingas MMS priedams siųsti. Negalėjimas siųsti MMS būtų tikrai didelis trūkumas, palyginti su kitomis programomis, todėl nusprendėme eiti šiuo keliu. Tačiau, kaip įprasta, nėra jokių reklamų, stebėjimo ar analizės, internetas naudojamas tik MMS siuntimui.
Kitas galas negauna mano MMS, ar galiu ką nors padaryti\?
MMS dydį riboja operatoriai, todėl programėlės nustatymuose galite pabandyti nustatyti mažesnę ribą.
- Does the app support scheduled messages?
- Yes, you can schedule messages to be sent in the future by long pressing the Send button and picking the desired date and time.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-lv/strings.xml b/app/src/main/res/values-lv/strings.xml
index fc8d8407..6f35c522 100644
--- a/app/src/main/res/values-lv/strings.xml
+++ b/app/src/main/res/values-lv/strings.xml
@@ -5,137 +5,34 @@
Īsziņa nav nosūtīta
Nav nosūtīts. Spiediet lai mēģināt vēlreiz.
Jūsu īsziņa \'%s\' netika nosūtīta
- Add Person
Pielāgojums
- No stored conversations have been found
Sākt sarunu
Atbildēt
- Show a character counter at writing messages
- Loading messages…
- Sender doesn\'t support replies
Melnraksts
Sūtās…
Piespraust augšā
Atspraust
Pārsūtīt
- Unable to compress image to selected size
-
- Duplicate item was not included
-
- and %d other
- and %d others
- and %d others
-
Jauna saruna
- Add Contact or Number…
- Suggestions
-
Dalībnieki
- Conversation name
- Conversation details
- Rename conversation
- Only you can see this conversation name
-
- Scheduled message
- Schedule message
- Schedule send
- Cancel schedule send
- You must pick a time in the future
- Keep the phone on and make sure there is nothing killing the app while in background.
- Update message
- Send now
-
- Message details
- Sender
- Receiver
- Sent at
- Received at
-
- Received SMS
- New message
- Mark as Read
- Mark as Unread
- Me
-
- Unarchive
- Delete all archived conversations
- Archive
- Show archived conversations
- Archive
- No archived conversations have been found
- The archive has been emptied successfully
- Are you sure you want to empty the archive? All archived conversations will be permanently lost.
-
- Restore
- Restore all messages
- Are you sure you want to empty the Recycle Bin? The messages will be permanently lost.
- Skip the Recycle Bin, delete messages directly
-
Are you sure you want to delete all messages of this conversation\?
- Are you sure you want to archive %s?
- Are you sure you want to restore all messages of this conversation?
- Are you sure you want to restore %s?
-
- %d conversation
- %d conversations
- %d conversations
-
- %d message
- %d messages
- %d messages
-
- Keyword
- Blocked keywords
- Manage blocked keywords
- You are not blocking any keywords. You may add keywords here to block all messages containing them.
- Add a blocked keyword
- Lock screen notification visibility
- Sender and message
- Sender only
- Enable delivery reports
- Remove accents and diacritics at sending messages
- Send message on pressing Enter
- Resize sent MMS images
- No limit
- Outgoing messages
- Send group messages as MMS
- Send long messages as MMS
-
- Messages
- Export messages
- Export SMS
- Export MMS
- Import messages
- Import SMS
- Import MMS
- You have to select at least one item
-
- Can\'t send message to an empty number
- Unable to save message to the telephony database
- Couldn\'t send message, service unavailable
- Couldn\'t send message, radio turned off
- Couldn\'t send message, carrier error
Couldn\'t send message, error code: %1$d
- Can\'t reply to short codes like this
- You can only reply to short codes with numbers like \"503501\" but not to codes containing letters and numbers like \"AB-CD0\".
- Attachment size exceeds max MMS limit
- SIM card not available
- Couldn\'t download MMS
-
Why does the app require access to the internet\?
Sadly it is needed for sending MMS attachments. Not being able to send MMS would be a really huge disadvantage compared to other apps, so we decided to go this way. However, as usually, there are no ads, tracking or analytics whatsoever, the internet is used only for sending MMS.
The other end is not receiving my MMS, is there anything I can do about it\?
- MMS size is limited by carriers, you can try setting a smaller limit in the app settings.
- Does the app support scheduled messages?
- Yes, you can schedule messages to be sent in the future by long pressing the Send button and picking the desired date and time.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-mk/strings.xml b/app/src/main/res/values-mk/strings.xml
index d0695960..c2aa5bf4 100644
--- a/app/src/main/res/values-mk/strings.xml
+++ b/app/src/main/res/values-mk/strings.xml
@@ -1,138 +1,20 @@
- SMS Messenger
- Type a message…
- Message not sent
- Not sent. Touch to retry.
- Your message to \'%s\' has not been sent
- Add Person
- Attachment
- No stored conversations have been found
- Start a conversation
- Reply
- Show a character counter at writing messages
- Loading messages…
- Sender doesn\'t support replies
- Draft
- Sending…
- Pin to the top
- Unpin
- Forward
- Unable to compress image to selected size
-
- Duplicate item was not included
-
- and %d other
- and %d others
-
- New conversation
- Add Contact or Number…
- Suggestions
-
- Members
- Conversation name
- Conversation details
- Rename conversation
- Only you can see this conversation name
-
- Scheduled message
- Schedule message
- Schedule send
- Cancel schedule send
- You must pick a time in the future
- Keep the phone on and make sure there is nothing killing the app while in background.
- Update message
- Send now
-
- Message details
- Sender
- Receiver
- Sent at
- Received at
-
- Received SMS
- New message
- Mark as Read
- Mark as Unread
- Me
-
- Unarchive
- Delete all archived conversations
- Archive
- Show archived conversations
- Archive
- No archived conversations have been found
- The archive has been emptied successfully
- Are you sure you want to empty the archive? All archived conversations will be permanently lost.
-
- Restore
- Restore all messages
- Are you sure you want to empty the Recycle Bin? The messages will be permanently lost.
- Skip the Recycle Bin, delete messages directly
-
Are you sure you want to delete all messages of this conversation\?
- Are you sure you want to archive %s?
- Are you sure you want to restore all messages of this conversation?
- Are you sure you want to restore %s?
-
- %d conversation
- %d conversations
-
- %d message
- %d messages
-
- Keyword
- Blocked keywords
- Manage blocked keywords
- You are not blocking any keywords. You may add keywords here to block all messages containing them.
- Add a blocked keyword
- Lock screen notification visibility
- Sender and message
- Sender only
- Enable delivery reports
- Remove accents and diacritics at sending messages
- Send message on pressing Enter
- Resize sent MMS images
- No limit
- Outgoing messages
- Send group messages as MMS
- Send long messages as MMS
-
- Messages
- Export messages
- Export SMS
- Export MMS
- Import messages
- Import SMS
- Import MMS
- You have to select at least one item
-
- Can\'t send message to an empty number
- Unable to save message to the telephony database
- Couldn\'t send message, service unavailable
- Couldn\'t send message, radio turned off
- Couldn\'t send message, carrier error
Couldn\'t send message, error code: %1$d
- Can\'t reply to short codes like this
- You can only reply to short codes with numbers like \"503501\" but not to codes containing letters and numbers like \"AB-CD0\".
- Attachment size exceeds max MMS limit
- SIM card not available
- Couldn\'t download MMS
-
Why does the app require access to the internet\?
Sadly it is needed for sending MMS attachments. Not being able to send MMS would be a really huge disadvantage compared to other apps, so we decided to go this way. However, as usually, there are no ads, tracking or analytics whatsoever, the internet is used only for sending MMS.
The other end is not receiving my MMS, is there anything I can do about it\?
- MMS size is limited by carriers, you can try setting a smaller limit in the app settings.
- Does the app support scheduled messages?
- Yes, you can schedule messages to be sent in the future by long pressing the Send button and picking the desired date and time.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-ml/strings.xml b/app/src/main/res/values-ml/strings.xml
index 8ff332ec..1d0fab12 100644
--- a/app/src/main/res/values-ml/strings.xml
+++ b/app/src/main/res/values-ml/strings.xml
@@ -15,124 +15,41 @@
അയച്ചയാൾ മറുപടികളെ പിന്തുണയ്ക്കുന്നില്ല
ഡ്രാഫ്റ്റ്
അയയ്ക്കുന്നു…
- Pin to the top
- Unpin
മുന്നോട്ട്
തിരഞ്ഞെടുത്ത വലുപ്പത്തിലേക്ക് ചിത്രം കംപ്രസ്സുചെയ്യാനായില്ല
-
ഡ്യൂപ്ലിക്കേറ്റ് ഇനം ഉൾപ്പെടുത്തിയിട്ടില്ല
-
- and %d other
- and %d others
-
പുതിയ സംഭാഷണം
കോൺടാക്റ്റ് അല്ലെങ്കിൽ നമ്പർ ചേർക്കുക…
നിർദ്ദേശങ്ങൾ
-
- Members
- Conversation name
- Conversation details
- Rename conversation
- Only you can see this conversation name
-
ഷെഡ്യൂൾ ചെയ്ത സന്ദേശം
സന്ദേശം ഷെഡ്യൂൾ ചെയ്യുക
- Schedule send
- Cancel schedule send
ഭാവിയിൽ നിങ്ങൾ ഒരു സമയം തിരഞ്ഞെടുക്കണം
ഫോൺ ഓണാക്കി ബാക്ക്ഗ്രൗണ്ടിൽ ആയിരിക്കുമ്പോൾ ആപ്പിനെ നശിപ്പിക്കുന്ന ഒന്നും ഇല്ലെന്ന് ഉറപ്പാക്കുക.
- Update message
ഇപ്പോൾ അയയ്ക്കുക
-
- Message details
- Sender
- Receiver
- Sent at
- Received at
-
SMS ലഭിച്ചു
പുതിയ മെസ്സേജ്
വായിച്ചതായി അടയാളപ്പെടുത്തുക
വായിച്ചിട്ടില്ലെന്ന് അടയാളപ്പെടുത്തുക
- Me
-
- Unarchive
- Delete all archived conversations
- Archive
- Show archived conversations
- Archive
- No archived conversations have been found
- The archive has been emptied successfully
- Are you sure you want to empty the archive? All archived conversations will be permanently lost.
-
- Restore
- Restore all messages
- Are you sure you want to empty the Recycle Bin? The messages will be permanently lost.
- Skip the Recycle Bin, delete messages directly
-
ഈ സംഭാഷണത്തിലെ എല്ലാ സന്ദേശങ്ങളും ഇല്ലാതാക്കണമെന്ന് തീർച്ചയാണോ\?
- Are you sure you want to archive %s?
- Are you sure you want to restore all messages of this conversation?
- Are you sure you want to restore %s?
-
- %d സംഭാഷണം
- %d സംഭാഷണങ്ങൾ
-
- %d സന്ദേശം
- %d സന്ദേശങ്ങൾ
-
- Keyword
- Blocked keywords
- Manage blocked keywords
- You are not blocking any keywords. You may add keywords here to block all messages containing them.
- Add a blocked keyword
ലോക്ക് സ്ക്രീൻ അറിയിപ്പ് ദൃശ്യപരത
അയച്ചയാളും സന്ദേശവും
അയയ്ക്കുന്നയാൾ മാത്രം
ഡെലിവറി റിപ്പോർട്ടുകൾ പ്രവർത്തനക്ഷമമാക്കുക
സന്ദേശങ്ങൾ അയയ്ക്കുമ്പോൾ ഉച്ചാരണങ്ങളും ഡയക്രിറ്റിക്സും നീക്കംചെയ്യുക
- Send message on pressing Enter
- Resize sent MMS images
- No limit
- Outgoing messages
- Send group messages as MMS
- Send long messages as MMS
-
- Messages
- Export messages
- Export SMS
- Export MMS
- Import messages
- Import SMS
- Import MMS
- You have to select at least one item
-
- Can\'t send message to an empty number
- Unable to save message to the telephony database
- Couldn\'t send message, service unavailable
- Couldn\'t send message, radio turned off
- Couldn\'t send message, carrier error
Couldn\'t send message, error code: %1$d
- Can\'t reply to short codes like this
- You can only reply to short codes with numbers like \"503501\" but not to codes containing letters and numbers like \"AB-CD0\".
- Attachment size exceeds max MMS limit
- SIM card not available
- Couldn\'t download MMS
-
എന്തുകൊണ്ടാണ് ആപ്പിന് ഇന്റർനെറ്റ് ആക്സസ് ആവശ്യമായി വരുന്നത്\?
നിർഭാഗ്യവശാൽ, MMS അറ്റാച്ചുമെന്റുകൾ അയക്കുന്നതിനു ഇത് ആവശ്യമാണ്. മറ്റ് ആപ്ലിക്കേഷനുകളുമായി താരതമ്യപ്പെടുത്തുമ്പോൾ MMS അയയ്ക്കാൻ കഴിയുന്നില്ല എന്നത് ഒരു വലിയ പോരായ്മയാണ്, അതിനാൽ ഞങ്ങൾ ഈ റൂട്ടിൽ പോകാൻ തീരുമാനിച്ചു. എന്നിരുന്നാലും, സാധാരണപോലെ, പരസ്യങ്ങളോ ട്രാക്കിംഗ് അല്ലെങ്കിൽ അനലിറ്റിക്സുകളോ ഇല്ല. ഇന്റർനെറ്റ് MMS അയയ്ക്കുന്നതിന് മാത്രമാണ് ഉപയോഗിക്കുന്നത്.
The other end is not receiving my MMS, is there anything I can do about it\?
- MMS size is limited by carriers, you can try setting a smaller limit in the app settings.
- Does the app support scheduled messages?
- Yes, you can schedule messages to be sent in the future by long pressing the Send button and picking the desired date and time.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-nb-rNO/strings.xml b/app/src/main/res/values-nb-rNO/strings.xml
index d006dbc4..397f8d06 100644
--- a/app/src/main/res/values-nb-rNO/strings.xml
+++ b/app/src/main/res/values-nb-rNO/strings.xml
@@ -19,24 +19,19 @@
Løsne
Videresend
Klarte ikke å komprimere bilde til valgt størrelse
-
Duplikat-element ble ikke inkludert
-
- og %d annen
- og %d andre
-
Ny konversasjon
Legg til kontakt eller nummer …
Forslag
-
Medlemmer
Konversasjonsnavn
Konversasjonsdetaljer
Endre navn på konversasjon
Bare du kan se dette konversasjonsnavnet
-
Planlagt melding
Planlegg melding
Planlegg sending
@@ -45,53 +40,19 @@
Ha telefonen påslått og forsikre deg at appen ikke blir terminert mens den er i bakgrunnen.
Oppdater melding
Send nå
-
- Message details
- Sender
- Receiver
- Sent at
- Received at
-
Mottatt SMS
Ny melding
Marker som lest
Marker som ulest
- Me
-
- Unarchive
- Delete all archived conversations
- Archive
- Show archived conversations
- Archive
- No archived conversations have been found
- The archive has been emptied successfully
- Are you sure you want to empty the archive? All archived conversations will be permanently lost.
-
- Restore
- Restore all messages
- Are you sure you want to empty the Recycle Bin? The messages will be permanently lost.
- Skip the Recycle Bin, delete messages directly
-
Er du sikker på at du vil slette alle meldinger fra denne konversasjonen\?
- Are you sure you want to archive %s?
- Are you sure you want to restore all messages of this conversation?
- Are you sure you want to restore %s?
-
- %d konversasjon
- %d konversasjoner
-
- %d melding
- %d meldinger
-
- Keyword
- Blocked keywords
- Manage blocked keywords
- You are not blocking any keywords. You may add keywords here to block all messages containing them.
- Add a blocked keyword
Synlighet for låseskjermvarsling
Avsender og melding
Kun avsender
@@ -103,7 +64,6 @@
Utgående meldinger
Send gruppemeldinger som MMS
Send lange meldinger som MMS
-
Meldinger
Eksporter meldinger
Eksporter SMS
@@ -112,27 +72,12 @@
Importer SMS
Importer MMS
Du må velge minst ett element
-
- Can\'t send message to an empty number
- Unable to save message to the telephony database
- Couldn\'t send message, service unavailable
- Couldn\'t send message, radio turned off
- Couldn\'t send message, carrier error
Kunne ikke sende melding, feilkode: %d
- Can\'t reply to short codes like this
- You can only reply to short codes with numbers like \"503501\" but not to codes containing letters and numbers like \"AB-CD0\".
Vedleggstørrelse overskrider maksgrense for MMS
- SIM card not available
- Couldn\'t download MMS
-
Hvorfor krever appen tilgang til internett\?
Dessverre er det nødvendig for å sende MMS-vedlegg. Å ikke kunne sende MMS ville være en veldig stor ulempe sammenlignet med andre apper, så vi bestemte oss for å gå denne veien. Som vanlig er det imidlertid ingen annonser, sporing eller analyse overhodet, internett brukes bare til å sende MMS.
Den andre enden mottar ikke MMS-en min, er det noe jeg kan gjøre med det\?
MMS-størrelsen er begrenset av operatører, du kan prøve å sette en mindre grense i appinnstillingene.
Støtter appen planlagte meldinger\?
Ja, du kan planlegge at meldinger sendes i framtiden ved å lang-trykke knappen Send og velge ønsket dato og klokkeslett.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml
index e2fdf1ba..73756ebf 100644
--- a/app/src/main/res/values-nl/strings.xml
+++ b/app/src/main/res/values-nl/strings.xml
@@ -19,24 +19,19 @@
Losmaken
Doorsturen
Kon de afbeelding niet comprimeren naar de gekozen grootte
-
Dubbel item was niet inbegrepen
-
- en %d andere
- en %d anderen
-
Nieuw gesprek
Contact of nummer toevoegen…
Suggesties
-
Gespreksleden
Gespreksnaam
Gespreksdetails
Gesprek hernoemen
Deze gespreksnaam wordt alleen lokaal gebruikt
-
Ingepland bericht
Bericht inplannen
Verzending inplannen
@@ -45,19 +40,16 @@
Zorg ervoor dat het toestel blijft ingeschakeld en dat de app niet op de achtergrond wordt afgesloten.
Bericht aanpassen
Nu versturen
-
Details
Afzender
Ontvanger
Verzonden op
Ontvangen op
-
Ontvangen berichten
Nieuw bericht
Als gelezen markeren
Als ongelezen markeren
Ik
-
Herstellen
Alle gearchiveerde gesprekken verwijderen
Archief
@@ -66,27 +58,22 @@
Geen gearchiveerde gesprekken gevonden
Archief is gewist
Het archief wissen\? Alle gearchiveerde gesprekken zullen permanent verwijderd worden.
-
Herstellen
Alle berichten herstellen
Alle berichten in de prullenbak permanent verwijderen\?
De prullenbak overslaan en berichten permanent verwijderen
-
Alle berichten in dit gesprek verwijderen\?
%s archiveren\?
Alle berichten van dit gesprek herstellen\?
%s herstellen\?
-
- %d gesprek
- %d gesprekken
-
- %d bericht
- %d berichten
-
Trefwoord
Geblokkeerde woorden
Geblokkeerde woorden beheren
@@ -103,7 +90,6 @@
Uitgaande berichten
Groepsberichten sturen als MMS
Lange berichten als MMS versturen
-
Berichten
Berichten exporteren
SMS-berichten exporteren
@@ -112,7 +98,6 @@
SMS-berichten importeren
MMS-berichten importeren
Selecteer tenminste één van de opties
-
Voer een nummer in om dit bericht te kunnen versturen
Kan het bericht niet opslaan in de database
Kon het bericht niet verzenden: geen bereik
@@ -124,15 +109,10 @@
De bestandsgrootte van de bijlage overschrijdt de limiet voor MMS
Simkaart niet beschikbaar
MMS kan niet worden gedownload
-
Waarom heeft deze app toegang nodig tot het internet\?
Dit is helaas nodig voor het verzenden van MMS-bijlagen. Het versturen van MMS-berichten onmogelijk maken zou een te groot nadeel t.o.v. andere apps betekenen en daarom hebben we besloten om het toch toe te voegen. Zoals gewoonlijk bevat de app echter geen advertenties, tracking of analytics; de verbinding wordt alleen maar gebruikt voor het versturen van MMS-berichten.
Mijn MMS-berichten worden niet ontvangen, is er iets wat ik daaraan kan doen\?
Providers limiteren de grootte van MMS-berichten. Probeer in de instellingen de limiet voor de afbeeldingsgrootte te verlagen.
Ondersteunt deze app het inplannen van berichten\?
Ja, berichten kunnen vertraagd verzonden worden door lang te drukken op de verzendknop en vervolgens een tijdstip voor verzending op te geven.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-pa-rPK/strings.xml b/app/src/main/res/values-pa-rPK/strings.xml
index ad2e3b9d..df694b40 100644
--- a/app/src/main/res/values-pa-rPK/strings.xml
+++ b/app/src/main/res/values-pa-rPK/strings.xml
@@ -19,91 +19,38 @@
لگݨ اُلٹاؤ
اگے
تصویر نوں چݨے ہوۓ اکار وچ سنکُچت کر نہیں سکدی
-
- Duplicate item was not included
-
- تے %d ہور
- تے %d ہور
-
گل بات کرو
ویاکتی یا فون نمبر جوڑو…
سُجھے
-
- Members
- Conversation name
- Conversation details
- Rename conversation
- Only you can see this conversation name
-
نیت سنہے
تالکا وچ سنیہا پایو
بھیجݨ دی سمان سارݨی بݨاؤ
سماں دا بھیجݨ رد کرو
بھوِکھ وچ سماں چݨیو
- Keep the phone on and make sure there is nothing killing the app while in background.
سنیہا بدلو
ہݨے بھیجو
-
- Message details
- Sender
- Receiver
- Sent at
- Received at
-
سنیہا لیا گیا
نواں سنیہا
پرھے وجوں چنھت کرو
نا پڑھے وجوں چنھت کرو
میں
-
- Unarchive
- Delete all archived conversations
- Archive
- Show archived conversations
- Archive
- No archived conversations have been found
- The archive has been emptied successfully
- Are you sure you want to empty the archive? All archived conversations will be permanently lost.
-
- Restore
- Restore all messages
- Are you sure you want to empty the Recycle Bin? The messages will be permanently lost.
- Skip the Recycle Bin, delete messages directly
-
تسیں پکے اے، سارے سنیہے مٹاؤ؟
- Are you sure you want to archive %s?
- Are you sure you want to restore all messages of this conversation?
- Are you sure you want to restore %s?
-
- %d conversation
- %d conversations
-
- %d سنیہا
- %d سنیہے
-
- Keyword
- Blocked keywords
- Manage blocked keywords
- You are not blocking any keywords. You may add keywords here to block all messages containing them.
- Add a blocked keyword
- Lock screen notification visibility
بھیجݨ والا تے سنیہا
صرف بھیجݨ والا
- Enable delivery reports
سنیہے وچ سارے عراب ہٹاؤ
- Send message on pressing Enter
- Resize sent MMS images
کوئی حد نہیں
- Outgoing messages
- Send group messages as MMS
- Send long messages as MMS
-
سنیہے
سنیہے ایکسپورٹ کرو
سنیہے ایکسپورٹ کرو
@@ -112,23 +59,9 @@
سنیہے ایمپورٹ کرو
میڈیا دیاں سنیہے ایمپورٹ کرو
کجھ چیز چݨیو
-
- Can\'t send message to an empty number
- Unable to save message to the telephony database
- Couldn\'t send message, service unavailable
- Couldn\'t send message, radio turned off
- Couldn\'t send message, carrier error
Couldn\'t send message, error code: %1$d
- Can\'t reply to short codes like this
- You can only reply to short codes with numbers like \"503501\" but not to codes containing letters and numbers like \"AB-CD0\".
- Attachment size exceeds max MMS limit
- SIM card not available
- Couldn\'t download MMS
-
Why does the app require access to the internet\?
Sadly it is needed for sending MMS attachments. Not being able to send MMS would be a really huge disadvantage compared to other apps, so we decided to go this way. However, as usually, there are no ads, tracking or analytics whatsoever, the internet is used only for sending MMS.
The other end is not receiving my MMS, is there anything I can do about it\?
- MMS size is limited by carriers, you can try setting a smaller limit in the app settings.
ایس اَیپ وچ سنیہاں دا تالکا کیہ اے؟
- Yes, you can schedule messages to be sent in the future by long pressing the Send button and picking the desired date and time.
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml
index 5023fdd4..f2cc8772 100644
--- a/app/src/main/res/values-pl/strings.xml
+++ b/app/src/main/res/values-pl/strings.xml
@@ -19,26 +19,21 @@
Odepnij
Przekaż dalej
Nie udało się skompresować obrazu do wybranego rozmiaru
-
Powielony element nie został uwzględniony
-
- i %d inny
- i %d inne
- i %d innych
- i %d innych
-
Nowa rozmowa
Dodaj kontakt lub numer…
Propozycje
-
Członkowie
Nazwa rozmowy
Szczegóły rozmowy
Zmień nazwę rozmowy
Tylko Ty widzisz tę nazwę rozmowy
-
Zaplanowana wiadomość
Zaplanuj wiadomość
Zaplanuj wysłanie
@@ -47,19 +42,16 @@
Pozostaw telefon włączony i upewnij się, że nic nie wyłącza aplikacji w tle.
Zaktualizuj wiadomość
Wyślij teraz
-
Szczegóły wiadomości
Nadawca
Odbiorca
Wysłana
Odebrana
-
Otrzymany SMS
Nowa wiadomość
Oznacz jako przeczytane
Oznacz jako nieprzeczytane
Ja
-
Cofnij archiwizację
Usuń wszystkie zarchiwizowane rozmowy
Archiwum
@@ -68,31 +60,26 @@
Nie znaleziono zarchiwizowanych rozmów
Archiwum zostało opróżnione
Czy opróżnić archiwum\? Wszystkie zarchiwizowane rozmowy zostaną utracone bezpowrotnie.
-
Przywróć
Przywróć wszystkie wiadomości
Czy opróżnić kosz\? Wiadomości zostaną utracone bezpowrotnie.
Pomiń kosz, usuń bezpośrednio
-
Czy usunąć wszystkie wiadomości z tej rozmowy\?
Czy zarchiwizować %s\?
Czy przywrócić wszystkie wiadomości z tej rozmowy\?
Czy przywrócić %s\?
-
- %d rozmowę
- %d rozmowy
- %d rozmów
- %d rozmów
-
- %d wiadomość
- %d wiadomości
- %d wiadomości
- %d wiadomości
-
Słowo kluczowe
Zablokowane słowa kluczowe
Zarządzaj zablokowanymi słowami kluczowymi
@@ -109,7 +96,6 @@
Wiadomości wychodzące
Wysyłaj wiadomości grupowe jako MMS-y
Wysyłaj długie wiadomości jako MMS-y
-
Wiadomości
Eksportuj wiadomości
Eksportuj SMS-y
@@ -118,7 +104,6 @@
Importuj SMS-y
Importuj MMS-y
Musisz wybrać co najmniej jedną opcję
-
Nie można wysłać wiadomości na pusty numer
Nie udało się zapisać wiadomości w bazie danych telefonu
Nie udało się wysłać wiadomości z powodu niedostępności usługi
@@ -130,15 +115,10 @@
Rozmiar załącznika przekracza maksymalny limit MMS-ów
Karta SIM niedostępna
Nie udało się pobrać MMS-a
-
Dlaczego aplikacja wymaga dostępu do Internetu\?
Niestety jest to konieczne do wysyłania załączników MMS. Brak możliwości wysyłania MMS-ów byłby naprawdę ogromną wadą w porównaniu z innymi aplikacjami, więc zdecydowaliśmy się pójść tą drogą. Jednak, jak zwykle, nie ma żadnych reklam, śledzenia ani analityki, a Internet służy tylko do wysyłania MMS-ów.
Druga osoba nie otrzymuje moich MMS-ów. Czy mogę coś z tym zrobić\?
Rozmiar MMS-ów jest ograniczany przez operatorów. Możesz spróbować ustawić mniejszy limit w ustawieniach aplikacji.
Czy aplikacja obsługuje planowanie wiadomości?
Tak. Możesz zaplanować wysłanie wiadomości w przyszłości, naciskając długo przycisk Wyślij i wybierając czas docelowy.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml
index f9075736..438e2486 100644
--- a/app/src/main/res/values-pt-rBR/strings.xml
+++ b/app/src/main/res/values-pt-rBR/strings.xml
@@ -19,46 +19,36 @@
Desfixar
Encaminhar
Não pôde comprimir imagem ao tamanho selecionado
-
O item duplicado não foi incluído
-
- and %d other
- and %d others
- and %d others
-
Nova conversa
Adicionar contato ou número…
Sugestões
-
Membros
Nome da conversa
Detalhes da conversa
Renomear conversa
Somente você pode ver o nome desta conversa
-
Mensagem agendada
Agendar mensagem
Agendar envio
Cancelar envio agendado
Você deve escolher um horário no futuro
Mantenha o telefone ligado e certifique-se de que não haja nada matando o aplicativo enquanto estiver em segundo plano.
- Update message
Enviar agora
-
- Message details
Remetente
Receptor
Enviado em
Recebido em
-
SMS recebido
Nova mensagem
Marcar como Lida
Marcar como Não Lida
Eu
-
Desarquivar
Excluir todas as conversas arquivadas
Arquivar
@@ -67,29 +57,24 @@
Nenhuma conversa arquivada foi encontrada
O arquivo foi esvaziado com sucesso
Tem certeza de que deseja esvaziar o arquivo\? Todas as conversas arquivadas serão perdidas permanentemente.
-
Restaurar
Restaurar todas as mensagens
Deseja realmente esvaziar a Lixeira\? Os arquivos serão excluidos permanentemente.
Ignore a Lixeira, exclua as mensagens diretamente
-
Tem certeza que quer deletar todas as mensagens dessa conversa\?
Tem certeza de que deseja arquivar %s\?
Tem certeza de que deseja restaurar todas as mensagens dessa conversa\?
Tem certeza de que deseja restaurar %s\?
-
- %d conversa
- %d conversas
- %d conversas
-
- %d mensagem
- %d mensagens
- %d mensagens
-
Palavra-chave
Palavras-chave bloqueadas
Gerenciar palavras-chave bloqueadas
@@ -106,7 +91,6 @@
Mensagens a serem enviadas
Enviar mensagens de grupo como MMS
Enviar mensagens longas como MMS
-
Mensagens
Exportar mensagens
Exportar SMS
@@ -115,7 +99,6 @@
Importar SMS
Importar MMS
Você deve selecionar ao menos um item
-
Não é possível enviar mensagem para um número vazio
Não foi possível salvar a mensagem no banco de dados de telefonia
Não foi possível enviar a mensagem, serviço indisponível
@@ -126,16 +109,10 @@
Você só pode responder a códigos curtos com números, como \"503501\", mas não a códigos que contenham letras e números, como \"AB-CD0\".
O tamanho do anexo excede o limite máximo de MMS
Cartão SIM não disponível
- Couldn\'t download MMS
-
Por que o app requer acesso à Internet\?
Infelizmente, isso é necessário para enviar anexos MMS. Não poder enviar MMS seria uma grande desvantagem em relação a outros apps, por isso tomamos essa decisão. Entretanto, como de costume, não há anúncios, rastreamento ou análises de perfil, a Internet é usada apenas para enviar MMS.
A outra parte não está recebendo meu MMS, há algo que eu possa fazer a respeito\?
O tamanho dos MMS é limitado pelas operadoras, você pode tentar usar um limite menor nas configurações do app.
O aplicativo suporta mensagens programadas\?
Sim, você pode agendar mensagens para serem enviadas no futuro pressionando longamente o botão Enviar e escolhendo a data e a hora desejadas.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-pt/strings.xml b/app/src/main/res/values-pt/strings.xml
index 6a4b5a63..1795c5bf 100644
--- a/app/src/main/res/values-pt/strings.xml
+++ b/app/src/main/res/values-pt/strings.xml
@@ -19,25 +19,20 @@
Desafixar
Encaminhar
Não foi possível comprimir a imagem para o tamanho selecionado
-
O item duplicado não foi incluído
-
- e %d outro
- e %d outros
- e %d outros
-
Nova conversa
Adicionar contacto ou número…
Sugestões
-
Membros
Nome da conversa
Detalhes da conversa
Renomear conversa
Apenas você pode ver o nome desta conversa
-
Mensagem agendada
Agendar mensagem
Agendar envio
@@ -46,19 +41,15 @@
Mantenha o telefone ligado e verifique se não há nada que esteja a bloquear a aplicação em segundo plano.
Atualizar mensagem
Enviar agora
-
- Message details
Remetente
Destinatário
Enviada a
Recebida a
-
SMS recebida
Nova mensagem
Marcar como lida
Marcar como não lida
Eu
-
Desarquivar
Eliminar todas as conversas arquivadas
Arquivo
@@ -67,29 +58,24 @@
Não existem conversas arquivadas
O arquivo foi limpo com sucesso
Tem a certeza de que pretende limpar o arquivo\? Todas as conversas arquivadas serão eliminadas.
-
Restaurar
Restaurar todas as mensagens
Tem a certeza de que pretende esvaziar a reciclagem\? As mensagens não poderão ser recuperadas.
Eliminar mensagens sem as colocar na reciclagem
-
Tem a certeza de que pretende apagar todas as mensagens desta conversa\?
Tem a certeza de que pretende arquivar %s\?
Tem a certeza de que pretende restaurar todas as mensagens desta conversa\?
Tem a certeza de que pretende restaurar %s\?
-
- %d conversa
- %d conversas
- %d conversas
-
- %d mensagem
- %d mensagens
- %d mensagens
-
Palavra-chave
Palavras-chave bloqueadas
Gerir palavras-chave bloqueadas
@@ -106,7 +92,6 @@
Mensagens a enviar
Enviar mensagens de grupo como MMS
Enviar mensagens longas como MMS
-
Mensagens
Exportar mensagens
Exportar SMS
@@ -115,7 +100,6 @@
Importar SMS
Importar MMS
Tem que selecionar, pelo menos, 1 item
-
Não pode enviar mensagens se não existir um destinatário
Não foi possível guardar a mensagem na base de dados do telefone
Serviço indisponível. Não pode enviar a mensagem
@@ -127,15 +111,10 @@
O anexo excede o tamanho máximo permitido para MMS
Cartão SIM não encontrado
Não foi possível descarregar a MMS
-
Porque é que a aplicação requer acesso à Internet\?
Infelizmente, é a única forma de poder enviar anexos MMS. Não ter a capacidade de enviar MMS representaria uma enorme desvantagem comparativamente a outras aplicações e foi por isso que tomámos esta decisão. Mas, como habitualmente, a aplicação não tem anúncios, não rastreia os utilizadores nem recolhe dados pessoais. Esta permissão apenas é necessária para enviar MMS.
O destinatário não recebe as minhas MMS, o que posso fazer\?
O tamanho das MMS é limitado pelas operadoras, tente estabelecer um limite inferior nas Definições da aplicação.
Posso agendar mensagens com esta aplicação\?
Sim, pode agendar mensagens e escolher a data e hora de envio com um toque longo no botão Enviar.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-ro/strings.xml b/app/src/main/res/values-ro/strings.xml
index a08fc2e6..ba3ba536 100644
--- a/app/src/main/res/values-ro/strings.xml
+++ b/app/src/main/res/values-ro/strings.xml
@@ -19,94 +19,40 @@
Elimină fixarea
Redirecţionare
Nu se poate comprima imaginea la dimensiunea selectată
-
- Duplicate item was not included
-
- și %d alt
- și %d altele
- și %d de altele
-
Conversaţie nouă
Adaugă contact sau număr de telefon…
Sugestii
-
- Members
- Conversation name
- Conversation details
- Rename conversation
- Only you can see this conversation name
-
- Scheduled message
- Schedule message
- Schedule send
- Cancel schedule send
- You must pick a time in the future
- Keep the phone on and make sure there is nothing killing the app while in background.
- Update message
- Send now
-
- Message details
- Sender
- Receiver
- Sent at
- Received at
-
SMS-uri primite
Mesaj nou
Marchează ca citit
Marchează ca necitit
Eu
-
- Unarchive
- Delete all archived conversations
- Archive
- Show archived conversations
- Archive
- No archived conversations have been found
- The archive has been emptied successfully
- Are you sure you want to empty the archive? All archived conversations will be permanently lost.
-
- Restore
- Restore all messages
- Are you sure you want to empty the Recycle Bin? The messages will be permanently lost.
- Skip the Recycle Bin, delete messages directly
-
Sunteți sigur că doriți să ștergeți toate mesajele din această conversație\?
- Are you sure you want to archive %s?
- Are you sure you want to restore all messages of this conversation?
- Are you sure you want to restore %s?
-
- %d conversaţie
- %d conversaţii
- %d conversaţii
-
- %d mesaj
- %d mesaje
- %d mesaje
-
- Keyword
- Blocked keywords
- Manage blocked keywords
- You are not blocking any keywords. You may add keywords here to block all messages containing them.
- Add a blocked keyword
Vizibilitatea notificării pe ecranul de blocare
Expeditor şi mesaj
Doar expeditorul
Activați rapoartele de livrare
Elimnă accente şi diacritice la trimitearea mesajelor
- Send message on pressing Enter
Redimensioneză imaginile trimise prin MMS
Fără limită
Mesaje transmise
Trimiteți mesaje de grup ca MMS
Trimiteți mesaje lungi ca MMS
-
Mesajele
Exportă mesajele
Exportă mesajele SMS
@@ -115,27 +61,9 @@
Importă mesajele SMS
Importă mesajele MMS
Trebuie să selectaţi cel puţin un element
-
- Can\'t send message to an empty number
- Unable to save message to the telephony database
- Couldn\'t send message, service unavailable
- Couldn\'t send message, radio turned off
- Couldn\'t send message, carrier error
Couldn\'t send message, error code: %1$d
- Can\'t reply to short codes like this
- You can only reply to short codes with numbers like \"503501\" but not to codes containing letters and numbers like \"AB-CD0\".
- Attachment size exceeds max MMS limit
- SIM card not available
- Couldn\'t download MMS
-
De ce necesită aplicația acces la internet\?
Din păcate este nevoie pentru a primite anexe MMS. Ideea de a nu putea trimite MMS-uri ar prezenta un dezavantaj foarte mare în comparaţie cu alte aplicaţii, aşa că am decis să mergem pe această cale. Totuşi, ca de obicei, nu este prezentă nici un fel de reclamă, urmărire sau analiză, internetul este folosit doar pentru a trimite MMS-uri.
Celălalt capăt nu-mi primește MMS-ul, pot face ceva în acest sens\?
Dimensiunea MMS este limitată de operatorii de telefonie; puteți încerca să setați o limită mai mică în setările aplicației.
- Does the app support scheduled messages?
- Yes, you can schedule messages to be sent in the future by long pressing the Send button and picking the desired date and time.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml
index 1dff03a3..781a7336 100644
--- a/app/src/main/res/values-ru/strings.xml
+++ b/app/src/main/res/values-ru/strings.xml
@@ -19,26 +19,21 @@
Открепить
Переслать
Невозможно сжать изображение до выбранного размера
-
Дубликат не включён
-
- и ещё %d
- и ещё %d
- и ещё %d
- и ещё %d
-
Новая переписка
Добавить контакт или номер…
Предложения
-
Участники
Название переписки
Подробности переписки
Переименовать переписку
Только вы можете видеть это название переписки
-
Отложенная отправка
Отложенная отправка
Отложенная отправка
@@ -47,19 +42,16 @@
Держите устройство включённым и убедитесь, что ничто не завершает принудительно приложение в фоновом режиме.
Обновить сообщение
Отправить сейчас
-
Сведения о сообщении
Отправитель
Получатель
Отправлено в
Получено в
-
Получено сообщение
Новое сообщение
Прочитано
Не прочитано
Я
-
Разархивировать
Удалить все архивные переписки
Архивная
@@ -68,31 +60,26 @@
Нет архивных переписок
Архив успешно очищен
Очистить архив\? Все архивные переписки будут безвозвратно потеряны.
-
Восстановить
Восстановить все сообщения
Очистить корзину\? Сообщения в ней будут безвозвратно утрачены.
Не использовать корзину для удаляемых сообщений
-
Удалить все сообщения в этой переписке\?
Архивировать %s\?
Восстановить все сообщения этой переписки\?
Восстановить %s\?
-
- %d переписку
- %d переписки
- %d переписок
- %d переписок
-
- %d сообщение
- %d сообщения
- %d сообщений
- %d сообщений
-
Ключевое слово
Блокируемые ключевые слова
Управление блокируемыми ключевыми словами
@@ -109,7 +96,6 @@
Исходящие сообщения
Отправлять групповые сообщения как MMS
Отправлять длинные сообщения как MMS
-
Сообщения
Экспорт сообщений
Экспорт SMS
@@ -118,7 +104,6 @@
Импорт SMS
Импорт MMS
Необходимо выбрать хотя бы один элемент
-
Невозможно отправить сообщение на пустой номер
Невозможно сохранить сообщение в базу данных
Невозможно отправить сообщение: служба недоступна
@@ -130,15 +115,10 @@
Размер вложения превышает максимальный лимит MMS
SIM-карта недоступна
Невозможно загрузить MMS
-
Почему приложение требует доступ в интернет\?
К сожалению, это необходимо для отправки вложений MMS. Отсутствие возможности отправлять MMS-сообщения было бы огромным недостатком нашего приложения по сравнению с другими, поэтому мы решили пойти этим путём. Тем не менее, как и в других наших приложениях, это не содержит никакой рекламы, отслеживания или аналитики, интернет используется только для отправки MMS.
MMS не доходят до получателя, можно ли что-нибудь с этим сделать\?
Размер MMS ограничивается операторами связи, можно попробовать уменьшить лимит в настройках приложения.
Приложение поддерживает отложенную отправку сообщений\?
Да, вы можете запланировать отправку сообщений в будущем, нажав и удерживая кнопку \"Отправить\" и выбрав нужную дату и время.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-sk/strings.xml b/app/src/main/res/values-sk/strings.xml
index d1a42978..876cd486 100644
--- a/app/src/main/res/values-sk/strings.xml
+++ b/app/src/main/res/values-sk/strings.xml
@@ -19,25 +19,20 @@
Odopnúť
Preposlať
Nepodarilo sa zmenšiť obrázok na požadovanú veľkosť
-
Duplicitná položka nebola pridaná
-
- a %d ďalší
- a %d ďalšie
- a %d ďalších
-
Nová konverzácia
Pridať kontakt alebo číslo…
Návrhy
-
Členovia
Názov konverzácie
Detaily konverzácie
Premenovať konverzáciu
Tento názov konverzácie sa zobrazí iba vám
-
Naplánovaná správa
Naplánovať správu
Naplánovať odoslanie
@@ -46,19 +41,16 @@
Majte zapnuté zariadenie a uistite sa, že apku na pozadí nič nevypne.
Upraviť správu
Odoslať teraz
-
Detaily správy
Odosielateľ
Prijímateľ
Odoslané
Prijaté
-
Prijatá SMS
Nová správa
Označiť ako prečítané
Označiť ako neprečítané
Ja
-
Zrušiť archiváciu
Vymazať všetky archivované konverzácie
Archív
@@ -67,29 +59,24 @@
Nenašli sa žiadne archivované konverzácie
Archív bol úspešne vyprázdnený
Ste si istý, že chcete vyprázdniť archív? Všetky archivované konverzácie budú navždy odstránené.
-
Obnoviť
Obnoviť všetky správy
Ste si istý, že chcete vysypať odpadkový kôš? Správy budú navždy stratené.
Vynechať odpadkový kôš, priamo vymazať správy
-
Ste si istý, že chcete odstrániť všetky správy tejto konverzácie\?
Ste si istý, že chcete archivovať %s?
Ste si istý, že chcete obnoviť všetky správy tejto konverzácie?
Ste si istý, že chcete obnoviť %s?
-
- %d konverzáciu
- %d konverzácie
- %d konverzácií
-
- %d správu
- %d správy
- %d správ
-
Kľúčové slovo
Blokované kľúčové slová
Spravovať blokované kľúčové slová
@@ -106,7 +93,6 @@
Odchádzajúce správy
Odosielať skupinové správy ako MMS
Odosielať dlhé správy ako MMS
-
Správy
Exportovať správy
Exportovať SMS
@@ -115,7 +101,6 @@
Importovať SMS
Importovať MMS
Musíte označiť aspoň jednu možnosť
-
Nedá sa odoslať správu na prázdne číslo
Nepodarilo sa uložiť správu do databázy telefónu
Nepodarilo sa odoslať správu, služba nedostupná
@@ -127,15 +112,10 @@
Veľkosť prílohy presahuje maximálny limit MMS
SIM karta nie je k dispozícií
Nepodarilo sa stiahnuť MMS
-
Prečo vyžaduje apka prístup na internet\?
Je to žiaľ nevyhnutné pre odosielanie MMS príloh. Ak by sa ich nedalo odosielať, bola by to obrovská nevýhoda v porovnaní s konkurenciou, preto sme sa rozhodli takto. Ako ale stále, ani v tejto apke nie sú reklamy, sledovanie, ani vôbec žiadne analytiky. Internet sa používa jedine pri odosielaní MMS.
Druhá strana nedostáva moje MMS, viem s tým niečo spraviť\?
Veľkosť MMS je obmedzená operátormi, skúste zvoliť menší limit v nastaveniach apky.
Podporuje apka naplánované správy?
Áno, správu môžete naplánovať dlhým podržaním tlačidla Odoslať a zvolením žiadaného dátumu a času.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-sl/strings.xml b/app/src/main/res/values-sl/strings.xml
index ef57e6ca..bdf393f3 100644
--- a/app/src/main/res/values-sl/strings.xml
+++ b/app/src/main/res/values-sl/strings.xml
@@ -19,85 +19,46 @@
Odpni
Posreduj
Slike ni mogoče stisniti na izbrano velikost
-
Podvojeni predmet ni bil vključen
-
- in %d drug
- in %d druga
- in %d drugi
- in %d drugih
-
Nov pogovor
Dodaj stik ali številko …
Predlogi
-
Člani
Ime pogovora
Podrobnosti pogovora
Preimenuj pogovor
Samo vi lahko vidite ime tega pogovora
-
Načrtovano sporočilo
Sporočilo o razporedu
Pošiljanje načrta
Prekliči pošiljanje načrta
Izberite čas v prihodnosti
Telefon vklopite in poskrbite, da bo aplikacija v ozadju delovala.
- Update message
Sedaj pošlji
-
- Message details
- Sender
- Receiver
- Sent at
- Received at
-
Prejeto SMS sporočilo
Novo sporočilo
Označi kot prebrano
Označi kot neprebrano
Jaz
-
- Unarchive
- Delete all archived conversations
- Archive
- Show archived conversations
- Archive
- No archived conversations have been found
- The archive has been emptied successfully
- Are you sure you want to empty the archive? All archived conversations will be permanently lost.
-
- Restore
- Restore all messages
- Are you sure you want to empty the Recycle Bin? The messages will be permanently lost.
- Skip the Recycle Bin, delete messages directly
-
Ste prepričani, da želite izbrisati vsa sporočila tega pogovora\?
- Are you sure you want to archive %s?
- Are you sure you want to restore all messages of this conversation?
- Are you sure you want to restore %s?
-
- %d pogovor
- %d pogovora
- %d pogovori
- %d pogovorov
-
- %d sporočilo
- %d sporočili
- %d sporočila
- %d sporočil
-
- Keyword
- Blocked keywords
- Manage blocked keywords
- You are not blocking any keywords. You may add keywords here to block all messages containing them.
- Add a blocked keyword
Vidnost obvestil na zaklenjenem zaslonu
Pošiljatelj in sporočilo
Samo pošiljatelj
@@ -109,7 +70,6 @@
Odhodna sporočila
Pošlji skupinska sporočila kot MMS
Pošlji dolga sporočila kot MMS
-
Sporočila
Izvozi sporočila
Izvozi SMS
@@ -118,27 +78,11 @@
Uvozi SMS
Uvozi MMS
Izbrati morate vsaj en element
-
- Can\'t send message to an empty number
- Unable to save message to the telephony database
- Couldn\'t send message, service unavailable
- Couldn\'t send message, radio turned off
- Couldn\'t send message, carrier error
Couldn\'t send message, error code: %1$d
- Can\'t reply to short codes like this
- You can only reply to short codes with numbers like \"503501\" but not to codes containing letters and numbers like \"AB-CD0\".
- Attachment size exceeds max MMS limit
- SIM card not available
- Couldn\'t download MMS
-
Zakaj aplikacija potrebuje dostop do interneta\?
Žal je potreben za pošiljanje priponk MMS. Če ne bi mogli pošiljati MMS-ov, bi bila to res velika pomanjkljivost v primerjavi z drugimi aplikacijami, zato smo se odločili za to pot. Vendar kot običajno ni nobenih oglasov, sledenja ali kakršne koli analitike. Internet se uporablja samo za pošiljanje MMS-ov.
Druga stran ne prejema mojih MMS-ov, ali lahko kaj storim v zvezi s tem\?
Velikost sporočil MMS omejujejo operaterji, zato lahko poskusite nastaviti manjšo omejitev v nastavitvah aplikacije.
Ali aplikacija podpira načrtovana sporočila\?
Da, lahko načrtujete pošiljanje sporočil v prihodnosti, da dolgo pritisnete gumb Pošlji in izberete želeni datum in čas.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-sr/strings.xml b/app/src/main/res/values-sr/strings.xml
index da634092..88b7e555 100644
--- a/app/src/main/res/values-sr/strings.xml
+++ b/app/src/main/res/values-sr/strings.xml
@@ -19,25 +19,15 @@
Oткопчати
Напред
Није могуће компримовати слику на изабрану величину
-
Дупликат ставке није укључен
-
- и %d друго
- и %d других
- и %d други
-
Нови разговор
Додајте контакт или број…
Предлози
-
- Members
- Conversation name
- Conversation details
- Rename conversation
- Only you can see this conversation name
-
Заказана порука
Закажите поруку
Закажите слање
@@ -46,19 +36,16 @@
Држите телефон укључен и уверите се да ништа не убија апликацију док је у позадини.
Ажурирајте поруку
Пошаљи одмах
-
Детаљи о поруци
Шалје
Прима
Послано
Примлјено
-
Примите СМС
Нова порука
Означи као прочитано
Означи као непрочитанo
Ja
-
Врати из архиве
Обриши све архивиране конверзације
Архива
@@ -67,29 +54,24 @@
Нема архивираних разговора
Архива је успјешно испражнјена
Да ли сте сигурни да желите да испразните архиву? Све архивиране поруке ће бити избрисане.
-
Врати
Врати све поруке
Да ли сте сигурни да желите испразнити канту за отпазке? Поруке ће бити трајно обрисане.
Прескочи канту за отпатке, обриши поруке директно
-
Да ли сте сигурни да желите да избришете све поруке ове конверзације\?
Да ли сте сигурни да желите да архивирате %s?
Да ли сте сигурни да желите да вратите све поруке ове конверзације?
Да ли сте сигурни да желите да вратите %s?
-
- %d разговор
- %d разговорa
- %d разговори
-
- %d порука
- %d порука
- %d порукe
-
Ријеч
Блокиране ријечи
Управљање блокираним ријечима
@@ -106,7 +88,6 @@
Одлазне поруке
Пошаљите групне поруке као ММС
Шаљите дугачке поруке као ММС
-
Поруке
Извезите поруке
Извези СМС
@@ -115,23 +96,11 @@
Увезите СМС
Увези ММС
Морате да изаберете најмање једну ставку
-
- Can\'t send message to an empty number
- Unable to save message to the telephony database
- Couldn\'t send message, service unavailable
- Couldn\'t send message, radio turned off
- Couldn\'t send message, carrier error
Couldn\'t send message, error code: %1$d
- Can\'t reply to short codes like this
- You can only reply to short codes with numbers like \"503501\" but not to codes containing letters and numbers like \"AB-CD0\".
- Attachment size exceeds max MMS limit
- SIM card not available
- Couldn\'t download MMS
-
Зашто је апликацији потребан приступ интернету\?
Нажалост, то је потребно за слање ММС прилога. Немогућност слања ММС-а била би заиста велика мана у поређењу са другим апликацијама, па смо одлучили да идемо овим путем. Међутим, као и обично, нема реклама, праћења или аналитике, интернет се користи само за слање ММС-а.
Други крај не прима мој ММС, да ли могу нешто да урадим поводом тога\?
Величина ММС-а је ограничена оператерима, можете покушати да подесите мање ограничење у подешавањима апликације.
Да ли апликација подржава заказане поруке\?
Да, можете заказати слање порука у будућности дугим притиском на дугме Пошаљи и одабиром жељеног датума и времена.
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-sv/strings.xml b/app/src/main/res/values-sv/strings.xml
index 6947164c..2d246233 100644
--- a/app/src/main/res/values-sv/strings.xml
+++ b/app/src/main/res/values-sv/strings.xml
@@ -19,24 +19,19 @@
Lossa
Vidarebefordra
Det gick inte att komprimera bilden till den valda storleken
-
Dubblettobjekt inkluderades inte
-
- och %d annan
- och %d andra
-
Ny konversation
Lägg till kontakt eller nummer…
Förslag
-
Medlemmar
Konversationsnamn
Konversationsinformation
Byt namn på konversation
Bara du kan se det här konversationsnamnet
-
Schemalagt meddelande
Schemalägg meddelande
Schemalägg skicka
@@ -45,19 +40,16 @@
Ha telefonen påslagen och kontrollera att inget avslutar appen i bakgrunden.
Uppdatera meddelande
Skicka nu
-
Meddelandeinformation
Avsändare
Mottagare
Skickat
Mottaget
-
Tog emot sms
Nytt meddelande
Markera som läst
Markera som oläst
Jag
-
Ångra arkivering
Ta bort alla arkiverade konversationer
Arkiv
@@ -66,27 +58,22 @@
Inga arkiverade konversationer hittades
Arkivet har tömts
Är du säker på att du vill tömma arkivet\? Alla arkiverade konversationer tas bort permanent.
-
Återställ
Återställ alla meddelanden
Är du säker på att du vill tömma papperskorgen\? Meddelandena tas bort permanent.
Hoppa över papperskorgen, ta bort meddelanden direkt
-
Är du säker på att du vill ta bort alla meddelanden i den här konversationen\?
Är du säker på att du vill arkivera %s\?
Är du säker på att du vill återställa alla meddelanden i den här konversationen\?
Är du säker på att du vill återställa %s\?
-
- %d konversation
- %d konversationer
-
- %d meddelande
- %d meddelanden
-
Nyckelord
Blockerade nyckelord
Hantera blockerade nyckelord
@@ -103,7 +90,6 @@
Utgående meddelanden
Skicka gruppmeddelanden som mms
Skicka långa meddelanden som mms
-
Meddelanden
Exportera meddelanden
Exportera sms
@@ -112,7 +98,6 @@
Importera sms
Importera mms
Du måste välja minst ett alternativ
-
Det går inte att skicka meddelanden utan nummer
Det går inte att spara meddelandet på telefonen
Det gick inte att skicka meddelandet, tjänsten är inte tillgänglig
@@ -124,15 +109,10 @@
Bilagans storlek överskrider maxgränsen för mms
SIM-kortet är inte tillgängligt
Det gick inte att hämta mms-meddelandet
-
Varför kräver appen åtkomst till internet\?
Tyvärr behövs den för att skicka mms-bilagor. Att inte kunna skicka mms är en enorm nackdel jämfört med andra appar, och vi har därför beslutat att göra så här. Som vanligt förekommer ingen reklam, spårning eller datainsamling, internet används bara för att skicka mms.
Mina mms kommer inte fram, finns det något jag kan göra åt det\?
Storleken på mms begränsas av operatörer, du kan testa att ställa in en lägre gräns i appens inställningar.
Stöder appen schemalagda meddelanden\?
Ja, du kan schemalägga meddelanden så att de skickas i framtiden genom att trycka länge på knappen Skicka och välja önskat datum och tid.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-ta/strings.xml b/app/src/main/res/values-ta/strings.xml
index 501eda52..ee3935eb 100644
--- a/app/src/main/res/values-ta/strings.xml
+++ b/app/src/main/res/values-ta/strings.xml
@@ -1,6 +1,5 @@
- SMS Messenger
செய்தியை உள்ளிடவும்…
செய்தி அனுப்பப்படவில்லை
அனுப்பப்படவில்லை. மீண்டும் முயற்சிக்க, தொடவும்.
@@ -18,92 +17,34 @@
மேலே பொருத்தவும்
பின் நீக்கு
முன்னோக்கி
- Unable to compress image to selected size
-
- Duplicate item was not included
-
- and %d other
- and %d others
-
புதிய உரையாடல்
தொடர்பு அல்லது எண்ணைச் சேர்க்கவும்…
பரிந்துரைகள்
-
- Members
- Conversation name
- Conversation details
- Rename conversation
- Only you can see this conversation name
-
- Scheduled message
- Schedule message
- Schedule send
- Cancel schedule send
- You must pick a time in the future
- Keep the phone on and make sure there is nothing killing the app while in background.
- Update message
- Send now
-
- Message details
- Sender
- Receiver
- Sent at
- Received at
-
SMS கிடைத்தது
புதிய செய்தி
படித்ததாக குறியிடு
படிக்காததாக குறியிடு
- Me
-
- Unarchive
- Delete all archived conversations
- Archive
- Show archived conversations
- Archive
- No archived conversations have been found
- The archive has been emptied successfully
- Are you sure you want to empty the archive? All archived conversations will be permanently lost.
-
- Restore
- Restore all messages
- Are you sure you want to empty the Recycle Bin? The messages will be permanently lost.
- Skip the Recycle Bin, delete messages directly
-
இந்த உரையாடலின் அனைத்து செய்திகளையும் நிச்சயமாக நீக்க விரும்புகிறீர்களா\?
- Are you sure you want to archive %s?
- Are you sure you want to restore all messages of this conversation?
- Are you sure you want to restore %s?
-
- %d உரையாடல்
- %d உரையாடல்கள்
-
- %d செய்தி
- %d செய்திகள்
-
- Keyword
- Blocked keywords
- Manage blocked keywords
- You are not blocking any keywords. You may add keywords here to block all messages containing them.
- Add a blocked keyword
பூட்டுத் திரை அறிவிப்புத் தெரிவுநிலை
அனுப்புநர் மற்றும் செய்தி
அனுப்புநர் மட்டும்
விநியோக அறிக்கைகளை இயக்கவும்
செய்திகளை அனுப்பும் போது உச்சரிப்புகள் மற்றும் உச்சரிப்புகளை அகற்றவும்
- Send message on pressing Enter
அனுப்பப்பட்ட MMS படங்களின் அளவை மாற்றவும்
வரம்பு இல்லை
வெளிச்செல்லும் செய்திகள்
- Send group messages as MMS
- Send long messages as MMS
-
செய்திகளை
செய்திகளை ஏற்றுமதி செய்யவும்
ஏற்றுமதி எஸ்எம்எஸ்
@@ -112,27 +53,8 @@
SMS ஐ இறக்குமதி செய்யவும்
MMS ஐ இறக்குமதி செய்யவும்
நீங்கள் குறைந்தபட்சம் ஒரு உருப்படியைத் தேர்ந்தெடுக்க வேண்டும்
-
- Can\'t send message to an empty number
- Unable to save message to the telephony database
- Couldn\'t send message, service unavailable
- Couldn\'t send message, radio turned off
- Couldn\'t send message, carrier error
Couldn\'t send message, error code: %1$d
- Can\'t reply to short codes like this
- You can only reply to short codes with numbers like \"503501\" but not to codes containing letters and numbers like \"AB-CD0\".
- Attachment size exceeds max MMS limit
- SIM card not available
- Couldn\'t download MMS
-
பயன்பாட்டிற்கு இணைய அணுகல் ஏன் தேவைப்படுகிறது\?
MMS இணைப்புகளை அனுப்புவதற்கு இது தேவைப்படுகிறது. மற்ற பயன்பாடுகளுடன் ஒப்பிடும்போது MMS ஐ அனுப்ப முடியாமல் இருப்பது மிகவும் பெரிய குறையாக இருக்கும், எனவே நாங்கள் இந்த வழியில் செல்ல முடிவு செய்தோம். இருப்பினும், வழக்கமாக, விளம்பரங்கள், கண்காணிப்பு அல்லது பகுப்பாய்வு எதுவும் இல்லை, இணையம் MMS அனுப்ப மட்டுமே பயன்படுத்தப்படுகிறது.
The other end is not receiving my MMS, is there anything I can do about it\?
- MMS size is limited by carriers, you can try setting a smaller limit in the app settings.
- Does the app support scheduled messages?
- Yes, you can schedule messages to be sent in the future by long pressing the Send button and picking the desired date and time.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-th/strings.xml b/app/src/main/res/values-th/strings.xml
index 6b6d475d..8c951913 100644
--- a/app/src/main/res/values-th/strings.xml
+++ b/app/src/main/res/values-th/strings.xml
@@ -1,135 +1,17 @@
- SMS Messenger
- Type a message…
- Message not sent
- Not sent. Touch to retry.
- Your message to \'%s\' has not been sent
- Add Person
- Attachment
- No stored conversations have been found
- Start a conversation
- Reply
- Show a character counter at writing messages
- Loading messages…
- Sender doesn\'t support replies
- Draft
- Sending…
- Pin to the top
- Unpin
- Forward
- Unable to compress image to selected size
-
- Duplicate item was not included
-
- and %d others
-
- New conversation
- Add Contact or Number…
- Suggestions
-
- Members
- Conversation name
- Conversation details
- Rename conversation
- Only you can see this conversation name
-
- Scheduled message
- Schedule message
- Schedule send
- Cancel schedule send
- You must pick a time in the future
- Keep the phone on and make sure there is nothing killing the app while in background.
- Update message
- Send now
-
- Message details
- Sender
- Receiver
- Sent at
- Received at
-
- Received SMS
- New message
- Mark as Read
- Mark as Unread
- Me
-
- Unarchive
- Delete all archived conversations
- Archive
- Show archived conversations
- Archive
- No archived conversations have been found
- The archive has been emptied successfully
- Are you sure you want to empty the archive? All archived conversations will be permanently lost.
-
- Restore
- Restore all messages
- Are you sure you want to empty the Recycle Bin? The messages will be permanently lost.
- Skip the Recycle Bin, delete messages directly
-
Are you sure you want to delete all messages of this conversation\?
- Are you sure you want to archive %s?
- Are you sure you want to restore all messages of this conversation?
- Are you sure you want to restore %s?
-
- %d conversation
-
- %d message
-
- Keyword
- Blocked keywords
- Manage blocked keywords
- You are not blocking any keywords. You may add keywords here to block all messages containing them.
- Add a blocked keyword
- Lock screen notification visibility
- Sender and message
- Sender only
- Enable delivery reports
- Remove accents and diacritics at sending messages
- Send message on pressing Enter
- Resize sent MMS images
- No limit
- Outgoing messages
- Send group messages as MMS
- Send long messages as MMS
-
- Messages
- Export messages
- Export SMS
- Export MMS
- Import messages
- Import SMS
- Import MMS
- You have to select at least one item
-
- Can\'t send message to an empty number
- Unable to save message to the telephony database
- Couldn\'t send message, service unavailable
- Couldn\'t send message, radio turned off
- Couldn\'t send message, carrier error
Couldn\'t send message, error code: %1$d
- Can\'t reply to short codes like this
- You can only reply to short codes with numbers like \"503501\" but not to codes containing letters and numbers like \"AB-CD0\".
- Attachment size exceeds max MMS limit
- SIM card not available
- Couldn\'t download MMS
-
Why does the app require access to the internet\?
Sadly it is needed for sending MMS attachments. Not being able to send MMS would be a really huge disadvantage compared to other apps, so we decided to go this way. However, as usually, there are no ads, tracking or analytics whatsoever, the internet is used only for sending MMS.
The other end is not receiving my MMS, is there anything I can do about it\?
- MMS size is limited by carriers, you can try setting a smaller limit in the app settings.
- Does the app support scheduled messages?
- Yes, you can schedule messages to be sent in the future by long pressing the Send button and picking the desired date and time.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml
index 97e72219..9223a2a5 100644
--- a/app/src/main/res/values-tr/strings.xml
+++ b/app/src/main/res/values-tr/strings.xml
@@ -19,24 +19,19 @@
Sabitlemeyi kaldır
İlet
Resim seçilen boyuta sıkıştırılamıyor
-
Yinelenen öge dahil edilmedi
-
- ve %d diğeri
- ve %d diğeri
-
Yeni görüşme
Kişi veya Numara Ekle…
Öneriler
-
Üyeler
Görüşme adı
Görüşme ayrıntıları
Görüşmeyi yeniden adlandır
Bu görüşme adını yalnızca siz görebilirsiniz
-
Zamanlanan ileti
İletiyi zamanla
Göndermeyi zamanla
@@ -45,19 +40,15 @@
Telefonu açık tutun ve arka planda uygulamayı sonlandıran hiçbir şey olmadığından emin olun.
İletiyi güncelle
Şimdi gönder
-
- Message details
Gönderen
Alıcı
Gönderildi
Alındı
-
SMS alındı
Yeni ileti
Okundu olarak işaretle
Okunmadı olarak işaretle
Ben
-
Arşivden çıkar
Arşivlenen tüm görüşmeleri sil
Arşiv
@@ -66,27 +57,22 @@
Arşivlenen görüşme bulunamadı
Arşiv başarıyla boşaltıldı
Arşivi boşaltmak istediğinizden emin misiniz\? Arşivlenen tüm görüşmeler kalıcı olarak kaybolacak.
-
Geri yükle
Tüm mesajları geri yükle
Geri dönüşüm kutusunu boşaltmak istediğinizden emin misiniz\? Mesajlar kalıcı olarak kaybolacaktır.
Geri dönüşüm kutusunu atla, mesajları doğrudan sil
-
Bu görüşmenin tüm mesajlarını silmek istediğinizden emin misiniz\?
%s arşivlemek istediğinizden emin misiniz\?
Bu görüşmenin tüm mesajlarını geri yüklemek istediğinizden emin misiniz\?
%s\'i geri yüklemek istediğinizden emin misiniz\?
-
- %d görüşme
- %d görüşme
-
- %d ileti
- %d ileti
-
Anahtar sözcük
Engellenen anahtar sözcükler
Engellenen anahtar sözcükleri yönet
@@ -103,7 +89,6 @@
Giden iletiler
Grup iletilerini MMS olarak gönder
Uzun iletileri MMS olarak gönder
-
İletiler
İletileri dışa aktar
SMS\'i dışa aktar
@@ -112,7 +97,6 @@
SMS\'i içe aktar
MMS\'i içe aktar
En az bir öge seçmelisiniz
-
Boş bir numaraya mesaj gönderilemez
Mesaj telefon veri tabanına kaydedilemiyor
Mesaj gönderilemedi, hizmet kullanılabilir değil
@@ -124,15 +108,10 @@
Ek boyutu, azami MMS sınırını aşıyor
SIM kart kullanılabilir değil
MMS indirilemedi
-
Uygulama neden internete erişim gerektiriyor\?
Ne yazık ki MMS eklerini göndermek için gerekli. MMS gönderememek, diğer uygulamalara kıyasla gerçekten çok büyük bir dezavantaj olacaktır, bu yüzden bu şekilde gitmeye karar verdik. Bununla birlikte, genellikle olduğu gibi, hiçbir reklam, izleme veya analiz yoktur, internet yalnızca MMS göndermek için kullanılır.
Karşı taraf MMS\'imi almıyor, bu konuda yapabileceğim bir şey var mı\?
MMS boyutu operatörler tarafından sınırlandırılır, uygulama ayarlarında daha küçük bir sınır belirlemeyi deneyebilirsiniz.
Uygulama zamanlanan mesajları destekliyor mu\?
Evet, gönder düğmesine uzun basarak ve istediğiniz tarih ve saati seçerek iletileri gelecekte gönderilmek üzere zamanlayabilirsiniz.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-uk/strings.xml b/app/src/main/res/values-uk/strings.xml
index 0d72bb4c..ce321c21 100644
--- a/app/src/main/res/values-uk/strings.xml
+++ b/app/src/main/res/values-uk/strings.xml
@@ -19,26 +19,21 @@
Відкріпити
Переслати
Не вдається стиснути зображення до вибраного розміру
-
Дубльований елемент не включено
-
- та інший %d
- та інші %d
- та інші %d
- та інші %d
-
Нове листування
Додати контакт аба номер…
Пропозиція
-
Учасники
Назва розмови
Деталі розмови
Перейменувати розмову
Тільки ви можете бачити цю назву розмови
-
Заплановане повідомлення
Розклад повідомлення
Розклад відправки
@@ -47,19 +42,16 @@
Тримайте телефон увімкненим і переконайтеся, що ніщо не завершує застосунок у фоновому режимі.
Оновити повідомлення
Надіслати зараз
-
Деталі повідомлення
Відправник
Отримувач
Надіслано о
Отримано о
-
Отримано повідомлення
Нове повідомлення
Прочитано
Не прочитано
Я
-
Розархівувати
Видалити всі архівовані розмови
Архівувати
@@ -68,31 +60,26 @@
Не знайдено архівованих розмов
Успішно спустошано архів
Ви дійсно хочете спустошити архів? Всі архівовані розмови будуть остаточно видалено.
-
Відновити
Віновити всі повідомлення
Ви дійсно хочете спустошити кошик? Всі архівовані розмови будуть остаточно видалено.
Пропустити кошик, видалити повідомлення безпосередньо
-
Справді видалити всі повідомлення у цьому листуванні\?
Ви впевнені, ви хочете архівувати %s?
Ви впевнені, ви хочете відновити всі повідомлення цієї розмови?
Ви впевнені, ви хочете відновити %s?
-
- %d листування
- %d листувань
- %d листувань
- %d листувань
-
- %d повідомлення
- %d повідомлень
- %d повідомлень
- %d повідомлень
-
Ключове слово
Заблоковані ключові слова
Керувати заблокованими ключовими словами
@@ -109,7 +96,6 @@
Вихідні повідомлення
Надсилати групові повідомлення як MMS
Надсилати довгі повідомлення як MMS
-
Повідомлення
Експортувати повідомлення
Експортувати SMS
@@ -118,7 +104,6 @@
Імпортувати SMS
Імпортувати MMS
Потрібно вибрати принаймні один елемент
-
Неможливо надіслати повідомлення на порожній номер
Неможливо зберегти повідомлення до бази даних телефону
Не вдалося надіслати повідомлення, послуга недоступна
@@ -130,15 +115,10 @@
Розмір вкладеного файлу перевищує максимальний ліміт MMS
SIM-картка не доступна
Не вдалося завантажити MMS
-
Чому додаток вимагає доступ до Інтернету\?
Нажаль, це необхідно для відправки вкладень MMS. Неспроможність надсилати MMS-повідомлення була б великим недоліком нашого додатку порівняно з іншими, тому ми так зробили. Тим не менше, як і в інших наших додатках, цей не містить реклами, відстеження та аналітики. Інтернет використовується лише для відправки MMS.
Інша сторона не отримує мого MMS, чи можу я щось з цим зробити\?
Розмір MMS обмежений операторами, ви можете спробувати зменшити ліміт у налаштуваннях програми.
Чи підтримує застосунок заплановані повідомлення\?
Так, ви можете запланувати надсилання повідомлень у майбутньому, довго натискаючи кнопку «Надіслати» та вибираючи потрібну дату й час.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-vi/strings.xml b/app/src/main/res/values-vi/strings.xml
index befb7d55..2791cc05 100644
--- a/app/src/main/res/values-vi/strings.xml
+++ b/app/src/main/res/values-vi/strings.xml
@@ -19,23 +19,18 @@
Bỏ ghim
Chuyển tiếp
Không thể nén hình ảnh sang kích thước đã chọn
-
Các mục trùng lặp không được bao gồm
-
- và %d người khác
-
Cuộc hội thoại mới
Thêm Liên hệ hoặc Số điện thoại…
Đề xuất
-
Thành viên
Tên cuộc hội thoại
Thông tin cuộc hội thoại
Đổi tên cuộc hội thoại
Chỉ có bạn mới có thể nhìn thấy tên của cuộc hội thoại này
-
Tin nhắn đã lên lịch
Lên lịch tin nhắn
Lên lịch gửi
@@ -44,19 +39,16 @@
Giữ cho điện thoại bật và đảm bảo không có gì làm cho ứng dụng bị dừng khi đang hoạt động trong nền.
Cập nhật tin nhắn
Gửi ngay
-
Thông tin tin nhắn
Người gửi
Người nhận
Gửi lúc
Nhận lúc
-
Tin nhắn SMS đã nhận
Tin nhắn mới
Đánh dấu là đã đọc
Đánh dấu là chưa đọc
Tôi
-
Hủy lưu trữ
Xóa tất cả các cuộc hội thoại đã lưu trữ
Lưu trữ
@@ -65,25 +57,20 @@
Không có cuộc hội thoại đã lưu trữ nào được tìm thấy
Kho lưu trữ đã được dọn sạch thành công
Bạn có chắc là muốn dọn sạch kho lưu trữ không\? Tất cả các cuộc hội thoại đã lưu trữ sẽ bị mất vĩnh viễn.
-
Khôi phục
Khôi phục tất cả tin nhắn
Bạn có chắc là muốn dọn sạch Thùng rác không\? Tất cả tin nhắn sẽ bị mất vĩnh viễn.
Bỏ qua Thùng rác, xóa tin nhắn trực tiếp
-
Bạn có chắc là muốn xóa tất cả các tin nhắn của cuộc hội thoại này không\?
Bạn có chắc là muốn lưu trữ %s\?
Bạn có chắc là muốn khôi phục tất cả tin nhắn của cuộc hội thoại này không\?
Bạn có chắc là muốn khôi phục %s\?
-
- %d cuộc hội thoại
-
- %d tin nhắn
-
Từ khóa
Từ khóa bị chặn
Quản lý danh sách từ khóa bị chặn
@@ -100,7 +87,6 @@
Tin nhắn gửi đi
Gửi tin nhắn nhóm dưới dạng MMS
Gửi tin nhắn dài dưới dạng MMS
-
Tin nhắn
Xuất tin nhắn
Xuất SMS
@@ -109,7 +95,6 @@
Nhập SMS
Nhập MMS
Bạn cần phải chọn ít nhất một mục
-
Không thể gửi đến số điện thoại trống
Không thể lưu tin nhắn để cơ sở dữ liệu điện thoại
Không thể gửi tin nhắn, dịch vụ không khả dụng
@@ -121,15 +106,10 @@
Kích thước tập tin đính kèm vượt qua giới hạn MMS
Thẻ SIM không khả dụng
Không thể tải xuống MMS
-
Tại sao ứng dụng cần quyền truy cập Internet\?
Đáng buồn là nó lại cần thiết để gửi tệp đính kèm MMS. Không thể gửi MMS sẽ là một bất lợi thực sự rất lớn so với các ứng dụng khác, vì vậy chúng tôi quyết định đi theo hướng này. Tuy nhiên, như thường lệ, không có quảng cáo, theo dõi hay phân tích nào, internet chỉ được sử dụng để gửi MMS.
Đầu bên kia không nhận được MMS của tôi, tôi có thể làm gì được không\?
Kích thước MMS bị giới hạn bởi nhà cung cấp dịch vụ, bạn có thể thử đặt giới hạn nhỏ hơn trong cài đặt ứng dụng.
Ứng dụng có hỗ trợ gửi tin nhắn theo lịch trình không\?
Có, bạn có thể lên lịch gửi tin nhắn trong tương lai bằng cách nhấn và giữ nút Gửi và chọn ngày giờ mong muốn.
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml
index 58e8ec2b..9b1eeaeb 100644
--- a/app/src/main/res/values-zh-rCN/strings.xml
+++ b/app/src/main/res/values-zh-rCN/strings.xml
@@ -19,23 +19,18 @@
取消固定
转发
无法将图像压缩到选定的大小
-
未包含重复项
-
- 及其他 %d 个联系人
-
新的对话
添加联系人或者号码…
建议
-
成员
对话名
对话详情
重命名对话
只有你能看到这个对话的名称
-
定时消息
消息定时
定时发送
@@ -44,19 +39,16 @@
保持手机开机,并确保应用后台不被终止.
更新消息
立即发送
-
消息详情
发送者
接收者
发送于
接收于
-
接收到的短信
新消息
标记为已读
标记为未读
自己
-
解压缩
删除所有已归档对话
归档
@@ -65,25 +57,20 @@
尚未找到已归档对话
已成功清空归档
你确定要清空归档吗?所有已归档对话将永久丢失。
-
恢复
恢复所有消息
你确定想清空回收站吗?你将永久失去已删除的消息。
跳过回收站,直接删除消息
-
您确定要删除此对话的所有消息吗\?
你确定要归档 %s 吗?
你确定想要恢复此对话的所有消息吗?
你确定想恢复 %s?
-
- %d 个对话
-
- %d 个消息
-
关键词
关键词黑名单
管理关键词黑名单
@@ -100,7 +87,6 @@
外发消息
将群组信息作为彩信发送
将长消息作为彩信发送
-
消息
导出消息
导出短信
@@ -109,7 +95,6 @@
导入短信
导入彩信
您必须至少选择一项
-
无法发送消息到空号
无法保存消息到电话通信(telephony)数据库
无法发送消息,服务不可用
@@ -121,15 +106,10 @@
附件大小超出了彩信上限
SIM 卡不可用
无法下载彩信
-
为什么该应用需要访问互联网?
很遗憾这对于发送彩信附件是必须的。如果不能发送彩信的话这相比其他应用会是一个巨大的劣势,所以我们决定这么采取现在的方式。 但是和其他应用一样,不包含广告、追踪或者任意的分析工具, 互联网访问仅用于发送彩信。
对方没有收到我的彩信,我能做些什么吗\?
彩信大小受运营商限制,你可以尝试在程序设置中设定一个较小的限制。
本应用支持定时消息吗?
是的,你可以长按“发送”按钮并选择所需的日期和时间安排将来要发送的消息。
-
-
+
\ No newline at end of file
diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml
index 1f57d568..073ff3a5 100644
--- a/app/src/main/res/values-zh-rTW/strings.xml
+++ b/app/src/main/res/values-zh-rTW/strings.xml
@@ -1,6 +1,5 @@
- SMS Messenger
輸入訊息……
訊息未送出
未送出。點選以重試。
@@ -19,23 +18,18 @@
取消釘選
轉寄
無法將圖片壓縮至指定大小
-
未包含重複項目
-
- 和其他 %d 位
-
新對話
新增聯絡人或號碼……
建議
-
成員
對話名稱
對話詳細資訊
重新命名對話
只有您能看到此對話名稱
-
已排程的訊息
排程訊息
排程送出
@@ -44,19 +38,16 @@
請保持手機開機,並確保沒有任何東西在背景關閉應用程式。
更新訊息
立即送出
-
訊息詳細資訊
寄件者
收件者
送出時間
收到時間
-
收到的簡訊
新訊息
標為已讀
標為未讀
我
-
取消封存
刪除所有已封存的對話
封存
@@ -65,25 +56,20 @@
未找到已封存的對話
封存已成功清空
您確定要清空封存嗎?所有已封存的對話將會永久遺失。
-
還原
還原所有訊息
您確定要清空回收筒嗎?訊息將會永久遺失。
跳過回收筒,直接刪除訊息
-
您確定要刪除此對話中的所有訊息嗎?
您確定要封存 %s 嗎?
您確定要還原此對話中的所有訊息嗎?
您確定要還原 %s 嗎?
-
- %d 個對話
-
- %d 則訊息
-
關鍵字
已封鎖的關鍵字
管理已封鎖的關鍵字
@@ -100,7 +86,6 @@
送出的訊息
以 MMS 送出群組訊息
以 MMS 送出長訊息
-
訊息
匯出訊息
匯出簡訊
@@ -109,7 +94,6 @@
匯入簡訊
匯入 MMS
最少要選擇一個項目
-
無法向空號碼送出訊息
無法將訊息儲存至電信資料庫
無法送出訊息,服務無法使用
@@ -121,15 +105,10 @@
附件大小超過最大 MMS 限制
SIM 卡無法使用
無法下載 MMS
-
為什麼這個程式需要存取網路?
傳送 MMS 附件需要這個功能。相較於其他應用程式,不能傳送 MMS 將是一大劣勢,所以我們才會選擇這樣做。不過我們依然不會有任何形式的廣告、追蹤或分析,網路連線僅用於傳送 MMS 。
對方沒有收到我的 MMS,我能做些什麼嗎?
MMS 的大小受到電信業者的限制,您可以嘗試在應用程式設定中設定較小的限制。
應用程式是否支援排程訊息?
是的,您可以長按「送出」按鈕並選擇所需的日期和時間,以排程將訊息送出。
-
-
+
\ No newline at end of file