diff --git a/app/build.gradle b/app/build.gradle
index 0f5f6358..704d6a05 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -8,8 +8,8 @@ android {
applicationId "org.mian.gitnex"
minSdkVersion 23
targetSdkVersion 34
- versionCode 535
- versionName "5.4.0-dev"
+ versionCode 540
+ versionName "5.4.0"
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
compileSdk 34
diff --git a/app/src/main/java/org/mian/gitnex/activities/IssueDetailActivity.java b/app/src/main/java/org/mian/gitnex/activities/IssueDetailActivity.java
index a5edb4ff..34a56ebd 100644
--- a/app/src/main/java/org/mian/gitnex/activities/IssueDetailActivity.java
+++ b/app/src/main/java/org/mian/gitnex/activities/IssueDetailActivity.java
@@ -274,7 +274,6 @@ public class IssueDetailActivity extends BaseActivity
repoOwner = issue.getRepository().getOwner();
repoName = issue.getRepository().getName();
issueIndex = issue.getIssueIndex();
- Boolean isLocked = issue.getIssue().isIsLocked();
setSupportActionBar(viewBinding.toolbar);
Objects.requireNonNull(getSupportActionBar()).setTitle(repoName);
@@ -294,11 +293,31 @@ public class IssueDetailActivity extends BaseActivity
viewBinding.recyclerView.setNestedScrollingEnabled(false);
viewBinding.recyclerView.setLayoutManager(new LinearLayoutManager(ctx));
- if (isLocked && !issue.getRepository().getPermissions().isAdmin()) {
- viewBinding.addNewComment.setVisibility(View.GONE);
- } else {
- viewBinding.addNewComment.setVisibility(View.VISIBLE);
- }
+ new Handler()
+ .postDelayed(
+ () -> {
+ if (issue.getIssue() != null) {
+ if (issue.getIssue().isIsLocked() != null) {
+ if (issue.getIssue().isIsLocked()) {
+ if (issue.getRepository().getPermissions() != null
+ && issue.getRepository().getPermissions().isAdmin()
+ != null) {
+ if (issue.getRepository().getPermissions().isAdmin()) {
+ viewBinding.addNewComment.setVisibility(
+ View.VISIBLE);
+ } else {
+ viewBinding.addNewComment.setVisibility(View.GONE);
+ }
+ } else {
+ viewBinding.addNewComment.setVisibility(View.GONE);
+ }
+ } else {
+ viewBinding.addNewComment.setVisibility(View.VISIBLE);
+ }
+ }
+ }
+ },
+ 50);
viewBinding.addNewComment.setOnClickListener(
v -> {
diff --git a/app/src/main/res/values-ar-rSA/strings.xml b/app/src/main/res/values-ar-rSA/strings.xml
index 91c6194d..19096dac 100644
--- a/app/src/main/res/values-ar-rSA/strings.xml
+++ b/app/src/main/res/values-ar-rSA/strings.xml
@@ -124,7 +124,6 @@
نُشِر بواسطة @%1$s
لم توفر ملاحظات الإصدار من قبل الناشر.
العنوان
- الوصف
تاريخ الإكمال
اسم المرحلة فارغ
تجاوز وصف المرحلة عدد الحروف الأقصى 255 حرفاً
@@ -139,7 +138,6 @@
اِختر الأوسمة
العنوان
الموكل عليهم
- الوصف
تاريخ الإكمال
المرحلة
الأوسمة
@@ -201,6 +199,15 @@
Tabs Animation
Fade Out
Zoom Out
+ Backup
+ Restore
+ The backup was successfully created
+ An error occurred while creating a data backup
+ This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nPlease note this action will overwrite the current database data. Proceed with caution.\n\nClick Restore to start the process.
+ An error occurred while restoring from the backup file.
+ Restore from Backup
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nClick Restore to start the process.
لا يوجد المزيد من البيانات المتاحة
وسم جديد
@@ -245,7 +252,6 @@
اسم الفريق
- الوصف
الصلاحيّة
صلاحيات الوصول
الأعضاء يستطيعون رؤية ونسخ مستودعات الفريق
@@ -276,6 +282,9 @@
المتابِعون
المتابَعون
+ Edit Profile
+ Hide Activity from profile page
+ Hide Email
Emails
@@ -286,6 +295,14 @@
عنوان البريد الإلكتروني مستخدم مسبقاً
أساسي
SSH Keys
+ This action will permanently delete email %s from your account.
+ Email deleted successfully
+ Add SSH Key
+ Read-only Access
+ Read-write Access
+ SSH Key
+ New SSH key added successfully
+ Invalid SSH key or SSH key already exists
إضافة / حذف الأوسمة
@@ -432,6 +449,8 @@
None
main
License
+ Title
+ Description
استكشاف المستخدمين
استكشاف القضايا
@@ -535,6 +554,9 @@
إذا أحببت GitNex يمكنك الإعجاب به
App version, build, user instance version
Syntax color, indentation
+ Backup and restore accounts, settings and more
+ Backup accounts, settings, notes and more
+ Restore accounts, settings, notes and more
مؤرشف
المستودع مؤرشف. يمكنك رؤية الملفات لكن لا يمكنك الدفع أو فتح قضية/طلب دمج.
حُذف الحساب بنجاح
diff --git a/app/src/main/res/values-cs-rCZ/strings.xml b/app/src/main/res/values-cs-rCZ/strings.xml
index 79a54015..f2923651 100644
--- a/app/src/main/res/values-cs-rCZ/strings.xml
+++ b/app/src/main/res/values-cs-rCZ/strings.xml
@@ -124,7 +124,6 @@
Zveřejnil/a @%1$s
Poznámky k verzi nejsou poskytnuty vydavatelem.
Název
- Popis
Splnit do
Název milníku je prázdný
Popis repozitáře překračuje maximální limit 255 znaků
@@ -139,7 +138,6 @@
Vybrat štítky
Název
Zpracovatelé
- Popis
Splnit do
Milník
Štítky
@@ -201,6 +199,15 @@
Tabs Animation
Fade Out
Zoom Out
+ Backup
+ Restore
+ The backup was successfully created
+ An error occurred while creating a data backup
+ This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nPlease note this action will overwrite the current database data. Proceed with caution.\n\nClick Restore to start the process.
+ An error occurred while restoring from the backup file.
+ Restore from Backup
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nClick Restore to start the process.
Nejsou k dispozici žádná další data
Nový štítek
@@ -245,7 +252,6 @@
Jméno týmu
- Popis
Oprávnění
Správa přístupů
Členové mohou zobrazit a klonovat repozitáře týmu
@@ -276,6 +282,9 @@
Sledující
Sleduje
+ Edit Profile
+ Hide Activity from profile page
+ Hide Email
Emails
@@ -286,6 +295,14 @@
E-mailová adresa je již používána
Primární
SSH Keys
+ This action will permanently delete email %s from your account.
+ Email deleted successfully
+ Add SSH Key
+ Read-only Access
+ Read-write Access
+ SSH Key
+ New SSH key added successfully
+ Invalid SSH key or SSH key already exists
Přidat / Odebrat štítky
@@ -432,6 +449,8 @@
None
main
License
+ Title
+ Description
Prozkoumat uživatele
Prozkoumat issues
@@ -534,6 +553,9 @@
Pokud se vám GitNex líbí, můžete mu dát palec nahoru
Verze aplikace, sestavení, verze instance uživatele
Syntax color, indentation
+ Backup and restore accounts, settings and more
+ Backup accounts, settings, notes and more
+ Restore accounts, settings, notes and more
Archivováno
Tento repozitář je archivovaný. Můžete zobrazovat soubory, ale nemůžete pushovat nebo otevírat issues/pull requesty.
Účet úspěšně smazán
diff --git a/app/src/main/res/values-el-rGR/strings.xml b/app/src/main/res/values-el-rGR/strings.xml
index 07cd4aeb..c5dc623a 100644
--- a/app/src/main/res/values-el-rGR/strings.xml
+++ b/app/src/main/res/values-el-rGR/strings.xml
@@ -124,7 +124,6 @@
Δημοσιεύθηκε από %1$s
Οι σημειώσεις έκδοσης δεν δόθηκαν από τον εκδότη.
Τίτλος
- Περιγραφή
Ημερομηνία λήξης
Ο τίτλος του ορόσημου είναι κενός
Η περιγραφή του ορόσημου ξεπερνά το όριο των 255 χαρακτήρων
@@ -139,7 +138,6 @@
Επιλογή ετικετών
Τίτλος
Υπεύθυνοι
- Περιγραφή
Ημερομηνία λήξης
Ορόσημο
Ετικέτες
@@ -201,6 +199,15 @@
Tabs Animation
Fade Out
Zoom Out
+ Backup
+ Restore
+ The backup was successfully created
+ An error occurred while creating a data backup
+ This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nPlease note this action will overwrite the current database data. Proceed with caution.\n\nClick Restore to start the process.
+ An error occurred while restoring from the backup file.
+ Restore from Backup
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nClick Restore to start the process.
No more data available
New Label
@@ -245,7 +252,6 @@
Όνομα Ομάδας
- Περιγραφή
Δικαιώματα
Έλεγχος Πρόσβασης
Τα μέλη μπορούν να βλέπουν και να κλονοποιούν ομαδικά αποθετήρια
@@ -276,6 +282,9 @@
Ακόλουθοι
Ακολουθείτε
+ Edit Profile
+ Hide Activity from profile page
+ Hide Email
Emails
@@ -286,6 +295,14 @@
Email address is already in use
Primary
SSH Keys
+ This action will permanently delete email %s from your account.
+ Email deleted successfully
+ Add SSH Key
+ Read-only Access
+ Read-write Access
+ SSH Key
+ New SSH key added successfully
+ Invalid SSH key or SSH key already exists
Add / Remove Labels
@@ -432,6 +449,8 @@
None
main
License
+ Title
+ Description
Explore users
Explore issues
@@ -534,6 +553,9 @@
If you like GitNex you can give it a thumbs up
App version, build, user instance version
Syntax color, indentation
+ Backup and restore accounts, settings and more
+ Backup accounts, settings, notes and more
+ Restore accounts, settings, notes and more
Archived
This repo is archived. You can view files, but cannot push or open issues/pull-requests.
Account deleted successfully
diff --git a/app/src/main/res/values-eo-rEO/strings.xml b/app/src/main/res/values-eo-rEO/strings.xml
index e4f31192..bc04e1ec 100644
--- a/app/src/main/res/values-eo-rEO/strings.xml
+++ b/app/src/main/res/values-eo-rEO/strings.xml
@@ -124,7 +124,6 @@
Eldonita de @%1$s
Eldonaj notoj ne estas provizitaj de la eldonisto.
Titolo
- Priskribo
Limdato
Milestone title is empty
Milestone description exceeds the max 255 characters limit
@@ -139,7 +138,6 @@
Select Labels
Title
Assignees
- Description
Due Date
Milestone
Labels
@@ -201,6 +199,15 @@
Tabs Animation
Fade Out
Zoom Out
+ Backup
+ Restore
+ The backup was successfully created
+ An error occurred while creating a data backup
+ This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nPlease note this action will overwrite the current database data. Proceed with caution.\n\nClick Restore to start the process.
+ An error occurred while restoring from the backup file.
+ Restore from Backup
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nClick Restore to start the process.
No more data available
New Label
@@ -245,7 +252,6 @@
Team Name
- Description
Permission
Access Controls
Members can view and clone team repositories
@@ -276,6 +282,9 @@
Followers
Following
+ Edit Profile
+ Hide Activity from profile page
+ Hide Email
Emails
@@ -286,6 +295,14 @@
Email address is already in use
Primary
SSH Keys
+ This action will permanently delete email %s from your account.
+ Email deleted successfully
+ Add SSH Key
+ Read-only Access
+ Read-write Access
+ SSH Key
+ New SSH key added successfully
+ Invalid SSH key or SSH key already exists
Add / Remove Labels
@@ -432,6 +449,8 @@
None
main
License
+ Title
+ Description
Explore users
Explore issues
@@ -534,6 +553,9 @@
If you like GitNex you can give it a thumbs up
App version, build, user instance version
Syntax color, indentation
+ Backup and restore accounts, settings and more
+ Backup accounts, settings, notes and more
+ Restore accounts, settings, notes and more
Archived
This repo is archived. You can view files, but cannot push or open issues/pull-requests.
Account deleted successfully
diff --git a/app/src/main/res/values-es-rES/strings.xml b/app/src/main/res/values-es-rES/strings.xml
index ce1538f9..f4fa9092 100644
--- a/app/src/main/res/values-es-rES/strings.xml
+++ b/app/src/main/res/values-es-rES/strings.xml
@@ -124,7 +124,6 @@
Publicado por @%1$s
Las notas de la versión no son proporcionadas por el editor.
Título
- Descripción
Fecha final
El título del hito está vacío
La descripción del hito supera el límite de 255 caracteres
@@ -139,7 +138,6 @@
Selecciona etiquetas
Título
Asignados
- Descripción
Fecha final
Hito
Etiquetas
@@ -201,6 +199,15 @@
Animación de las pestañas
Desvanecer
Reducir
+ Backup
+ Restore
+ The backup was successfully created
+ An error occurred while creating a data backup
+ This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nPlease note this action will overwrite the current database data. Proceed with caution.\n\nClick Restore to start the process.
+ An error occurred while restoring from the backup file.
+ Restore from Backup
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nClick Restore to start the process.
No hay más datos disponibles
Nueva etiqueta
@@ -245,7 +252,6 @@
Nombre del equipo
- Descripción
Permiso
Controles de acceso
Miembros pueden ver y clonar los repositorios del equipo
@@ -276,6 +282,9 @@
Seguidores
Siguiendo
+ Edit Profile
+ Hide Activity from profile page
+ Hide Email
Correos electrónicos
@@ -286,6 +295,14 @@
La dirección de correo electrónico ya está en uso
Principal
Claves SSH
+ This action will permanently delete email %s from your account.
+ Email deleted successfully
+ Add SSH Key
+ Read-only Access
+ Read-write Access
+ SSH Key
+ New SSH key added successfully
+ Invalid SSH key or SSH key already exists
Añadir / Eliminar etiquetas
@@ -432,6 +449,8 @@
Ninguno
main
Licencia
+ Title
+ Description
Explorar usuarios
Explorar incidencias
@@ -534,6 +553,9 @@
Si te gusta GitNex, ¡deja una valoración positiva!
Versión de la aplicación, build, versión de Gitea
Color de sintaxis, indentación
+ Backup and restore accounts, settings and more
+ Backup accounts, settings, notes and more
+ Restore accounts, settings, notes and more
Archivado
Este repositorio está archivado. Puedes ver los archivos, pero no puedes hacer push, abrir incidencias o pull requests.
Cuenta eliminada con éxito
diff --git a/app/src/main/res/values-fa-rIR/strings.xml b/app/src/main/res/values-fa-rIR/strings.xml
index 68de784d..082859ae 100644
--- a/app/src/main/res/values-fa-rIR/strings.xml
+++ b/app/src/main/res/values-fa-rIR/strings.xml
@@ -124,7 +124,6 @@
منتشر شده توسط @%1$s
Release notes are not provided by the publisher.
عنوان
- توضیحات
تاریخ مقرر
عنوان نقطه عطف خالی است
توضیحات نقطه عطف از سقف 255 کاراکتر بیشتر است
@@ -139,7 +138,6 @@
برچسبها را انتخاب کنید
عنوان
نمایندگان
- توضیحات
تاریخ مقرر
نقطه عطف
برچسبها
@@ -201,6 +199,15 @@
Tabs Animation
Fade Out
Zoom Out
+ Backup
+ Restore
+ The backup was successfully created
+ An error occurred while creating a data backup
+ This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nPlease note this action will overwrite the current database data. Proceed with caution.\n\nClick Restore to start the process.
+ An error occurred while restoring from the backup file.
+ Restore from Backup
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nClick Restore to start the process.
اطلاعات بیشتری موجود نیست
برچسب جدید
@@ -245,7 +252,6 @@
نام تیم
- توضیحات
دسترسیها
کنترل دسترسی
Members can view and clone team repositories
@@ -276,6 +282,9 @@
دنبال کنندگان
درحال دنبال کردن
+ Edit Profile
+ Hide Activity from profile page
+ Hide Email
Emails
@@ -286,6 +295,14 @@
نشانی رایانامه از قبل موجود است
اصلی
SSH Keys
+ This action will permanently delete email %s from your account.
+ Email deleted successfully
+ Add SSH Key
+ Read-only Access
+ Read-write Access
+ SSH Key
+ New SSH key added successfully
+ Invalid SSH key or SSH key already exists
افزودن / حذف برچسبها
@@ -432,6 +449,8 @@
None
main
License
+ Title
+ Description
Explore users
Explore issues
@@ -534,6 +553,9 @@
اگر GitNex را میپسندید میتوانید به آن امتیاز دهید
App version, build, user instance version
Syntax color, indentation
+ Backup and restore accounts, settings and more
+ Backup accounts, settings, notes and more
+ Restore accounts, settings, notes and more
بایگانی شده
This repo is archived. You can view files, but cannot push or open issues/pull-requests.
حساب کاربری با موفقیت حذف شد
diff --git a/app/src/main/res/values-fi-rFI/strings.xml b/app/src/main/res/values-fi-rFI/strings.xml
index 961f659f..cc094c06 100644
--- a/app/src/main/res/values-fi-rFI/strings.xml
+++ b/app/src/main/res/values-fi-rFI/strings.xml
@@ -124,7 +124,6 @@
Published by @%1$s
Release notes are not provided by the publisher.
Title
- Description
Due Date
Milestone title is empty
Milestone description exceeds the max 255 characters limit
@@ -139,7 +138,6 @@
Select Labels
Title
Assignees
- Description
Due Date
Milestone
Labels
@@ -201,6 +199,15 @@
Tabs Animation
Fade Out
Zoom Out
+ Backup
+ Restore
+ The backup was successfully created
+ An error occurred while creating a data backup
+ This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nPlease note this action will overwrite the current database data. Proceed with caution.\n\nClick Restore to start the process.
+ An error occurred while restoring from the backup file.
+ Restore from Backup
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nClick Restore to start the process.
No more data available
New Label
@@ -245,7 +252,6 @@
Team Name
- Description
Permission
Access Controls
Members can view and clone team repositories
@@ -276,6 +282,9 @@
Followers
Following
+ Edit Profile
+ Hide Activity from profile page
+ Hide Email
Emails
@@ -286,6 +295,14 @@
Email address is already in use
Primary
SSH Keys
+ This action will permanently delete email %s from your account.
+ Email deleted successfully
+ Add SSH Key
+ Read-only Access
+ Read-write Access
+ SSH Key
+ New SSH key added successfully
+ Invalid SSH key or SSH key already exists
Add / Remove Labels
@@ -432,6 +449,8 @@
None
main
License
+ Title
+ Description
Explore users
Explore issues
@@ -534,6 +553,9 @@
If you like GitNex you can give it a thumbs up
App version, build, user instance version
Syntax color, indentation
+ Backup and restore accounts, settings and more
+ Backup accounts, settings, notes and more
+ Restore accounts, settings, notes and more
Archived
This repo is archived. You can view files, but cannot push or open issues/pull-requests.
Account deleted successfully
diff --git a/app/src/main/res/values-it-rIT/strings.xml b/app/src/main/res/values-it-rIT/strings.xml
index 99e4d21e..75d1bbf4 100644
--- a/app/src/main/res/values-it-rIT/strings.xml
+++ b/app/src/main/res/values-it-rIT/strings.xml
@@ -125,7 +125,6 @@ URL è richiesto
Pubblicato da @%1$s
Le note di rilascio non sono fornite dall\'editore.
Nome
- Descrizione
Data Scadenza
Il titolo del milestone è vuoto
La descrizione del milestone supera il limite massimo di 255 caratteri
@@ -140,7 +139,6 @@ URL è richiesto
Seleziona labels
Titolo
Assegnatari
- Descrizione
Data Scadenza
Milestone
Labels
@@ -202,6 +200,15 @@ URL è richiesto
Tabs Animation
Fade Out
Zoom Out
+ Backup
+ Restore
+ The backup was successfully created
+ An error occurred while creating a data backup
+ This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nPlease note this action will overwrite the current database data. Proceed with caution.\n\nClick Restore to start the process.
+ An error occurred while restoring from the backup file.
+ Restore from Backup
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nClick Restore to start the process.
Nessun altro dato disponibile
Nuovo label
@@ -246,7 +253,6 @@ URL è richiesto
Nome team
- Descrizione
Autorizzazione
Controlli Accesso
I membri possono visualizzare e clonare i repository di team
@@ -278,6 +284,9 @@ autorizzazione
Follower
Seguendo
+ Edit Profile
+ Hide Activity from profile page
+ Hide Email
Emails
@@ -288,6 +297,14 @@ autorizzazione
Indirizzo email già in uso
Primario
SSH Keys
+ This action will permanently delete email %s from your account.
+ Email deleted successfully
+ Add SSH Key
+ Read-only Access
+ Read-write Access
+ SSH Key
+ New SSH key added successfully
+ Invalid SSH key or SSH key already exists
Aggiungi/Rimuovi label
@@ -434,6 +451,8 @@ autorizzazione
None
main
License
+ Title
+ Description
Esplora utenti
Esplora problemi
@@ -536,6 +555,9 @@ autorizzazione
If you like GitNex you can give it a thumbs up
App version, build, user instance version
Syntax color, indentation
+ Backup and restore accounts, settings and more
+ Backup accounts, settings, notes and more
+ Restore accounts, settings, notes and more
Archiviato
This repo is archived. You can view files, but cannot push or open issues/pull-requests.
Account eliminato con successo
diff --git a/app/src/main/res/values-ja-rJP/strings.xml b/app/src/main/res/values-ja-rJP/strings.xml
index 9d689fc0..769e023c 100644
--- a/app/src/main/res/values-ja-rJP/strings.xml
+++ b/app/src/main/res/values-ja-rJP/strings.xml
@@ -124,7 +124,6 @@
発行者@%1$s
リリースノートは発行元から提供されていません。
タイトル
- 説明
期限
マイルストーンのタイトルが空です
マイルストーンの説明が最大255文字の制限を超えています
@@ -139,7 +138,6 @@
ラベルを選択
タイトル
割当先
- 説明
期限
マイルストーン
ラベル
@@ -201,6 +199,15 @@
Tabs Animation
Fade Out
Zoom Out
+ Backup
+ Restore
+ The backup was successfully created
+ An error occurred while creating a data backup
+ This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nPlease note this action will overwrite the current database data. Proceed with caution.\n\nClick Restore to start the process.
+ An error occurred while restoring from the backup file.
+ Restore from Backup
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nClick Restore to start the process.
これ以上のデータはありません
新規ラベル
@@ -245,7 +252,6 @@
チーム名
- 説明
アクセス許可
アクセス制御
メンバーはチームリポジトリを表示して複製できる
@@ -276,6 +282,9 @@
フォロワー
フォロー中
+ Edit Profile
+ Hide Activity from profile page
+ Hide Email
Emails
@@ -286,6 +295,14 @@
電子メールアドレスは既に使用されています
プライマリ
SSH Keys
+ This action will permanently delete email %s from your account.
+ Email deleted successfully
+ Add SSH Key
+ Read-only Access
+ Read-write Access
+ SSH Key
+ New SSH key added successfully
+ Invalid SSH key or SSH key already exists
ラベルを追加/削除
@@ -432,6 +449,8 @@
None
main
License
+ Title
+ Description
ユーザーの表示
課題の表示
@@ -534,6 +553,9 @@
あなたがGitNexが好きなら、それを称賛してもいいですよ。
App version, build, user instance version
Syntax color, indentation
+ Backup and restore accounts, settings and more
+ Backup accounts, settings, notes and more
+ Restore accounts, settings, notes and more
アーカイブ済み
このリポジトリはアーカイブされます。ファイルを表示することはできますが、問題/プルリクエストをプッシュまたはオープンすることはできません。
アカウントは正常に削除されました
diff --git a/app/src/main/res/values-ko-rKR/strings.xml b/app/src/main/res/values-ko-rKR/strings.xml
index 9d7b55cf..6fc5232a 100644
--- a/app/src/main/res/values-ko-rKR/strings.xml
+++ b/app/src/main/res/values-ko-rKR/strings.xml
@@ -124,7 +124,6 @@
Published by @%1$s
Release notes are not provided by the publisher.
Title
- Description
Due Date
Milestone title is empty
Milestone description exceeds the max 255 characters limit
@@ -139,7 +138,6 @@
Select Labels
Title
Assignees
- Description
Due Date
Milestone
Labels
@@ -201,6 +199,15 @@
Tabs Animation
Fade Out
Zoom Out
+ Backup
+ Restore
+ The backup was successfully created
+ An error occurred while creating a data backup
+ This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nPlease note this action will overwrite the current database data. Proceed with caution.\n\nClick Restore to start the process.
+ An error occurred while restoring from the backup file.
+ Restore from Backup
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nClick Restore to start the process.
No more data available
New Label
@@ -245,7 +252,6 @@
Team Name
- Description
Permission
Access Controls
Members can view and clone team repositories
@@ -276,6 +282,9 @@
Followers
Following
+ Edit Profile
+ Hide Activity from profile page
+ Hide Email
Emails
@@ -286,6 +295,14 @@
Email address is already in use
Primary
SSH Keys
+ This action will permanently delete email %s from your account.
+ Email deleted successfully
+ Add SSH Key
+ Read-only Access
+ Read-write Access
+ SSH Key
+ New SSH key added successfully
+ Invalid SSH key or SSH key already exists
Add / Remove Labels
@@ -432,6 +449,8 @@
None
main
License
+ Title
+ Description
Explore users
Explore issues
@@ -534,6 +553,9 @@
If you like GitNex you can give it a thumbs up
App version, build, user instance version
Syntax color, indentation
+ Backup and restore accounts, settings and more
+ Backup accounts, settings, notes and more
+ Restore accounts, settings, notes and more
Archived
This repo is archived. You can view files, but cannot push or open issues/pull-requests.
Account deleted successfully
diff --git a/app/src/main/res/values-lv-rLV/strings.xml b/app/src/main/res/values-lv-rLV/strings.xml
index 9164952b..0e73b80d 100644
--- a/app/src/main/res/values-lv-rLV/strings.xml
+++ b/app/src/main/res/values-lv-rLV/strings.xml
@@ -124,7 +124,6 @@
Published by @%1$s
Release notes are not provided by the publisher.
Title
- Description
Due Date
Milestone title is empty
Milestone description exceeds the max 255 characters limit
@@ -139,7 +138,6 @@
Select Labels
Title
Assignees
- Description
Due Date
Milestone
Labels
@@ -201,6 +199,15 @@
Tabs Animation
Fade Out
Zoom Out
+ Backup
+ Restore
+ The backup was successfully created
+ An error occurred while creating a data backup
+ This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nPlease note this action will overwrite the current database data. Proceed with caution.\n\nClick Restore to start the process.
+ An error occurred while restoring from the backup file.
+ Restore from Backup
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nClick Restore to start the process.
No more data available
New Label
@@ -245,7 +252,6 @@
Team Name
- Description
Permission
Access Controls
Members can view and clone team repositories
@@ -276,6 +282,9 @@
Followers
Following
+ Edit Profile
+ Hide Activity from profile page
+ Hide Email
Emails
@@ -286,6 +295,14 @@
Email address is already in use
Primary
SSH Keys
+ This action will permanently delete email %s from your account.
+ Email deleted successfully
+ Add SSH Key
+ Read-only Access
+ Read-write Access
+ SSH Key
+ New SSH key added successfully
+ Invalid SSH key or SSH key already exists
Add / Remove Labels
@@ -432,6 +449,8 @@
None
main
License
+ Title
+ Description
Explore users
Explore issues
@@ -534,6 +553,9 @@
If you like GitNex you can give it a thumbs up
App version, build, user instance version
Syntax color, indentation
+ Backup and restore accounts, settings and more
+ Backup accounts, settings, notes and more
+ Restore accounts, settings, notes and more
Archived
This repo is archived. You can view files, but cannot push or open issues/pull-requests.
Account deleted successfully
diff --git a/app/src/main/res/values-nl-rNL/strings.xml b/app/src/main/res/values-nl-rNL/strings.xml
index 576d9fcc..5eb79855 100644
--- a/app/src/main/res/values-nl-rNL/strings.xml
+++ b/app/src/main/res/values-nl-rNL/strings.xml
@@ -124,7 +124,6 @@
Gepubliceerd door @%1$s
Release notities zijn niet aangeleverd door de uitgever.
Titel
- Beschrijving
Vervaldatum
Mijlpaal titel is leeg
Mijlpaal beschrijving overschrijdt het limiet van 255 karakters
@@ -139,7 +138,6 @@
Selecteer Labels
Titel
Toegewezen personen
- Beschrijving
Vervaldatum
Mijlpaal
Labels
@@ -201,6 +199,15 @@
Tabs Animation
Fade Out
Zoom Out
+ Backup
+ Restore
+ The backup was successfully created
+ An error occurred while creating a data backup
+ This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nPlease note this action will overwrite the current database data. Proceed with caution.\n\nClick Restore to start the process.
+ An error occurred while restoring from the backup file.
+ Restore from Backup
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nClick Restore to start the process.
Geen verdere gegevens beschikbaar
Nieuw Label
@@ -245,7 +252,6 @@
Team Name
- Description
Permission
Access Controls
Members can view and clone team repositories
@@ -276,6 +282,9 @@
Volgers
Volgend
+ Edit Profile
+ Hide Activity from profile page
+ Hide Email
E-mails
@@ -286,6 +295,14 @@
E-mailadres is reeds in gebruik
Primair
SSH Keys
+ This action will permanently delete email %s from your account.
+ Email deleted successfully
+ Add SSH Key
+ Read-only Access
+ Read-write Access
+ SSH Key
+ New SSH key added successfully
+ Invalid SSH key or SSH key already exists
Toevoegen / Verwijderen Label
@@ -432,6 +449,8 @@
None
main
License
+ Title
+ Description
Explore users
Explore issues
@@ -534,6 +553,9 @@
If you like GitNex you can give it a thumbs up
App version, build, user instance version
Syntax color, indentation
+ Backup and restore accounts, settings and more
+ Backup accounts, settings, notes and more
+ Restore accounts, settings, notes and more
Archived
This repo is archived. You can view files, but cannot push or open issues/pull-requests.
Account deleted successfully
diff --git a/app/src/main/res/values-pl-rPL/strings.xml b/app/src/main/res/values-pl-rPL/strings.xml
index 1e2f5ca2..4b959463 100644
--- a/app/src/main/res/values-pl-rPL/strings.xml
+++ b/app/src/main/res/values-pl-rPL/strings.xml
@@ -124,7 +124,6 @@
Opublikowane przez @%1$s
Informacje o wydaniu nie zostały podane przez osobę publikującą.
Tytuł
- Opis
Termin
Tytuł etapu jest pusty
Opis etapu przekracza limit 255 znaków
@@ -139,7 +138,6 @@
Wybierz etykiety
Tytuł
Przypisani
- Opis
Termin
Etap
Etykiety
@@ -201,6 +199,15 @@
Tabs Animation
Fade Out
Zoom Out
+ Backup
+ Restore
+ The backup was successfully created
+ An error occurred while creating a data backup
+ This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nPlease note this action will overwrite the current database data. Proceed with caution.\n\nClick Restore to start the process.
+ An error occurred while restoring from the backup file.
+ Restore from Backup
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nClick Restore to start the process.
Brak dostępnych danych
Nowa etykieta
@@ -245,7 +252,6 @@
Nazwa zespołu
- Opis
Uprawnienie
Kontrola dostępu
Członkowie mogą przeglądać i sklonować repozytoria zespołu
@@ -276,6 +282,9 @@
Obserwujący
Obserwowane
+ Edit Profile
+ Hide Activity from profile page
+ Hide Email
Emails
@@ -286,6 +295,14 @@
Adres e-mail jest już używany
Podstawowy
SSH Keys
+ This action will permanently delete email %s from your account.
+ Email deleted successfully
+ Add SSH Key
+ Read-only Access
+ Read-write Access
+ SSH Key
+ New SSH key added successfully
+ Invalid SSH key or SSH key already exists
Dodaj / Usuń etykiety
@@ -432,6 +449,8 @@
None
main
License
+ Title
+ Description
Explore users
Przeglądaj zgłoszenia
@@ -534,6 +553,9 @@
If you like GitNex you can give it a thumbs up
App version, build, user instance version
Syntax color, indentation
+ Backup and restore accounts, settings and more
+ Backup accounts, settings, notes and more
+ Restore accounts, settings, notes and more
Archived
This repo is archived. You can view files, but cannot push or open issues/pull-requests.
Account deleted successfully
diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml
index b72ab4a8..0089f736 100644
--- a/app/src/main/res/values-pt-rBR/strings.xml
+++ b/app/src/main/res/values-pt-rBR/strings.xml
@@ -125,7 +125,6 @@ Exemplo: codeberg.org
Publicado por @%1$s
Notas de versão não são fornecidas pelo editor.
Título
- Descrição
Data Limite
Título da meta está vazio
Descrição da meta excede o limite máximo de 255 caracteres
@@ -140,7 +139,6 @@ Exemplo: codeberg.org
Selecionar marcadores
Título
Designados
- Descrição
Data Limite
Meta
Marcadores
@@ -202,6 +200,15 @@ Exemplo: codeberg.org
Tabs Animation
Fade Out
Zoom Out
+ Backup
+ Restore
+ The backup was successfully created
+ An error occurred while creating a data backup
+ This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nPlease note this action will overwrite the current database data. Proceed with caution.\n\nClick Restore to start the process.
+ An error occurred while restoring from the backup file.
+ Restore from Backup
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nClick Restore to start the process.
Não há mais dados disponíveis
Novo marcador
@@ -246,7 +253,6 @@ Exemplo: codeberg.org
Nome da equipe
- Descrição
Permissão
Controle de acessos
Membros podem ver e clonar repositórios de equipe
@@ -277,6 +283,9 @@ Exemplo: codeberg.org
Seguidores
Seguindo
+ Edit Profile
+ Hide Activity from profile page
+ Hide Email
Emails
@@ -287,6 +296,14 @@ Exemplo: codeberg.org
O endereço de e-mail já está em uso
Principal
SSH Keys
+ This action will permanently delete email %s from your account.
+ Email deleted successfully
+ Add SSH Key
+ Read-only Access
+ Read-write Access
+ SSH Key
+ New SSH key added successfully
+ Invalid SSH key or SSH key already exists
Adicionar/Remover marcadores
@@ -433,6 +450,8 @@ Exemplo: codeberg.org
None
main
License
+ Title
+ Description
Explore users
Explore issues
@@ -535,6 +554,9 @@ Exemplo: codeberg.org
Se você gosta do GitNex você pode dar um joinha
App version, build, user instance version
Syntax color, indentation
+ Backup and restore accounts, settings and more
+ Backup accounts, settings, notes and more
+ Restore accounts, settings, notes and more
Arquivado
This repo is archived. You can view files, but cannot push or open issues/pull-requests.
Conta excluída com êxito
diff --git a/app/src/main/res/values-ru-rRU/strings.xml b/app/src/main/res/values-ru-rRU/strings.xml
index 7a04dc30..ceb3d568 100644
--- a/app/src/main/res/values-ru-rRU/strings.xml
+++ b/app/src/main/res/values-ru-rRU/strings.xml
@@ -124,7 +124,6 @@
Опубликовано @%1$s
Примечания к релизу не предоставляются.
Заголовок
- Описание
Дата исполнения
Заголовок вехи пустой.
Описание вехи превышает 255 символов.
@@ -139,7 +138,6 @@
Выбрать метки
Заголовок
Назначенные
- Описание
Срок выполнения
Вехи
Метки
@@ -201,6 +199,15 @@
Анимация вкладок
Затухание
Отдалить
+ Backup
+ Restore
+ The backup was successfully created
+ An error occurred while creating a data backup
+ This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nPlease note this action will overwrite the current database data. Proceed with caution.\n\nClick Restore to start the process.
+ An error occurred while restoring from the backup file.
+ Restore from Backup
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nClick Restore to start the process.
Больше даных нет
Создание метки
@@ -245,7 +252,6 @@
Имя команды
- Описание
Права
Контроль доступа
Участники могут просматривать и клонировать репозитории команды
@@ -276,6 +282,9 @@
Подписчики
Подписки
+ Edit Profile
+ Hide Activity from profile page
+ Hide Email
Электронная почта
@@ -286,6 +295,14 @@
Адрес электронной почты уже используется
Основной
SSH ключи
+ This action will permanently delete email %s from your account.
+ Email deleted successfully
+ Add SSH Key
+ Read-only Access
+ Read-write Access
+ SSH Key
+ New SSH key added successfully
+ Invalid SSH key or SSH key already exists
Добавить/удалить метку
@@ -432,6 +449,8 @@
None
main
License
+ Title
+ Description
Обзор пользователей
Обзор задач
@@ -534,6 +553,9 @@
Если вам нравится GitNex, вы можете поставить ему палец вверх
App version, build, user instance version
Syntax color, indentation
+ Backup and restore accounts, settings and more
+ Backup accounts, settings, notes and more
+ Restore accounts, settings, notes and more
Архивировано
Этот репозиторий находится в архиве. Вы можете просматривать файлы, но не можете отправлять или открывать проблемы/запросы на слияние.
Учётная запись успешно удалена
diff --git a/app/src/main/res/values-si-rLK/strings.xml b/app/src/main/res/values-si-rLK/strings.xml
index 5f28f63b..ce574dd5 100644
--- a/app/src/main/res/values-si-rLK/strings.xml
+++ b/app/src/main/res/values-si-rLK/strings.xml
@@ -124,7 +124,6 @@
\@%1$sවිසින් ප්රකාශනය කරන ලදී
නිකුතු සටහන් ප්රකාශකයා විසින් සපයනු නොලැබේ.
සිරැසිය
- සවිස්තරය
ගෙවිය යුතු දිනය
සන්ධිස්ථානයේ මාතෘකාව හිස්ය
සන්ධිස්ථානයේ විස්තරය උපරිම අක්ෂර 255 සීමාව ඉක්මවයි
@@ -139,7 +138,6 @@
නම්පත් තෝරාගන්න
සිරැසිය
පැවරුණු අය
- සවිස්තරය
ගෙවිය යුතු දිනය
සන්ධිස්ථානය
නම්පත්
@@ -201,6 +199,15 @@
Tabs Animation
Fade Out
Zoom Out
+ Backup
+ Restore
+ The backup was successfully created
+ An error occurred while creating a data backup
+ This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nPlease note this action will overwrite the current database data. Proceed with caution.\n\nClick Restore to start the process.
+ An error occurred while restoring from the backup file.
+ Restore from Backup
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nClick Restore to start the process.
තවත් දත්ත නොමැත
නව ලේබලය
@@ -245,7 +252,6 @@
කණ්ඩායමේ නම
- සවිස්තරය
අවසරය
ප්රවේශය පාලනය
සාමාජිකයින්ට කණ්ඩායම් ගබඩාවන් බැලීමට සහ ක්ලෝන කිරීමට හැකිය
@@ -276,6 +282,9 @@
අනුගාමිකයින්
අනුගමනය
+ Edit Profile
+ Hide Activity from profile page
+ Hide Email
Emails
@@ -286,6 +295,14 @@
ඊමේල් ලිපිනය දැනටමත් භාවිතයේ ඇත
ප්රාථමික
SSH Keys
+ This action will permanently delete email %s from your account.
+ Email deleted successfully
+ Add SSH Key
+ Read-only Access
+ Read-write Access
+ SSH Key
+ New SSH key added successfully
+ Invalid SSH key or SSH key already exists
ලේබල් එකතු කරන්න / ඉවත් කරන්න
@@ -432,6 +449,8 @@
None
main
License
+ Title
+ Description
පරිශීලකයන් ගවේෂණය කරන්න
ගැටළු ගවේෂණය කරන්න
@@ -534,6 +553,9 @@
ඔබ GitNex වලට කැමති නම් ඔබට එය thumbs up ලබා දිය හැක
App version, build, user instance version
Syntax color, indentation
+ Backup and restore accounts, settings and more
+ Backup accounts, settings, notes and more
+ Restore accounts, settings, notes and more
සංරක්ෂණය කර ඇත
මෙම රෙපෝව සංරක්ෂණය කර ඇත. ඔබට ගොනු බැලිය හැක, නමුත් ගැටළු/අදින්න-ඉල්ලීම් තල්ලු කිරීමට හෝ විවෘත කිරීමට නොහැක.
ගිණුම සාර්ථකව මකා ඇත
diff --git a/app/src/main/res/values-sk-rSK/strings.xml b/app/src/main/res/values-sk-rSK/strings.xml
index 6756f3e7..4a73d860 100644
--- a/app/src/main/res/values-sk-rSK/strings.xml
+++ b/app/src/main/res/values-sk-rSK/strings.xml
@@ -124,7 +124,6 @@
Published by @%1$s
Release notes are not provided by the publisher.
Title
- Description
Due Date
Milestone title is empty
Milestone description exceeds the max 255 characters limit
@@ -139,7 +138,6 @@
Select Labels
Title
Assignees
- Description
Due Date
Milestone
Labels
@@ -201,6 +199,15 @@
Tabs Animation
Fade Out
Zoom Out
+ Backup
+ Restore
+ The backup was successfully created
+ An error occurred while creating a data backup
+ This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nPlease note this action will overwrite the current database data. Proceed with caution.\n\nClick Restore to start the process.
+ An error occurred while restoring from the backup file.
+ Restore from Backup
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nClick Restore to start the process.
No more data available
New Label
@@ -245,7 +252,6 @@
Názov tímu
- Popis
Povolenia
Kontrola prístupu
Členovia môžu prezerať a klonovať tímové repozitáre
@@ -276,6 +282,9 @@
Followers
Following
+ Edit Profile
+ Hide Activity from profile page
+ Hide Email
Emails
@@ -286,6 +295,14 @@
Email address is already in use
Primary
SSH Keys
+ This action will permanently delete email %s from your account.
+ Email deleted successfully
+ Add SSH Key
+ Read-only Access
+ Read-write Access
+ SSH Key
+ New SSH key added successfully
+ Invalid SSH key or SSH key already exists
Add / Remove Labels
@@ -432,6 +449,8 @@
None
main
License
+ Title
+ Description
Explore users
Explore issues
@@ -534,6 +553,9 @@
If you like GitNex you can give it a thumbs up
App version, build, user instance version
Syntax color, indentation
+ Backup and restore accounts, settings and more
+ Backup accounts, settings, notes and more
+ Restore accounts, settings, notes and more
Archived
This repo is archived. You can view files, but cannot push or open issues/pull-requests.
Account deleted successfully
diff --git a/app/src/main/res/values-sr-rRS/strings.xml b/app/src/main/res/values-sr-rRS/strings.xml
index 3bcc8f38..ac10808c 100644
--- a/app/src/main/res/values-sr-rRS/strings.xml
+++ b/app/src/main/res/values-sr-rRS/strings.xml
@@ -124,7 +124,6 @@
Published by @%1$s
Release notes are not provided by the publisher.
Наслов
- Опис
Рок
Назив фазе је обавезан
Опис је дужи од максималних 255 карактера
@@ -139,7 +138,6 @@
Одабери ознаке
Наслов
Задужени
- Опис
Рок
Фаза
Ознаке
@@ -201,6 +199,15 @@
Tabs Animation
Fade Out
Zoom Out
+ Backup
+ Restore
+ The backup was successfully created
+ An error occurred while creating a data backup
+ This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nPlease note this action will overwrite the current database data. Proceed with caution.\n\nClick Restore to start the process.
+ An error occurred while restoring from the backup file.
+ Restore from Backup
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nClick Restore to start the process.
Нема више података
Нова ознака
@@ -245,7 +252,6 @@
Назив тима
- Опис
Право
Контрола приступа
Чланови могу да виде и клонирају тимске репозиторијуме
@@ -276,6 +282,9 @@
Прате ме
Пратим
+ Edit Profile
+ Hide Activity from profile page
+ Hide Email
Emails
@@ -286,6 +295,14 @@
Неко већ користи ову имејл-адресу
Главна адреса
SSH Keys
+ This action will permanently delete email %s from your account.
+ Email deleted successfully
+ Add SSH Key
+ Read-only Access
+ Read-write Access
+ SSH Key
+ New SSH key added successfully
+ Invalid SSH key or SSH key already exists
Додај или уклони ознаку
@@ -432,6 +449,8 @@
None
main
License
+ Title
+ Description
Explore users
Explore issues
@@ -534,6 +553,9 @@
If you like GitNex you can give it a thumbs up
App version, build, user instance version
Syntax color, indentation
+ Backup and restore accounts, settings and more
+ Backup accounts, settings, notes and more
+ Restore accounts, settings, notes and more
Archived
This repo is archived. You can view files, but cannot push or open issues/pull-requests.
Account deleted successfully
diff --git a/app/src/main/res/values-tr-rTR/strings.xml b/app/src/main/res/values-tr-rTR/strings.xml
index 2cf306b5..8e09ea01 100644
--- a/app/src/main/res/values-tr-rTR/strings.xml
+++ b/app/src/main/res/values-tr-rTR/strings.xml
@@ -124,7 +124,6 @@
\@%1$s tarafından yayınlandı
Release notes are not provided by the publisher.
Başlık
- Açıklama
Bitiş Tarihi
Kilometre taşı başlığı boş
Kilometre taşı açıklaması 255 karakter limitini aşıyor
@@ -139,7 +138,6 @@
Etiket Seç
Başlık
Atananlar
- Açıklama
Bitiş Tarihi
Kilometre Taşı
Etiketler
@@ -201,6 +199,15 @@
Tabs Animation
Fade Out
Zoom Out
+ Backup
+ Restore
+ The backup was successfully created
+ An error occurred while creating a data backup
+ This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nPlease note this action will overwrite the current database data. Proceed with caution.\n\nClick Restore to start the process.
+ An error occurred while restoring from the backup file.
+ Restore from Backup
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nClick Restore to start the process.
Daha fazla veri yok
Yeni Etiket
@@ -245,7 +252,6 @@
Takım Adı
- Açıklama
İzin
Erişim Kontrolleri
Üyeler takım depolarını görüntüleyebilir ve klonlayabilir
@@ -276,6 +282,9 @@
Takipçiler
Takip Edilenler
+ Edit Profile
+ Hide Activity from profile page
+ Hide Email
Emails
@@ -286,6 +295,14 @@
E-posta adresi zaten kullanılıyor
Birincil
SSH Keys
+ This action will permanently delete email %s from your account.
+ Email deleted successfully
+ Add SSH Key
+ Read-only Access
+ Read-write Access
+ SSH Key
+ New SSH key added successfully
+ Invalid SSH key or SSH key already exists
Etiket Ekle/Kaldır
@@ -432,6 +449,8 @@
None
main
License
+ Title
+ Description
Kullanıcıları keşfet
Konuları keşfet
@@ -534,6 +553,9 @@
If you like GitNex you can give it a thumbs up
App version, build, user instance version
Syntax color, indentation
+ Backup and restore accounts, settings and more
+ Backup accounts, settings, notes and more
+ Restore accounts, settings, notes and more
Archived
Bu depo arşivlendi. Dosyaları görüntüleyebilir ama konu/değişiklik isteği açamaz veya paylaşamazsınız.
Account deleted successfully
diff --git a/app/src/main/res/values-uk-rUA/strings.xml b/app/src/main/res/values-uk-rUA/strings.xml
index 8ce46fe9..2d97f140 100644
--- a/app/src/main/res/values-uk-rUA/strings.xml
+++ b/app/src/main/res/values-uk-rUA/strings.xml
@@ -124,7 +124,6 @@
Опубліковано @%1$s
Release notes are not provided by the publisher.
Назва
- Опис
Термін виконання
Назва етапу порожня
Довжина опису етапу перевищує 255 символів
@@ -139,7 +138,6 @@
Оберіть мітки
Назва
Відповідальні
- Опис
Термін виконання
Етап
Мітки
@@ -201,6 +199,15 @@
Tabs Animation
Fade Out
Zoom Out
+ Backup
+ Restore
+ The backup was successfully created
+ An error occurred while creating a data backup
+ This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nPlease note this action will overwrite the current database data. Proceed with caution.\n\nClick Restore to start the process.
+ An error occurred while restoring from the backup file.
+ Restore from Backup
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nClick Restore to start the process.
Даних більше немає
Створити мітку
@@ -245,7 +252,6 @@
Назва команди
- Опис
Дозвіл
Контроль доступу
Учасники можуть переглядати та клонувати репозиторії команди
@@ -276,6 +282,9 @@
Читачі
Читає
+ Edit Profile
+ Hide Activity from profile page
+ Hide Email
Emails
@@ -286,6 +295,14 @@
Адреса Email вже використовується
Основна
SSH Keys
+ This action will permanently delete email %s from your account.
+ Email deleted successfully
+ Add SSH Key
+ Read-only Access
+ Read-write Access
+ SSH Key
+ New SSH key added successfully
+ Invalid SSH key or SSH key already exists
Додати / Видалити мітки
@@ -432,6 +449,8 @@
None
main
License
+ Title
+ Description
Explore users
Explore issues
@@ -534,6 +553,9 @@
If you like GitNex you can give it a thumbs up
App version, build, user instance version
Syntax color, indentation
+ Backup and restore accounts, settings and more
+ Backup accounts, settings, notes and more
+ Restore accounts, settings, notes and more
Архівовано
This repo is archived. You can view files, but cannot push or open issues/pull-requests.
Account deleted successfully
diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml
index fcc08859..2b5078af 100644
--- a/app/src/main/res/values-zh-rCN/strings.xml
+++ b/app/src/main/res/values-zh-rCN/strings.xml
@@ -46,7 +46,7 @@
仓库描述
私有
所有者
- Issue Labels
+ 问题标记
设置仓库为模板仓库
组织名称
组织描述
@@ -124,7 +124,6 @@
由 @%1$s 发布
发布者没有提供发行日志
标题
- 描述
截止日期
里程碑标题为空
里程碑描述超过最大255个字符限制
@@ -139,7 +138,6 @@
选择标签
标题
指派人
- 说明
到期日
里程碑
标签
@@ -201,6 +199,15 @@
标签页动画
淡出
缩小
+ 备份
+ 恢复
+ 已成功创建备份
+ 创建数据备份时发生错误
+ 此操作将备份与存储库相关的帐户、设置、草稿、注释和数据。\n\n单击 备份 按钮下载备份文件。
+ 您即将从 GitNex 生成的备份文件还原。这将恢复与存储库相关的用户帐户、设置、草稿、注释和数据。\n\n请注意,此操作将覆盖当前数据库数据。请谨慎操作。\n\n点击 恢复 按钮执行该操作。
+ 从备份文件恢复时发生错误。
+ 从备份中恢复
+ 您即将从 GitNex 生成的备份文件还原。这将恢复与存储库相关的用户帐户、设置、草稿、注释和数据。\n\n点击 恢复 按钮执行该操作。
没有更多可用数据
创建标签
@@ -245,7 +252,6 @@
团队名称
- 说明
权限
访问控制
成员可以查看并克隆团队仓库
@@ -276,6 +282,9 @@
关注者
正在关注
+ 编辑简介
+ 从简介页面隐藏活动
+ 隐藏电子邮箱地址
电子邮件
@@ -286,6 +295,14 @@
电子邮件地址已被使用
主要
SSH 密钥
+ 此操作将永久删除您帐户中的电子邮箱 %s。
+ 成功删除该电子邮箱地址
+ 添加SSH密钥
+ 只读权限
+ 读/写权限
+ SSH 密钥
+ 新 SSH 密钥添加成功
+ 无效的 SSH 密钥或该 SSH 密钥已经存在
添加/删除标签
@@ -430,8 +447,10 @@
重置
测试
无
- main
+ 主分支
许可证
+ 标题
+ 描述
探索用户
探索问题
@@ -445,7 +464,7 @@
检测到新的 Gitea 版本!请更新 GitNex!
未检测到Gitea!
不支持的 Gitea 版本
- Basic Auth
+ 基本认证
令牌可能已失效,请检查后重试
令牌是必需的。
已删除分叉
@@ -534,6 +553,9 @@
如果你喜欢GitNex,你可以给它点赞
应用程序版本、构建、用户实例版本
语法高亮,缩进
+ 备份并还原帐户、设置等
+ 备份帐户,设置,注释和更多
+ 还原帐户、设置、注释等
已存档
此代码库已存档。您可以查看文件,但不能推送或打开issues/合并请求。
帐户删除成功
@@ -749,9 +771,9 @@
转移仓库 %1$s 到
建立分支 %1$s 于
pushed to %1$s at
- opened issue
- commented on issue
- closed issue
+ 打开的问题
+ 已评论问题
+ 已关闭问题
重新开启的工单
已创建的合并请求
已关闭的合并请求
@@ -759,7 +781,7 @@
已合并的合并请求
已通过
建议更改
- commented on pull request
+ 已评论合并请求
自动合并的合并请求
deleted branch %1$s at
推送标签 %1$s 到
@@ -768,7 +790,7 @@
synced commits to %1$s at
synced new reference %1$s to
synced and deleted reference %1$s at
- Attachment
- Attachments
+ 附件
+ 附件
An issue was created but cannot process attachments at this time. Check the server logs for more details.
diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml
index a0fd1f94..f8da4285 100644
--- a/app/src/main/res/values-zh-rTW/strings.xml
+++ b/app/src/main/res/values-zh-rTW/strings.xml
@@ -13,9 +13,9 @@
Instance Administration
我的議題
最常瀏覽的倉儲
- Notes
+ 備註
帳號設定
- Watched Repositories
+ 已看過的倉儲
新增倉儲
@@ -40,44 +40,44 @@
Demo repo
Demo description
Demo organization
- Create
+ 建立
更新
倉儲名稱
倉儲描述
- Private
- Owner
+ 不公開
+ 擁有者
議題標籤
- Make repository a template
+ 建立倉儲爲模板
組織名稱
- Organization Description
+ 組織描述
%1$s - %2$s
使用者名稱
密碼
登入
執行個體網址
- Open Navigation Drawer
- Close Navigation Drawer
- Protocol
- 1- Choose the correct protocol(https or http). \n2- Enter instance url e.g: try.gitea.io. \n3- If you have enabled 2FA for your account, enter the code in the OTP Code field. \n4- For HTTP basic auth use USERNAME@DOMAIN.COM in the URL field.
- Couldn\'t connect to host. Please check your URL or port for any errors
- It is not recommended to use HTTP protocol unless you are testing on local network
+ 開啓側邊導航選單
+ 關閉側邊導航選單
+ 協定
+ 1- 選擇正確的協定 (https 或 http)。 \n2- 輸入實體 URL e.g.: try.gitea.io 。\n 3- 如果你已經爲你的帳號啓用 2FA,輸入以下代碼到 OPT 代碼欄位。\n4- 對於 HTTP 基本驗證,請在 URL 欄位使用 USERNAME@DOMAIN.COM。
+ 無法連線到主機,請確認你的 URL 或埠號是否存在任何錯誤。
+ 除非你正在測試或使用區域網路,否則不建議使用 HTTP 協定。
Malformed JSON was received. Server response was not successful
- Instance URL is required
- Username is required
- Password is required
- Protocol is required
- Enter URL without http or https. Example: codeberg.org
- Cannot access network, please check your Internet connection
- Repository name is empty
- Repository name is not valid. [a–z A–Z 0–9 – _]
- Repository name is reserved
- Repository name contains reserved keywords
- Repository description exceeds the max 255 characters limit
- Repository created successfully
+ 實體 URL 爲必填欄位
+ 使用者名稱爲必填欄位
+ 密碼爲必填欄位
+ 協定爲必填欄位
+ 輸入 URL,不包含 http 或 https。例如: codeberg.org
+ 無法存取網路,請確認你的網際網路連線。
+ 倉儲名稱爲空
+ 倉儲名稱無效。[a–z A–Z 0–9 – _]
+ 倉儲名稱已被保留
+ 倉儲名稱包含已保留關鍵字
+ 倉儲描述超過最多 255 個字元限制
+ 成功建立倉儲
Repository of this name already exists under selected Owner
- Select owner for the repository
- The default branch must not be empty
- Organization name is empty
+ 選擇倉儲擁有者
+ 預設分支不能爲空
+ 組織名稱爲空
Organization name is not valid, [a–z A–Z 0–9 – _]
Organization description exceeds the max 255 characters limit
Organization created successfully
@@ -90,18 +90,18 @@
Org
Repo
Pri
- Remove
+ 移除
Instance has returned an error. Code %d
- Details
- Files
- Milestones
+ 詳細資料
+ 檔案
+ 里程碑
Releases
- Branches
- Collaborators
+ 分支
+ 協作者
Pull Requests
Pull Request
Size
- Default Branch
+ 預設分支
SSH URL
Clone URL
Repo URL
@@ -117,77 +117,75 @@
Comment
Please write your comment
Comment posted
- This function will be removed in the future
+ 這個函式將於未來移除
Image
Commit author: %1$s
- Downloads
+ 下載
Published by @%1$s
- Release notes are not provided by the publisher.
- Title
- Description
- Due Date
- Milestone title is empty
- Milestone description exceeds the max 255 characters limit
- Milestone created successfully
- Please choose due date
- No due date
- No description
- %1$d Open
- %1$d Closed
- Select Milestone
- Select Assignees
- Select Labels
+ 發行備註未由發行者提供
+ 標題
+ 截止日期
+ 里程碑標題爲空
+ 里程碑描述超過最多 255 個字元限制
+ 成功建立里程碑
+ 請選擇截止日期
+ 無截止日期
+ 無描述
+ %1$d 開放中
+ %1$d 已關閉
+ 選擇里程碑
+ 選擇負責人
+ 選擇標籤
Title
- Assignees
- Description
- Due Date
- Milestone
- Labels
- Issue title is empty
- Issue description is empty
- New issue created successfully
- No milestone
- No assignees found
+ 負責人
+ 截止日期
+ 里程碑
+ 標籤
+ 議題標題爲空
+ 議題描述爲空
+ 成功建立新議題
+ 無里程碑
+ 找不到負責人
- Translation
- System
- Security
+ 翻譯
+ 系統
+ 安全性
Delete Trusted Certificates
Delete Trusted Certificates?
Are you sure to delete any manually trusted certificate or hostname? \n\nYou will also be logged out.
Settings saved
- Language
- English
- Appearance
- Choose Language
+ 語言
+ 英文
+ 外觀
+ 選擇語言
Light Theme Switch Time
Dark Theme Switch Time
- Choose Time Format
- Translate GitNex via Crowdin
- Code Block Color
- Code Block Color Selector
- Home Screen
- My Repositories
- Select Home Screen
- Font
- Choose Font
- Select App Theme
- Theme
+ 選擇時間格式
+ 從 Crowdin 翻譯 GitNex
+ 程式碼區塊顏色
+ 程式碼區塊顏色選擇器
+ 主畫面
+ 我的倉儲
+ 選擇主畫面
+ 字體
+ 選擇字體
+ 選擇應用程式主題
+ 主題
Counter Badges
- Source Code Theme
- Data Cache Size
- Data Cache Size
- Images Cache Size
- Images Cache Size
- Clear Cache
- Clear Cache?
+ 原始碼主題
+ 資料快取大小
+ 資料快取大小
+ 圖片快取大小
+ 圖片快取大小
+ 清除快取
+ 清除快取?
This will delete all the cache data including files and images.\n\nProceed with deletion?
- Drafts
- Comments draft
- Enable Drafts Deletion
- Delete comment draft when comment is posted
- General
- Home screen, drafts, crash reports
+ 草稿
+ 留言草稿
+ 啓用草稿刪除
+ 當留言發佈時,刪除留言草稿
+ 一般
+ 主畫面,草稿,崩潰報告
Default Link Handler
Choose what screen should be loaded if the app cannot handle external links. It will redirect you automatically.
Select Default Link Handler Screen
@@ -195,48 +193,57 @@
Labels With Text Support
Enabling this will show labels with text in issues and pr lists, default are color dots
Syntax Highlighting Color
- Indentation
+ 縮排
Tabs Width
- System Default Font
- Tabs Animation
- Fade Out
+ 系統預設字體
+ 分頁動畫
+ 淡出
Zoom Out
+ Backup
+ Restore
+ The backup was successfully created
+ An error occurred while creating a data backup
+ This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nPlease note this action will overwrite the current database data. Proceed with caution.\n\nClick Restore to start the process.
+ An error occurred while restoring from the backup file.
+ Restore from Backup
+ You are about to restore from a GitNex-generated backup file. This will restore user accounts, settings, drafts, notes, and data related to repositories.\n\nClick Restore to start the process.
No more data available
- New Label
- Repo Menu
- Label Name
- Label Color
- Label name is empty
- Label name is not valid
- Label created
- Label updated
- Desc
- Label deleted
- Select a branch for release
+ 新增標籤
+ 倉儲主選單
+ 標籤名稱
+ 標籤顏色
+ 標籤名稱爲空
+ 標籤名稱無效
+ 標籤已建立
+ 標籤已更新
+ 降冪
+ 標籤已刪除
+ 選擇分支以發行
Authorization Error
It seems that the Access Token is revoked OR your are not allowed to see these contents.\n\nIn case of revoked Token, please logout and login again
Do you really want to delete this label?
- Teams
- Members
- Team name
+ 團隊
+ 成員
+ 團隊名稱
Team desc
- Permissions
+ 權限
• Members of this team do not have any permissions.
• Members of this team can view team repositories.
• Members of this team can view and push to team repositories.
• Members of this team can push to and from team repositories and add collaborators.
• Members of this team have owner permissions.
- show all
- Org members
- Organization team members
- Remove %s
- Add %s
- Do you want to add this user to the team?
- Do you want to remove this user from the team?
- Member added to the team successfully
- Member removed from the team successfully
+ 顯示全部
+ 組織成員
+ 組織團隊成員
+ 移除 %s
+ 新增 %s
+ 是否將該成員到團隊中?
+ 是否將該成員從團隊移除?
+ 成功將成員新增至團隊中
+ 成功將成員從團隊移除
Repository added to the team successfully
Repository removed from the team successfully
Add repository %1$s to organization %2$s team %3$s
@@ -244,14 +251,13 @@
Add / Remove Member
- Team Name
- Description
- Permission
- Access Controls
- Members can view and clone team repositories
- Members can read and push to team repositories
- Members can pull and push to team repositories and add collaborators to them
- Please enter team name
+ 團隊名稱
+ 權限
+ 存取控制
+ 成員可以觀看和複製團隊倉儲
+ 成員可以讀取和推送團隊倉儲
+ 成員可以拉取和推送到團隊倉儲以及新增協作者
+ 請輸入團隊名稱
Team name should contain only alphanumeric, dash (-), underscore (_) and dot (.) characters
Please select permission
Team description have illegal characters
@@ -276,67 +282,78 @@
Followers
Following
+ Edit Profile
+ Hide Activity from profile page
+ Hide Email
- Emails
- Email Address
- New email added successfully
+ 電子郵件
+ 電郵地址
+ 成功新增電子郵件
Email address is empty
Email address is not valid
Email address is already in use
Primary
SSH Keys
+ This action will permanently delete email %s from your account.
+ Email deleted successfully
+ Add SSH Key
+ Read-only Access
+ Read-write Access
+ SSH Key
+ New SSH key added successfully
+ Invalid SSH key or SSH key already exists
Add / Remove Labels
Labels updated
Close Issue
- Edit Issue
- Reopen Issue
- Issue closed
- Issue reopened
- Add / Remove Assignees
- Assignees updated
- Subscribe
- Unsubscribe
+ 編輯議題
+ 重啓議題
+ 議題已關閉
+ 議題已重新開啓
+ 新增 / 移除負責人
+ 負責人更新
+ 訂閱
+ 取消訂閱
Repository Meta
- New User
- System Users
- Admin
+ 建立使用者
+ 系統使用者
+ 管理員
Cron Tasks
- Schedule
- Next Run
- Last Run
+ 排程
+ 下次執行
+ 上次執行
Executions
- Task %1$s is initiated successfully
+ 任務 %1$s 已成功初始化
- Full Name
- Email
- Username
- Password
- Invalid Full Name
- Invalid Username
- Invalid Email
- New user added successfully
- User already exists
+ 全名
+ 電子郵件
+ 使用者名稱
+ 密碼
+ 全名無效
+ 使用者名稱無效
+ 電子郵件無效
+ 成功新增使用者
+ 使用者已存在
- Edit Issue #%1$s
- Issue updated
+ 編輯議題 #%1$s
+ 議題已更新
- New Release
- Tag Name
- Title
- Content
+ 發行新版本
+ 標籤名稱
+ 標題
+ 內容
Mark as Pre-Release
- Select Branch
- Draft
- Tag name is empty
- Title is empty
+ 選擇分支
+ 草稿
+ 標籤名稱爲空
+ 標題爲空
New release created
Do you really want to delete this release?
Release deleted
@@ -384,34 +401,34 @@
OK
Done
Cancel
- Something went wrong, please try again
+ 發生錯誤,請重試
This request needs higher version than the one installed. Please upgrade your instance to the latest version.
- 🌟 Nothing in here 🌟
- Add
- Remove
- You are not authorized to perform this action.
- Menu
- Edit
- Delete
- Copy
+ 🌟 這裡空空如也 🌟
+ 新增
+ 移除
+ 您並未授權執行此操作。
+ 選單
+ 編輯
+ 刪除
+ 複製
Quote Reply
- edited
- Save
- Website
- Location
- Max 255 characters
- All fields are required
- Continue
- Token
- View in Browser
- Open
- Closed
- We cannot reach the server at the moment, please check your server status and try again
- Copy URL
- Hold on ☕
- File
- Issue
- Label
+ 已編輯
+ 儲存
+ 網站
+ 位置
+ 最多可輸入 255 個字元
+ 所有欄位爲必填
+ 繼續
+ 權杖
+ 於瀏覽器中檢視
+ 已開啓
+ 已關閉
+ 我們現在無法連接到伺服器,請確認您的伺服器狀態並重新嘗試。
+ 複製 URL
+ 稍等 ☕
+ 檔案
+ 議題
+ 標籤
Release
Pull Request
Collaborator
@@ -432,6 +449,8 @@
None
main
License
+ Title
+ Description
Explore users
Explore issues
@@ -485,12 +504,12 @@
File is modified by branch %1$s
Size
Share Issue
- Share Repository
- Create Repository
- Commits
+ 分享倉儲
+ 建立倉儲
+ 提交
%1$s authored and %2$s committed %3$s]]>
%1$s committed %2$s]]>
- View Commits
+ 檢視提交
Certificate Verification
Accept Unknown Certificate?
@@ -499,41 +518,44 @@
Accept Mismatching Server Name?
Server could not authenticate as \"%s\". The certificate is only valid for:
Do you want to connect anyway?
- Certificate details:
+ 憑證細節:
Trust
Abort
- Subscribed successfully
- You have already subscribed
- Subscription failed
- Unsubscribed successfully
- You have already Unsubscribed
- Un-Subscription failed
- Close Milestone
- Open Milestone
- Milestone status updated successfully
- Crash Reports
- Enable Crash Reports
- GitNex has stopped :(
- Crash reports
+ 成功訂閱
+ 您已訂閱
+ 訂閱失敗
+ 成功取消訂閱
+ 您已取消訂閱
+ 取消訂閱失敗
+ 關閉里程碑
+ 開啓里程碑
+ 成功更新里程碑狀態
+ 當機回報
+ 啓用當機回報
+ GitNex 已停止 :(
+ 當機回報
It is encouraged to open an issue at the project repository with how to reproduce this bug. It is easier to debug and fix the problem that way.\n\nTap the OK button to send the crash report by email instead. Additional content could be added in the email.\nThank you!
- Please sign in again
+ 請重新登入
Due to some major changes regarding the internal functioning of the app, we require you to login again. These changes allow us to make the app more flexible in the future.\n\nThank you for your patience and sorry for the inconvenience.
- Delete All Drafts
- No drafts found
- Drafts deleted successfully
- Draft deleted successfully
- This will delete all the drafts for this account. \n\nProceed with deletion?
- Draft was saved automatically.
- Counter is reset successfully
- Do you want to reset counter for repository %s?
+ 刪除所有草稿
+ 找不到草稿
+ 成功刪除草稿
+ 成功刪除草稿
+ 將刪除此帳號的所有草稿。\n\n 確定繼續刪除?
+ 草稿已自動保存
+ 成功重設計數器
+ 您想爲此倉儲 %s 重設計數器嗎?
This will reset all the counters for this account repositories.
Themes, fonts, badges, translation
Biometric authentication, SSL certificates, cache
Languages
- Crash reports
+ 當機回報
如果你也喜歡 GitNext,歡迎五星好評!
App version, build, user instance version
- Syntax color, indentation
+ 語法顏色,縮排
+ 備份與還原帳號,設定以及更多
+ Backup accounts, settings, notes and more
+ Restore accounts, settings, notes and more
Archived
This repo is archived. You can view files, but cannot push or open issues/pull-requests.
Account deleted successfully
@@ -575,7 +597,7 @@
Unread
Repository Settings
Edit Properties
- Delete Repository
+ 刪除倉儲
Be careful, this operation CANNOT be undone!
Set as Template
Enable Issues
@@ -683,16 +705,16 @@
Open in Code Editor
- New Note
+ 新增備註
Edit Note
- Start taking your notes here
+ 開始撰寫你的筆記吧
Created %s
Updated %s
Do you really want to delete this note?
- Notes deleted successfully
- This will delete all of your notes. This action cannot be undone.
+ 將刪除你的所有備註,該操作無法復原。
commit
commit
diff --git a/app/src/main/res/xml/changelog.xml b/app/src/main/res/xml/changelog.xml
index 5bfb0c2e..f23e2233 100644
--- a/app/src/main/res/xml/changelog.xml
+++ b/app/src/main/res/xml/changelog.xml
@@ -1,8 +1,25 @@
-
- Under development
+
+ New: Restore/import app data
+ New: Backup/export app data
+ New: Delete email from account
+ New: Update profile settings
+ New: Add SSH key to account
+ Improvement: Open specific URL in deep links
+ Improvement: Show open in browser with other buttons in deep links
+ Improvement: Show pinned messages in timeline
+ Improvement: Hide Comment button if issue is locked
+ Improvement: New languages and translation updates
+ Bugfix: Fix crash on dynamic snackbar colors for older Android versions
+ Bugfix: Fix missing text after links in issue/pr
+ Bugfix: Fix emoji parsing in code blocks in issue/pr
+ Bugfix: Fix crash on null objects in timeline from API
+ Bugfix: Fix not seeing labels for repo admin when code option is disabled
+ Bugfix: Fix Task list in Markdown
+ Bugfix: Fix other issues related to Markdown
+ Bugfix: Fix crash on images with no path
diff --git a/fastlane/metadata/android/en-US/changelogs/540.txt b/fastlane/metadata/android/en-US/changelogs/540.txt
new file mode 100644
index 00000000..f2ffc1f2
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/540.txt
@@ -0,0 +1,19 @@
+5.4.0
+
+🎉 Features 🎉
+- Restore/import app data
+- Backup/export app data
+- Delete email from account
+- Update profile settings
+- Add SSH key to account
+
+🚀 Improvements 🚀
+- Open specific URL in deep links
+- Show open in browser with other buttons in deep links
+- Show pinned messages in timeline
+- Hide Comment button if issue is locked
+- New languages and translation updates
+
+Release Notes: https://codeberg.org/gitnex/GitNex/releases
+
+Release Posts: https://najigram.com/category/gitnex
\ No newline at end of file