diff --git a/scripts/update_translations.sh b/scripts/update_translations.sh
index 4c8f3974f..d111afc0b 100755
--- a/scripts/update_translations.sh
+++ b/scripts/update_translations.sh
@@ -8,4 +8,3 @@ TRANSLATION_FILES=$(find "$SCRIPT_DIR/../src/presentation/translations" -name "l
# Use lupdate with the list of translation files
lupdate "$SCRIPT_DIR/../src/presentation" -ts $TRANSLATION_FILES
-
diff --git a/src/adapters/controllers/app_info_controller.cpp b/src/adapters/controllers/app_info_controller.cpp
index 08dda0dd7..bb563027a 100644
--- a/src/adapters/controllers/app_info_controller.cpp
+++ b/src/adapters/controllers/app_info_controller.cpp
@@ -153,9 +153,6 @@ bool AppInfoController::switchToLanguage(const QString& language)
return false;
}
-
- emit languageChanged();
-
// Use "English" for all kinds of English variants like American English
if(QLocale(language).language() == QLocale::Language::English)
m_language = "English";
@@ -170,6 +167,7 @@ bool AppInfoController::switchToLanguage(const QString& language)
settings.setValue("language", language);
m_engine->retranslate();
+ emit languageChanged();
return true;
}
diff --git a/src/presentation/CMakeLists.txt b/src/presentation/CMakeLists.txt
index 6c958dbb0..fc49220f6 100644
--- a/src/presentation/CMakeLists.txt
+++ b/src/presentation/CMakeLists.txt
@@ -20,6 +20,7 @@ set(translation_files
translations/librum_it.ts
translations/librum_ru.ts
translations/librum_ko.ts
+ translations/librum_ar.ts
translations/librum_zh.ts
translations/librum_uk.ts
translations/librum_pt.ts
diff --git a/src/presentation/TranslationsModel.qml b/src/presentation/TranslationsModel.qml
index ebfb24ffb..a7232b7b5 100644
--- a/src/presentation/TranslationsModel.qml
+++ b/src/presentation/TranslationsModel.qml
@@ -17,6 +17,10 @@ ListModel {
text: "Italiano"
code: "it"
}
+ ListElement {
+ text: "العربية"
+ code: "ar"
+ }
ListElement {
text: "Русский"
code: "ru"
diff --git a/src/presentation/feature/arabic-translation b/src/presentation/feature/arabic-translation
new file mode 100644
index 000000000..1f068c5de
--- /dev/null
+++ b/src/presentation/feature/arabic-translation
@@ -0,0 +1,3 @@
+
+
+
diff --git a/src/presentation/freeBooksPage/MFreeBooksPage.qml b/src/presentation/freeBooksPage/MFreeBooksPage.qml
index 587980099..5c0ba2c8e 100644
--- a/src/presentation/freeBooksPage/MFreeBooksPage.qml
+++ b/src/presentation/freeBooksPage/MFreeBooksPage.qml
@@ -124,6 +124,9 @@ Page {
cellHeight: internal.bookHeight + internal.verticalBookSpacing
// Negative margin removes the extra spacing at the right of the grid
rightMargin: -internal.horizontalBookSpacing
+ layoutDirection: Qt.LeftToRight
+ LayoutMirroring.enabled: false
+ LayoutMirroring.childrenInherit: true
interactive: true
boundsBehavior: Flickable.StopAtBounds
flickDeceleration: 19500
diff --git a/src/presentation/homePage/MHomePage.qml b/src/presentation/homePage/MHomePage.qml
index ee3d73e73..a0d04b26c 100644
--- a/src/presentation/homePage/MHomePage.qml
+++ b/src/presentation/homePage/MHomePage.qml
@@ -18,6 +18,8 @@ Page {
id: root
rightPadding: 70
bottomPadding: 20
+ LayoutMirroring.enabled: baseRoot.rightAlign
+ LayoutMirroring.childrenInherit: true
background: Rectangle {
anchors.fill: parent
color: Style.colorPageBackground
@@ -229,6 +231,9 @@ Page {
cellWidth: internal.bookWidth + internal.horizontalBookSpacing
cellHeight: internal.bookHeight + internal.verticalBookSpacing
rightMargin: -internal.horizontalBookSpacing
+ layoutDirection: Qt.LeftToRight
+ LayoutMirroring.enabled: false
+ LayoutMirroring.childrenInherit: true
interactive: true
boundsBehavior: Flickable.StopAtBounds
flickDeceleration: 15000
diff --git a/src/presentation/main.qml b/src/presentation/main.qml
index 995cc770f..ab286521e 100644
--- a/src/presentation/main.qml
+++ b/src/presentation/main.qml
@@ -23,6 +23,7 @@ ApplicationWindow {
property int sidebarOpenedMinWidth: 810
property int readingPageMinWidth: 550
property bool notifyAboutUpdates: true
+ property bool rightAlign: AppInfoController.language === "العربية"
minimumHeight: 400
minimumWidth: 650
@@ -39,6 +40,8 @@ ApplicationWindow {
id: mainlayout
anchors.fill: parent
spacing: 0
+ LayoutMirroring.enabled: baseRoot.rightAlign
+ LayoutMirroring.childrenInherit: true
MSidebar {
id: sidebar
diff --git a/src/presentation/modules/CustomComponents/MBaseListItem.qml b/src/presentation/modules/CustomComponents/MBaseListItem.qml
index 2632172e4..fac67d47c 100644
--- a/src/presentation/modules/CustomComponents/MBaseListItem.qml
+++ b/src/presentation/modules/CustomComponents/MBaseListItem.qml
@@ -29,6 +29,9 @@ Item {
Component.onCompleted: root.completed(model.index, root.actualWidth)
+ LayoutMirroring.enabled: baseRoot.rightAlign
+ LayoutMirroring.childrenInherit: true
+
Pane {
id: container
property bool renameable: false
diff --git a/src/presentation/modules/CustomComponents/MConfirmAccountDeletionPopup.qml b/src/presentation/modules/CustomComponents/MConfirmAccountDeletionPopup.qml
index ddd67e4e5..8d7e95fcd 100644
--- a/src/presentation/modules/CustomComponents/MConfirmAccountDeletionPopup.qml
+++ b/src/presentation/modules/CustomComponents/MConfirmAccountDeletionPopup.qml
@@ -71,7 +71,8 @@ Popup {
Label {
id: infoText
Layout.topMargin: 20
- Layout.leftMargin: 52
+ Layout.leftMargin: baseRoot.rightAlign ? 0 : 52
+ Layout.rightMargin: baseRoot.rightAlign ? 52 : 0
Layout.fillWidth: true
wrapMode: Text.WordWrap
textFormat: Text.RichText
diff --git a/src/presentation/modules/CustomComponents/MLabeledCheckBox.qml b/src/presentation/modules/CustomComponents/MLabeledCheckBox.qml
index 767142894..87fbf68cb 100644
--- a/src/presentation/modules/CustomComponents/MLabeledCheckBox.qml
+++ b/src/presentation/modules/CustomComponents/MLabeledCheckBox.qml
@@ -34,7 +34,10 @@ Item {
RowLayout {
id: layout
+ width: parent.width
spacing: root.spacing
+ LayoutMirroring.enabled: baseRoot.rightAlign
+ LayoutMirroring.childrenInherit: true
MCheckBox {
id: checkBox
diff --git a/src/presentation/modules/CustomComponents/buttons/MButton.qml b/src/presentation/modules/CustomComponents/buttons/MButton.qml
index 05c995970..6de89abbb 100644
--- a/src/presentation/modules/CustomComponents/buttons/MButton.qml
+++ b/src/presentation/modules/CustomComponents/buttons/MButton.qml
@@ -30,6 +30,9 @@ Item {
property bool centerContentVertically: true
property bool centerContentHorizontally: true
+ LayoutMirroring.enabled: baseRoot.rightAlign
+ LayoutMirroring.childrenInherit: true
+
implicitHeight: 30
implicitWidth: layout.implicitWidth + 2 * horizontalMargins
diff --git a/src/presentation/modules/CustomComponents/rightClickMenu/MRightClickMenuItem.qml b/src/presentation/modules/CustomComponents/rightClickMenu/MRightClickMenuItem.qml
index a4209027b..eb6e36105 100644
--- a/src/presentation/modules/CustomComponents/rightClickMenu/MRightClickMenuItem.qml
+++ b/src/presentation/modules/CustomComponents/rightClickMenu/MRightClickMenuItem.qml
@@ -15,6 +15,9 @@ Item {
implicitHeight: 32
implicitWidth: 100
+ LayoutMirroring.enabled: baseRoot.rightAlign
+ LayoutMirroring.childrenInherit: true
+
onVisibleChanged: selected = false
Pane {
diff --git a/src/presentation/readingPage/MReadingPage.qml b/src/presentation/readingPage/MReadingPage.qml
index f59526aa8..731c46ec7 100644
--- a/src/presentation/readingPage/MReadingPage.qml
+++ b/src/presentation/readingPage/MReadingPage.qml
@@ -17,6 +17,10 @@ Page {
color: Style.colorPageBackground
}
+ // Prevent right-alignment
+ LayoutMirroring.enabled: false
+ LayoutMirroring.childrenInherit: true
+
Component.onCompleted: root.forceActiveFocus()
Component.onDestruction: internal.saveCurrentPage()
diff --git a/src/presentation/settings/MAboutPage.qml b/src/presentation/settings/MAboutPage.qml
index 43c90505e..773a8cb5a 100644
--- a/src/presentation/settings/MAboutPage.qml
+++ b/src/presentation/settings/MAboutPage.qml
@@ -267,7 +267,7 @@ MFlickWrapper {
id: heartRow
Layout.fillWidth: true
Layout.topMargin: 40
- spacing: 0
+ spacing: 22
Image {
id: heartImage
@@ -278,8 +278,7 @@ MFlickWrapper {
Label {
id: thisAppText
- Layout.fillWidth: true
- Layout.leftMargin: 22
+ Layout.alignment: baseRoot.rightAlign ? Qt.AlignRight : Qt.AlignLeft
text: qsTr("Librum is here for everyone who just wants to enjoy a good book.\n" + "We hope you have a great time using it! Feel free to leave us a rating and some feedback.")
wrapMode: Text.WordWrap
color: Style.colorText
diff --git a/src/presentation/settings/MSettings.qml b/src/presentation/settings/MSettings.qml
index e15ebcb48..8a93532d3 100644
--- a/src/presentation/settings/MSettings.qml
+++ b/src/presentation/settings/MSettings.qml
@@ -20,6 +20,9 @@ Page {
property alias storagePage: storagePage
property alias supportUsPage: supportUsPage
+ LayoutMirroring.enabled: baseRoot.rightAlign
+ LayoutMirroring.childrenInherit: true
+
background: Rectangle {
anchors.fill: parent
color: Style.colorPageBackground
diff --git a/src/presentation/settings/shortcutsPage/MShortcutsPage.qml b/src/presentation/settings/shortcutsPage/MShortcutsPage.qml
index 91febe354..cc398a85e 100644
--- a/src/presentation/settings/shortcutsPage/MShortcutsPage.qml
+++ b/src/presentation/settings/shortcutsPage/MShortcutsPage.qml
@@ -89,6 +89,10 @@ Page {
anchors.fill: parent
spacing: 0
+ // Prevent right-alignment
+ LayoutMirroring.enabled: false
+ LayoutMirroring.childrenInherit: true
+
/*
The shortcuts header labeling the different columns
diff --git a/src/presentation/settings/updatesPage/MUpToDate.qml b/src/presentation/settings/updatesPage/MUpToDate.qml
index a7a5ba1ba..6afeea9fe 100644
--- a/src/presentation/settings/updatesPage/MUpToDate.qml
+++ b/src/presentation/settings/updatesPage/MUpToDate.qml
@@ -62,6 +62,7 @@ Item {
Label {
Layout.fillWidth: true
text: AppInfoController.currentVersion
+ horizontalAlignment: Text.AlignLeft
wrapMode: Text.WordWrap
color: Style.colorBasePurple
font.pointSize: Fonts.size14
diff --git a/src/presentation/settings/updatesPage/MUpdatesAvailable.qml b/src/presentation/settings/updatesPage/MUpdatesAvailable.qml
index b5399a43a..9ca137c7b 100644
--- a/src/presentation/settings/updatesPage/MUpdatesAvailable.qml
+++ b/src/presentation/settings/updatesPage/MUpdatesAvailable.qml
@@ -75,6 +75,7 @@ Item {
Label {
Layout.fillWidth: true
text: AppInfoController.newestVersion
+ horizontalAlignment: Text.AlignLeft
wrapMode: Text.WordWrap
color: Style.colorLightText
font.pointSize: Fonts.size14
diff --git a/src/presentation/sidebar/MSidebar.qml b/src/presentation/sidebar/MSidebar.qml
index c8988592d..963f5ed46 100644
--- a/src/presentation/sidebar/MSidebar.qml
+++ b/src/presentation/sidebar/MSidebar.qml
@@ -219,7 +219,12 @@ Item {
*/
MProfilePopup {
id: profilePopup
- x: 12
+ x: {
+ if (baseRoot.rightAlign)
+ return -106
+ else
+ return 12
+ }
y: profileBox.y - implicitHeight + 6
}
}
diff --git a/src/presentation/translations/librum_ar.ts b/src/presentation/translations/librum_ar.ts
new file mode 100644
index 000000000..e7b1e3073
--- /dev/null
+++ b/src/presentation/translations/librum_ar.ts
@@ -0,0 +1,2301 @@
+
+
+
+
+ MAboutPage
+
+
+
+ حول
+
+
+
+
+ حول هذا التطبيق
+
+
+
+
+ التفاصيل
+
+
+
+
+ Keep it capitalized
+ الإصدار الحالي
+
+
+
+
+ Keep it capitalized
+ إصدار QT
+
+
+
+
+ مُحَدث
+
+
+
+
+ الصانع
+
+
+
+
+ Keep it capitalized
+ اسم الشركة
+
+
+
+
+ Keep it capitalized
+ موقع الويب
+
+
+
+
+ Keep it capitalized
+ اتصل
+
+
+
+
+ Keep it capitalized
+ GITHUB
+
+
+
+
+ هذا التطبيق
+
+
+
+
+ Librum موجود هنا لكل من يريد الاستمتاع بكتاب جيد.
+نأمل أن تقضي وقتًا ممتعًا في استخدامه! لا تتردد في ترك تقييم لنا وبعض التعليقات.
+
+
+
+ MAcceptPolicy
+
+
+
+ Make sure to translate the following words together to make a logical sentence
+ أنا أقبل
+
+
+
+
+ شروط الخدمة
+
+
+
+
+ و
+
+
+
+
+ سياسة الخصوصية
+
+
+
+ MAccountPage
+
+
+
+ الحساب
+
+
+
+
+
+ احفظ
+
+
+
+
+ الملف الشخصي
+
+
+
+ الاسم الأول
+
+
+
+ الاسم الأخير
+
+
+
+
+ اسم
+
+
+
+
+ البريد الإلكتروني
+
+
+
+
+ مستوى
+
+
+
+
+ غير كلمة المرور
+
+
+
+
+ كلمة المرور
+
+
+
+
+ تأكيد كلمة المرور
+
+
+
+
+ بياناتك
+
+
+
+
+ قم بتحليل قراءتك لتقديم توصيات أفضل
+
+
+
+
+ شارك المعلومات حول الكتب التي تقرأها دون الكشف عن هويتك لمساعدتنا على تحسين Librum
+
+
+
+
+ جمع البيانات عن الأعطال حتى نتمكن من منع حدوثها مرة أخرى
+
+
+
+
+ اجمع البيانات لعرضها في إحصائياتك
+
+
+
+
+ حسابك
+
+
+
+
+ تسجيل الخروج
+
+
+
+
+ حذف حسابك
+
+
+
+
+ عفواً
+
+
+
+
+ يبدو أنك نسيت حفظ التغييرات الخاصة بك، هل أنت متأكد من أنك لا تريد حفظها؟
+
+
+
+
+ لا تحفظ
+
+
+
+
+
+ كلمات المرور لا تتطابق!
+
+
+
+ MAddFolderPopup
+
+
+
+ أضف وصف
+
+
+
+
+ انشاء مجلد
+
+
+
+
+ اسم المجلد
+
+
+
+
+ رمز
+
+
+
+
+ لون
+
+
+
+
+ الوصفوصف
+
+
+
+
+ تحديث
+
+
+
+
+ انشاء
+
+
+
+ MAddOnsPage
+
+
+
+ صفحة الإضافات
+
+
+
+
+ حالياً قيد التطوير
+
+
+
+ MAddShortcutPopup
+
+
+
+ تعديل الاختصارات
+
+
+
+
+ إجراء
+
+
+
+
+ لم يتم اختيار أي
+
+
+
+
+ الاختصار
+
+
+
+
+ مستخدمة بالفعل في
+
+
+
+
+ نَفِّذ
+
+
+
+
+ إلغاء
+
+
+
+ MAddTagBox
+
+
+
+ أضف وسماً...
+
+
+
+ MAddTagBoxPopup
+
+
+
+ أضف
+
+
+
+
+ أعد تسمية
+
+
+
+
+ حذف
+
+
+
+ MAppearancePage
+
+
+
+ المظهر
+
+
+
+
+ اصنع تجربتك الخاصة
+
+
+
+
+ استعادة الإعدادات الافتراضية
+
+
+
+
+ العرض
+
+
+
+
+ سمة المظهر
+
+
+
+
+ داكن
+
+
+
+
+ فاتح
+
+
+
+
+ اللغة
+
+
+
+
+ القراءة
+
+
+
+
+ المباعدة بين الصفحات
+
+
+
+
+ عرض عنوان كتاب في شريط العنوان
+
+
+
+
+ التكبير الافتراضي
+
+
+
+
+ تظليلات
+
+
+
+
+ الألوان
+
+
+
+
+ التعتيم
+
+
+
+
+ إعادة ضبط الإعدادات؟
+
+
+
+
+ إعادة ضبط إعداداتك هو إجراء دائم هناك
+لن تكون وسيلة لاستعادتهم!
+
+
+
+
+ لا، ابقي
+
+
+
+
+ أجل، أعد التعيين
+
+
+
+ MBehaviorPage
+
+
+
+ السلوك
+
+
+
+
+ غير طريقة عمل Librum
+
+
+
+
+ استعادة الإعدادات الافتراضية
+
+
+
+
+ الكتب
+
+
+
+
+ وضع المؤشر
+
+
+
+
+ مخفي بعد مدة
+
+
+
+
+ دائما مرئي
+
+
+
+
+ إخفاء المؤشر بعد مدة
+
+
+
+
+ مللي ثانية
+
+
+
+
+ إدراج سطور جديدة في النص المنسوخ
+
+
+
+
+ تشغيل
+
+
+
+
+ إيقاف
+
+
+
+
+ إعادة ضبط الإعدادات؟
+
+
+
+
+ إعادة ضبط إعداداتك هو إجراء دائم هناك
+لن تكون وسيلة لاستعادتهم!
+
+
+
+
+ لا، ابقي
+
+
+
+
+ أجل، أعد التعيين
+
+
+
+ MBook
+
+
+
+
+ غير معروف
+
+
+
+
+ لم يتم رفع كتابك على السحابة.
+إما أنك غير متصل بالإنترنت، أو أن مساحة تخزينك ممتلئ.
+
+
+
+ MBookDetailsPopup
+
+
+
+ تفاصيل الكتاب
+
+
+
+
+ تغيير
+
+
+
+
+
+ حذف
+
+
+
+
+ العنوان
+
+
+
+
+
+
+ غير معروف
+
+
+
+
+ المؤلفون
+
+
+
+
+ عدد الصفحات
+
+
+
+
+ اللغة
+
+
+
+
+ صانع المستند
+
+
+
+
+ تاريخ الإنشاء
+
+
+
+
+ الصيغة
+
+
+
+
+ حجم المستند
+
+
+
+
+ أضيف في
+
+
+
+
+ آخر فتح
+
+
+
+
+ نَفِّذ
+
+
+
+
+ إلغاء
+
+
+
+
+ حدد
+
+
+
+
+ كل الملفات
+
+
+
+
+
+
+ ملفات
+
+
+
+ MBookMultiSelectRightClickPopup
+
+
+
+ If this is too long in any language, use "Read" (past form) instead
+ وضع علامة كمقروء
+
+
+
+
+ إزالة الكتب
+
+
+
+
+ If this is too long, use "To Folder" instead
+ نقل إلى مجلد
+
+
+
+ إلغاء تثبيت الكتب
+
+
+
+ حذف الكتب
+
+
+
+ MBookRightClickPopup
+
+
+
+ تنزيل
+
+
+
+
+ اقرأ الكتب
+
+
+
+
+ تفاصيل الكتاب
+
+
+
+
+ حفظ إلى ملفات
+
+
+
+
+ أدر السمات
+
+
+
+
+ If this is too long, use "To Folder" instead
+ نقل إلى ملف
+
+
+
+ If this is too long in any language, use "Read" (past form) instead
+ وضع علامة كمقروء
+
+
+
+
+ احذف الكتاب
+
+
+
+ MBookmarksSidebar
+
+
+
+ إشارات مرجعية
+
+
+
+
+ البحث
+
+
+
+
+ أضف علامة مرجعية
+
+
+
+
+ علامة مرجعية جديدة
+
+
+
+
+ Context: "Follow" the bookmark (go to its page)
+ تتبع
+
+
+
+
+ أعد تسمية
+
+
+
+
+ حذف
+
+
+
+ MChapterSidebar
+
+
+
+ Context: Contents of the book, also known as outline
+ المحتويات
+
+
+
+
+ البحث
+
+
+
+ MComboBox
+
+
+
+ أي
+
+
+
+ MConfirmAccountDeletionPopup
+
+
+
+ تأكيد حذف الحساب
+
+
+
+
+ حذف حسابك هو إجراء لا رجعة فيه. <br> بمجرد حذف حسابك، <b> لا </b> رجعة له. من فضلك كن متأكداً.
+
+
+
+
+ بريدك الإلكتروني
+
+
+
+
+ تأكد من الحذف عن طريق إدخال البريد الإلكتروني لحسابك.
+
+
+
+
+ إلغاء
+
+
+
+
+ حذف
+
+
+
+
+ بريدك الإلكتروني خاطئ
+
+
+
+ MDeleteFolderPopup
+
+
+
+ حذف %1
+
+
+
+
+ الكتب في هذا المجلد لن تحذف.
+
+
+
+
+ إلغاء
+
+
+
+
+ حذف
+
+
+
+ MDescriptionPopup
+
+
+
+ أضف وصف لهذا المجلد
+
+
+
+
+ هذا المجلد عن...
+
+
+
+
+ تم
+
+
+
+ MDictionaryPopup
+
+
+
+ البحث
+
+
+
+
+ لم يتم العثور على تعريفات
+
+
+
+
+ ابحث على الإنترنت
+
+
+
+
+ المصدر
+
+
+
+ MDownloadBookPopup
+
+
+
+ تنزيل الكتاب
+
+
+
+
+ العنوان
+
+
+
+
+ المؤلفون
+
+
+
+
+ اللغة
+
+
+
+
+ التنزيلات
+
+
+
+
+ الصيغة
+
+
+
+
+ تنزيل
+
+
+
+
+ إلغاء
+
+
+
+ MDualToggle
+
+
+
+ يسار
+
+
+
+
+ يمين
+
+
+
+ MEmptyScreenContent
+
+
+
+ فارغة تمامًا هنا، ماذا عن إضافة كتابك الأول؟
+
+
+
+
+ أضف كتابًا
+
+
+
+ MExplanationPopup
+
+
+
+ Make sure that the words make a valid sentence
+ لقد وصلت إلى الحد اليومي.
+
+
+
+
+ اضغط
+
+
+
+
+ هنا
+
+
+
+
+ لمعرفة المزيد.
+
+
+
+
+ عفوًا! النص طويل جداً. يرجى تقصير اختيارك.
+
+
+
+
+ اشرح
+
+
+
+
+ اشرح كأني في الخامسة من عمري
+
+
+
+
+ لخص
+
+
+
+
+ قدم مزيداً من المعلومات
+
+
+
+
+ اشرح بصريًا
+
+
+
+
+ الوضع
+
+
+
+
+ لم يتم اختيار أي
+
+
+
+
+ اطلب
+
+
+
+
+ ملاحظة: قد تكون ردود الذكاء الاصطناعي غير دقيقة
+
+
+
+
+ إسأل
+
+
+
+ MFilterByButton
+
+
+
+ المُرَشِّحات
+
+
+
+ MFilterByPopup
+
+
+
+ مثلاً Uncle bob
+
+
+
+
+ المؤلفون
+
+
+
+ على سبيل المثال منذ 3 أيام
+
+
+
+ أضيف في
+
+
+
+
+ قُرء
+
+
+
+
+ لم يُقرأ
+
+
+
+
+ الصيغة
+
+
+
+
+
+ أي
+
+
+
+
+ اللغة
+
+
+
+
+ PDF
+
+
+
+
+ EPUB
+
+
+
+
+ MOBI
+
+
+
+
+ TXT
+
+
+
+
+ الكتب فقط
+
+
+
+
+ الملفات فقط
+
+
+
+
+ طبّق المرشحات
+
+
+
+ MFolderSidebar
+
+
+
+ رتب
+
+
+
+
+ كل الكتب
+
+
+
+
+ غير منظم
+
+
+
+
+ مجلدات
+
+
+
+ MFolderSidebarItemRigthclickPopup
+
+
+
+ إنشاء مجلد فرعي
+
+
+
+
+ تعديل
+
+
+
+
+ نقل إلى
+
+
+
+
+ حذف
+
+
+
+ MForgotPasswordPage
+
+
+
+ نسيت كلمة المرور
+
+
+
+
+ أدخل بريدك الإلكتروني وسنرسل لك رابطًا لإعادة ضبط كلمة المرور الخاصة بك
+
+
+
+
+ أرسل رسالة بريد إلكتروني
+
+
+
+
+ العودة إلى صفحة تسجيل الدخول
+
+
+
+
+ تم إرسال رسالة بريد الإلكتروني! تحقق بريدك الوارد
+
+
+
+ MFreeBook
+
+
+
+ .jpeg
+
+
+
+ MFreeBooksPage
+
+
+
+ لم يتم العثور على كتب
+
+
+
+
+ لم أستطع تحميل الكتب المجانية. من فضلك، تحقق من اتصال الشبكة الخاص بك
+
+
+
+
+ كتب مجانية
+
+
+
+
+ اختر من بين أكثر من 70000 كتاب
+
+
+
+ MHomePage
+
+
+
+ إصدار جديد متاح!
+
+
+
+
+ حدث الآن
+
+
+
+
+ As in 'Home Page', might be closer to 'Start' in other languages
+ الصفحة الرئيسية
+
+
+
+
+ لديك %1 كتاب
+
+
+
+
+ أضف كتب
+
+
+
+
+ احذف الكتاب؟
+
+
+
+
+ حذف كتاب هو عمل دائم، لا أحد
+سيكون قادر على استعادته بعد ذلك!
+
+
+
+
+
+ احذف من الجهاز
+
+
+
+
+
+ احذف من كل مكان
+
+
+
+
+ حذف الكتب؟
+
+
+
+
+ حذف الكتب هو إجراء دائم،
+ لن يكون أحد قادرًا على استعادته بعد ذلك!
+
+
+
+
+
+ حذف من المجلد؟
+
+
+
+
+ هذا الإجراء لن يقوم بحذف الكتاب الأصلي.
+
+
+
+
+
+
+ إلغاء
+
+
+
+
+
+ أزل
+
+
+
+
+ هذا الإجراء لن يقوم بحذف الكتب الأصلية.
+
+
+
+
+ احفظ
+
+
+
+
+ وصلت إلى الحد
+
+
+
+
+ لقد وصلت إلى حد الرفع.
+إما أن تحذف الكتب غير المستخدمة لتفريغ مساحة أو الترقية.
+
+
+
+
+ حسناً
+
+
+
+
+ ترقية
+
+
+
+
+ الكتاب موجود بالفعل
+
+
+
+
+ يبدو أن هذا الكتاب موجود بالفعل في مكتبتك:
+
+
+
+
+ هل أنت متأكد من أنك تريد إضافته مرة أخرى؟
+
+
+
+
+
+ أضف
+
+
+
+
+ لا تضف
+
+
+
+
+ ملف غير مدعوم
+
+
+
+
+ عفوًا! هذا الملف غير مدعوم من Librum.
+
+
+
+
+ إدراج
+
+
+
+
+ كل الملفات
+
+
+
+
+
+
+ ملفات
+
+
+
+ MLoginPage
+
+
+
+ أهلا بعودتك!
+
+
+
+
+ سجل الدخول إلى حسابك
+
+
+
+
+ البريد الإلكتروني
+
+
+
+
+ كلمة المرور
+
+
+
+
+ تذكرني
+
+
+
+
+ نسيتَ كلمة المرور؟
+
+
+
+
+ تسجيل دخول
+
+
+
+
+ ليس لديك حساب ؟ سجل
+
+
+
+
+ نحن آسفون
+
+
+
+
+ فشل تسجيل دخولك، يرجى المحاولة مرة أخرى لاحقًا.
+
+
+
+
+ حسناً
+
+
+
+
+ إبلاغ
+
+
+
+ MManageTagsPopup
+
+
+
+ سمات
+
+
+
+
+ أدر السمات
+
+
+
+
+ تم
+
+
+
+ MMoveToFolderPopup
+
+
+
+ نقل إلى
+
+
+
+
+ إلغاء
+
+
+
+
+ حدد
+
+
+
+ MNoBookSatisfiesFilterItem
+
+
+
+ لا يوجد كتاب يفي بشروط المرشح
+
+
+
+
+ قم بإزالة المرشحات
+
+
+
+ MOnOffToggle
+
+
+
+ إيقاف
+
+
+
+
+ تشغيل
+
+
+
+ MProfilePopup
+
+
+
+ زامن
+
+
+
+
+ أدر الملف الشخصي
+
+
+
+
+ سجل الخروج
+
+
+
+ MReadingOptionsPopup
+
+
+
+ اعكس الألوان
+
+
+
+
+ زامن الكتاب
+
+
+
+
+ خيارات أكثر
+
+
+
+
+ احفظ
+
+
+
+ MReadingSearchbar
+
+
+
+ خيارات
+
+
+
+
+ اعثر
+
+
+
+
+ التالي
+
+
+
+
+ السابق
+
+
+
+ MReadingSearchbarOptionsPopup
+
+
+
+ من البداية
+
+
+
+
+ حساس لحالة الأحرف
+
+
+
+
+ كلمات كاملة
+
+
+
+ MReadingToolBar
+
+
+
+ اسم غير معروف
+
+
+
+
+ As in 21 "of" 400
+ من
+
+
+
+ MRecordKeyBox
+
+
+
+ As in key on the keyboard
+ زر
+
+
+
+
+ As in recording a key that is pressed on the keyboard
+ اضغط للتسجيل
+
+
+
+ MRegisterPage
+
+
+
+ مرحبا!
+
+
+
+
+ تُستخدم صلاحيات اعتمادك فقط للتصديق على نفسك. سيتم تخزين كل شيء في قاعدة بيانات آمنة.
+
+
+
+ الاسم الأول
+
+
+
+ الاسم الأخير
+
+
+
+
+ البريد الإلكتروني
+
+
+
+
+ كلمة المرور
+
+
+
+ تأكيد كلمة المرور
+
+
+
+
+ اسم
+
+
+
+
+ هيا بنا نبدأ
+
+
+
+
+ هل لديك حساب بالفعل ؟ سجل الدخول
+
+
+
+
+ تأكيد بريدك الإلكتروني
+
+
+
+
+ أنت على وشك الذهاب!
+أكد بريدك الإلكتروني بالنقر على الرابط الذي أرسلناه لك.
+
+
+
+
+ أعد إرسال
+
+
+
+ كلمات المرور لا تتطابق
+
+
+
+ MSearchButton
+
+
+
+ البحث عن كتب
+
+
+
+ MSelectColorPopup
+
+
+
+ اختر لون
+
+
+
+ MSelectIconPopup
+
+
+
+ اختر رمز
+
+
+
+
+ البحث
+
+
+
+ MSelectProfilePictureArea
+
+
+
+ انقر لتحديد صورة أو إسقاطها في هذه المنطقة
+
+
+
+
+ كل الملفات
+
+
+
+
+
+ ملفات
+
+
+
+ MSelectionOptionsPopup
+
+
+
+ انسخ
+
+
+
+
+ ظلل
+
+
+
+
+ بحث في القاموس عن
+
+
+
+
+ اشرح
+
+
+
+
+ أزل
+
+
+
+ MSettingsSidebar
+
+
+
+ الإعدادات
+
+
+
+
+ Keep it capitalized
+ الإعدادات العامة
+
+
+
+
+ حول
+
+
+
+
+ المظهر
+
+
+
+
+ السلوك
+
+
+
+
+ الإختصارات
+
+
+
+
+ تحديثات
+
+
+
+
+ Keep it capitalized
+ المستخدم و الحساب
+
+
+
+
+ الحساب
+
+
+
+
+ التخزين
+
+
+
+
+ ادعمنا
+
+
+
+ MShortcutDelegate
+
+
+
+ لا شيء
+
+
+
+ MShortcutsPage
+
+
+
+ الإختصارات
+
+
+
+
+ اصنع تجربتك الخاصة
+
+
+
+
+ تعديل اختصار
+
+
+
+
+ Keep it capitalized
+ إجراء
+
+
+
+
+ Keep it capitalized
+ اختصارات
+
+
+
+
+ ابحث عن اختصارات
+
+
+
+ MSidebar
+
+
+
+ كتب مجانية
+
+
+
+
+ الصفحة الرئيسية
+
+
+
+
+ الإحصاءات
+
+
+
+
+ صفحة الإضافات
+
+
+
+
+ الإعدادات
+
+
+
+ MSortByButton
+
+
+
+ رتِّب
+
+
+
+ MSortByPopup
+
+
+
+ أضيف مؤخراً
+
+
+
+
+ قُرء مؤخراً
+
+
+
+
+ التقدم المحرز
+
+
+
+
+ الكتاب (أ-ي)
+
+
+
+
+ المؤلفون (أ-ي)
+
+
+
+ MStatisticsPage
+
+
+
+ صفحة الإحصاءات
+
+
+
+
+ حالياً قيد التطوير
+
+
+
+ MStoragePage
+
+
+
+ التخزين
+
+
+
+
+ تخزينك
+
+
+
+
+ ترقية
+
+
+
+
+ Keep capitalized ("TIER" as in subscription)
+ فئة اشتراكك
+
+
+
+ Keep capitalized ("BASIC" is the name of the tier)
+ المستوى الأساسي
+
+
+
+ اطلع لماذا نقدم مستويات متعددة
+
+
+
+
+ تحديث الآن
+
+
+
+
+ Keep capitalized
+ مساحة التخزين المستخدمة
+
+
+
+
+ مساحة التخزين المستخدمة
+
+
+
+
+ مساحة التخزين المتبقية
+
+
+
+
+ Keep capitalized
+ كتبك
+
+
+
+
+ الكتب في مكتبتك
+
+
+
+ ترقية حسابك
+
+
+
+ نحن لا نقدم خيارات الترقية في الوقت الحالي.
+
+
+
+ إذا كنت بحاجة إلى تخزين إضافي، فيرجى الاتصال بنا على
+
+
+
+ إغلاق
+
+
+
+ راسلنا عبر البريد الإلكتروني
+
+
+
+ MSupportUsPage
+
+
+
+
+ ادعمنا
+
+
+
+
+ شكراً
+
+
+
+
+ نحن فريق صغير من مطوري المصادر المفتوحة ننشئ تطبيقات للمجتمع. نحن نحب
+العمل على مشاريع ممتعة، ودعم مجتمعنا ومحاولة جعل العالم مكانًا أفضل.
+
+
+
+
+ إذا كنت ترغب في دعمنا ومشاريعنا، فلا تتردد في دعمنا:
+
+
+
+
+ يمكنك دعمنا بعدة طرق أخرى أيضًا، إذا كنت مطورًا أو مصممًا، فلا تتردد في ذلك
+
+
+
+
+ ساهم في Librum
+
+
+
+
+ إذا لم تكن كذلك، فلا يزال بإمكانك مساعدتنا بنشر الكلمة عن Librum.
+
+
+
+
+ شكرا لك على دعمك. نأمل أن تستمتع بـ Librum!
+
+
+
+ MTagSelectorButton
+
+
+
+ سمات
+
+
+
+ MTagSelectorPopup
+
+
+
+ حدد
+
+
+
+
+ أعد تسمية
+
+
+
+
+ حذف
+
+
+
+ MTitle
+
+
+
+ العنوان
+
+
+
+
+ الوصف
+
+
+
+ MToolbar
+
+
+
+ أزل المرشحات
+
+
+
+
+ أزل السمات
+
+
+
+
+ أنت في وضع عدم الاتصال
+
+
+
+
+ مكتبتك تتزامن مع السحابة
+
+
+
+ MUpToDate
+
+
+
+ أنت مواكب التحديثات!
+
+
+
+
+ تأكد من التحقق من التحديثات بانتظام، حتى لا تفوتك أي ميزات رائعة.
+
+
+
+
+ نسختك الحالية هي:
+
+
+
+
+ شاهد أحدث التغييرات لدينا على:
+
+
+
+ MUpdatesAvailable
+
+
+
+ إصدار جديد متاح!
+
+
+
+
+ قم بتنزيل الإصدار الجديد للحصول على تحسينات جديدة رائعة.
+
+
+
+
+ أحدث إصدار هو:
+
+
+
+
+ تحديث
+
+
+
+
+ اطلع علي نفس التغييرات على موقعنا على الإنترنت على:
+
+
+
+
+ التحديث على Linux
+
+
+
+
+ يرجى استخدام مدير الحزمة الخاص بك لتحديث Librum أو تنزيل أحدث إصدار من
+
+
+
+
+
+ موقعنا
+
+
+
+
+
+ إغلاق
+
+
+
+
+
+ راسلنا عبر البريد الإلكتروني
+
+
+
+
+ فشل التحديث
+
+
+
+
+ يرجى المحاولة مرة أخرى لاحقًا أو تنزيل أحدث إصدار من
+
+
+
+ MUpdatesPage
+
+
+
+ التحديثات
+
+
+
+
+ أي تحديث جديد؟
+
+
+
+ MWarningPopup
+
+
+
+ أقبل
+
+
+
+
+ أرفض
+
+
+
+
+ هل توافق؟
+
+
+
+
+ رسالة
+
+
+
+ MWindowsUpdatingPopup
+
+
+
+ تحديث
+
+
+
+
+ جاري التنزيل
+
+
+
+ main
+
+
+
+ Librum - قارئ الكتب الإلكترونية الخاص بك
+
+
+
diff --git a/src/presentation/translations/librum_de.ts b/src/presentation/translations/librum_de.ts
index dd9a3a96a..a5041a51f 100644
--- a/src/presentation/translations/librum_de.ts
+++ b/src/presentation/translations/librum_de.ts
@@ -70,7 +70,7 @@
Dieses Programm
-
+ Librum ist hier für alle, die einfach nur ein gutes Buch genießen möchten.
@@ -114,7 +114,7 @@ Wir hoffen, dass du eine tolle Zeit hast! Lass uns doch eine Bewertung da.
-
+ Speichern
@@ -124,93 +124,101 @@ Wir hoffen, dass du eine tolle Zeit hast! Lass uns doch eine Bewertung da.Profil
-
- Vorname
+ Vorname
-
- Nachname
+ Nachname
-
+
+
+
+
+
+ Email
-
+
+
+
+
+
+ Passwort ändern
-
+ Passwort
-
+ Passwort Bestätigung
-
+ Deine Daten
-
+ Deine Lesevorlieben analysieren, um bessere Empfehlungen zu erstellen
-
+ Anonym Informationen über die Bücher, die du liest teilen, um uns bei der Verbesserung von Librum zu helfen
-
+ Daten bei Abstürzen erfassen um sie in Zukunft zu verhindern
-
+ Daten erfassen um sie in deinen Statistiken anzuzeigen
-
+ Dein Konto
-
+ Abmelden
-
+ Lösche dein Konto
-
+ Whoops
-
+ Du hast vergessen deine Änderungen zu speichern. Bist du sicher, dass du sie verwerfen möchtest?
-
+ Nicht speichern
-
-
+
+ Passwörter stimmen nicht überein!
@@ -634,7 +642,7 @@ Entweder bist du offline oder dein Speicher ist voll.
-
+ Löschen
@@ -644,64 +652,64 @@ Entweder bist du offline oder dein Speicher ist voll.
Titel
-
-
-
+
+
+ Unbekannt
-
+ Autoren
-
+ Seiten
-
+ Sprache
-
+ Dokument Ersteller
-
+ Erstellungsdatum
-
+ Format
-
+ Dokument Größe
-
+ Hinzugefügt
-
+ Zuletzt geöffnet
-
+ Anwenden
-
+ Abbrechen
@@ -724,19 +732,19 @@ niemand wird es wiederherstellen können!
Ja, Buch löschen
-
+ Auswählen
-
+ Alle Dokumente
-
-
-
+
+
+ Dokumente
@@ -902,32 +910,32 @@ niemand wird es wiederherstellen können!
Bestätige Konto Löschung
-
+ Das Löschen deines Kontos ist eine endgültige Aktion.<br>Nachdem du dein Konto gelöscht hast, gibt es <b>keinen</b> Weg zurück.
-
+ Deine Email
-
+ Bestätige die Löschung deines Accounts indem du deine Email eingibst.
-
+ Abbrechen
-
+ Löschen
-
+ Deine Email ist falsch
@@ -1260,22 +1268,22 @@ niemand wird es wiederherstellen können!
MFolderSidebarItemRigthclickPopup
-
+ Unterordner erstellen
-
+ Bearbeiten
-
+ Verschieben
-
+ Löschen
@@ -1403,174 +1411,174 @@ es gibt keine Möglichkeit sie wiederherzustellen!
MHomePage
-
+ Eine neue Version ist verfügbar!
-
+ Aktualisieren
-
+ As in 'Home Page', might be closer to 'Start' in other languagesStart
-
+ Du hast %1 Bücher
-
+ Bücher hinzufügen
-
+ Buch Löschen?
-
+ Das Löschen eines Buches ist eine dauerhafte Aktion,
niemand wird es wiederherstellen können!
-
-
+
+ Vom Gerät entfernen
-
-
+
+ Überall Löschen
-
+ Bücher löschen?
-
+ Das Löschen von Büchern ist eine dauerhafte Aktion,
niemand wird sie wiederherstellen können!
-
-
+
+ Aus Ordner entfernen?
-
+ Diese Aktion löscht das originale Buch nicht.
-
-
+
+
+ Abbrechen
-
-
+
+ Entfernen
-
+ Diese Aktion löscht die originalen Bücher nicht.
-
+ Speichern
-
+ Limit erreicht
-
+ Du hast dein Upload-Limit erreicht.
Lösche alte Bücher um Speicherplatzu freizugeben oder upgrade deinen Account.
-
-
+ Ok
-
+ Upgrade
-
+ Buch existiert bereits
-
+ Dieses Buch ist bereits in deiner Bibliothek:
-
+ Willst du es erneut hinzufügen?
-
+ Hinzufügen
-
+ Nicht hinzufügen
-
+ Nicht unterstützt
-
+ Oops! Dieses Format wird von Librum nicht unterstützt.
-
+ Importieren
-
+ Alle Dokumente
-
-
-
+
+
+ Dokumente
@@ -1844,61 +1852,62 @@ Lösche alte Bücher um Speicherplatzu freizugeben oder upgrade deinen Account.<
Deine Daten werden nur zur Authentifizierung verwendet. Alles wird sicher gespeichert.
-
- Vorname
+ Vorname
-
- Nachname
+ Nachname
-
+ Email
-
+ Passwort
-
- Passwort erneut eingeben
+ Passwort erneut eingeben
-
+
+
+
+
+
+ Lass uns loslegen
-
+ Du hast bereits ein Konto? Einloggen
-
+ Email bestätigen
-
+ Du bist fast bereit loszulegen!
Bestätige deine E-Mail, indem du auf den von uns gesendeten Link klickst.
-
+ Nochmal
-
- Passwörter stimmen nicht überein
+ Passwörter stimmen nicht überein
@@ -2071,19 +2080,19 @@ Bestätige deine E-Mail, indem du auf den von uns gesendeten Link klickst.Tastenkürzel bearbeiten
-
+ Keep it capitalizedAKTION
-
+ Keep it capitalizedTASTENKÜRZEL
-
+ Suche nach Tastenkürzel
@@ -2183,7 +2192,6 @@ Bestätige deine E-Mail, indem du auf den von uns gesendeten Link klickst.
- Upgrade
@@ -2199,34 +2207,38 @@ Bestätige deine E-Mail, indem du auf den von uns gesendeten Link klickst.Basis
-
- Warum wir mehrere Abos anbieten
+ Warum wir mehrere Abos anbieten
+
+
+
+
+
-
+ Keep capitalizedBENUTZTER SPEICHERPLATZ
-
+ Benutzter Speicherplatz
-
+ Verfügbarer Speicherplatz
-
+ Keep capitalizedDEINE BÜCHER
-
+ Bücher in deiner Bibliothek
@@ -2378,7 +2390,7 @@ an Projekten zu arbeiten, unserer Community zu helfen und versuchen, die Welt zu
Deine aktuelle verson ist:
-
+ Siehe unsere letzten Änderungen unter:
@@ -2401,50 +2413,50 @@ an Projekten zu arbeiten, unserer Community zu helfen und versuchen, die Welt zu
Die neuste version ist:
-
+ Update
-
+ Sehe die genauen Änderungen auf unserer Website unter:
-
+ Updaten auf Linux
-
+ Bitte benutze deien package-manager um Librum zu updaten oder downloade die neuste Version von unserer
-
-
+
+ Website
-
-
+
+ Schließen
-
-
+
+ Schreib uns
-
+ Das Update ist fehlgeschlagen
-
+ Versuche es später erneut oder downloade die neuste Version von unserer
@@ -2501,7 +2513,7 @@ an Projekten zu arbeiten, unserer Community zu helfen und versuchen, die Welt zu
main
-
+ Librum - Dein e-Buch leser
diff --git a/src/presentation/translations/librum_en.ts b/src/presentation/translations/librum_en.ts
index 835f4cb0c..b7412452d 100644
--- a/src/presentation/translations/librum_en.ts
+++ b/src/presentation/translations/librum_en.ts
@@ -70,7 +70,7 @@
-
+
@@ -109,7 +109,7 @@ We hope you have a great time using it! Feel free to leave us a rating and some
-
+
@@ -120,92 +120,92 @@ We hope you have a great time using it! Feel free to leave us a rating and some
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
@@ -542,7 +542,7 @@ Either you are offline, or your storage is full.
-
+
@@ -552,81 +552,81 @@ Either you are offline, or your storage is full.
-
-
-
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
+
+
+
@@ -759,32 +759,32 @@ Either you are offline, or your storage is full.
-
+
-
+
-
+
-
+
-
+
-
+
@@ -1109,22 +1109,22 @@ Either you are offline, or your storage is full.
MFolderSidebarItemRigthclickPopup
-
+
-
+
-
+
-
+
@@ -1191,170 +1191,170 @@ Either you are offline, or your storage is full.
MHomePage
-
+
-
+
-
+ As in 'Home Page', might be closer to 'Start' in other languages
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
+
-
+
-
-
+
+
-
+
-
-
+
+
+
-
-
+
+
-
+
-
+
-
+
-
+
-
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
+
+
+
@@ -1608,61 +1608,46 @@ Delete unused books to free up space or upgrade.
-
-
-
-
-
-
-
-
-
-
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
- MSearchButton
@@ -1826,19 +1811,19 @@ Confirm your email by clicking the link we sent you.
-
+ Keep it capitalized
-
+ Keep it capitalized
-
+
@@ -1934,7 +1919,6 @@ Confirm your email by clicking the link we sent you.
-
@@ -1945,34 +1929,34 @@ Confirm your email by clicking the link we sent you.
-
-
+
+
-
+ Keep capitalized
-
+
-
+
-
+ Keep capitalized
-
+
@@ -2102,7 +2086,7 @@ working on fun projects, supporting our community and trying to make the world a
-
+
@@ -2125,50 +2109,50 @@ working on fun projects, supporting our community and trying to make the world a
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
+
@@ -2225,7 +2209,7 @@ working on fun projects, supporting our community and trying to make the world a
main
-
+
diff --git a/src/presentation/translations/librum_id.ts b/src/presentation/translations/librum_id.ts
index 0ed6d3499..f554bda69 100644
--- a/src/presentation/translations/librum_id.ts
+++ b/src/presentation/translations/librum_id.ts
@@ -70,7 +70,7 @@
Aplikasi ini
-
+ Librum hadir untuk semua orang yang ingin menikmati buku berkualitas.
@@ -110,7 +110,7 @@ Kami berharap kamu menikmatinya! Silakan beri kami penilaian dan beberapa masuka
-
+ Simpan
@@ -120,93 +120,101 @@ Kami berharap kamu menikmatinya! Silakan beri kami penilaian dan beberapa masuka
Profil
-
- Nama depan
+ Nama depan
-
- Nama belakang
+ Nama belakang
+
+
+
+
+
-
+ Email
-
+
+
+
+
+
+ Ubah kata sandi
-
+ Kata sandi
-
+ Konfirmasi kata sandi
-
+ Data Kamu
-
+ Analisa bacaan kamu untuk rekomendasi yang lebih baik
-
+ Bagikan informasi tentang buku yang kamu baca secara anonim untuk membantu kami mengembangkan Librum
-
+ Ambil data kerusakan aplikasi sehingga kami dapat mencegahnya terjadi lagi
-
+ Ambil data untuk ditampilkan di statistikmu
-
+ Akunmu
-
+ Keluar
-
+ Hapus Akunmu
-
+ Upss
-
+ Sepertinya kamu lupa menyimpan perubahanmu, apakah kamu yakin tidak ingin menyimpannya?
-
+ Jangan simpan
-
-
+
+ Kata sandi tidak sesuai!
@@ -544,7 +552,7 @@ Mungkin karena kamu offline, atau penyimpananmu penuh.
-
+ Hapus
@@ -554,81 +562,81 @@ Mungkin karena kamu offline, atau penyimpananmu penuh.
Judul
-
-
-
+
+
+ Tidak diketahui
-
+ Penulis
-
+ Halaman
-
+ Bahasa
-
+ Pembuat dokumen
-
+ Tanggal dibuat
-
+ Format
-
+ Ukuran dokumen
-
+ Ditambahkan
-
+ Terakhir dibuka
-
+ Terapkan
-
+ Batal
-
+ Pilih
-
+ Semua berkas
-
-
-
+
+
+ berkas
@@ -774,32 +782,32 @@ Mungkin karena kamu offline, atau penyimpananmu penuh.
Konfirmasi Penghapusan Akun
-
+ Menghapus akunmu adalah aksi yang tidak bisa dibatalkan. <br>Setelah akunmu dihapus, <b>tidak ada</b> jalan kembali. Harap berhati-hati.
-
+ Emailmu
-
+ Konfirmasi penghapusan dengan memasukkan Email akunmu.
-
+ Batal
-
+ Hapus
-
+ Email kamu salah
@@ -1132,22 +1140,22 @@ Mungkin karena kamu offline, atau penyimpananmu penuh.
MFolderSidebarItemRigthclickPopup
-
+
-
+
-
+
-
+ Hapus
@@ -1214,173 +1222,173 @@ Mungkin karena kamu offline, atau penyimpananmu penuh.
MHomePage
-
+ Versi terbaru telah tersedia!
-
+ Perbarui Sekarang
-
+ As in 'Home Page', might be closer to 'Start' in other languagesBeranda
-
+ Kamu punya %1 buku
-
+ Tambah buku
-
+ Hapus buku?
-
+ Menghapus buku adalah aksi permanen, tidak ada
yang bisa mengembalikannya setelahnya!
-
-
+
+ Hapus dari Perangkat
-
-
+
+ Hapus Dimanapun
-
+
-
+
-
-
+
+
-
+
-
-
+
+
+ Batal
-
-
+
+ Hapus
-
+
-
+ Simpan
-
+ Limit Tercapai
-
+ Kamu mencapai batas unggahan.
Hapus buku tak terpakai untuk membersihkan penyimpanan atau upgrade.
-
-
+ Ok
-
+ Upgrade
-
+ Buku sudah ada
-
+ Sepertinya bukunya sudah ada di perpustakaanmu:
-
+ Apakah kamu yakin ingin menambahkannya lagi?
-
+ Tambah
-
+ Jangan tambah
-
+ Berkas tidak didukung
-
+ Upss! Berkas tidak didukung oleh Librum.
-
+ Impor
-
+ Semua berkas
-
-
-
+
+
+ berkas-berkas
@@ -1634,61 +1642,62 @@ Hapus buku tak terpakai untuk membersihkan penyimpanan atau upgrade.Kredensialmu hanya digunakan untuk autentikasi. Semuanya akan disimpan di database yang aman.
-
- Nama depan
+ Nama depan
-
- Nama belakang
+ Nama belakang
-
+ Email
-
+ Kata sandi
-
- Konfirmasi kata sandi
+ Konfirmasi kata sandi
-
+
+
+
+
+
+ Ayo mulai
-
+ Sudah mempunyai akun? Masuk
-
+ Konfirmasi Emailmu
-
+ Sedikit lagi!
Konfirmasi emailmu lewat link yang kami kirimkan.
-
+ Kirim ulang
-
- Kata sandi tidak sesuai
+ Kata sandi tidak sesuai
@@ -1853,19 +1862,19 @@ Konfirmasi emailmu lewat link yang kami kirimkan.
Ubah pintasan
-
+ Keep it capitalizedAKSI
-
+ Keep it capitalizedPINTASAN
-
+ Cari pintasan
@@ -1961,7 +1970,6 @@ Konfirmasi emailmu lewat link yang kami kirimkan.
- Upgrade
@@ -1977,34 +1985,38 @@ Konfirmasi emailmu lewat link yang kami kirimkan.
BASIC
-
- Pelajari mengapa kami menawarkan banyak tier
+ Pelajari mengapa kami menawarkan banyak tier
-
+
+
+
+
+
+ Keep capitalizedPENYIMPANAN DIGUNAKAN
-
+ Penyimpanan Digunakan
-
+ Penyimpanan Tersisa
-
+ Keep capitalizedBUKU KAMU
-
+ Buku-buku di perpustakaanmu
@@ -2155,7 +2167,7 @@ bekerja dalam proyek menyenangkan, mendukung komunitas kami dan mencoba membuat
Versi kamu saat ini:
-
+ Lihat perubahan terbaru kami di:
@@ -2178,50 +2190,50 @@ bekerja dalam proyek menyenangkan, mendukung komunitas kami dan mencoba membuat
Versi terbaru:
-
+ Perbarui
-
+ Lihat detail perubahan di situs web kami di:
-
+ Pembaruan di Linux
-
+ Tolong gunakan package manager untuk memperbarui Librum atau unduh versi terbaru dari
-
-
+
+ situs web kami
-
-
+
+ Tutup
-
-
+
+ Email kami
-
+ Pembaruan Gagal
-
+ Tolong coba kembali nanti atau unduh versi terbaru dari
@@ -2278,7 +2290,7 @@ bekerja dalam proyek menyenangkan, mendukung komunitas kami dan mencoba membuat
main
-
+ Librum - Pembaca ebookmu
diff --git a/src/presentation/translations/librum_it.ts b/src/presentation/translations/librum_it.ts
index ecfafb8ac..1e65e6f07 100644
--- a/src/presentation/translations/librum_it.ts
+++ b/src/presentation/translations/librum_it.ts
@@ -74,7 +74,7 @@
Questa Applicazione
-
+ About last phrase: the correct term for feedback is "riscontro", but it isn't very used, feedback is quite understandable.
@@ -115,7 +115,7 @@ Speriamo che vi piaccia usarlo! Se volete, lasciate una valutazione ed un feedba
-
+ Salva
@@ -125,95 +125,103 @@ Speriamo che vi piaccia usarlo! Se volete, lasciate una valutazione ed un feedba
Profilo
-
- Nome
+ Nome
-
- Cognome
+ Cognome
+
+
+
+
+
-
+ Email
-
+
+
+
+
+
+ Cambia password
-
+ Password
-
+ Conferma della password
-
+ I tuoi dati
-
+ Analizza le tue letture per fornirti migliori suggerimenti
-
+ Condividi anonimamente le informazioni sulle tue letture per migliorare Librum
-
+ Raccogli i dati sulle chiusure inaspettate per evitare che si ripetano
-
+ Condividi i dati per visualizzarli nelle statistiche
-
+ Il tuo Account
-
+ You could also use "Esci", but since I kept "Login", for consistency I preferred "logout"Logout
-
+ Cancella il tuo Account
-
+ As an onomatopoeic, in italian it's better with the esclamation markOops!
-
+ Sembra che ti sia dimenticato di salvare le modifiche, vuoi farlo ora?
-
+ Non salvare
-
-
+
+ Le passwords non corrispondono!
@@ -555,7 +563,7 @@ Either you are offline, or your storage is full.
-
+ See "cancel". Literaly is cancella, so as not to cause confusion I used "Elimina" as "eliminate"Elimina
@@ -566,83 +574,83 @@ Either you are offline, or your storage is full.
Titolo
-
-
-
+
+
+ Sconosciuto
-
+ Autori
-
+ Pagina
-
+ Lingua
-
+ creator is really not used in Italian for documents; we always refer as AuthorAutore documento
-
+ Data di creazione
-
+ Formato
-
+ Dimensione documento
-
+ Aggiunto
-
+ Ultimo aperto
-
+ Applica
-
+ Literaly translation is "cancella" but usually is used as "delete". "Annulla" is best suite for "go back" as I interpretate itAnnulla
-
+ Selezionare
-
+ Tutti i files
-
-
-
+
+
+ Are you sure about the absence of capital?files
@@ -790,33 +798,33 @@ Either you are offline, or your storage is full.
Conferma l'eliminazione dell'account
-
+ Please be certain in italian is "per favore sii certo". Too formal, unused. I used "are you sure?" instead.L'eliminazione dell'account è irreversibile.<br>Una volta eliminato <b>non</b> è possibile ripristinarlo. Sei sicuro?
-
+ La tua email
-
+ Conferma l'eliminazione inserendo la tua email.
-
+ Annulla
-
+ Elimina
-
+ La tua mail è errata
@@ -1151,22 +1159,22 @@ Either you are offline, or your storage is full.
MFolderSidebarItemRigthclickPopup
-
+
-
+
-
+
-
+ Elimina
@@ -1234,174 +1242,174 @@ Either you are offline, or your storage is full.
MHomePage
-
+ Una nuova versione è disponibile!
-
+ Aggiorna Adesso
-
+ As in 'Home Page', might be closer to 'Start' in other languages"home" has entered commaon parlance,any translation (such as "Inizio" o "Casa") would sound unnatural.Home
-
+ Hai %1 libri
-
+ Aggiungi libri
-
+ Rimuovere libro?
-
+ Eliminare un libro è irreversibile, nessuno potrà recuperarlo dopo!
-
-
+
+ Rimuovi dal Device
-
-
+
+ Elimina ovunque
-
+
-
+
-
-
+
+
-
+
-
-
+
+
+ Annulla
-
-
+
+ Rimuovi
-
+
-
+ Salva
-
+ Limite raggiunto
-
+ Hai raggiunto il tuo limite di upload.
Cancella libri non usati per liberare spazio o fai l'upgrade.
-
-
+ https://tse1.mm.bing.net/th?id=OIP.KrXzDPL8HNfFvCweAt1giwHaFj&pid=ApiOk
-
+ Upgrade
-
+ Il libro è già presente
-
+ Sembra che il libro sia già presente nella tua libreria:
-
+ Sei sicuro di volerlo aggiungere di nuovo?
-
+ Aggiungi
-
+ Non aggiungere
-
+ Non supportato
-
+ Oops! Questo file non è supportato da Librum.
-
+ Importa
-
+ Tutti i files
-
-
-
+
+
+ files
@@ -1662,61 +1670,62 @@ Cancella libri non usati per liberare spazio o fai l'upgrade.
Le tue credenziali sono usate solo per autenticarti. Tutto verrà archiviato in un database sicuro.
-
- Nome
+ Nome
-
- Cognome
+ Cognome
-
+ Email
-
+ Password
-
- Conferma la password
+ Conferma la password
-
+
+
+
+
+
+ Iniziamo
-
+ Hai già un account? Login
-
+ Conferma la tua email
-
+ Ci sei quasi!
Conferma la tua email cliccando il link che ti abbiamo inviato.
-
+ Reinvia
-
- Le passwords non corrispondono
+ Le passwords non corrispondono
@@ -1882,19 +1891,19 @@ Conferma la tua email cliccando il link che ti abbiamo inviato.
Modifica scorciatoia
-
+ Keep it capitalizedAZIONE
-
+ Keep it capitalizedSCORCIATOIE
-
+ Cerca per scorciatoie
@@ -1991,7 +2000,6 @@ Conferma la tua email cliccando il link che ti abbiamo inviato.
- Upgrade
@@ -2007,34 +2015,38 @@ Conferma la tua email cliccando il link che ti abbiamo inviato.
BASE
-
- Perché offriamo diversi livelli?
+ Perché offriamo diversi livelli?
-
+
+
+
+
+
+ Keep capitalizedSPAZIO USATO
-
+ Spazio Usato
-
+ Spazio Rimanente
-
+ Keep capitalizedI TUOI LIBRI
-
+ Libri nella tua Libreria
@@ -2185,7 +2197,7 @@ Amiamo lavorare su progetti divertenti, supportare la comunità e cercare di ren
La tua versione corrente è:
-
+ Vedi le ultime modifiche :
@@ -2208,50 +2220,50 @@ Amiamo lavorare su progetti divertenti, supportare la comunità e cercare di ren
La nuova versione è:
-
+ Aggiorna
-
+ Vedi le esatte modifiche sul nostro sito:
-
+ Aggiornare su Linux
-
+ Per favore usa il tuo package manager per aggiornare Librum o scarica la nuova versione dal
-
-
+
+ sito web
-
-
+
+ Chiudi
-
-
+
+ Scrivici
-
+ Aggiornamento non riuscito
-
+ Prego riprova più tardi o scarical'ultima versione da
@@ -2308,7 +2320,7 @@ Amiamo lavorare su progetti divertenti, supportare la comunità e cercare di ren
main
-
+ Librum - Il tuo lettore ebook
diff --git a/src/presentation/translations/librum_ko.ts b/src/presentation/translations/librum_ko.ts
index 68dab0ce6..f87c033a8 100644
--- a/src/presentation/translations/librum_ko.ts
+++ b/src/presentation/translations/librum_ko.ts
@@ -70,7 +70,7 @@
이 앱
-
+ Librum는 좋은 책을 즐기고 싶은 모든 사람들을 위한 곳입니다.
@@ -111,7 +111,7 @@ We hope you have a great time using it! Feel free to leave us a rating and some
-
+ 저장
@@ -121,93 +121,101 @@ We hope you have a great time using it! Feel free to leave us a rating and some
프로필
-
- 이름
+ 이름
-
- 성
+ 성
+
+
+
+
+
-
+ 이메일
-
+
+
+
+
+
+ 비밀번호 변경
-
+ 비밀번호
-
+ 비밀번호 확인
-
+ 당신의 정보
-
+ 너 나은 추천을 위해 당신의 읽기를 기록하고 분석하기
-
+ 책에 대한 정보를 익명으로 공유하여 Librum을 개선하는 데 도움 주기
-
+ 충돌에 대한 데이터를 수집 허용하여 충돌이 다시 발생하지 않도록 하기
-
+ 분석 결과를 제공하기 위해 데이터를 수집하는데 동의
-
+ 당신의 계정
-
+ 로그아웃
-
+ 계정 삭제
-
+ 잠깐
-
+ 당신의 변경 사항을 저장하지 않은 것 같습니다. 정말 저장하지 않고 계속하시겠습니까?
-
+ 저장하지 않기
-
-
+
+ 비밀번호가 일치하지 않습니다!
@@ -547,7 +555,7 @@ Either you are offline, or your storage is full.
-
+ 삭제
@@ -557,81 +565,81 @@ Either you are offline, or your storage is full.
제목
-
-
-
+
+
+ 알 수 없음
-
+ 작가
-
+ 페이지
-
+ 언어
-
+ 문서 생성기
-
+ 만들어진 날짜
-
+ 형식
-
+ 책 크기
-
+ 추가된 날짜
-
+ 마지막으로 본 날짜
-
+ 적용
-
+ 취소
-
+ 선택
-
+ 모든 파일
-
-
-
+
+
+ 파일
@@ -779,32 +787,32 @@ Either you are offline, or your storage is full.
계정 삭제 확인
-
+ 계정을 삭제하는 것은 되돌릴 수 없는 조치입니다.<br>계정을 삭제하면 <b>되돌리는 것이 불가능</b> 합니다. 신중하세요.
-
+ 이메일
-
+ 계정을 삭제하기 위해 이메일을 입력하세요.
-
+ 취소
-
+ 삭제
-
+ 이메일이 잘못되었습니다
@@ -1138,22 +1146,22 @@ Either you are offline, or your storage is full.
MFolderSidebarItemRigthclickPopup
-
+
-
+
-
+
-
+ 삭제
@@ -1220,173 +1228,173 @@ Either you are offline, or your storage is full.
MHomePage
-
+ 새 버전 사용 가능!
-
+ 지금 업데이트
-
+ As in 'Home Page', might be closer to 'Start' in other languages홈
-
+ %1권의 책이 있습니다
-
+ 책 추가
-
+ 책을 삭제하겠습니까?
-
+ 책을 삭제하는 것은 영구적인 작업입니다.
복구할 수 없습니다!
-
-
+
+ 기기에서 삭제
-
-
+
+ 모든 기기에서 삭제
-
+
-
+
-
-
+
+
-
+
-
-
+
+
+ 취소
-
-
+
+ 삭제
-
+
-
+ 저장
-
+ 한계 도달
-
+ 업로드 제한에 도달했습니다.
사용하지 않는 책을 삭제하여 공간을 확보하거나 업그레이드할 수 있습니다.
-
-
+ 확인
-
+ 업그레이드
-
+ 책이 이미 존재함
-
+ 이 책은 이미 책장에 있는 것 같습니다:
-
+ 정말 이 책을 다시 추가 하시겠습니까?
-
+ 추가
-
+ 추가하지 않음
-
+ 지원하지 않는 파일
-
+ 이런! 이 파일은 Librum에서 지원하지 않습니다.
-
+ 가져오기
-
+ 모든 파일
-
-
-
+
+
+ 파일
@@ -1640,61 +1648,62 @@ Delete unused books to free up space or upgrade.
귀하의 비밀번호는 자신을 인증하는 데만 사용됩니다. 모든 데이터는 안전한 데이터베이스에 저장됩니다.
-
- 이름
+ 이름
-
- 성
+ 성
-
+ 이메일
-
+ 비밀번호
-
- 비밀번호 확인
+ 비밀번호 확인
-
+
+
+
+
+
+ 시작하기
-
+ 이미 계정이 있나요? 로그인
-
+ 이메일 확인
-
+ 거의 다 되었습니다!
저희가 보내드린 링크를 클릭하여 이메일을 확인하세요.
-
+ 다시 전송
-
- 비밀번호가 일치하지 않습니다
+ 비밀번호가 일치하지 않습니다
@@ -1859,19 +1868,19 @@ Confirm your email by clicking the link we sent you.
단축키 편집
-
+ Keep it capitalized동작
-
+ Keep it capitalized단축키
-
+ 단축키로 찾기
@@ -1967,7 +1976,6 @@ Confirm your email by clicking the link we sent you.
- 업그레이드
@@ -1983,34 +1991,38 @@ Confirm your email by clicking the link we sent you.
베이직
-
- 여러 등급을 제공하는 이유 알아보기
+ 여러 등급을 제공하는 이유 알아보기
-
+
+
+
+
+
+ Keep capitalized사용된 저장공간
-
+ 사용된 저장공간
-
+ 남은 저장공간
-
+ Keep capitalized당신의 책들
-
+ 책장에 있는 책들
@@ -2161,7 +2173,7 @@ working on fun projects, supporting our community and trying to make the world a
Librum의 현재 버전:
-
+ 최신 변경 사항을 확인하세요:
@@ -2184,50 +2196,50 @@ working on fun projects, supporting our community and trying to make the world a
Librum의 최신 버전:
-
+ 업데이트
-
+ 정확한 변경 사항 확인:
-
+ 리눅스에서 업데이트 중
-
+ 패키지 관리자를 사용하여 Librum을 업데이트하거나 Librum의 최신 버전을 다운로드하세요
-
-
+
+ 웹사이트
-
-
+
+ 닫기
-
-
+
+ 이메일 보내기
-
+ 업데이트 실패
-
+ 나중에 다시 시도하거나 Librum의 최신 버전을 다운로드하세요
@@ -2284,7 +2296,7 @@ working on fun projects, supporting our community and trying to make the world a
main
-
+ Librum - 당신의 ebook 리더
diff --git a/src/presentation/translations/librum_pt.ts b/src/presentation/translations/librum_pt.ts
index 6d4e55277..d2452d1d3 100644
--- a/src/presentation/translations/librum_pt.ts
+++ b/src/presentation/translations/librum_pt.ts
@@ -70,7 +70,7 @@
Este Aplicativo
-
+ O Librum está aqui para todos que desejam apenas desfrutar de um bom livro.
@@ -110,7 +110,7 @@ Tenha uma ótima experiência! Deixe sua avaliação e alguns comentários.
-
+ Salvar
@@ -120,93 +120,101 @@ Tenha uma ótima experiência! Deixe sua avaliação e alguns comentários.Perfil
-
- Nome
+ Nome
-
- Sobrenome
+ Sobrenome
+
+
+
+
+
-
+ Email
-
+
+
+
+
+
+ Alterar senha
-
+ Senha
-
+ Confirmação de senha
-
+ Seus dados
-
+ Analisar suas leituras para melhores recomendações
-
+ Compartilhar anonimamente dados sobre sua leitura para nos ajudar a melhorar o Librum
-
+ Coletar dados sobre falhas para que possamos evitá-las no futuro
-
+ Coletar dados para exibir em suas estatísticas
-
+ Sua Conta
-
+ Sair
-
+ Excluir Sua Conta
-
+ Ops
-
+ Parece que você esqueceu de salvar suas alterações. Tem certeza de que não deseja salvá-las?
-
+ Não salvar
-
-
+
+ Senhas não coincidem!
@@ -216,42 +224,42 @@ Tenha uma ótima experiência! Deixe sua avaliação e alguns comentários.
-
+ Editar Pasta
-
+ Criar Pasta
-
+ Nome da Pasta
-
+ Icone
-
+ Cor
- Descrição
+ Descrição
- Atualizar
+ Atualizar
-
+ Criar
@@ -548,7 +556,7 @@ Você está offline ou seu armazenamento está cheio.
-
+ Excluir
@@ -558,81 +566,81 @@ Você está offline ou seu armazenamento está cheio.
Título
-
-
-
+
+
+ Desconhecido
-
+ Autores
-
+ Páginas
-
+ Idioma
-
+ Criador do documento
-
+ Data de criação
-
+ Formato
-
+ Tamanho do documento
-
+ Adicionado
-
+ Aberto em
-
+ Aplicar
-
+ Cancelar
-
+ Selecionar
-
+ Todos os arquivos
-
-
-
+
+
+ arquivos
@@ -648,13 +656,13 @@ Você está offline ou seu armazenamento está cheio.
-
+ Remover livrosIf this is too long, use "To Folder" instead
-
+ Mover p/ pasta
@@ -696,7 +704,7 @@ Você está offline ou seu armazenamento está cheio.
If this is too long, use "To Folder" instead
-
+ Mover p/ pasta
@@ -778,32 +786,32 @@ Você está offline ou seu armazenamento está cheio.
Confirmar Exclusão de Conta
-
+ Excluir sua conta é uma ação irreversível.<br>Após excluir sua conta, não há <b>volta</b>. Por favor, esteja certo.
-
+ Seu Email
-
+ Confirme a exclusão inserindo o email da sua conta.
-
+ Cancelar
-
+ Excluir
-
+ Email está incorreto
@@ -813,22 +821,22 @@ Você está offline ou seu armazenamento está cheio.
-
+ Apagar %1
-
+ Os livros dentro da pasta não serão excluídos.
- Cancelar
+ Cancelar
- Excluir
+ Excluir
@@ -836,17 +844,17 @@ Você está offline ou seu armazenamento está cheio.
-
+ Descreva esta pasta
-
+ Esta pasta é sobre...
- Concluído
+ Feito
@@ -1072,7 +1080,7 @@ Você está offline ou seu armazenamento está cheio.
- Idioma
+ Idioma
@@ -1115,45 +1123,45 @@ Você está offline ou seu armazenamento está cheio.
-
+ Organizar
-
+ Todos os livros
-
+ Não classificado
-
+ PastasMFolderSidebarItemRigthclickPopup
-
+
-
+ Criar subpasta
-
+
-
+ Editar
-
+
-
+ Mover para
-
+
- Excluir
+ Excluir
@@ -1218,33 +1226,33 @@ Você está offline ou seu armazenamento está cheio.
MHomePage
-
+ Nova versão está disponível!
-
+ Atualizar Agora
-
+ As in 'Home Page', might be closer to 'Start' in other languagesInício
-
+ Você tem %1 livros
-
+ Adicionar livros
-
+ Remover Livro?
@@ -1253,24 +1261,24 @@ Você está offline ou seu armazenamento está cheio.
Excluir um livro é uma ação permanente, ninguém poderá restaurá-lo depois!
-
-
+
+ Remover do Dispositivo
-
-
+
+ Apagar em toda parte
-
+ Salvar
-
+ Limite Atingido
@@ -1279,23 +1287,22 @@ Você está offline ou seu armazenamento está cheio.
Limite de upload atingido. Exclua livros para liberar espaço ou faça um upgrade.
-
-
+ Ok
-
+ Atualizar
-
+ O livro já existe
-
+ Parece que este livro já existe na sua biblioteca:
@@ -1304,97 +1311,98 @@ Você está offline ou seu armazenamento está cheio.
Tem certeza de quer adicioná-lo novamente?
-
+ Excluir um livro é uma ação permanente, ninguém poderá restaurá-lo depois!
-
+
-
+ Remover livros?
-
+
-
+ Excluir livros é uma ação permanente, ninguém será capaz de restaurá-la posteriormente!
-
-
+
+
-
+ Remover da pasta?
-
+
-
+ Essa ação não irá excluir o livro original.
-
-
+
+
+
- Cancelar
+ Cancelar
-
-
+
+
- Remover
+ Remover
-
+
-
+ Esta ação não irá excluir os livros originais.
-
+ Limite de upload atingido. Exclua livros para liberar espaço ou faça um upgrade.
-
+ Tem certeza de quer adicioná-lo novamente?
-
+ Adicionar
-
+ Não adicionar
-
+ Arquivo não suportado
-
+ Ops! Este arquivo não é suportado pelo Librum.
-
+ Importar
-
+ Todos os arquivos
-
-
-
+
+
+ arquivos
@@ -1485,17 +1493,17 @@ Delete unused books to free up space or upgrade.
-
+ Mover para
- Cancelar
+ Cancelar
- Selecionar
+ Selecionar
@@ -1648,47 +1656,49 @@ Delete unused books to free up space or upgrade.
Seus dados são usados apenas para autenticação. Tudo será armazenado em um banco de dados seguro.
-
- Nome
+ Nome
-
- Sobrenome
+ Sobrenome
-
+ Email
-
+ Senha
-
- Confirme a senha
+ Confirme a senha
+
+
+
+
+
-
+ Vamos começar
-
+ Já tem uma conta? Faça login
-
+ Confirme seu Email
-
+ Você está quase pronto! Confirme seu email clicando no link que enviamos para você.
@@ -1698,14 +1708,13 @@ Confirm your email by clicking the link we sent you.
Você está quase pronto! Confirme seu email clicando no link que enviamos para você.
-
+ Reenviar
-
- As senhas não coincidem
+ As senhas não coincidem
@@ -1721,7 +1730,7 @@ Confirm your email by clicking the link we sent you.
-
+ Escolha uma cor
@@ -1729,12 +1738,12 @@ Confirm your email by clicking the link we sent you.
-
+ Escolha um icone
- Pesquisar
+ Pesquisar
@@ -1874,19 +1883,19 @@ Confirm your email by clicking the link we sent you.
Editar atalho
-
+ Keep it capitalizedAÇÃO
-
+ Keep it capitalizedATALHOS
-
+ Procurar atalhos
@@ -1982,7 +1991,6 @@ Confirm your email by clicking the link we sent you.
- Atualizar
@@ -1998,34 +2006,38 @@ Confirm your email by clicking the link we sent you.
BÁSICO
-
- Por que temos vários níveis?
+ Por que temos vários níveis?
-
+
+
+
+
+
+ Keep capitalizedARMAZENAMENTO USADO
-
+ Armazenamento Usado
-
+ Armazenamento Restante
-
+ Keep capitalizedSEUS LIVROS
-
+ Livros em sua Biblioteca
@@ -2176,7 +2188,7 @@ projetos divertidos, apoie nossa comunidade para tentar tornar o mundo um lugar
Sua versão atual é:
-
+ Veja as últimas alterações em:
@@ -2199,50 +2211,50 @@ projetos divertidos, apoie nossa comunidade para tentar tornar o mundo um lugar
A versão mais recente é:
-
+ Atualizar
-
+ Veja as alterações exatas em nosso site em:
-
+ Atualizando no Linux
-
+ Por favor, use o gerenciador de pacotes para atualizar o Librum ou baixe a ultima versão do nosso
-
-
+
+ site
-
-
+
+ Fechar
-
-
+
+ Envie-nos um e-mail
-
+ A atualização falhou
-
+ Por favor, tente novamente mais tarde ou baixe a ultima versão do nosso
@@ -2299,7 +2311,7 @@ projetos divertidos, apoie nossa comunidade para tentar tornar o mundo um lugar
main
-
+ Librum - Seu leitor de ebooks
diff --git a/src/presentation/translations/librum_ru.ts b/src/presentation/translations/librum_ru.ts
index ec42f53d8..ff2a3c2a9 100644
--- a/src/presentation/translations/librum_ru.ts
+++ b/src/presentation/translations/librum_ru.ts
@@ -70,7 +70,7 @@
Это приложение
-
+ Librum создан для тех, кто просто хочет насладиться хорошей книгой.
@@ -110,7 +110,7 @@ We hope you have a great time using it! Feel free to leave us a rating and some
-
+ Сохранить
@@ -120,93 +120,101 @@ We hope you have a great time using it! Feel free to leave us a rating and some
Профиль
-
- Имя
+ Имя
-
- Фамилия
+ Фамилия
-
+
+
+
+
+
+ Почта
-
+
+
+
+
+
+ Изменить пароль
-
+ Пароль
-
+ Подтверждение пароля
-
+ Ваши данные
-
+ Анализировать, что Вы читаете, чтобы выдавать улучшенные рекомендации
-
+ Анонимно делиться информацией о книгах, которые Вы читаете, чтобы помочь нам улучшить Librum
-
+ Собирать данные о вылетах программы, чтобы мы могли их исправить
-
+ Собирать данные, чтобы отображать их в Вашей статистике
-
+ Ваш Аккаунт
-
+ Выйти
-
+ Удалить Ваш Аккаунт
-
+ Ой
-
+ Похоже, Вы забыли сохранить Ваши изменения, Вы уверены, что не хотите сохранить их?
-
+ Не сохранять
-
-
+
+ Пароли не совпадают!
@@ -625,7 +633,7 @@ Either you are offline, or your storage is full.
-
+ Удалить
@@ -635,81 +643,81 @@ Either you are offline, or your storage is full.
Название
-
-
-
+
+
+ Неизвестно
-
+ Авторы
-
+ Страницы
-
+ Языки
-
+ Создатель документа
-
+ Дата создания
-
+ Формат
-
+ Размер документа
-
+ Добавлено
-
+ Последнее открытие
-
+ Применить
-
+ Отменить
-
+ Выбрать
-
+ Все файлы
-
-
-
+
+
+ файлы
@@ -871,32 +879,32 @@ Either you are offline, or your storage is full.
Подтвердить Удаление Аккаунта
-
+ Удаление Вашего аккаунта необратимо.<br>После удаления аккаунта пути назад уже <b>не</b> будет. Пожалуйста, будьте уверены.
-
+ Ваша Почта
-
+ Подтвердите удаление, введя почту Аккаунта.
-
+ Отмена
-
+ Удалить
-
+ Ваша почта неправильная
@@ -1229,22 +1237,22 @@ Either you are offline, or your storage is full.
MFolderSidebarItemRigthclickPopup
-
+ Создать подпапку
-
+ Изменить
-
+ Переместить в
-
+ Удалить
@@ -1352,174 +1360,174 @@ Either you are offline, or your storage is full.
MHomePage
-
+ Доступна новая версия!
-
+ Обновить Сейчас
-
+ As in 'Home Page', might be closer to 'Start' in other languagesГлавная
-
+ У Вас %1 книг
-
+ Добавить книги
-
+ Удалить Книгу?
-
+ Удаление книги необратимо,
после этого её нельзя будет восстановить!
-
-
+
+ Удалить с Устройства
-
-
+
+ Удалить Везде
-
+ Удалить Книги?
-
+ Удаление книги необратимо,
после этого её нельзя будет восстановить!
-
-
+
+ Удалить из Папки?
-
+ Это действие не удалит оригинальную книгу.
-
-
+
+
+ Отмена
-
-
+
+ Удалить
-
+ Это действие не удалит оригинальные книги.
-
+ Сохранить
-
+ Достигнут Лимит
-
+ Вы достигли лимита загрузок на сервер.
Удалите ненужные книги или приобретите улучшение для аккаунта.
-
-
+ Хорошо
-
+ Приобрести улучшение
-
+ Книга уже есть
-
+ Похоже, эта книга уже есть в Вашей библиотеке:
-
+ Вы уверены, что хотите добавить её снова?
-
+ Добавить
-
+ Не добавлять
-
+ Не поддерживается
-
+ Ой! Librum не поддерживает этот файл.
-
+ Добавить
-
+ Все файлы
-
-
-
+
+
+ файлы
@@ -1773,61 +1781,62 @@ Delete unused books to free up space or upgrade.
Ваши учетные данные используются только для входа в Ваш аккаунт. Они будут сохранены в защищенной базе данных.
-
- Имя
+ Имя
-
- Фамилия
+ Фамилия
-
+ Почта
-
+ Пароль
-
- Подтверждение пароля
+ Подтверждение пароля
-
+
+
+
+
+
+ Давайте начнем
-
+ Уже есть аккаунт? Войти
-
+ Подтвердите Вашу Почту
-
+ Почти готово!
Подтвердите Вашу почту, перейдя по ссылке, которую мы Вам отправили.
-
+ Отправить снова
-
- Пароли не совпадают
+ Пароли не совпадают
@@ -1992,19 +2001,19 @@ Confirm your email by clicking the link we sent you.
Изменить сочетания клавиш
-
+ Keep it capitalizedДЕЙСТВИЕ
-
+ Keep it capitalizedСОЧЕТАНИЯ КЛАВИШ
-
+ Искать сочетания клавиш
@@ -2100,7 +2109,6 @@ Confirm your email by clicking the link we sent you.
- Улучшить
@@ -2116,34 +2124,38 @@ Confirm your email by clicking the link we sent you.
БАЗОВЫЙ
-
- Об уровнях
+ Об уровнях
+
+
+
+
+
-
+ Keep capitalizedЗАНЯТО МЕСТА
-
+ Занято Места
-
+ Осталось Места
-
+ Keep capitalizedВАШИ КНИГИ
-
+ Книги в Вашей Библиотеке
@@ -2294,7 +2306,7 @@ working on fun projects, supporting our community and trying to make the world a
Ваша текущая версия:
-
+ Посмотрите последние изменения здесь:
@@ -2317,50 +2329,50 @@ working on fun projects, supporting our community and trying to make the world a
Новейшая версия:
-
+ Обновить
-
+ Посмотрите подробные изменения на нашем сайте:
-
+ Обновление на Linux
-
+ Пожалуйста, используйте Ваш менеджер пакетов, чтобы обновить Librum, или загрузите новейшую версию с нашего
-
-
+
+ сайта
-
-
+
+ Закрыть
-
-
+
+ Написать Нам
-
+ Не Удалось Обновить
-
+ Пожалуйста, повторите снова или загрузите новейшую версию с нашего
@@ -2417,7 +2429,7 @@ working on fun projects, supporting our community and trying to make the world a
main
-
+ Librum - Ваше приложение для чтения электронных книг
diff --git a/src/presentation/translations/librum_uk.ts b/src/presentation/translations/librum_uk.ts
index 891f8e249..e229992e9 100644
--- a/src/presentation/translations/librum_uk.ts
+++ b/src/presentation/translations/librum_uk.ts
@@ -70,7 +70,7 @@
Про Додаток
-
+ Librum створений для всіх, хто хоче насолодитись хорошою книгою.
@@ -110,7 +110,7 @@ We hope you have a great time using it! Feel free to leave us a rating and some
-
+ Зберегти
@@ -120,93 +120,101 @@ We hope you have a great time using it! Feel free to leave us a rating and some
Профіль
-
- Прізвище
+ Прізвище
-
- Ім'я
+ Ім'я
-
+
+
+
+
+
+ Email
-
+
+
+
+
+
+ Змінити пароль
-
+ Пароль
-
+ Підтвердження паролю
-
+ Ваші дані
-
+ Аналізувати ваше читання для кращих рекомендацій
-
+ Анонімно надавати інформацію про книги, що Ви читаєте. Це допомогає нам покращити Librum
-
+ Збирати інформацію у випадку краху, щоб ми могли запобігти повторенню подібних помилок
-
+ Збирати інформацію для відображення у вашій статистиці
-
+ Ваш акаунт
-
+ Вихід
-
+ Видалити Ваш акаунт
-
+ Упс
-
+ Здається, Ви забули зберегти зміни, Ви впевнені що не хочете зберегти їх?
-
+ Не зберігати
-
-
+
+ Паролі не співпадають!
@@ -546,7 +554,7 @@ Either you are offline, or your storage is full.
-
+ Видалити
@@ -556,81 +564,81 @@ Either you are offline, or your storage is full.
Назва
-
-
-
+
+
+ Невідомо
-
+ Автори
-
+ Сторінки
-
+ Мова
-
+ Автор документу
-
+ Дата створення
-
+ Формат
-
+ Розмір документу
-
+ Додано
-
+ Відкрито востаннє
-
+ Застосувати
-
+ Скасувати
-
+ Вибрати
-
+ Всі файли
-
-
-
+
+
+ файли
@@ -776,32 +784,32 @@ Either you are offline, or your storage is full.
Підтвердіть видалення акаунту
-
+ Видалення Вашого акаунту - незворотня дія.<br>Після видалення акаунту, скасувати це <b>не</b> можна. Будь-ласка, будьте впевнені у виборі.
-
+ Ваш Email
-
+ Підтвердіть видалення акаунту, ввівши Ваш Email до акаунту.
-
+ Скасувати
-
+ Видалити
-
+ Невірна електронна адреса
@@ -1134,22 +1142,22 @@ Either you are offline, or your storage is full.
MFolderSidebarItemRigthclickPopup
-
+ Створити підпапку
-
+ Редагувати
-
+ Перемістити
-
+ Видалити
@@ -1216,174 +1224,174 @@ Either you are offline, or your storage is full.
MHomePage
-
+ Доступна нова версія!
-
+ Оновити зараз
-
+ As in 'Home Page', might be closer to 'Start' in other languagesПочаток
-
+ Ви маєте %1 книг
-
+ Додати книги
-
+ Видалити книгу?
-
+ Видалення книги незворотня дія, ніхто не зможе
її відновити після цього!
-
-
+
+ Видалити з пристрою
-
-
+
+ Видалити всюди
-
+ Видалити книги?
-
+ Видалення книг - незворотня дія, ніхто не зможе
їх відновити після цього!
-
-
+
+ Видалити з папки?
-
+ Ця дія не видаляє оригінал книги.
-
-
+
+
+ Скасувати
-
-
+
+ Видалити
-
+ Ця дія не видаляє оригінальні книги.
-
+ Зберегти
-
+ Ліміт досягнуто
-
+ Ви досягли ліміту на завантаження.
Видаліть застарілі книги, щоб звільнити місце або покращіть тариф.
-
-
+ Ок
-
+ Покращити
-
+ Книга вже існує
-
+ Здається, ця книга вже існує у Вашій бібліотеці:
-
+ Ви впевнені, що хочете додати її ще раз?
-
+ Додати
-
+ Не додавати
-
+ Не підтримується
-
+ Упс! Цей файл не підтримується Librum.
-
+ Імпорт
-
+ Всі файли
-
-
-
+
+
+ файли
@@ -1637,61 +1645,62 @@ Delete unused books to free up space or upgrade.
Ваші дані для входу використовуються тільки для аутентифікації. Все буде збережено в захищеній базі даних.
-
- Прізвище
+ Прізвище
-
- Імʼя
+ Імʼя
-
+ Email
-
+ Пароль
-
- Підтвердіть пароль
+ Підтвердіть пароль
-
+
+
+
+
+
+ Розпочати
-
+ Вже маєте акаунт? Увійти
-
+ Підтвердіть Ваш Email
-
+ Майже готово!
Підтвердіть Ваш Email, натиснувши на посилання, що ми Вам відправили.
-
+ Відправити ще раз
-
- Паролі не співпадають
+ Паролі не співпадають
@@ -1856,19 +1865,19 @@ Confirm your email by clicking the link we sent you.
Редагувати комбінацію
-
+ Keep it capitalizedДІЯ
-
+ Keep it capitalizedКОМБІНАЦІЇ
-
+ Пошук комбінацій
@@ -1964,7 +1973,6 @@ Confirm your email by clicking the link we sent you.
- Покращити
@@ -1980,34 +1988,38 @@ Confirm your email by clicking the link we sent you.
БАЗОВИЙ
-
- Дізнатись про рівні
+ Дізнатись про рівні
+
+
+
+
+
-
+ Keep capitalizedВИКОРИСТАНЕ СХОВИЩЕ
-
+ Використане сховище
-
+ Вільне сховище
-
+ Keep capitalizedВАШІ КНИГИ
-
+ Книги у Вашій Бібліотеці
@@ -2158,7 +2170,7 @@ working on fun projects, supporting our community and trying to make the world a
Ваша поточна версія:
-
+ Перегляньте останні зміни на:
@@ -2181,50 +2193,50 @@ working on fun projects, supporting our community and trying to make the world a
Найновіша версія:
-
+ Оновити
-
+ Перегляньте конкретні зміни на нашому веб-сайті:
-
+ Оновлення на Linux
-
+ Будь-ласка використайте Ваш менеджер пакетів, щоб оновити Librum, або завантажте останню версію з
-
-
+
+ нашого вебсайту
-
-
+
+ Закрити
-
-
+
+ Звʼязатись з нами
-
+ Оновлення не вдалось
-
+ Будь-ласка, спробуйте пізніше або завантажте новую версію з
@@ -2281,7 +2293,7 @@ working on fun projects, supporting our community and trying to make the world a
main
-
+ Librum - Ваша читалка цифрових-книг
diff --git a/src/presentation/translations/librum_zh.ts b/src/presentation/translations/librum_zh.ts
index 46998962c..4a1007ec4 100644
--- a/src/presentation/translations/librum_zh.ts
+++ b/src/presentation/translations/librum_zh.ts
@@ -70,7 +70,7 @@
此应用
-
+ Librum 为每个想享受一本好书的人而存在。
@@ -110,7 +110,7 @@ We hope you have a great time using it! Feel free to leave us a rating and some
-
+ 保存
@@ -120,93 +120,101 @@ We hope you have a great time using it! Feel free to leave us a rating and some
个人资料
-
- 名
+ 名
-
- 姓
+ 姓
-
+
+
+
+
+
+ 电子邮箱
-
+
+
+
+
+
+ 更改密码
-
+ 密码
-
+ 确认密码
-
+ 您的数据
-
+ 分析您的阅读以提供更好的推荐
-
+ 匿名分享您阅读的图书信息以帮助我们改进 Librum
-
+ 收集崩溃信息以避免再次发生
-
+ 收集信息以在您的统计数据中展示
-
+ 您的账户
-
+ 登出
-
+ 删除您的账户
-
+ 哎呀
-
+ 看起来您忘记了保存您的修改,是否放弃修改?
-
+ 不保存
-
-
+
+ 密码不匹配!
@@ -555,7 +563,7 @@ Either you are offline, or your storage is full.
-
+ 删除
@@ -565,81 +573,81 @@ Either you are offline, or your storage is full.
标题
-
-
-
+
+
+ 未知
-
+ 作者
-
+ 页数
-
+ 语言
-
+ 创作者
-
+ 创建日期
-
+ 格式
-
+ 文件大小
-
+ 添加日期
-
+ 最后打开
-
+ 应用
-
+ 取消
-
+ 选择
-
+ 全部文件
-
-
-
+
+
+ 文件
@@ -785,32 +793,32 @@ Either you are offline, or your storage is full.
确认删除账户
-
+ 删除您的账户是不可逆的操作。<br>一旦您删除了您的账户,将<b>无法</b>挽回,请确认。
-
+ 您的邮箱
-
+ 输入您的邮箱以确认删除。
-
+ 取消
-
+ 删除
-
+ 邮箱错误
@@ -1143,22 +1151,22 @@ Either you are offline, or your storage is full.
MFolderSidebarItemRigthclickPopup
-
+ 创建子文件夹
-
+ 编辑
-
+ 移动至
-
+ 删除
@@ -1225,170 +1233,170 @@ Either you are offline, or your storage is full.
MHomePage
-
+ 有新版本可用!
-
+ 立即更新
-
+ As in 'Home Page', might be closer to 'Start' in other languages主页
-
+ 您有 %1 本书
-
+ 添加图书
-
+ 移除此书?
-
+ 删除图书是永久性操作,删除后将无法恢复!
-
-
+
+ 从设备上移除
-
-
+
+ 从所有地方删除
-
+ 移除这些图书?
-
+ 删除图书是永久性操作,删除后将无法恢复!
-
-
+
+ 从文件夹中移除?
-
+ 这个动作不会删除原始图书。
-
-
+
+
+ 取消
-
-
+
+ 移除
-
+ 这个动作不会删除原始图书。
-
+ 保存
-
+ 到达限制
-
+ 您已达到您的上传上限。删除未使用的图书以释放空间或更新。
-
-
+ 好
-
+ 更新
-
+ 图书已存在
-
+ 看起来这本书已经在您的书库中:
-
+ 您确定想再次添加这本图书吗?
-
+ 添加
-
+ 不添加
-
+ 不支持的文件
-
+ 哎呀!Librum 不支持这个文件
-
+ 导入
-
+ 所有文件
-
-
-
+
+
+ 文件
@@ -1642,60 +1650,61 @@ Delete unused books to free up space or upgrade.
您的凭证仅用于验证您的身份。所有信息都将被存储在一个安全的数据库中。
-
- 名
+ 名
-
- 姓
+ 姓
-
+ 电子邮箱
-
+ 密码
-
- 确认密码
+ 确认密码
-
+
+
+
+
+
+ 让我们开始
-
+ 已有账户?登录
-
+ 确认您的邮箱
-
+ 已经快好了!点击我们发送给您的链接以确认你的邮箱。
-
+ 重新发送
-
- 密码不匹配
+ 密码不匹配
@@ -1860,19 +1869,19 @@ Confirm your email by clicking the link we sent you.
编辑快捷键
-
+ Keep it capitalized动作
-
+ Keep it capitalized快捷键
-
+ 搜索快捷键
@@ -1968,7 +1977,6 @@ Confirm your email by clicking the link we sent you.
- 升级
@@ -1984,34 +1992,38 @@ Confirm your email by clicking the link we sent you.
基础
-
- 了解我们为什么提供多个套餐
+ 了解我们为什么提供多个套餐
+
+
+
+
+
-
+ Keep capitalized已用存储空间
-
+ 已用存储空间
-
+ 剩余存储空间
-
+ Keep capitalized您的图书
-
+ 图书馆内的图书
@@ -2161,7 +2173,7 @@ working on fun projects, supporting our community and trying to make the world a
您当前的版本为:
-
+ 查看最新变化:
@@ -2184,50 +2196,50 @@ working on fun projects, supporting our community and trying to make the world a
最新版本为:
-
+ 更新
-
+ 请查看我们网站上的具体变化:
-
+ Linux 版本更新
-
+ 请使用您的包管理器更新 Librum 或下载最新版本
-
-
+
+ 网站
-
-
+
+ 关闭
-
-
+
+ 使用邮箱联系我们
-
+ 更新失败
-
+ 请稍候重试或下载最新版本
@@ -2284,7 +2296,7 @@ working on fun projects, supporting our community and trying to make the world a
main
-
+ Librum - 电子书阅读器