Prepare release 5.4.0 and few fixes including translation updates (#1348)

Prepare release 5.4.0 and few fixes including translation updates

Reviewed-on: https://codeberg.org/gitnex/GitNex/pulls/1348
Co-authored-by: M M Arif <mmarif@swatian.com>
Co-committed-by: M M Arif <mmarif@swatian.com>
This commit is contained in:
M M Arif 2024-04-03 16:09:36 +00:00 committed by M M Arif
parent 026336f189
commit 7ee43cd5e9
26 changed files with 846 additions and 307 deletions

View File

@ -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

View File

@ -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 -> {

View File

@ -124,7 +124,6 @@
<string name="releasePublishedBy">نُشِر بواسطة @%1$s</string>
<string name="noReleaseBodyContent">لم توفر ملاحظات الإصدار من قبل الناشر.</string>
<string name="newMilestoneTitle">العنوان</string>
<string name="newMilestoneDescription">الوصف</string>
<string name="newMilestoneDueDate">تاريخ الإكمال</string>
<string name="milestoneNameErrorEmpty">اسم المرحلة فارغ</string>
<string name="milestoneDescError">تجاوز وصف المرحلة عدد الحروف الأقصى 255 حرفاً</string>
@ -139,7 +138,6 @@
<string name="newIssueSelectLabelsListTitle">اِختر الأوسمة</string>
<string name="newIssueTitle">العنوان</string>
<string name="newIssueAssigneesListTitle">الموكل عليهم</string>
<string name="newIssueDescriptionTitle">الوصف</string>
<string name="newIssueDueDateTitle">تاريخ الإكمال</string>
<string name="newIssueMilestoneTitle">المرحلة</string>
<string name="newIssueLabelsTitle">الأوسمة</string>
@ -201,6 +199,15 @@
<string name="fragmentTabsAnimationHeader">Tabs Animation</string>
<string name="fadeOut">Fade Out</string>
<string name="zoomOut">Zoom Out</string>
<string name="backup">Backup</string>
<string name="restore">Restore</string>
<string name="backupFileSuccess">The backup was successfully created</string>
<string name="backupFileError">An error occurred while creating a data backup</string>
<string name="backupFilePopupText">This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.</string>
<string name="restoreFilePopupText">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.</string>
<string name="restoreError">An error occurred while restoring from the backup file.</string>
<string name="restoreFromBackup">Restore from Backup</string>
<string name="restoreFromBackupPopupText">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.</string>
<!-- settings -->
<string name="noMoreData">لا يوجد المزيد من البيانات المتاحة</string>
<string name="createLabel">وسم جديد</string>
@ -245,7 +252,6 @@
<!-- org tabbed layout str -->
<!-- create team -->
<string name="newTeamTitle">اسم الفريق</string>
<string name="newTeamDesc">الوصف</string>
<string name="newTeamPermission">الصلاحيّة</string>
<string name="newTeamAccessControls">صلاحيات الوصول</string>
<string name="newTeamPermissionRead">الأعضاء يستطيعون رؤية ونسخ مستودعات الفريق</string>
@ -276,6 +282,9 @@
<!-- profile section -->
<string name="profileTabFollowers">المتابِعون</string>
<string name="profileTabFollowing">المتابَعون</string>
<string name="editSettings">Edit Profile</string>
<string name="hideActivity">Hide Activity from profile page</string>
<string name="hideEmail">Hide Email</string>
<!-- profile section -->
<!-- account settings -->
<string name="accountEmails">Emails</string>
@ -286,6 +295,14 @@
<string name="emailErrorInUse">عنوان البريد الإلكتروني مستخدم مسبقاً</string>
<string name="emailTypeText">أساسي</string>
<string name="sshKeys">SSH Keys</string>
<string name="deleteEmailPopupText">This action will permanently delete email %s from your account.</string>
<string name="deleteEmailSuccess">Email deleted successfully</string>
<string name="addSSHKey">Add SSH Key</string>
<string name="sshKeyStatusReadOnly">Read-only Access</string>
<string name="sshKeyStatusReadWrite">Read-write Access</string>
<string name="sshKey">SSH Key</string>
<string name="sshKeySuccess">New SSH key added successfully</string>
<string name="sshKeyError">Invalid SSH key or SSH key already exists</string>
<!-- account settings -->
<!-- single issue section -->
<string name="singleIssueEditLabels">إضافة / حذف الأوسمة</string>
@ -432,6 +449,8 @@
<string name="none">None</string>
<string name="main">main</string>
<string name="license">License</string>
<string name="title">Title</string>
<string name="description">Description</string>
<!-- generic copy -->
<string name="exploreUsers">استكشاف المستخدمين</string>
<string name="exploreIssues">استكشاف القضايا</string>
@ -535,6 +554,9 @@
<string name="rateAppHintText">إذا أحببت GitNex يمكنك الإعجاب به</string>
<string name="aboutAppHintText">App version, build, user instance version</string>
<string name="codeEditorHintText">Syntax color, indentation</string>
<string name="backupRestoreHintText">Backup and restore accounts, settings and more</string>
<string name="backupDataHintText">Backup accounts, settings, notes and more</string>
<string name="restoreDataHintText">Restore accounts, settings, notes and more</string>
<string name="archivedRepository">مؤرشف</string>
<string name="archivedRepositoryMessage">المستودع مؤرشف. يمكنك رؤية الملفات لكن لا يمكنك الدفع أو فتح قضية/طلب دمج.</string>
<string name="accountDeletedMessage">حُذف الحساب بنجاح</string>

View File

@ -124,7 +124,6 @@
<string name="releasePublishedBy">Zveřejnil/a @%1$s</string>
<string name="noReleaseBodyContent">Poznámky k verzi nejsou poskytnuty vydavatelem.</string>
<string name="newMilestoneTitle">Název</string>
<string name="newMilestoneDescription">Popis</string>
<string name="newMilestoneDueDate">Splnit do</string>
<string name="milestoneNameErrorEmpty">Název milníku je prázdný</string>
<string name="milestoneDescError">Popis repozitáře překračuje maximální limit 255 znaků</string>
@ -139,7 +138,6 @@
<string name="newIssueSelectLabelsListTitle">Vybrat štítky</string>
<string name="newIssueTitle">Název</string>
<string name="newIssueAssigneesListTitle">Zpracovatelé</string>
<string name="newIssueDescriptionTitle">Popis</string>
<string name="newIssueDueDateTitle">Splnit do</string>
<string name="newIssueMilestoneTitle">Milník</string>
<string name="newIssueLabelsTitle">Štítky</string>
@ -201,6 +199,15 @@
<string name="fragmentTabsAnimationHeader">Tabs Animation</string>
<string name="fadeOut">Fade Out</string>
<string name="zoomOut">Zoom Out</string>
<string name="backup">Backup</string>
<string name="restore">Restore</string>
<string name="backupFileSuccess">The backup was successfully created</string>
<string name="backupFileError">An error occurred while creating a data backup</string>
<string name="backupFilePopupText">This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.</string>
<string name="restoreFilePopupText">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.</string>
<string name="restoreError">An error occurred while restoring from the backup file.</string>
<string name="restoreFromBackup">Restore from Backup</string>
<string name="restoreFromBackupPopupText">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.</string>
<!-- settings -->
<string name="noMoreData">Nejsou k dispozici žádná další data</string>
<string name="createLabel">Nový štítek</string>
@ -245,7 +252,6 @@
<!-- org tabbed layout str -->
<!-- create team -->
<string name="newTeamTitle">Jméno týmu</string>
<string name="newTeamDesc">Popis</string>
<string name="newTeamPermission">Oprávnění</string>
<string name="newTeamAccessControls">Správa přístupů</string>
<string name="newTeamPermissionRead">Členové mohou zobrazit a klonovat repozitáře týmu</string>
@ -276,6 +282,9 @@
<!-- profile section -->
<string name="profileTabFollowers">Sledující</string>
<string name="profileTabFollowing">Sleduje</string>
<string name="editSettings">Edit Profile</string>
<string name="hideActivity">Hide Activity from profile page</string>
<string name="hideEmail">Hide Email</string>
<!-- profile section -->
<!-- account settings -->
<string name="accountEmails">Emails</string>
@ -286,6 +295,14 @@
<string name="emailErrorInUse">E-mailová adresa je již používána</string>
<string name="emailTypeText">Primární</string>
<string name="sshKeys">SSH Keys</string>
<string name="deleteEmailPopupText">This action will permanently delete email %s from your account.</string>
<string name="deleteEmailSuccess">Email deleted successfully</string>
<string name="addSSHKey">Add SSH Key</string>
<string name="sshKeyStatusReadOnly">Read-only Access</string>
<string name="sshKeyStatusReadWrite">Read-write Access</string>
<string name="sshKey">SSH Key</string>
<string name="sshKeySuccess">New SSH key added successfully</string>
<string name="sshKeyError">Invalid SSH key or SSH key already exists</string>
<!-- account settings -->
<!-- single issue section -->
<string name="singleIssueEditLabels">Přidat / Odebrat štítky</string>
@ -432,6 +449,8 @@
<string name="none">None</string>
<string name="main">main</string>
<string name="license">License</string>
<string name="title">Title</string>
<string name="description">Description</string>
<!-- generic copy -->
<string name="exploreUsers">Prozkoumat uživatele</string>
<string name="exploreIssues">Prozkoumat issues</string>
@ -534,6 +553,9 @@
<string name="rateAppHintText">Pokud se vám GitNex líbí, můžete mu dát palec nahoru</string>
<string name="aboutAppHintText">Verze aplikace, sestavení, verze instance uživatele</string>
<string name="codeEditorHintText">Syntax color, indentation</string>
<string name="backupRestoreHintText">Backup and restore accounts, settings and more</string>
<string name="backupDataHintText">Backup accounts, settings, notes and more</string>
<string name="restoreDataHintText">Restore accounts, settings, notes and more</string>
<string name="archivedRepository">Archivováno</string>
<string name="archivedRepositoryMessage">Tento repozitář je archivovaný. Můžete zobrazovat soubory, ale nemůžete pushovat nebo otevírat issues/pull requesty.</string>
<string name="accountDeletedMessage">Účet úspěšně smazán</string>

View File

@ -124,7 +124,6 @@
<string name="releasePublishedBy">Δημοσιεύθηκε από %1$s</string>
<string name="noReleaseBodyContent">Οι σημειώσεις έκδοσης δεν δόθηκαν από τον εκδότη.</string>
<string name="newMilestoneTitle">Τίτλος</string>
<string name="newMilestoneDescription">Περιγραφή</string>
<string name="newMilestoneDueDate">Ημερομηνία λήξης</string>
<string name="milestoneNameErrorEmpty">Ο τίτλος του ορόσημου είναι κενός</string>
<string name="milestoneDescError">Η περιγραφή του ορόσημου ξεπερνά το όριο των 255 χαρακτήρων</string>
@ -139,7 +138,6 @@
<string name="newIssueSelectLabelsListTitle">Επιλογή ετικετών</string>
<string name="newIssueTitle">Τίτλος</string>
<string name="newIssueAssigneesListTitle">Υπεύθυνοι</string>
<string name="newIssueDescriptionTitle">Περιγραφή</string>
<string name="newIssueDueDateTitle">Ημερομηνία λήξης</string>
<string name="newIssueMilestoneTitle">Ορόσημο</string>
<string name="newIssueLabelsTitle">Ετικέτες</string>
@ -201,6 +199,15 @@
<string name="fragmentTabsAnimationHeader">Tabs Animation</string>
<string name="fadeOut">Fade Out</string>
<string name="zoomOut">Zoom Out</string>
<string name="backup">Backup</string>
<string name="restore">Restore</string>
<string name="backupFileSuccess">The backup was successfully created</string>
<string name="backupFileError">An error occurred while creating a data backup</string>
<string name="backupFilePopupText">This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.</string>
<string name="restoreFilePopupText">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.</string>
<string name="restoreError">An error occurred while restoring from the backup file.</string>
<string name="restoreFromBackup">Restore from Backup</string>
<string name="restoreFromBackupPopupText">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.</string>
<!-- settings -->
<string name="noMoreData">No more data available</string>
<string name="createLabel">New Label</string>
@ -245,7 +252,6 @@
<!-- org tabbed layout str -->
<!-- create team -->
<string name="newTeamTitle">Όνομα Ομάδας</string>
<string name="newTeamDesc">Περιγραφή</string>
<string name="newTeamPermission">Δικαιώματα</string>
<string name="newTeamAccessControls">Έλεγχος Πρόσβασης</string>
<string name="newTeamPermissionRead">Τα μέλη μπορούν να βλέπουν και να κλονοποιούν ομαδικά αποθετήρια</string>
@ -276,6 +282,9 @@
<!-- profile section -->
<string name="profileTabFollowers">Ακόλουθοι</string>
<string name="profileTabFollowing">Ακολουθείτε</string>
<string name="editSettings">Edit Profile</string>
<string name="hideActivity">Hide Activity from profile page</string>
<string name="hideEmail">Hide Email</string>
<!-- profile section -->
<!-- account settings -->
<string name="accountEmails">Emails</string>
@ -286,6 +295,14 @@
<string name="emailErrorInUse">Email address is already in use</string>
<string name="emailTypeText">Primary</string>
<string name="sshKeys">SSH Keys</string>
<string name="deleteEmailPopupText">This action will permanently delete email %s from your account.</string>
<string name="deleteEmailSuccess">Email deleted successfully</string>
<string name="addSSHKey">Add SSH Key</string>
<string name="sshKeyStatusReadOnly">Read-only Access</string>
<string name="sshKeyStatusReadWrite">Read-write Access</string>
<string name="sshKey">SSH Key</string>
<string name="sshKeySuccess">New SSH key added successfully</string>
<string name="sshKeyError">Invalid SSH key or SSH key already exists</string>
<!-- account settings -->
<!-- single issue section -->
<string name="singleIssueEditLabels">Add / Remove Labels</string>
@ -432,6 +449,8 @@
<string name="none">None</string>
<string name="main">main</string>
<string name="license">License</string>
<string name="title">Title</string>
<string name="description">Description</string>
<!-- generic copy -->
<string name="exploreUsers">Explore users</string>
<string name="exploreIssues">Explore issues</string>
@ -534,6 +553,9 @@
<string name="rateAppHintText">If you like GitNex you can give it a thumbs up</string>
<string name="aboutAppHintText">App version, build, user instance version</string>
<string name="codeEditorHintText">Syntax color, indentation</string>
<string name="backupRestoreHintText">Backup and restore accounts, settings and more</string>
<string name="backupDataHintText">Backup accounts, settings, notes and more</string>
<string name="restoreDataHintText">Restore accounts, settings, notes and more</string>
<string name="archivedRepository">Archived</string>
<string name="archivedRepositoryMessage">This repo is archived. You can view files, but cannot push or open issues/pull-requests.</string>
<string name="accountDeletedMessage">Account deleted successfully</string>

View File

@ -124,7 +124,6 @@
<string name="releasePublishedBy">Eldonita de @%1$s</string>
<string name="noReleaseBodyContent">Eldonaj notoj ne estas provizitaj de la eldonisto.</string>
<string name="newMilestoneTitle">Titolo</string>
<string name="newMilestoneDescription">Priskribo</string>
<string name="newMilestoneDueDate">Limdato</string>
<string name="milestoneNameErrorEmpty">Milestone title is empty</string>
<string name="milestoneDescError">Milestone description exceeds the max 255 characters limit</string>
@ -139,7 +138,6 @@
<string name="newIssueSelectLabelsListTitle">Select Labels</string>
<string name="newIssueTitle">Title</string>
<string name="newIssueAssigneesListTitle">Assignees</string>
<string name="newIssueDescriptionTitle">Description</string>
<string name="newIssueDueDateTitle">Due Date</string>
<string name="newIssueMilestoneTitle">Milestone</string>
<string name="newIssueLabelsTitle">Labels</string>
@ -201,6 +199,15 @@
<string name="fragmentTabsAnimationHeader">Tabs Animation</string>
<string name="fadeOut">Fade Out</string>
<string name="zoomOut">Zoom Out</string>
<string name="backup">Backup</string>
<string name="restore">Restore</string>
<string name="backupFileSuccess">The backup was successfully created</string>
<string name="backupFileError">An error occurred while creating a data backup</string>
<string name="backupFilePopupText">This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.</string>
<string name="restoreFilePopupText">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.</string>
<string name="restoreError">An error occurred while restoring from the backup file.</string>
<string name="restoreFromBackup">Restore from Backup</string>
<string name="restoreFromBackupPopupText">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.</string>
<!-- settings -->
<string name="noMoreData">No more data available</string>
<string name="createLabel">New Label</string>
@ -245,7 +252,6 @@
<!-- org tabbed layout str -->
<!-- create team -->
<string name="newTeamTitle">Team Name</string>
<string name="newTeamDesc">Description</string>
<string name="newTeamPermission">Permission</string>
<string name="newTeamAccessControls">Access Controls</string>
<string name="newTeamPermissionRead">Members can view and clone team repositories</string>
@ -276,6 +282,9 @@
<!-- profile section -->
<string name="profileTabFollowers">Followers</string>
<string name="profileTabFollowing">Following</string>
<string name="editSettings">Edit Profile</string>
<string name="hideActivity">Hide Activity from profile page</string>
<string name="hideEmail">Hide Email</string>
<!-- profile section -->
<!-- account settings -->
<string name="accountEmails">Emails</string>
@ -286,6 +295,14 @@
<string name="emailErrorInUse">Email address is already in use</string>
<string name="emailTypeText">Primary</string>
<string name="sshKeys">SSH Keys</string>
<string name="deleteEmailPopupText">This action will permanently delete email %s from your account.</string>
<string name="deleteEmailSuccess">Email deleted successfully</string>
<string name="addSSHKey">Add SSH Key</string>
<string name="sshKeyStatusReadOnly">Read-only Access</string>
<string name="sshKeyStatusReadWrite">Read-write Access</string>
<string name="sshKey">SSH Key</string>
<string name="sshKeySuccess">New SSH key added successfully</string>
<string name="sshKeyError">Invalid SSH key or SSH key already exists</string>
<!-- account settings -->
<!-- single issue section -->
<string name="singleIssueEditLabels">Add / Remove Labels</string>
@ -432,6 +449,8 @@
<string name="none">None</string>
<string name="main">main</string>
<string name="license">License</string>
<string name="title">Title</string>
<string name="description">Description</string>
<!-- generic copy -->
<string name="exploreUsers">Explore users</string>
<string name="exploreIssues">Explore issues</string>
@ -534,6 +553,9 @@
<string name="rateAppHintText">If you like GitNex you can give it a thumbs up</string>
<string name="aboutAppHintText">App version, build, user instance version</string>
<string name="codeEditorHintText">Syntax color, indentation</string>
<string name="backupRestoreHintText">Backup and restore accounts, settings and more</string>
<string name="backupDataHintText">Backup accounts, settings, notes and more</string>
<string name="restoreDataHintText">Restore accounts, settings, notes and more</string>
<string name="archivedRepository">Archived</string>
<string name="archivedRepositoryMessage">This repo is archived. You can view files, but cannot push or open issues/pull-requests.</string>
<string name="accountDeletedMessage">Account deleted successfully</string>

View File

@ -124,7 +124,6 @@
<string name="releasePublishedBy">Publicado por @%1$s</string>
<string name="noReleaseBodyContent">Las notas de la versión no son proporcionadas por el editor.</string>
<string name="newMilestoneTitle">Título</string>
<string name="newMilestoneDescription">Descripción</string>
<string name="newMilestoneDueDate">Fecha final</string>
<string name="milestoneNameErrorEmpty">El título del hito está vacío</string>
<string name="milestoneDescError">La descripción del hito supera el límite de 255 caracteres</string>
@ -139,7 +138,6 @@
<string name="newIssueSelectLabelsListTitle">Selecciona etiquetas</string>
<string name="newIssueTitle">Título</string>
<string name="newIssueAssigneesListTitle">Asignados</string>
<string name="newIssueDescriptionTitle">Descripción</string>
<string name="newIssueDueDateTitle">Fecha final</string>
<string name="newIssueMilestoneTitle">Hito</string>
<string name="newIssueLabelsTitle">Etiquetas</string>
@ -201,6 +199,15 @@
<string name="fragmentTabsAnimationHeader">Animación de las pestañas</string>
<string name="fadeOut">Desvanecer</string>
<string name="zoomOut">Reducir</string>
<string name="backup">Backup</string>
<string name="restore">Restore</string>
<string name="backupFileSuccess">The backup was successfully created</string>
<string name="backupFileError">An error occurred while creating a data backup</string>
<string name="backupFilePopupText">This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.</string>
<string name="restoreFilePopupText">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.</string>
<string name="restoreError">An error occurred while restoring from the backup file.</string>
<string name="restoreFromBackup">Restore from Backup</string>
<string name="restoreFromBackupPopupText">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.</string>
<!-- settings -->
<string name="noMoreData">No hay más datos disponibles</string>
<string name="createLabel">Nueva etiqueta</string>
@ -245,7 +252,6 @@
<!-- org tabbed layout str -->
<!-- create team -->
<string name="newTeamTitle">Nombre del equipo</string>
<string name="newTeamDesc">Descripción</string>
<string name="newTeamPermission">Permiso</string>
<string name="newTeamAccessControls">Controles de acceso</string>
<string name="newTeamPermissionRead">Miembros pueden ver y clonar los repositorios del equipo</string>
@ -276,6 +282,9 @@
<!-- profile section -->
<string name="profileTabFollowers">Seguidores</string>
<string name="profileTabFollowing">Siguiendo</string>
<string name="editSettings">Edit Profile</string>
<string name="hideActivity">Hide Activity from profile page</string>
<string name="hideEmail">Hide Email</string>
<!-- profile section -->
<!-- account settings -->
<string name="accountEmails">Correos electrónicos</string>
@ -286,6 +295,14 @@
<string name="emailErrorInUse">La dirección de correo electrónico ya está en uso</string>
<string name="emailTypeText">Principal</string>
<string name="sshKeys">Claves SSH</string>
<string name="deleteEmailPopupText">This action will permanently delete email %s from your account.</string>
<string name="deleteEmailSuccess">Email deleted successfully</string>
<string name="addSSHKey">Add SSH Key</string>
<string name="sshKeyStatusReadOnly">Read-only Access</string>
<string name="sshKeyStatusReadWrite">Read-write Access</string>
<string name="sshKey">SSH Key</string>
<string name="sshKeySuccess">New SSH key added successfully</string>
<string name="sshKeyError">Invalid SSH key or SSH key already exists</string>
<!-- account settings -->
<!-- single issue section -->
<string name="singleIssueEditLabels">Añadir / Eliminar etiquetas</string>
@ -432,6 +449,8 @@
<string name="none">Ninguno</string>
<string name="main">main</string>
<string name="license">Licencia</string>
<string name="title">Title</string>
<string name="description">Description</string>
<!-- generic copy -->
<string name="exploreUsers">Explorar usuarios</string>
<string name="exploreIssues">Explorar incidencias</string>
@ -534,6 +553,9 @@
<string name="rateAppHintText">Si te gusta GitNex, ¡deja una valoración positiva!</string>
<string name="aboutAppHintText">Versión de la aplicación, build, versión de Gitea</string>
<string name="codeEditorHintText">Color de sintaxis, indentación</string>
<string name="backupRestoreHintText">Backup and restore accounts, settings and more</string>
<string name="backupDataHintText">Backup accounts, settings, notes and more</string>
<string name="restoreDataHintText">Restore accounts, settings, notes and more</string>
<string name="archivedRepository">Archivado</string>
<string name="archivedRepositoryMessage">Este repositorio está archivado. Puedes ver los archivos, pero no puedes hacer push, abrir incidencias o pull requests.</string>
<string name="accountDeletedMessage">Cuenta eliminada con éxito</string>

View File

@ -124,7 +124,6 @@
<string name="releasePublishedBy">منتشر شده توسط @%1$s</string>
<string name="noReleaseBodyContent">Release notes are not provided by the publisher.</string>
<string name="newMilestoneTitle">عنوان</string>
<string name="newMilestoneDescription">توضیحات</string>
<string name="newMilestoneDueDate">تاریخ مقرر</string>
<string name="milestoneNameErrorEmpty">عنوان نقطه عطف خالی است</string>
<string name="milestoneDescError">توضیحات نقطه عطف از سقف 255 کاراکتر بیشتر است</string>
@ -139,7 +138,6 @@
<string name="newIssueSelectLabelsListTitle">برچسب‌ها را انتخاب کنید</string>
<string name="newIssueTitle">عنوان</string>
<string name="newIssueAssigneesListTitle">نمایندگان</string>
<string name="newIssueDescriptionTitle">توضیحات</string>
<string name="newIssueDueDateTitle">تاریخ مقرر</string>
<string name="newIssueMilestoneTitle">نقطه عطف</string>
<string name="newIssueLabelsTitle">برچسب‌ها</string>
@ -201,6 +199,15 @@
<string name="fragmentTabsAnimationHeader">Tabs Animation</string>
<string name="fadeOut">Fade Out</string>
<string name="zoomOut">Zoom Out</string>
<string name="backup">Backup</string>
<string name="restore">Restore</string>
<string name="backupFileSuccess">The backup was successfully created</string>
<string name="backupFileError">An error occurred while creating a data backup</string>
<string name="backupFilePopupText">This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.</string>
<string name="restoreFilePopupText">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.</string>
<string name="restoreError">An error occurred while restoring from the backup file.</string>
<string name="restoreFromBackup">Restore from Backup</string>
<string name="restoreFromBackupPopupText">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.</string>
<!-- settings -->
<string name="noMoreData">اطلاعات بیشتری موجود نیست</string>
<string name="createLabel">برچسب جدید</string>
@ -245,7 +252,6 @@
<!-- org tabbed layout str -->
<!-- create team -->
<string name="newTeamTitle">نام تیم</string>
<string name="newTeamDesc">توضیحات</string>
<string name="newTeamPermission">دسترسی‌‌‌‌‌‌ها</string>
<string name="newTeamAccessControls">کنترل‌ دسترسی</string>
<string name="newTeamPermissionRead">Members can view and clone team repositories</string>
@ -276,6 +282,9 @@
<!-- profile section -->
<string name="profileTabFollowers">دنبال کنندگان</string>
<string name="profileTabFollowing">درحال دنبال کردن</string>
<string name="editSettings">Edit Profile</string>
<string name="hideActivity">Hide Activity from profile page</string>
<string name="hideEmail">Hide Email</string>
<!-- profile section -->
<!-- account settings -->
<string name="accountEmails">Emails</string>
@ -286,6 +295,14 @@
<string name="emailErrorInUse">نشانی رایانامه از قبل موجود است</string>
<string name="emailTypeText">اصلی</string>
<string name="sshKeys">SSH Keys</string>
<string name="deleteEmailPopupText">This action will permanently delete email %s from your account.</string>
<string name="deleteEmailSuccess">Email deleted successfully</string>
<string name="addSSHKey">Add SSH Key</string>
<string name="sshKeyStatusReadOnly">Read-only Access</string>
<string name="sshKeyStatusReadWrite">Read-write Access</string>
<string name="sshKey">SSH Key</string>
<string name="sshKeySuccess">New SSH key added successfully</string>
<string name="sshKeyError">Invalid SSH key or SSH key already exists</string>
<!-- account settings -->
<!-- single issue section -->
<string name="singleIssueEditLabels">افزودن / حذف برچسب‌ها</string>
@ -432,6 +449,8 @@
<string name="none">None</string>
<string name="main">main</string>
<string name="license">License</string>
<string name="title">Title</string>
<string name="description">Description</string>
<!-- generic copy -->
<string name="exploreUsers">Explore users</string>
<string name="exploreIssues">Explore issues</string>
@ -534,6 +553,9 @@
<string name="rateAppHintText">اگر GitNex را می‌پسندید می‌توانید به آن امتیاز دهید</string>
<string name="aboutAppHintText">App version, build, user instance version</string>
<string name="codeEditorHintText">Syntax color, indentation</string>
<string name="backupRestoreHintText">Backup and restore accounts, settings and more</string>
<string name="backupDataHintText">Backup accounts, settings, notes and more</string>
<string name="restoreDataHintText">Restore accounts, settings, notes and more</string>
<string name="archivedRepository">بایگانی شده</string>
<string name="archivedRepositoryMessage">This repo is archived. You can view files, but cannot push or open issues/pull-requests.</string>
<string name="accountDeletedMessage">حساب کاربری با موفقیت حذف شد</string>

View File

@ -124,7 +124,6 @@
<string name="releasePublishedBy">Published by @%1$s</string>
<string name="noReleaseBodyContent">Release notes are not provided by the publisher.</string>
<string name="newMilestoneTitle">Title</string>
<string name="newMilestoneDescription">Description</string>
<string name="newMilestoneDueDate">Due Date</string>
<string name="milestoneNameErrorEmpty">Milestone title is empty</string>
<string name="milestoneDescError">Milestone description exceeds the max 255 characters limit</string>
@ -139,7 +138,6 @@
<string name="newIssueSelectLabelsListTitle">Select Labels</string>
<string name="newIssueTitle">Title</string>
<string name="newIssueAssigneesListTitle">Assignees</string>
<string name="newIssueDescriptionTitle">Description</string>
<string name="newIssueDueDateTitle">Due Date</string>
<string name="newIssueMilestoneTitle">Milestone</string>
<string name="newIssueLabelsTitle">Labels</string>
@ -201,6 +199,15 @@
<string name="fragmentTabsAnimationHeader">Tabs Animation</string>
<string name="fadeOut">Fade Out</string>
<string name="zoomOut">Zoom Out</string>
<string name="backup">Backup</string>
<string name="restore">Restore</string>
<string name="backupFileSuccess">The backup was successfully created</string>
<string name="backupFileError">An error occurred while creating a data backup</string>
<string name="backupFilePopupText">This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.</string>
<string name="restoreFilePopupText">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.</string>
<string name="restoreError">An error occurred while restoring from the backup file.</string>
<string name="restoreFromBackup">Restore from Backup</string>
<string name="restoreFromBackupPopupText">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.</string>
<!-- settings -->
<string name="noMoreData">No more data available</string>
<string name="createLabel">New Label</string>
@ -245,7 +252,6 @@
<!-- org tabbed layout str -->
<!-- create team -->
<string name="newTeamTitle">Team Name</string>
<string name="newTeamDesc">Description</string>
<string name="newTeamPermission">Permission</string>
<string name="newTeamAccessControls">Access Controls</string>
<string name="newTeamPermissionRead">Members can view and clone team repositories</string>
@ -276,6 +282,9 @@
<!-- profile section -->
<string name="profileTabFollowers">Followers</string>
<string name="profileTabFollowing">Following</string>
<string name="editSettings">Edit Profile</string>
<string name="hideActivity">Hide Activity from profile page</string>
<string name="hideEmail">Hide Email</string>
<!-- profile section -->
<!-- account settings -->
<string name="accountEmails">Emails</string>
@ -286,6 +295,14 @@
<string name="emailErrorInUse">Email address is already in use</string>
<string name="emailTypeText">Primary</string>
<string name="sshKeys">SSH Keys</string>
<string name="deleteEmailPopupText">This action will permanently delete email %s from your account.</string>
<string name="deleteEmailSuccess">Email deleted successfully</string>
<string name="addSSHKey">Add SSH Key</string>
<string name="sshKeyStatusReadOnly">Read-only Access</string>
<string name="sshKeyStatusReadWrite">Read-write Access</string>
<string name="sshKey">SSH Key</string>
<string name="sshKeySuccess">New SSH key added successfully</string>
<string name="sshKeyError">Invalid SSH key or SSH key already exists</string>
<!-- account settings -->
<!-- single issue section -->
<string name="singleIssueEditLabels">Add / Remove Labels</string>
@ -432,6 +449,8 @@
<string name="none">None</string>
<string name="main">main</string>
<string name="license">License</string>
<string name="title">Title</string>
<string name="description">Description</string>
<!-- generic copy -->
<string name="exploreUsers">Explore users</string>
<string name="exploreIssues">Explore issues</string>
@ -534,6 +553,9 @@
<string name="rateAppHintText">If you like GitNex you can give it a thumbs up</string>
<string name="aboutAppHintText">App version, build, user instance version</string>
<string name="codeEditorHintText">Syntax color, indentation</string>
<string name="backupRestoreHintText">Backup and restore accounts, settings and more</string>
<string name="backupDataHintText">Backup accounts, settings, notes and more</string>
<string name="restoreDataHintText">Restore accounts, settings, notes and more</string>
<string name="archivedRepository">Archived</string>
<string name="archivedRepositoryMessage">This repo is archived. You can view files, but cannot push or open issues/pull-requests.</string>
<string name="accountDeletedMessage">Account deleted successfully</string>

View File

@ -125,7 +125,6 @@ URL è richiesto</string>
<string name="releasePublishedBy">Pubblicato da @%1$s</string>
<string name="noReleaseBodyContent">Le note di rilascio non sono fornite dall\'editore.</string>
<string name="newMilestoneTitle">Nome</string>
<string name="newMilestoneDescription">Descrizione</string>
<string name="newMilestoneDueDate">Data Scadenza</string>
<string name="milestoneNameErrorEmpty">Il titolo del milestone è vuoto</string>
<string name="milestoneDescError">La descrizione del milestone supera il limite massimo di 255 caratteri</string>
@ -140,7 +139,6 @@ URL è richiesto</string>
<string name="newIssueSelectLabelsListTitle">Seleziona labels</string>
<string name="newIssueTitle">Titolo</string>
<string name="newIssueAssigneesListTitle">Assegnatari</string>
<string name="newIssueDescriptionTitle">Descrizione</string>
<string name="newIssueDueDateTitle">Data Scadenza</string>
<string name="newIssueMilestoneTitle">Milestone</string>
<string name="newIssueLabelsTitle">Labels</string>
@ -202,6 +200,15 @@ URL è richiesto</string>
<string name="fragmentTabsAnimationHeader">Tabs Animation</string>
<string name="fadeOut">Fade Out</string>
<string name="zoomOut">Zoom Out</string>
<string name="backup">Backup</string>
<string name="restore">Restore</string>
<string name="backupFileSuccess">The backup was successfully created</string>
<string name="backupFileError">An error occurred while creating a data backup</string>
<string name="backupFilePopupText">This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.</string>
<string name="restoreFilePopupText">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.</string>
<string name="restoreError">An error occurred while restoring from the backup file.</string>
<string name="restoreFromBackup">Restore from Backup</string>
<string name="restoreFromBackupPopupText">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.</string>
<!-- settings -->
<string name="noMoreData">Nessun altro dato disponibile</string>
<string name="createLabel">Nuovo label</string>
@ -246,7 +253,6 @@ URL è richiesto</string>
<!-- org tabbed layout str -->
<!-- create team -->
<string name="newTeamTitle">Nome team</string>
<string name="newTeamDesc">Descrizione</string>
<string name="newTeamPermission">Autorizzazione</string>
<string name="newTeamAccessControls">Controlli Accesso</string>
<string name="newTeamPermissionRead">I membri possono visualizzare e clonare i repository di team</string>
@ -278,6 +284,9 @@ autorizzazione</string>
<!-- profile section -->
<string name="profileTabFollowers">Follower</string>
<string name="profileTabFollowing">Seguendo</string>
<string name="editSettings">Edit Profile</string>
<string name="hideActivity">Hide Activity from profile page</string>
<string name="hideEmail">Hide Email</string>
<!-- profile section -->
<!-- account settings -->
<string name="accountEmails">Emails</string>
@ -288,6 +297,14 @@ autorizzazione</string>
<string name="emailErrorInUse">Indirizzo email già in uso</string>
<string name="emailTypeText">Primario</string>
<string name="sshKeys">SSH Keys</string>
<string name="deleteEmailPopupText">This action will permanently delete email %s from your account.</string>
<string name="deleteEmailSuccess">Email deleted successfully</string>
<string name="addSSHKey">Add SSH Key</string>
<string name="sshKeyStatusReadOnly">Read-only Access</string>
<string name="sshKeyStatusReadWrite">Read-write Access</string>
<string name="sshKey">SSH Key</string>
<string name="sshKeySuccess">New SSH key added successfully</string>
<string name="sshKeyError">Invalid SSH key or SSH key already exists</string>
<!-- account settings -->
<!-- single issue section -->
<string name="singleIssueEditLabels">Aggiungi/Rimuovi label</string>
@ -434,6 +451,8 @@ autorizzazione</string>
<string name="none">None</string>
<string name="main">main</string>
<string name="license">License</string>
<string name="title">Title</string>
<string name="description">Description</string>
<!-- generic copy -->
<string name="exploreUsers">Esplora utenti</string>
<string name="exploreIssues">Esplora problemi</string>
@ -536,6 +555,9 @@ autorizzazione</string>
<string name="rateAppHintText">If you like GitNex you can give it a thumbs up</string>
<string name="aboutAppHintText">App version, build, user instance version</string>
<string name="codeEditorHintText">Syntax color, indentation</string>
<string name="backupRestoreHintText">Backup and restore accounts, settings and more</string>
<string name="backupDataHintText">Backup accounts, settings, notes and more</string>
<string name="restoreDataHintText">Restore accounts, settings, notes and more</string>
<string name="archivedRepository">Archiviato</string>
<string name="archivedRepositoryMessage">This repo is archived. You can view files, but cannot push or open issues/pull-requests.</string>
<string name="accountDeletedMessage">Account eliminato con successo</string>

View File

@ -124,7 +124,6 @@
<string name="releasePublishedBy">発行者@%1$s</string>
<string name="noReleaseBodyContent">リリースノートは発行元から提供されていません。</string>
<string name="newMilestoneTitle">タイトル</string>
<string name="newMilestoneDescription">説明</string>
<string name="newMilestoneDueDate">期限</string>
<string name="milestoneNameErrorEmpty">マイルストーンのタイトルが空です</string>
<string name="milestoneDescError">マイルストーンの説明が最大255文字の制限を超えています</string>
@ -139,7 +138,6 @@
<string name="newIssueSelectLabelsListTitle">ラベルを選択</string>
<string name="newIssueTitle">タイトル</string>
<string name="newIssueAssigneesListTitle">割当先</string>
<string name="newIssueDescriptionTitle">説明</string>
<string name="newIssueDueDateTitle">期限</string>
<string name="newIssueMilestoneTitle">マイルストーン</string>
<string name="newIssueLabelsTitle">ラベル</string>
@ -201,6 +199,15 @@
<string name="fragmentTabsAnimationHeader">Tabs Animation</string>
<string name="fadeOut">Fade Out</string>
<string name="zoomOut">Zoom Out</string>
<string name="backup">Backup</string>
<string name="restore">Restore</string>
<string name="backupFileSuccess">The backup was successfully created</string>
<string name="backupFileError">An error occurred while creating a data backup</string>
<string name="backupFilePopupText">This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.</string>
<string name="restoreFilePopupText">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.</string>
<string name="restoreError">An error occurred while restoring from the backup file.</string>
<string name="restoreFromBackup">Restore from Backup</string>
<string name="restoreFromBackupPopupText">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.</string>
<!-- settings -->
<string name="noMoreData">これ以上のデータはありません</string>
<string name="createLabel">新規ラベル</string>
@ -245,7 +252,6 @@
<!-- org tabbed layout str -->
<!-- create team -->
<string name="newTeamTitle">チーム名</string>
<string name="newTeamDesc">説明</string>
<string name="newTeamPermission">アクセス許可</string>
<string name="newTeamAccessControls">アクセス制御</string>
<string name="newTeamPermissionRead">メンバーはチームリポジトリを表示して複製できる</string>
@ -276,6 +282,9 @@
<!-- profile section -->
<string name="profileTabFollowers">フォロワー</string>
<string name="profileTabFollowing">フォロー中</string>
<string name="editSettings">Edit Profile</string>
<string name="hideActivity">Hide Activity from profile page</string>
<string name="hideEmail">Hide Email</string>
<!-- profile section -->
<!-- account settings -->
<string name="accountEmails">Emails</string>
@ -286,6 +295,14 @@
<string name="emailErrorInUse">電子メールアドレスは既に使用されています</string>
<string name="emailTypeText">プライマリ</string>
<string name="sshKeys">SSH Keys</string>
<string name="deleteEmailPopupText">This action will permanently delete email %s from your account.</string>
<string name="deleteEmailSuccess">Email deleted successfully</string>
<string name="addSSHKey">Add SSH Key</string>
<string name="sshKeyStatusReadOnly">Read-only Access</string>
<string name="sshKeyStatusReadWrite">Read-write Access</string>
<string name="sshKey">SSH Key</string>
<string name="sshKeySuccess">New SSH key added successfully</string>
<string name="sshKeyError">Invalid SSH key or SSH key already exists</string>
<!-- account settings -->
<!-- single issue section -->
<string name="singleIssueEditLabels">ラベルを追加/削除</string>
@ -432,6 +449,8 @@
<string name="none">None</string>
<string name="main">main</string>
<string name="license">License</string>
<string name="title">Title</string>
<string name="description">Description</string>
<!-- generic copy -->
<string name="exploreUsers">ユーザーの表示</string>
<string name="exploreIssues">課題の表示</string>
@ -534,6 +553,9 @@
<string name="rateAppHintText">あなたがGitNexが好きなら、それを称賛してもいいですよ。</string>
<string name="aboutAppHintText">App version, build, user instance version</string>
<string name="codeEditorHintText">Syntax color, indentation</string>
<string name="backupRestoreHintText">Backup and restore accounts, settings and more</string>
<string name="backupDataHintText">Backup accounts, settings, notes and more</string>
<string name="restoreDataHintText">Restore accounts, settings, notes and more</string>
<string name="archivedRepository">アーカイブ済み</string>
<string name="archivedRepositoryMessage">このリポジトリはアーカイブされます。ファイルを表示することはできますが、問題/プルリクエストをプッシュまたはオープンすることはできません。</string>
<string name="accountDeletedMessage">アカウントは正常に削除されました</string>

View File

@ -124,7 +124,6 @@
<string name="releasePublishedBy">Published by @%1$s</string>
<string name="noReleaseBodyContent">Release notes are not provided by the publisher.</string>
<string name="newMilestoneTitle">Title</string>
<string name="newMilestoneDescription">Description</string>
<string name="newMilestoneDueDate">Due Date</string>
<string name="milestoneNameErrorEmpty">Milestone title is empty</string>
<string name="milestoneDescError">Milestone description exceeds the max 255 characters limit</string>
@ -139,7 +138,6 @@
<string name="newIssueSelectLabelsListTitle">Select Labels</string>
<string name="newIssueTitle">Title</string>
<string name="newIssueAssigneesListTitle">Assignees</string>
<string name="newIssueDescriptionTitle">Description</string>
<string name="newIssueDueDateTitle">Due Date</string>
<string name="newIssueMilestoneTitle">Milestone</string>
<string name="newIssueLabelsTitle">Labels</string>
@ -201,6 +199,15 @@
<string name="fragmentTabsAnimationHeader">Tabs Animation</string>
<string name="fadeOut">Fade Out</string>
<string name="zoomOut">Zoom Out</string>
<string name="backup">Backup</string>
<string name="restore">Restore</string>
<string name="backupFileSuccess">The backup was successfully created</string>
<string name="backupFileError">An error occurred while creating a data backup</string>
<string name="backupFilePopupText">This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.</string>
<string name="restoreFilePopupText">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.</string>
<string name="restoreError">An error occurred while restoring from the backup file.</string>
<string name="restoreFromBackup">Restore from Backup</string>
<string name="restoreFromBackupPopupText">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.</string>
<!-- settings -->
<string name="noMoreData">No more data available</string>
<string name="createLabel">New Label</string>
@ -245,7 +252,6 @@
<!-- org tabbed layout str -->
<!-- create team -->
<string name="newTeamTitle">Team Name</string>
<string name="newTeamDesc">Description</string>
<string name="newTeamPermission">Permission</string>
<string name="newTeamAccessControls">Access Controls</string>
<string name="newTeamPermissionRead">Members can view and clone team repositories</string>
@ -276,6 +282,9 @@
<!-- profile section -->
<string name="profileTabFollowers">Followers</string>
<string name="profileTabFollowing">Following</string>
<string name="editSettings">Edit Profile</string>
<string name="hideActivity">Hide Activity from profile page</string>
<string name="hideEmail">Hide Email</string>
<!-- profile section -->
<!-- account settings -->
<string name="accountEmails">Emails</string>
@ -286,6 +295,14 @@
<string name="emailErrorInUse">Email address is already in use</string>
<string name="emailTypeText">Primary</string>
<string name="sshKeys">SSH Keys</string>
<string name="deleteEmailPopupText">This action will permanently delete email %s from your account.</string>
<string name="deleteEmailSuccess">Email deleted successfully</string>
<string name="addSSHKey">Add SSH Key</string>
<string name="sshKeyStatusReadOnly">Read-only Access</string>
<string name="sshKeyStatusReadWrite">Read-write Access</string>
<string name="sshKey">SSH Key</string>
<string name="sshKeySuccess">New SSH key added successfully</string>
<string name="sshKeyError">Invalid SSH key or SSH key already exists</string>
<!-- account settings -->
<!-- single issue section -->
<string name="singleIssueEditLabels">Add / Remove Labels</string>
@ -432,6 +449,8 @@
<string name="none">None</string>
<string name="main">main</string>
<string name="license">License</string>
<string name="title">Title</string>
<string name="description">Description</string>
<!-- generic copy -->
<string name="exploreUsers">Explore users</string>
<string name="exploreIssues">Explore issues</string>
@ -534,6 +553,9 @@
<string name="rateAppHintText">If you like GitNex you can give it a thumbs up</string>
<string name="aboutAppHintText">App version, build, user instance version</string>
<string name="codeEditorHintText">Syntax color, indentation</string>
<string name="backupRestoreHintText">Backup and restore accounts, settings and more</string>
<string name="backupDataHintText">Backup accounts, settings, notes and more</string>
<string name="restoreDataHintText">Restore accounts, settings, notes and more</string>
<string name="archivedRepository">Archived</string>
<string name="archivedRepositoryMessage">This repo is archived. You can view files, but cannot push or open issues/pull-requests.</string>
<string name="accountDeletedMessage">Account deleted successfully</string>

View File

@ -124,7 +124,6 @@
<string name="releasePublishedBy">Published by @%1$s</string>
<string name="noReleaseBodyContent">Release notes are not provided by the publisher.</string>
<string name="newMilestoneTitle">Title</string>
<string name="newMilestoneDescription">Description</string>
<string name="newMilestoneDueDate">Due Date</string>
<string name="milestoneNameErrorEmpty">Milestone title is empty</string>
<string name="milestoneDescError">Milestone description exceeds the max 255 characters limit</string>
@ -139,7 +138,6 @@
<string name="newIssueSelectLabelsListTitle">Select Labels</string>
<string name="newIssueTitle">Title</string>
<string name="newIssueAssigneesListTitle">Assignees</string>
<string name="newIssueDescriptionTitle">Description</string>
<string name="newIssueDueDateTitle">Due Date</string>
<string name="newIssueMilestoneTitle">Milestone</string>
<string name="newIssueLabelsTitle">Labels</string>
@ -201,6 +199,15 @@
<string name="fragmentTabsAnimationHeader">Tabs Animation</string>
<string name="fadeOut">Fade Out</string>
<string name="zoomOut">Zoom Out</string>
<string name="backup">Backup</string>
<string name="restore">Restore</string>
<string name="backupFileSuccess">The backup was successfully created</string>
<string name="backupFileError">An error occurred while creating a data backup</string>
<string name="backupFilePopupText">This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.</string>
<string name="restoreFilePopupText">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.</string>
<string name="restoreError">An error occurred while restoring from the backup file.</string>
<string name="restoreFromBackup">Restore from Backup</string>
<string name="restoreFromBackupPopupText">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.</string>
<!-- settings -->
<string name="noMoreData">No more data available</string>
<string name="createLabel">New Label</string>
@ -245,7 +252,6 @@
<!-- org tabbed layout str -->
<!-- create team -->
<string name="newTeamTitle">Team Name</string>
<string name="newTeamDesc">Description</string>
<string name="newTeamPermission">Permission</string>
<string name="newTeamAccessControls">Access Controls</string>
<string name="newTeamPermissionRead">Members can view and clone team repositories</string>
@ -276,6 +282,9 @@
<!-- profile section -->
<string name="profileTabFollowers">Followers</string>
<string name="profileTabFollowing">Following</string>
<string name="editSettings">Edit Profile</string>
<string name="hideActivity">Hide Activity from profile page</string>
<string name="hideEmail">Hide Email</string>
<!-- profile section -->
<!-- account settings -->
<string name="accountEmails">Emails</string>
@ -286,6 +295,14 @@
<string name="emailErrorInUse">Email address is already in use</string>
<string name="emailTypeText">Primary</string>
<string name="sshKeys">SSH Keys</string>
<string name="deleteEmailPopupText">This action will permanently delete email %s from your account.</string>
<string name="deleteEmailSuccess">Email deleted successfully</string>
<string name="addSSHKey">Add SSH Key</string>
<string name="sshKeyStatusReadOnly">Read-only Access</string>
<string name="sshKeyStatusReadWrite">Read-write Access</string>
<string name="sshKey">SSH Key</string>
<string name="sshKeySuccess">New SSH key added successfully</string>
<string name="sshKeyError">Invalid SSH key or SSH key already exists</string>
<!-- account settings -->
<!-- single issue section -->
<string name="singleIssueEditLabels">Add / Remove Labels</string>
@ -432,6 +449,8 @@
<string name="none">None</string>
<string name="main">main</string>
<string name="license">License</string>
<string name="title">Title</string>
<string name="description">Description</string>
<!-- generic copy -->
<string name="exploreUsers">Explore users</string>
<string name="exploreIssues">Explore issues</string>
@ -534,6 +553,9 @@
<string name="rateAppHintText">If you like GitNex you can give it a thumbs up</string>
<string name="aboutAppHintText">App version, build, user instance version</string>
<string name="codeEditorHintText">Syntax color, indentation</string>
<string name="backupRestoreHintText">Backup and restore accounts, settings and more</string>
<string name="backupDataHintText">Backup accounts, settings, notes and more</string>
<string name="restoreDataHintText">Restore accounts, settings, notes and more</string>
<string name="archivedRepository">Archived</string>
<string name="archivedRepositoryMessage">This repo is archived. You can view files, but cannot push or open issues/pull-requests.</string>
<string name="accountDeletedMessage">Account deleted successfully</string>

View File

@ -124,7 +124,6 @@
<string name="releasePublishedBy">Gepubliceerd door @%1$s</string>
<string name="noReleaseBodyContent">Release notities zijn niet aangeleverd door de uitgever.</string>
<string name="newMilestoneTitle">Titel</string>
<string name="newMilestoneDescription">Beschrijving</string>
<string name="newMilestoneDueDate">Vervaldatum</string>
<string name="milestoneNameErrorEmpty">Mijlpaal titel is leeg</string>
<string name="milestoneDescError">Mijlpaal beschrijving overschrijdt het limiet van 255 karakters</string>
@ -139,7 +138,6 @@
<string name="newIssueSelectLabelsListTitle">Selecteer Labels</string>
<string name="newIssueTitle">Titel</string>
<string name="newIssueAssigneesListTitle">Toegewezen personen</string>
<string name="newIssueDescriptionTitle">Beschrijving</string>
<string name="newIssueDueDateTitle">Vervaldatum</string>
<string name="newIssueMilestoneTitle">Mijlpaal</string>
<string name="newIssueLabelsTitle">Labels</string>
@ -201,6 +199,15 @@
<string name="fragmentTabsAnimationHeader">Tabs Animation</string>
<string name="fadeOut">Fade Out</string>
<string name="zoomOut">Zoom Out</string>
<string name="backup">Backup</string>
<string name="restore">Restore</string>
<string name="backupFileSuccess">The backup was successfully created</string>
<string name="backupFileError">An error occurred while creating a data backup</string>
<string name="backupFilePopupText">This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.</string>
<string name="restoreFilePopupText">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.</string>
<string name="restoreError">An error occurred while restoring from the backup file.</string>
<string name="restoreFromBackup">Restore from Backup</string>
<string name="restoreFromBackupPopupText">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.</string>
<!-- settings -->
<string name="noMoreData">Geen verdere gegevens beschikbaar</string>
<string name="createLabel">Nieuw Label</string>
@ -245,7 +252,6 @@
<!-- org tabbed layout str -->
<!-- create team -->
<string name="newTeamTitle">Team Name</string>
<string name="newTeamDesc">Description</string>
<string name="newTeamPermission">Permission</string>
<string name="newTeamAccessControls">Access Controls</string>
<string name="newTeamPermissionRead">Members can view and clone team repositories</string>
@ -276,6 +282,9 @@
<!-- profile section -->
<string name="profileTabFollowers">Volgers</string>
<string name="profileTabFollowing">Volgend</string>
<string name="editSettings">Edit Profile</string>
<string name="hideActivity">Hide Activity from profile page</string>
<string name="hideEmail">Hide Email</string>
<!-- profile section -->
<!-- account settings -->
<string name="accountEmails">E-mails</string>
@ -286,6 +295,14 @@
<string name="emailErrorInUse">E-mailadres is reeds in gebruik</string>
<string name="emailTypeText">Primair</string>
<string name="sshKeys">SSH Keys</string>
<string name="deleteEmailPopupText">This action will permanently delete email %s from your account.</string>
<string name="deleteEmailSuccess">Email deleted successfully</string>
<string name="addSSHKey">Add SSH Key</string>
<string name="sshKeyStatusReadOnly">Read-only Access</string>
<string name="sshKeyStatusReadWrite">Read-write Access</string>
<string name="sshKey">SSH Key</string>
<string name="sshKeySuccess">New SSH key added successfully</string>
<string name="sshKeyError">Invalid SSH key or SSH key already exists</string>
<!-- account settings -->
<!-- single issue section -->
<string name="singleIssueEditLabels">Toevoegen / Verwijderen Label</string>
@ -432,6 +449,8 @@
<string name="none">None</string>
<string name="main">main</string>
<string name="license">License</string>
<string name="title">Title</string>
<string name="description">Description</string>
<!-- generic copy -->
<string name="exploreUsers">Explore users</string>
<string name="exploreIssues">Explore issues</string>
@ -534,6 +553,9 @@
<string name="rateAppHintText">If you like GitNex you can give it a thumbs up</string>
<string name="aboutAppHintText">App version, build, user instance version</string>
<string name="codeEditorHintText">Syntax color, indentation</string>
<string name="backupRestoreHintText">Backup and restore accounts, settings and more</string>
<string name="backupDataHintText">Backup accounts, settings, notes and more</string>
<string name="restoreDataHintText">Restore accounts, settings, notes and more</string>
<string name="archivedRepository">Archived</string>
<string name="archivedRepositoryMessage">This repo is archived. You can view files, but cannot push or open issues/pull-requests.</string>
<string name="accountDeletedMessage">Account deleted successfully</string>

View File

@ -124,7 +124,6 @@
<string name="releasePublishedBy">Opublikowane przez @%1$s</string>
<string name="noReleaseBodyContent">Informacje o wydaniu nie zostały podane przez osobę publikującą.</string>
<string name="newMilestoneTitle">Tytuł</string>
<string name="newMilestoneDescription">Opis</string>
<string name="newMilestoneDueDate">Termin</string>
<string name="milestoneNameErrorEmpty">Tytuł etapu jest pusty</string>
<string name="milestoneDescError">Opis etapu przekracza limit 255 znaków</string>
@ -139,7 +138,6 @@
<string name="newIssueSelectLabelsListTitle">Wybierz etykiety</string>
<string name="newIssueTitle">Tytuł</string>
<string name="newIssueAssigneesListTitle">Przypisani</string>
<string name="newIssueDescriptionTitle">Opis</string>
<string name="newIssueDueDateTitle">Termin</string>
<string name="newIssueMilestoneTitle">Etap</string>
<string name="newIssueLabelsTitle">Etykiety</string>
@ -201,6 +199,15 @@
<string name="fragmentTabsAnimationHeader">Tabs Animation</string>
<string name="fadeOut">Fade Out</string>
<string name="zoomOut">Zoom Out</string>
<string name="backup">Backup</string>
<string name="restore">Restore</string>
<string name="backupFileSuccess">The backup was successfully created</string>
<string name="backupFileError">An error occurred while creating a data backup</string>
<string name="backupFilePopupText">This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.</string>
<string name="restoreFilePopupText">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.</string>
<string name="restoreError">An error occurred while restoring from the backup file.</string>
<string name="restoreFromBackup">Restore from Backup</string>
<string name="restoreFromBackupPopupText">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.</string>
<!-- settings -->
<string name="noMoreData">Brak dostępnych danych</string>
<string name="createLabel">Nowa etykieta</string>
@ -245,7 +252,6 @@
<!-- org tabbed layout str -->
<!-- create team -->
<string name="newTeamTitle">Nazwa zespołu</string>
<string name="newTeamDesc">Opis</string>
<string name="newTeamPermission">Uprawnienie</string>
<string name="newTeamAccessControls">Kontrola dostępu</string>
<string name="newTeamPermissionRead">Członkowie mogą przeglądać i sklonować repozytoria zespołu</string>
@ -276,6 +282,9 @@
<!-- profile section -->
<string name="profileTabFollowers">Obserwujący</string>
<string name="profileTabFollowing">Obserwowane</string>
<string name="editSettings">Edit Profile</string>
<string name="hideActivity">Hide Activity from profile page</string>
<string name="hideEmail">Hide Email</string>
<!-- profile section -->
<!-- account settings -->
<string name="accountEmails">Emails</string>
@ -286,6 +295,14 @@
<string name="emailErrorInUse">Adres e-mail jest już używany</string>
<string name="emailTypeText">Podstawowy</string>
<string name="sshKeys">SSH Keys</string>
<string name="deleteEmailPopupText">This action will permanently delete email %s from your account.</string>
<string name="deleteEmailSuccess">Email deleted successfully</string>
<string name="addSSHKey">Add SSH Key</string>
<string name="sshKeyStatusReadOnly">Read-only Access</string>
<string name="sshKeyStatusReadWrite">Read-write Access</string>
<string name="sshKey">SSH Key</string>
<string name="sshKeySuccess">New SSH key added successfully</string>
<string name="sshKeyError">Invalid SSH key or SSH key already exists</string>
<!-- account settings -->
<!-- single issue section -->
<string name="singleIssueEditLabels">Dodaj / Usuń etykiety</string>
@ -432,6 +449,8 @@
<string name="none">None</string>
<string name="main">main</string>
<string name="license">License</string>
<string name="title">Title</string>
<string name="description">Description</string>
<!-- generic copy -->
<string name="exploreUsers">Explore users</string>
<string name="exploreIssues">Przeglądaj zgłoszenia</string>
@ -534,6 +553,9 @@
<string name="rateAppHintText">If you like GitNex you can give it a thumbs up</string>
<string name="aboutAppHintText">App version, build, user instance version</string>
<string name="codeEditorHintText">Syntax color, indentation</string>
<string name="backupRestoreHintText">Backup and restore accounts, settings and more</string>
<string name="backupDataHintText">Backup accounts, settings, notes and more</string>
<string name="restoreDataHintText">Restore accounts, settings, notes and more</string>
<string name="archivedRepository">Archived</string>
<string name="archivedRepositoryMessage">This repo is archived. You can view files, but cannot push or open issues/pull-requests.</string>
<string name="accountDeletedMessage">Account deleted successfully</string>

View File

@ -125,7 +125,6 @@ Exemplo: codeberg.org</string>
<string name="releasePublishedBy">Publicado por @%1$s</string>
<string name="noReleaseBodyContent">Notas de versão não são fornecidas pelo editor.</string>
<string name="newMilestoneTitle">Título</string>
<string name="newMilestoneDescription">Descrição</string>
<string name="newMilestoneDueDate">Data Limite</string>
<string name="milestoneNameErrorEmpty">Título da meta está vazio</string>
<string name="milestoneDescError">Descrição da meta excede o limite máximo de 255 caracteres</string>
@ -140,7 +139,6 @@ Exemplo: codeberg.org</string>
<string name="newIssueSelectLabelsListTitle">Selecionar marcadores</string>
<string name="newIssueTitle">Título</string>
<string name="newIssueAssigneesListTitle">Designados</string>
<string name="newIssueDescriptionTitle">Descrição</string>
<string name="newIssueDueDateTitle">Data Limite</string>
<string name="newIssueMilestoneTitle">Meta</string>
<string name="newIssueLabelsTitle">Marcadores</string>
@ -202,6 +200,15 @@ Exemplo: codeberg.org</string>
<string name="fragmentTabsAnimationHeader">Tabs Animation</string>
<string name="fadeOut">Fade Out</string>
<string name="zoomOut">Zoom Out</string>
<string name="backup">Backup</string>
<string name="restore">Restore</string>
<string name="backupFileSuccess">The backup was successfully created</string>
<string name="backupFileError">An error occurred while creating a data backup</string>
<string name="backupFilePopupText">This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.</string>
<string name="restoreFilePopupText">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.</string>
<string name="restoreError">An error occurred while restoring from the backup file.</string>
<string name="restoreFromBackup">Restore from Backup</string>
<string name="restoreFromBackupPopupText">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.</string>
<!-- settings -->
<string name="noMoreData">Não há mais dados disponíveis</string>
<string name="createLabel">Novo marcador</string>
@ -246,7 +253,6 @@ Exemplo: codeberg.org</string>
<!-- org tabbed layout str -->
<!-- create team -->
<string name="newTeamTitle">Nome da equipe</string>
<string name="newTeamDesc">Descrição</string>
<string name="newTeamPermission">Permissão</string>
<string name="newTeamAccessControls">Controle de acessos</string>
<string name="newTeamPermissionRead">Membros podem ver e clonar repositórios de equipe</string>
@ -277,6 +283,9 @@ Exemplo: codeberg.org</string>
<!-- profile section -->
<string name="profileTabFollowers">Seguidores</string>
<string name="profileTabFollowing">Seguindo</string>
<string name="editSettings">Edit Profile</string>
<string name="hideActivity">Hide Activity from profile page</string>
<string name="hideEmail">Hide Email</string>
<!-- profile section -->
<!-- account settings -->
<string name="accountEmails">Emails</string>
@ -287,6 +296,14 @@ Exemplo: codeberg.org</string>
<string name="emailErrorInUse">O endereço de e-mail já está em uso</string>
<string name="emailTypeText">Principal</string>
<string name="sshKeys">SSH Keys</string>
<string name="deleteEmailPopupText">This action will permanently delete email %s from your account.</string>
<string name="deleteEmailSuccess">Email deleted successfully</string>
<string name="addSSHKey">Add SSH Key</string>
<string name="sshKeyStatusReadOnly">Read-only Access</string>
<string name="sshKeyStatusReadWrite">Read-write Access</string>
<string name="sshKey">SSH Key</string>
<string name="sshKeySuccess">New SSH key added successfully</string>
<string name="sshKeyError">Invalid SSH key or SSH key already exists</string>
<!-- account settings -->
<!-- single issue section -->
<string name="singleIssueEditLabels">Adicionar/Remover marcadores</string>
@ -433,6 +450,8 @@ Exemplo: codeberg.org</string>
<string name="none">None</string>
<string name="main">main</string>
<string name="license">License</string>
<string name="title">Title</string>
<string name="description">Description</string>
<!-- generic copy -->
<string name="exploreUsers">Explore users</string>
<string name="exploreIssues">Explore issues</string>
@ -535,6 +554,9 @@ Exemplo: codeberg.org</string>
<string name="rateAppHintText">Se você gosta do GitNex você pode dar um joinha</string>
<string name="aboutAppHintText">App version, build, user instance version</string>
<string name="codeEditorHintText">Syntax color, indentation</string>
<string name="backupRestoreHintText">Backup and restore accounts, settings and more</string>
<string name="backupDataHintText">Backup accounts, settings, notes and more</string>
<string name="restoreDataHintText">Restore accounts, settings, notes and more</string>
<string name="archivedRepository">Arquivado</string>
<string name="archivedRepositoryMessage">This repo is archived. You can view files, but cannot push or open issues/pull-requests.</string>
<string name="accountDeletedMessage">Conta excluída com êxito</string>

View File

@ -124,7 +124,6 @@
<string name="releasePublishedBy">Опубликовано @%1$s</string>
<string name="noReleaseBodyContent">Примечания к релизу не предоставляются.</string>
<string name="newMilestoneTitle">Заголовок</string>
<string name="newMilestoneDescription">Описание</string>
<string name="newMilestoneDueDate">Дата исполнения</string>
<string name="milestoneNameErrorEmpty">Заголовок вехи пустой.</string>
<string name="milestoneDescError">Описание вехи превышает 255 символов.</string>
@ -139,7 +138,6 @@
<string name="newIssueSelectLabelsListTitle">Выбрать метки</string>
<string name="newIssueTitle">Заголовок</string>
<string name="newIssueAssigneesListTitle">Назначенные</string>
<string name="newIssueDescriptionTitle">Описание</string>
<string name="newIssueDueDateTitle">Срок выполнения</string>
<string name="newIssueMilestoneTitle">Вехи</string>
<string name="newIssueLabelsTitle">Метки</string>
@ -201,6 +199,15 @@
<string name="fragmentTabsAnimationHeader">Анимация вкладок</string>
<string name="fadeOut">Затухание</string>
<string name="zoomOut">Отдалить</string>
<string name="backup">Backup</string>
<string name="restore">Restore</string>
<string name="backupFileSuccess">The backup was successfully created</string>
<string name="backupFileError">An error occurred while creating a data backup</string>
<string name="backupFilePopupText">This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.</string>
<string name="restoreFilePopupText">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.</string>
<string name="restoreError">An error occurred while restoring from the backup file.</string>
<string name="restoreFromBackup">Restore from Backup</string>
<string name="restoreFromBackupPopupText">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.</string>
<!-- settings -->
<string name="noMoreData">Больше даных нет</string>
<string name="createLabel">Создание метки</string>
@ -245,7 +252,6 @@
<!-- org tabbed layout str -->
<!-- create team -->
<string name="newTeamTitle">Имя команды</string>
<string name="newTeamDesc">Описание</string>
<string name="newTeamPermission">Права</string>
<string name="newTeamAccessControls">Контроль доступа</string>
<string name="newTeamPermissionRead">Участники могут просматривать и клонировать репозитории команды</string>
@ -276,6 +282,9 @@
<!-- profile section -->
<string name="profileTabFollowers">Подписчики</string>
<string name="profileTabFollowing">Подписки</string>
<string name="editSettings">Edit Profile</string>
<string name="hideActivity">Hide Activity from profile page</string>
<string name="hideEmail">Hide Email</string>
<!-- profile section -->
<!-- account settings -->
<string name="accountEmails">Электронная почта</string>
@ -286,6 +295,14 @@
<string name="emailErrorInUse">Адрес электронной почты уже используется</string>
<string name="emailTypeText">Основной</string>
<string name="sshKeys">SSH ключи</string>
<string name="deleteEmailPopupText">This action will permanently delete email %s from your account.</string>
<string name="deleteEmailSuccess">Email deleted successfully</string>
<string name="addSSHKey">Add SSH Key</string>
<string name="sshKeyStatusReadOnly">Read-only Access</string>
<string name="sshKeyStatusReadWrite">Read-write Access</string>
<string name="sshKey">SSH Key</string>
<string name="sshKeySuccess">New SSH key added successfully</string>
<string name="sshKeyError">Invalid SSH key or SSH key already exists</string>
<!-- account settings -->
<!-- single issue section -->
<string name="singleIssueEditLabels">Добавить/удалить метку</string>
@ -432,6 +449,8 @@
<string name="none">None</string>
<string name="main">main</string>
<string name="license">License</string>
<string name="title">Title</string>
<string name="description">Description</string>
<!-- generic copy -->
<string name="exploreUsers">Обзор пользователей</string>
<string name="exploreIssues">Обзор задач</string>
@ -534,6 +553,9 @@
<string name="rateAppHintText">Если вам нравится GitNex, вы можете поставить ему палец вверх</string>
<string name="aboutAppHintText">App version, build, user instance version</string>
<string name="codeEditorHintText">Syntax color, indentation</string>
<string name="backupRestoreHintText">Backup and restore accounts, settings and more</string>
<string name="backupDataHintText">Backup accounts, settings, notes and more</string>
<string name="restoreDataHintText">Restore accounts, settings, notes and more</string>
<string name="archivedRepository">Архивировано</string>
<string name="archivedRepositoryMessage">Этот репозиторий находится в архиве. Вы можете просматривать файлы, но не можете отправлять или открывать проблемы/запросы на слияние.</string>
<string name="accountDeletedMessage">Учётная запись успешно удалена</string>

View File

@ -124,7 +124,6 @@
<string name="releasePublishedBy">\@%1$sවිසින් ප්‍රකාශනය කරන ලදී</string>
<string name="noReleaseBodyContent">නිකුතු සටහන් ප්‍රකාශකයා විසින් සපයනු නොලැබේ.</string>
<string name="newMilestoneTitle">සිරැසිය</string>
<string name="newMilestoneDescription">සවිස්තරය</string>
<string name="newMilestoneDueDate">ගෙවිය යුතු දිනය</string>
<string name="milestoneNameErrorEmpty">සන්ධිස්ථානයේ මාතෘකාව හිස්ය</string>
<string name="milestoneDescError">සන්ධිස්ථානයේ විස්තරය උපරිම අක්ෂර 255 සීමාව ඉක්මවයි</string>
@ -139,7 +138,6 @@
<string name="newIssueSelectLabelsListTitle">නම්පත් තෝරාගන්න</string>
<string name="newIssueTitle">සිරැසිය</string>
<string name="newIssueAssigneesListTitle">පැවරුණු අය</string>
<string name="newIssueDescriptionTitle">සවිස්තරය</string>
<string name="newIssueDueDateTitle">ගෙවිය යුතු දිනය</string>
<string name="newIssueMilestoneTitle">සන්ධිස්ථානය</string>
<string name="newIssueLabelsTitle">නම්පත්</string>
@ -201,6 +199,15 @@
<string name="fragmentTabsAnimationHeader">Tabs Animation</string>
<string name="fadeOut">Fade Out</string>
<string name="zoomOut">Zoom Out</string>
<string name="backup">Backup</string>
<string name="restore">Restore</string>
<string name="backupFileSuccess">The backup was successfully created</string>
<string name="backupFileError">An error occurred while creating a data backup</string>
<string name="backupFilePopupText">This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.</string>
<string name="restoreFilePopupText">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.</string>
<string name="restoreError">An error occurred while restoring from the backup file.</string>
<string name="restoreFromBackup">Restore from Backup</string>
<string name="restoreFromBackupPopupText">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.</string>
<!-- settings -->
<string name="noMoreData">තවත් දත්ත නොමැත</string>
<string name="createLabel">නව ලේබලය</string>
@ -245,7 +252,6 @@
<!-- org tabbed layout str -->
<!-- create team -->
<string name="newTeamTitle">කණ්ඩායමේ නම</string>
<string name="newTeamDesc">සවිස්තරය</string>
<string name="newTeamPermission">අවසරය</string>
<string name="newTeamAccessControls">ප්රවේශය පාලනය</string>
<string name="newTeamPermissionRead">සාමාජිකයින්ට කණ්ඩායම් ගබඩාවන් බැලීමට සහ ක්ලෝන කිරීමට හැකිය</string>
@ -276,6 +282,9 @@
<!-- profile section -->
<string name="profileTabFollowers">අනුගාමිකයින්</string>
<string name="profileTabFollowing">අනුගමනය</string>
<string name="editSettings">Edit Profile</string>
<string name="hideActivity">Hide Activity from profile page</string>
<string name="hideEmail">Hide Email</string>
<!-- profile section -->
<!-- account settings -->
<string name="accountEmails">Emails</string>
@ -286,6 +295,14 @@
<string name="emailErrorInUse">ඊමේල් ලිපිනය දැනටමත් භාවිතයේ ඇත</string>
<string name="emailTypeText">ප්රාථමික</string>
<string name="sshKeys">SSH Keys</string>
<string name="deleteEmailPopupText">This action will permanently delete email %s from your account.</string>
<string name="deleteEmailSuccess">Email deleted successfully</string>
<string name="addSSHKey">Add SSH Key</string>
<string name="sshKeyStatusReadOnly">Read-only Access</string>
<string name="sshKeyStatusReadWrite">Read-write Access</string>
<string name="sshKey">SSH Key</string>
<string name="sshKeySuccess">New SSH key added successfully</string>
<string name="sshKeyError">Invalid SSH key or SSH key already exists</string>
<!-- account settings -->
<!-- single issue section -->
<string name="singleIssueEditLabels">ලේබල් එකතු කරන්න / ඉවත් කරන්න</string>
@ -432,6 +449,8 @@
<string name="none">None</string>
<string name="main">main</string>
<string name="license">License</string>
<string name="title">Title</string>
<string name="description">Description</string>
<!-- generic copy -->
<string name="exploreUsers">පරිශීලකයන් ගවේෂණය කරන්න</string>
<string name="exploreIssues">ගැටළු ගවේෂණය කරන්න</string>
@ -534,6 +553,9 @@
<string name="rateAppHintText">ඔබ GitNex වලට කැමති නම් ඔබට එය thumbs up ලබා දිය හැක</string>
<string name="aboutAppHintText">App version, build, user instance version</string>
<string name="codeEditorHintText">Syntax color, indentation</string>
<string name="backupRestoreHintText">Backup and restore accounts, settings and more</string>
<string name="backupDataHintText">Backup accounts, settings, notes and more</string>
<string name="restoreDataHintText">Restore accounts, settings, notes and more</string>
<string name="archivedRepository">සංරක්ෂණය කර ඇත</string>
<string name="archivedRepositoryMessage">මෙම රෙපෝව සංරක්ෂණය කර ඇත. ඔබට ගොනු බැලිය හැක, නමුත් ගැටළු/අදින්න-ඉල්ලීම් තල්ලු කිරීමට හෝ විවෘත කිරීමට නොහැක.</string>
<string name="accountDeletedMessage">ගිණුම සාර්ථකව මකා ඇත</string>

View File

@ -124,7 +124,6 @@
<string name="releasePublishedBy">Published by @%1$s</string>
<string name="noReleaseBodyContent">Release notes are not provided by the publisher.</string>
<string name="newMilestoneTitle">Title</string>
<string name="newMilestoneDescription">Description</string>
<string name="newMilestoneDueDate">Due Date</string>
<string name="milestoneNameErrorEmpty">Milestone title is empty</string>
<string name="milestoneDescError">Milestone description exceeds the max 255 characters limit</string>
@ -139,7 +138,6 @@
<string name="newIssueSelectLabelsListTitle">Select Labels</string>
<string name="newIssueTitle">Title</string>
<string name="newIssueAssigneesListTitle">Assignees</string>
<string name="newIssueDescriptionTitle">Description</string>
<string name="newIssueDueDateTitle">Due Date</string>
<string name="newIssueMilestoneTitle">Milestone</string>
<string name="newIssueLabelsTitle">Labels</string>
@ -201,6 +199,15 @@
<string name="fragmentTabsAnimationHeader">Tabs Animation</string>
<string name="fadeOut">Fade Out</string>
<string name="zoomOut">Zoom Out</string>
<string name="backup">Backup</string>
<string name="restore">Restore</string>
<string name="backupFileSuccess">The backup was successfully created</string>
<string name="backupFileError">An error occurred while creating a data backup</string>
<string name="backupFilePopupText">This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.</string>
<string name="restoreFilePopupText">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.</string>
<string name="restoreError">An error occurred while restoring from the backup file.</string>
<string name="restoreFromBackup">Restore from Backup</string>
<string name="restoreFromBackupPopupText">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.</string>
<!-- settings -->
<string name="noMoreData">No more data available</string>
<string name="createLabel">New Label</string>
@ -245,7 +252,6 @@
<!-- org tabbed layout str -->
<!-- create team -->
<string name="newTeamTitle">Názov tímu</string>
<string name="newTeamDesc">Popis</string>
<string name="newTeamPermission">Povolenia</string>
<string name="newTeamAccessControls">Kontrola prístupu</string>
<string name="newTeamPermissionRead">Členovia môžu prezerať a klonovať tímové repozitáre</string>
@ -276,6 +282,9 @@
<!-- profile section -->
<string name="profileTabFollowers">Followers</string>
<string name="profileTabFollowing">Following</string>
<string name="editSettings">Edit Profile</string>
<string name="hideActivity">Hide Activity from profile page</string>
<string name="hideEmail">Hide Email</string>
<!-- profile section -->
<!-- account settings -->
<string name="accountEmails">Emails</string>
@ -286,6 +295,14 @@
<string name="emailErrorInUse">Email address is already in use</string>
<string name="emailTypeText">Primary</string>
<string name="sshKeys">SSH Keys</string>
<string name="deleteEmailPopupText">This action will permanently delete email %s from your account.</string>
<string name="deleteEmailSuccess">Email deleted successfully</string>
<string name="addSSHKey">Add SSH Key</string>
<string name="sshKeyStatusReadOnly">Read-only Access</string>
<string name="sshKeyStatusReadWrite">Read-write Access</string>
<string name="sshKey">SSH Key</string>
<string name="sshKeySuccess">New SSH key added successfully</string>
<string name="sshKeyError">Invalid SSH key or SSH key already exists</string>
<!-- account settings -->
<!-- single issue section -->
<string name="singleIssueEditLabels">Add / Remove Labels</string>
@ -432,6 +449,8 @@
<string name="none">None</string>
<string name="main">main</string>
<string name="license">License</string>
<string name="title">Title</string>
<string name="description">Description</string>
<!-- generic copy -->
<string name="exploreUsers">Explore users</string>
<string name="exploreIssues">Explore issues</string>
@ -534,6 +553,9 @@
<string name="rateAppHintText">If you like GitNex you can give it a thumbs up</string>
<string name="aboutAppHintText">App version, build, user instance version</string>
<string name="codeEditorHintText">Syntax color, indentation</string>
<string name="backupRestoreHintText">Backup and restore accounts, settings and more</string>
<string name="backupDataHintText">Backup accounts, settings, notes and more</string>
<string name="restoreDataHintText">Restore accounts, settings, notes and more</string>
<string name="archivedRepository">Archived</string>
<string name="archivedRepositoryMessage">This repo is archived. You can view files, but cannot push or open issues/pull-requests.</string>
<string name="accountDeletedMessage">Account deleted successfully</string>

View File

@ -124,7 +124,6 @@
<string name="releasePublishedBy">Published by @%1$s</string>
<string name="noReleaseBodyContent">Release notes are not provided by the publisher.</string>
<string name="newMilestoneTitle">Наслов</string>
<string name="newMilestoneDescription">Опис</string>
<string name="newMilestoneDueDate">Рок</string>
<string name="milestoneNameErrorEmpty">Назив фазе је обавезан</string>
<string name="milestoneDescError">Опис је дужи од максималних 255 карактера</string>
@ -139,7 +138,6 @@
<string name="newIssueSelectLabelsListTitle">Одабери ознаке</string>
<string name="newIssueTitle">Наслов</string>
<string name="newIssueAssigneesListTitle">Задужени</string>
<string name="newIssueDescriptionTitle">Опис</string>
<string name="newIssueDueDateTitle">Рок</string>
<string name="newIssueMilestoneTitle">Фаза</string>
<string name="newIssueLabelsTitle">Ознаке</string>
@ -201,6 +199,15 @@
<string name="fragmentTabsAnimationHeader">Tabs Animation</string>
<string name="fadeOut">Fade Out</string>
<string name="zoomOut">Zoom Out</string>
<string name="backup">Backup</string>
<string name="restore">Restore</string>
<string name="backupFileSuccess">The backup was successfully created</string>
<string name="backupFileError">An error occurred while creating a data backup</string>
<string name="backupFilePopupText">This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.</string>
<string name="restoreFilePopupText">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.</string>
<string name="restoreError">An error occurred while restoring from the backup file.</string>
<string name="restoreFromBackup">Restore from Backup</string>
<string name="restoreFromBackupPopupText">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.</string>
<!-- settings -->
<string name="noMoreData">Нема више података</string>
<string name="createLabel">Нова ознака</string>
@ -245,7 +252,6 @@
<!-- org tabbed layout str -->
<!-- create team -->
<string name="newTeamTitle">Назив тима</string>
<string name="newTeamDesc">Опис</string>
<string name="newTeamPermission">Право</string>
<string name="newTeamAccessControls">Контрола приступа</string>
<string name="newTeamPermissionRead">Чланови могу да виде и клонирају тимске репозиторијуме</string>
@ -276,6 +282,9 @@
<!-- profile section -->
<string name="profileTabFollowers">Прате ме</string>
<string name="profileTabFollowing">Пратим</string>
<string name="editSettings">Edit Profile</string>
<string name="hideActivity">Hide Activity from profile page</string>
<string name="hideEmail">Hide Email</string>
<!-- profile section -->
<!-- account settings -->
<string name="accountEmails">Emails</string>
@ -286,6 +295,14 @@
<string name="emailErrorInUse">Неко већ користи ову имејл-адресу</string>
<string name="emailTypeText">Главна адреса</string>
<string name="sshKeys">SSH Keys</string>
<string name="deleteEmailPopupText">This action will permanently delete email %s from your account.</string>
<string name="deleteEmailSuccess">Email deleted successfully</string>
<string name="addSSHKey">Add SSH Key</string>
<string name="sshKeyStatusReadOnly">Read-only Access</string>
<string name="sshKeyStatusReadWrite">Read-write Access</string>
<string name="sshKey">SSH Key</string>
<string name="sshKeySuccess">New SSH key added successfully</string>
<string name="sshKeyError">Invalid SSH key or SSH key already exists</string>
<!-- account settings -->
<!-- single issue section -->
<string name="singleIssueEditLabels">Додај или уклони ознаку</string>
@ -432,6 +449,8 @@
<string name="none">None</string>
<string name="main">main</string>
<string name="license">License</string>
<string name="title">Title</string>
<string name="description">Description</string>
<!-- generic copy -->
<string name="exploreUsers">Explore users</string>
<string name="exploreIssues">Explore issues</string>
@ -534,6 +553,9 @@
<string name="rateAppHintText">If you like GitNex you can give it a thumbs up</string>
<string name="aboutAppHintText">App version, build, user instance version</string>
<string name="codeEditorHintText">Syntax color, indentation</string>
<string name="backupRestoreHintText">Backup and restore accounts, settings and more</string>
<string name="backupDataHintText">Backup accounts, settings, notes and more</string>
<string name="restoreDataHintText">Restore accounts, settings, notes and more</string>
<string name="archivedRepository">Archived</string>
<string name="archivedRepositoryMessage">This repo is archived. You can view files, but cannot push or open issues/pull-requests.</string>
<string name="accountDeletedMessage">Account deleted successfully</string>

View File

@ -124,7 +124,6 @@
<string name="releasePublishedBy">\@%1$s tarafından yayınlandı</string>
<string name="noReleaseBodyContent">Release notes are not provided by the publisher.</string>
<string name="newMilestoneTitle">Başlık</string>
<string name="newMilestoneDescription">ıklama</string>
<string name="newMilestoneDueDate">Bitiş Tarihi</string>
<string name="milestoneNameErrorEmpty">Kilometre taşı başlığı boş</string>
<string name="milestoneDescError">Kilometre taşııklaması 255 karakter limitini aşıyor</string>
@ -139,7 +138,6 @@
<string name="newIssueSelectLabelsListTitle">Etiket Seç</string>
<string name="newIssueTitle">Başlık</string>
<string name="newIssueAssigneesListTitle">Atananlar</string>
<string name="newIssueDescriptionTitle">ıklama</string>
<string name="newIssueDueDateTitle">Bitiş Tarihi</string>
<string name="newIssueMilestoneTitle">Kilometre Taşı</string>
<string name="newIssueLabelsTitle">Etiketler</string>
@ -201,6 +199,15 @@
<string name="fragmentTabsAnimationHeader">Tabs Animation</string>
<string name="fadeOut">Fade Out</string>
<string name="zoomOut">Zoom Out</string>
<string name="backup">Backup</string>
<string name="restore">Restore</string>
<string name="backupFileSuccess">The backup was successfully created</string>
<string name="backupFileError">An error occurred while creating a data backup</string>
<string name="backupFilePopupText">This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.</string>
<string name="restoreFilePopupText">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.</string>
<string name="restoreError">An error occurred while restoring from the backup file.</string>
<string name="restoreFromBackup">Restore from Backup</string>
<string name="restoreFromBackupPopupText">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.</string>
<!-- settings -->
<string name="noMoreData">Daha fazla veri yok</string>
<string name="createLabel">Yeni Etiket</string>
@ -245,7 +252,6 @@
<!-- org tabbed layout str -->
<!-- create team -->
<string name="newTeamTitle">Takım Adı</string>
<string name="newTeamDesc">ıklama</string>
<string name="newTeamPermission">İzin</string>
<string name="newTeamAccessControls">Erişim Kontrolleri</string>
<string name="newTeamPermissionRead">Üyeler takım depolarını görüntüleyebilir ve klonlayabilir</string>
@ -276,6 +282,9 @@
<!-- profile section -->
<string name="profileTabFollowers">Takipçiler</string>
<string name="profileTabFollowing">Takip Edilenler</string>
<string name="editSettings">Edit Profile</string>
<string name="hideActivity">Hide Activity from profile page</string>
<string name="hideEmail">Hide Email</string>
<!-- profile section -->
<!-- account settings -->
<string name="accountEmails">Emails</string>
@ -286,6 +295,14 @@
<string name="emailErrorInUse">E-posta adresi zaten kullanılıyor</string>
<string name="emailTypeText">Birincil</string>
<string name="sshKeys">SSH Keys</string>
<string name="deleteEmailPopupText">This action will permanently delete email %s from your account.</string>
<string name="deleteEmailSuccess">Email deleted successfully</string>
<string name="addSSHKey">Add SSH Key</string>
<string name="sshKeyStatusReadOnly">Read-only Access</string>
<string name="sshKeyStatusReadWrite">Read-write Access</string>
<string name="sshKey">SSH Key</string>
<string name="sshKeySuccess">New SSH key added successfully</string>
<string name="sshKeyError">Invalid SSH key or SSH key already exists</string>
<!-- account settings -->
<!-- single issue section -->
<string name="singleIssueEditLabels">Etiket Ekle/Kaldır</string>
@ -432,6 +449,8 @@
<string name="none">None</string>
<string name="main">main</string>
<string name="license">License</string>
<string name="title">Title</string>
<string name="description">Description</string>
<!-- generic copy -->
<string name="exploreUsers">Kullanıcıları keşfet</string>
<string name="exploreIssues">Konuları keşfet</string>
@ -534,6 +553,9 @@
<string name="rateAppHintText">If you like GitNex you can give it a thumbs up</string>
<string name="aboutAppHintText">App version, build, user instance version</string>
<string name="codeEditorHintText">Syntax color, indentation</string>
<string name="backupRestoreHintText">Backup and restore accounts, settings and more</string>
<string name="backupDataHintText">Backup accounts, settings, notes and more</string>
<string name="restoreDataHintText">Restore accounts, settings, notes and more</string>
<string name="archivedRepository">Archived</string>
<string name="archivedRepositoryMessage">Bu depo arşivlendi. Dosyaları görüntüleyebilir ama konu/değişiklik isteği açamaz veya paylaşamazsınız.</string>
<string name="accountDeletedMessage">Account deleted successfully</string>

View File

@ -124,7 +124,6 @@
<string name="releasePublishedBy">Опубліковано @%1$s</string>
<string name="noReleaseBodyContent">Release notes are not provided by the publisher.</string>
<string name="newMilestoneTitle">Назва</string>
<string name="newMilestoneDescription">Опис</string>
<string name="newMilestoneDueDate">Термін виконання</string>
<string name="milestoneNameErrorEmpty">Назва етапу порожня</string>
<string name="milestoneDescError">Довжина опису етапу перевищує 255 символів</string>
@ -139,7 +138,6 @@
<string name="newIssueSelectLabelsListTitle">Оберіть мітки</string>
<string name="newIssueTitle">Назва</string>
<string name="newIssueAssigneesListTitle">Відповідальні</string>
<string name="newIssueDescriptionTitle">Опис</string>
<string name="newIssueDueDateTitle">Термін виконання</string>
<string name="newIssueMilestoneTitle">Етап</string>
<string name="newIssueLabelsTitle">Мітки</string>
@ -201,6 +199,15 @@
<string name="fragmentTabsAnimationHeader">Tabs Animation</string>
<string name="fadeOut">Fade Out</string>
<string name="zoomOut">Zoom Out</string>
<string name="backup">Backup</string>
<string name="restore">Restore</string>
<string name="backupFileSuccess">The backup was successfully created</string>
<string name="backupFileError">An error occurred while creating a data backup</string>
<string name="backupFilePopupText">This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.</string>
<string name="restoreFilePopupText">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.</string>
<string name="restoreError">An error occurred while restoring from the backup file.</string>
<string name="restoreFromBackup">Restore from Backup</string>
<string name="restoreFromBackupPopupText">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.</string>
<!-- settings -->
<string name="noMoreData">Даних більше немає</string>
<string name="createLabel">Створити мітку</string>
@ -245,7 +252,6 @@
<!-- org tabbed layout str -->
<!-- create team -->
<string name="newTeamTitle">Назва команди</string>
<string name="newTeamDesc">Опис</string>
<string name="newTeamPermission">Дозвіл</string>
<string name="newTeamAccessControls">Контроль доступу</string>
<string name="newTeamPermissionRead">Учасники можуть переглядати та клонувати репозиторії команди</string>
@ -276,6 +282,9 @@
<!-- profile section -->
<string name="profileTabFollowers">Читачі</string>
<string name="profileTabFollowing">Читає</string>
<string name="editSettings">Edit Profile</string>
<string name="hideActivity">Hide Activity from profile page</string>
<string name="hideEmail">Hide Email</string>
<!-- profile section -->
<!-- account settings -->
<string name="accountEmails">Emails</string>
@ -286,6 +295,14 @@
<string name="emailErrorInUse">Адреса Email вже використовується</string>
<string name="emailTypeText">Основна</string>
<string name="sshKeys">SSH Keys</string>
<string name="deleteEmailPopupText">This action will permanently delete email %s from your account.</string>
<string name="deleteEmailSuccess">Email deleted successfully</string>
<string name="addSSHKey">Add SSH Key</string>
<string name="sshKeyStatusReadOnly">Read-only Access</string>
<string name="sshKeyStatusReadWrite">Read-write Access</string>
<string name="sshKey">SSH Key</string>
<string name="sshKeySuccess">New SSH key added successfully</string>
<string name="sshKeyError">Invalid SSH key or SSH key already exists</string>
<!-- account settings -->
<!-- single issue section -->
<string name="singleIssueEditLabels">Додати / Видалити мітки</string>
@ -432,6 +449,8 @@
<string name="none">None</string>
<string name="main">main</string>
<string name="license">License</string>
<string name="title">Title</string>
<string name="description">Description</string>
<!-- generic copy -->
<string name="exploreUsers">Explore users</string>
<string name="exploreIssues">Explore issues</string>
@ -534,6 +553,9 @@
<string name="rateAppHintText">If you like GitNex you can give it a thumbs up</string>
<string name="aboutAppHintText">App version, build, user instance version</string>
<string name="codeEditorHintText">Syntax color, indentation</string>
<string name="backupRestoreHintText">Backup and restore accounts, settings and more</string>
<string name="backupDataHintText">Backup accounts, settings, notes and more</string>
<string name="restoreDataHintText">Restore accounts, settings, notes and more</string>
<string name="archivedRepository">Архівовано</string>
<string name="archivedRepositoryMessage">This repo is archived. You can view files, but cannot push or open issues/pull-requests.</string>
<string name="accountDeletedMessage">Account deleted successfully</string>

View File

@ -46,7 +46,7 @@
<string name="newRepoDescTintCopy">仓库描述</string>
<string name="newRepoPrivateCopy">私有</string>
<string name="newRepoOwner">所有者</string>
<string name="newRepoIssueLabels">Issue Labels</string>
<string name="newRepoIssueLabels">问题标记</string>
<string name="setAsTemplate">设置仓库为模板仓库</string>
<string name="newOrgTintCopy">组织名称</string>
<string name="newOrgDescTintCopy">组织描述</string>
@ -124,7 +124,6 @@
<string name="releasePublishedBy">由 @%1$s 发布</string>
<string name="noReleaseBodyContent">发布者没有提供发行日志</string>
<string name="newMilestoneTitle">标题</string>
<string name="newMilestoneDescription">描述</string>
<string name="newMilestoneDueDate">截止日期</string>
<string name="milestoneNameErrorEmpty">里程碑标题为空</string>
<string name="milestoneDescError">里程碑描述超过最大255个字符限制</string>
@ -139,7 +138,6 @@
<string name="newIssueSelectLabelsListTitle">选择标签</string>
<string name="newIssueTitle">标题</string>
<string name="newIssueAssigneesListTitle">指派人</string>
<string name="newIssueDescriptionTitle">说明</string>
<string name="newIssueDueDateTitle">到期日</string>
<string name="newIssueMilestoneTitle">里程碑</string>
<string name="newIssueLabelsTitle">标签</string>
@ -201,6 +199,15 @@
<string name="fragmentTabsAnimationHeader">标签页动画</string>
<string name="fadeOut">淡出</string>
<string name="zoomOut">缩小</string>
<string name="backup">备份</string>
<string name="restore">恢复</string>
<string name="backupFileSuccess">已成功创建备份</string>
<string name="backupFileError">创建数据备份时发生错误</string>
<string name="backupFilePopupText">此操作将备份与存储库相关的帐户、设置、草稿、注释和数据。\n\n单击 备份 按钮下载备份文件。</string>
<string name="restoreFilePopupText">您即将从 GitNex 生成的备份文件还原。这将恢复与存储库相关的用户帐户、设置、草稿、注释和数据。\n\n请注意此操作将覆盖当前数据库数据。请谨慎操作。\n\n点击 恢复 按钮执行该操作。</string>
<string name="restoreError">从备份文件恢复时发生错误。</string>
<string name="restoreFromBackup">从备份中恢复</string>
<string name="restoreFromBackupPopupText">您即将从 GitNex 生成的备份文件还原。这将恢复与存储库相关的用户帐户、设置、草稿、注释和数据。\n\n点击 恢复 按钮执行该操作。</string>
<!-- settings -->
<string name="noMoreData">没有更多可用数据</string>
<string name="createLabel">创建标签</string>
@ -245,7 +252,6 @@
<!-- org tabbed layout str -->
<!-- create team -->
<string name="newTeamTitle">团队名称</string>
<string name="newTeamDesc">说明</string>
<string name="newTeamPermission">权限</string>
<string name="newTeamAccessControls">访问控制</string>
<string name="newTeamPermissionRead">成员可以查看并克隆团队仓库</string>
@ -276,6 +282,9 @@
<!-- profile section -->
<string name="profileTabFollowers">关注者</string>
<string name="profileTabFollowing">正在关注</string>
<string name="editSettings">编辑简介</string>
<string name="hideActivity">从简介页面隐藏活动</string>
<string name="hideEmail">隐藏电子邮箱地址</string>
<!-- profile section -->
<!-- account settings -->
<string name="accountEmails">电子邮件</string>
@ -286,6 +295,14 @@
<string name="emailErrorInUse">电子邮件地址已被使用</string>
<string name="emailTypeText">主要</string>
<string name="sshKeys">SSH 密钥</string>
<string name="deleteEmailPopupText">此操作将永久删除您帐户中的电子邮箱 %s。</string>
<string name="deleteEmailSuccess">成功删除该电子邮箱地址</string>
<string name="addSSHKey">添加SSH密钥</string>
<string name="sshKeyStatusReadOnly">只读权限</string>
<string name="sshKeyStatusReadWrite">读/写权限</string>
<string name="sshKey">SSH 密钥</string>
<string name="sshKeySuccess">新 SSH 密钥添加成功</string>
<string name="sshKeyError">无效的 SSH 密钥或该 SSH 密钥已经存在</string>
<!-- account settings -->
<!-- single issue section -->
<string name="singleIssueEditLabels">添加/删除标签</string>
@ -430,8 +447,10 @@
<string name="reset">重置</string>
<string name="beta">测试</string>
<string name="none"></string>
<string name="main">main</string>
<string name="main">主分支</string>
<string name="license">许可证</string>
<string name="title">标题</string>
<string name="description">描述</string>
<!-- generic copy -->
<string name="exploreUsers">探索用户</string>
<string name="exploreIssues">探索问题</string>
@ -445,7 +464,7 @@
<string name="versionUnsupportedNew">检测到新的 Gitea 版本!请更新 GitNex</string>
<string name="versionUnknown">未检测到Gitea</string>
<string name="versionAlertDialogHeader">不支持的 Gitea 版本</string>
<string name="loginViaPassword">Basic Auth</string>
<string name="loginViaPassword">基本认证</string>
<string name="unauthorizedApiError">令牌可能已失效,请检查后重试</string>
<string name="loginTokenError">令牌是必需的。</string>
<string name="prDeletedFork">已删除分叉</string>
@ -534,6 +553,9 @@
<string name="rateAppHintText">如果你喜欢GitNex你可以给它点赞</string>
<string name="aboutAppHintText">应用程序版本、构建、用户实例版本</string>
<string name="codeEditorHintText">语法高亮,缩进</string>
<string name="backupRestoreHintText">备份并还原帐户、设置等</string>
<string name="backupDataHintText">备份帐户,设置,注释和更多</string>
<string name="restoreDataHintText">还原帐户、设置、注释等</string>
<string name="archivedRepository">已存档</string>
<string name="archivedRepositoryMessage">此代码库已存档。您可以查看文件但不能推送或打开issues/合并请求。</string>
<string name="accountDeletedMessage">帐户删除成功</string>
@ -749,9 +771,9 @@
<string name="transferredRepository">转移仓库 %1$s 到</string>
<string name="createdBranch">建立分支 %1$s 于</string>
<string name="pushedTo">pushed to %1$s at</string>
<string name="openedIssue">opened issue</string>
<string name="commentedOnIssue">commented on issue</string>
<string name="closedIssue">closed issue</string>
<string name="openedIssue">打开的问题</string>
<string name="commentedOnIssue">已评论问题</string>
<string name="closedIssue">已关闭问题</string>
<string name="reopenedIssue">重新开启的工单</string>
<string name="createdPR">已创建的合并请求</string>
<string name="closedPR">已关闭的合并请求</string>
@ -759,7 +781,7 @@
<string name="mergedPR">已合并的合并请求</string>
<string name="approved">已通过</string>
<string name="suggestedChanges">建议更改</string>
<string name="commentedOnPR">commented on pull request</string>
<string name="commentedOnPR">已评论合并请求</string>
<string name="autoMergePR">自动合并的合并请求</string>
<string name="deletedBranch">deleted branch %1$s at</string>
<string name="pushedTag">推送标签 %1$s 到</string>
@ -768,7 +790,7 @@
<string name="syncedCommits">synced commits to %1$s at</string>
<string name="syncedRefs">synced new reference %1$s to</string>
<string name="syncedDeletedRefs">synced and deleted reference %1$s at</string>
<string name="attachment">Attachment</string>
<string name="attachments">Attachments</string>
<string name="attachment">附件</string>
<string name="attachments">附件</string>
<string name="attachmentsSaveError">An issue was created but cannot process attachments at this time. Check the server logs for more details.</string>
</resources>

View File

@ -13,9 +13,9 @@
<string name="navAdministration">Instance Administration</string>
<string name="navMyIssues">我的議題</string>
<string name="navMostVisited">最常瀏覽的倉儲</string>
<string name="navNotes">Notes</string>
<string name="navNotes">備註</string>
<string name="navAccount">帳號設定</string>
<string name="navWatchedRepositories">Watched Repositories</string>
<string name="navWatchedRepositories">已看過的倉儲</string>
<!-- menu items -->
<!-- page titles -->
<string name="pageTitleNewRepo">新增倉儲</string>
@ -40,44 +40,44 @@
<string name="repoName">Demo repo</string>
<string name="repoDescription">Demo description</string>
<string name="orgName">Demo organization</string>
<string name="newCreateButtonCopy">Create</string>
<string name="newCreateButtonCopy">建立</string>
<string name="newUpdateButtonCopy">更新</string>
<string name="newRepoTintCopy">倉儲名稱</string>
<string name="newRepoDescTintCopy">倉儲描述</string>
<string name="newRepoPrivateCopy">Private</string>
<string name="newRepoOwner">Owner</string>
<string name="newRepoPrivateCopy">不公開</string>
<string name="newRepoOwner">擁有者</string>
<string name="newRepoIssueLabels">議題標籤</string>
<string name="setAsTemplate">Make repository a template</string>
<string name="setAsTemplate">建立倉儲爲模板</string>
<string name="newOrgTintCopy">組織名稱</string>
<string name="newOrgDescTintCopy">Organization Description</string>
<string name="newOrgDescTintCopy">組織描述</string>
<string name="organizationFullname">%1$s - %2$s</string>
<string name="userName">使用者名稱</string>
<string name="passWord">密碼</string>
<string name="btnLogin">登入</string>
<string name="instanceUrl">執行個體網址</string>
<string name="navigationDrawerOpen">Open Navigation Drawer</string>
<string name="navigationDrawerClose">Close Navigation Drawer</string>
<string name="protocol">Protocol</string>
<string name="urlInfoTooltip">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.</string>
<string name="malformedUrl">Couldn\'t connect to host. Please check your URL or port for any errors</string>
<string name="protocolError">It is not recommended to use HTTP protocol unless you are testing on local network</string>
<string name="navigationDrawerOpen">開啓側邊導航選單</string>
<string name="navigationDrawerClose">關閉側邊導航選單</string>
<string name="protocol">協定</string>
<string name="urlInfoTooltip">1- 選擇正確的協定 (https 或 http)。 \n2- 輸入實體 URL e.g.: try.gitea.io 。\n 3- 如果你已經爲你的帳號啓用 2FA輸入以下代碼到 OPT 代碼欄位。\n4- 對於 HTTP 基本驗證,請在 URL 欄位使用 USERNAME@DOMAIN.COM。</string>
<string name="malformedUrl">無法連線到主機,請確認你的 URL 或埠號是否存在任何錯誤。</string>
<string name="protocolError">除非你正在測試或使用區域網路,否則不建議使用 HTTP 協定。</string>
<string name="malformedJson">Malformed JSON was received. Server response was not successful</string>
<string name="emptyFieldURL">Instance URL is required</string>
<string name="emptyFieldUsername">Username is required</string>
<string name="emptyFieldPassword">Password is required</string>
<string name="protocolEmptyError">Protocol is required</string>
<string name="instanceHelperText">Enter URL without http or https. Example: codeberg.org</string>
<string name="checkNetConnection">Cannot access network, please check your Internet connection</string>
<string name="repoNameErrorEmpty">Repository name is empty</string>
<string name="repoNameErrorInvalid">Repository name is not valid. [a&#8211;z A&#8211;Z 0&#8211;9 &#8211; _]</string>
<string name="repoNameErrorReservedName">Repository name is reserved</string>
<string name="repoNameErrorReservedPatterns">Repository name contains reserved keywords</string>
<string name="repoDescError">Repository description exceeds the max 255 characters limit</string>
<string name="repoCreated">Repository created successfully</string>
<string name="emptyFieldURL">實體 URL 爲必填欄位</string>
<string name="emptyFieldUsername">使用者名稱爲必填欄位</string>
<string name="emptyFieldPassword">密碼爲必填欄位</string>
<string name="protocolEmptyError">協定爲必填欄位</string>
<string name="instanceHelperText">輸入 URL不包含 http 或 https。例如 codeberg.org</string>
<string name="checkNetConnection">無法存取網路,請確認你的網際網路連線。</string>
<string name="repoNameErrorEmpty">倉儲名稱爲空</string>
<string name="repoNameErrorInvalid">倉儲名稱無效。[a&#8211;z A&#8211;Z 0&#8211;9 &#8211; _]</string>
<string name="repoNameErrorReservedName">倉儲名稱已被保留</string>
<string name="repoNameErrorReservedPatterns">倉儲名稱包含已保留關鍵字</string>
<string name="repoDescError">倉儲描述超過最多 255 個字元限制</string>
<string name="repoCreated">成功建立倉儲</string>
<string name="repoExistsError">Repository of this name already exists under selected Owner</string>
<string name="repoOwnerError">Select owner for the repository</string>
<string name="repoDefaultBranchError">The default branch must not be empty</string>
<string name="orgNameErrorEmpty">Organization name is empty</string>
<string name="repoOwnerError">選擇倉儲擁有者</string>
<string name="repoDefaultBranchError">預設分支不能爲空</string>
<string name="orgNameErrorEmpty">組織名稱爲空</string>
<string name="orgNameErrorInvalid">Organization name is not valid, [a&#8211;z A&#8211;Z 0&#8211;9 &#8211; _]</string>
<string name="orgDescError">Organization description exceeds the max 255 characters limit</string>
<string name="orgCreated">Organization created successfully</string>
@ -90,18 +90,18 @@
<string name="orgContentAvatar">Org</string>
<string name="repoContentAvatar">Repo</string>
<string name="privateAvatar">Pri</string>
<string name="removeContent">Remove</string>
<string name="removeContent">移除</string>
<string name="genericApiError">Instance has returned an error. Code %d</string>
<string name="tabTextInfo">Details</string>
<string name="tabTextFiles">Files</string>
<string name="tabTextMl">Milestones</string>
<string name="tabTextInfo">詳細資料</string>
<string name="tabTextFiles">檔案</string>
<string name="tabTextMl">里程碑</string>
<string name="tabTextReleases">Releases</string>
<string name="tabTextBranches">Branches</string>
<string name="tabTextCollaborators">Collaborators</string>
<string name="tabTextBranches">分支</string>
<string name="tabTextCollaborators">協作者</string>
<string name="tabPullRequests">Pull Requests</string>
<string name="pullRequest">Pull Request</string>
<string name="infoTabRepoSize">Size</string>
<string name="infoTabRepoDefaultBranch">Default Branch</string>
<string name="infoTabRepoDefaultBranch">預設分支</string>
<string name="infoTabRepoSshUrl">SSH URL</string>
<string name="infoTabRepoCloneUrl">Clone URL</string>
<string name="infoTabRepoRepoUrl">Repo URL</string>
@ -117,77 +117,75 @@
<string name="commentButtonText">Comment</string>
<string name="commentEmptyError">Please write your comment</string>
<string name="commentSuccess">Comment posted</string>
<string name="featureDeprecated">This function will be removed in the future</string>
<string name="featureDeprecated">這個函式將於未來移除</string>
<string name="generalImgContentText">Image</string>
<string name="commitAuthor">Commit author: %1$s</string>
<string name="releaseDownloadText">Downloads</string>
<string name="releaseDownloadText">下載</string>
<string name="releasePublishedBy">Published by @%1$s</string>
<string name="noReleaseBodyContent">Release notes are not provided by the publisher.</string>
<string name="newMilestoneTitle">Title</string>
<string name="newMilestoneDescription">Description</string>
<string name="newMilestoneDueDate">Due Date</string>
<string name="milestoneNameErrorEmpty">Milestone title is empty</string>
<string name="milestoneDescError">Milestone description exceeds the max 255 characters limit</string>
<string name="milestoneCreated">Milestone created successfully</string>
<string name="milestoneDateEmpty">Please choose due date</string>
<string name="milestoneNoDueDate">No due date</string>
<string name="milestoneNoDescription">No description</string>
<string name="milestoneIssueStatusOpen">%1$d Open</string>
<string name="milestoneIssueStatusClosed">%1$d Closed</string>
<string name="selectMilestone">Select Milestone</string>
<string name="newIssueSelectAssigneesListTitle">Select Assignees</string>
<string name="newIssueSelectLabelsListTitle">Select Labels</string>
<string name="noReleaseBodyContent">發行備註未由發行者提供</string>
<string name="newMilestoneTitle">標題</string>
<string name="newMilestoneDueDate">截止日期</string>
<string name="milestoneNameErrorEmpty">里程碑標題爲空</string>
<string name="milestoneDescError">里程碑描述超過最多 255 個字元限制</string>
<string name="milestoneCreated">成功建立里程碑</string>
<string name="milestoneDateEmpty">請選擇截止日期</string>
<string name="milestoneNoDueDate">無截止日期</string>
<string name="milestoneNoDescription">無描述</string>
<string name="milestoneIssueStatusOpen">%1$d 開放中</string>
<string name="milestoneIssueStatusClosed">%1$d 已關閉</string>
<string name="selectMilestone">選擇里程碑</string>
<string name="newIssueSelectAssigneesListTitle">選擇負責人</string>
<string name="newIssueSelectLabelsListTitle">選擇標籤</string>
<string name="newIssueTitle">Title</string>
<string name="newIssueAssigneesListTitle">Assignees</string>
<string name="newIssueDescriptionTitle">Description</string>
<string name="newIssueDueDateTitle">Due Date</string>
<string name="newIssueMilestoneTitle">Milestone</string>
<string name="newIssueLabelsTitle">Labels</string>
<string name="issueTitleEmpty">Issue title is empty</string>
<string name="issueDescriptionEmpty">Issue description is empty</string>
<string name="issueCreated">New issue created successfully</string>
<string name="issueCreatedNoMilestone">No milestone</string>
<string name="noAssigneesFound">No assignees found</string>
<string name="newIssueAssigneesListTitle">負責人</string>
<string name="newIssueDueDateTitle">截止日期</string>
<string name="newIssueMilestoneTitle">里程碑</string>
<string name="newIssueLabelsTitle">標籤</string>
<string name="issueTitleEmpty">議題標題爲空</string>
<string name="issueDescriptionEmpty">議題描述爲空</string>
<string name="issueCreated">成功建立新議題</string>
<string name="issueCreatedNoMilestone">無里程碑</string>
<string name="noAssigneesFound">找不到負責人</string>
<!-- settings -->
<string name="settingsLanguageHeaderText">Translation</string>
<string name="settingsLanguageSystem">System</string>
<string name="settingsSecurityHeader">Security</string>
<string name="settingsLanguageHeaderText">翻譯</string>
<string name="settingsLanguageSystem">系統</string>
<string name="settingsSecurityHeader">安全性</string>
<string name="settingsCertsSelectorHeader">Delete Trusted Certificates</string>
<string name="settingsCertsPopupTitle">Delete Trusted Certificates?</string>
<string name="settingsCertsPopupMessage">Are you sure to delete any manually trusted certificate or hostname? \n\nYou will also be logged out.</string>
<string name="settingsSave">Settings saved</string>
<string name="settingsLanguageSelectorHeader">Language</string>
<string name="settingsLanguageSelectedHeaderDefault">English</string>
<string name="settingsAppearanceHeader">Appearance</string>
<string name="settingsLanguageSelectorDialogTitle">Choose Language</string>
<string name="settingsLanguageSelectorHeader">語言</string>
<string name="settingsLanguageSelectedHeaderDefault">英文</string>
<string name="settingsAppearanceHeader">外觀</string>
<string name="settingsLanguageSelectorDialogTitle">選擇語言</string>
<string name="settingsLightThemeTimeSelectorHeader">Light Theme Switch Time</string>
<string name="settingsDarkThemeTimeSelectorHeader">Dark Theme Switch Time</string>
<string name="settingsTimeSelectorDialogTitle">Choose Time Format</string>
<string name="settingsHelpTranslateText">Translate GitNex via Crowdin</string>
<string name="codeBlockHeaderText">Code Block Color</string>
<string name="settingsCodeBlockSelectorDialogTitle">Code Block Color Selector</string>
<string name="settingsHomeScreenHeaderText">Home Screen</string>
<string name="settingsHomeScreenSelectedText">My Repositories</string>
<string name="settingsHomeScreenSelectorDialogTitle">Select Home Screen</string>
<string name="settingsCustomFontHeaderText">Font</string>
<string name="settingsCustomFontSelectorDialogTitle">Choose Font</string>
<string name="themeSelectorDialogTitle">Select App Theme</string>
<string name="themeSelectionHeaderText">Theme</string>
<string name="settingsTimeSelectorDialogTitle">選擇時間格式</string>
<string name="settingsHelpTranslateText">從 Crowdin 翻譯 GitNex</string>
<string name="codeBlockHeaderText">程式碼區塊顏色</string>
<string name="settingsCodeBlockSelectorDialogTitle">程式碼區塊顏色選擇器</string>
<string name="settingsHomeScreenHeaderText">主畫面</string>
<string name="settingsHomeScreenSelectedText">我的倉儲</string>
<string name="settingsHomeScreenSelectorDialogTitle">選擇主畫面</string>
<string name="settingsCustomFontHeaderText">字體</string>
<string name="settingsCustomFontSelectorDialogTitle">選擇字體</string>
<string name="themeSelectorDialogTitle">選擇應用程式主題</string>
<string name="themeSelectionHeaderText">主題</string>
<string name="settingsCounterBadges">Counter Badges</string>
<string name="settingsFileViewerSourceCodeHeaderText">Source Code Theme</string>
<string name="cacheSizeDataDialogHeader">Data Cache Size</string>
<string name="cacheSizeDataSelectionHeaderText">Data Cache Size</string>
<string name="cacheSizeImagesDialogHeader">Images Cache Size</string>
<string name="cacheSizeImagesSelectionHeaderText">Images Cache Size</string>
<string name="clearCacheSelectionHeaderText">Clear Cache</string>
<string name="clearCacheDialogHeader">Clear Cache?</string>
<string name="settingsFileViewerSourceCodeHeaderText">原始碼主題</string>
<string name="cacheSizeDataDialogHeader">資料快取大小</string>
<string name="cacheSizeDataSelectionHeaderText">資料快取大小</string>
<string name="cacheSizeImagesDialogHeader">圖片快取大小</string>
<string name="cacheSizeImagesSelectionHeaderText">圖片快取大小</string>
<string name="clearCacheSelectionHeaderText">清除快取</string>
<string name="clearCacheDialogHeader">清除快取?</string>
<string name="clearCacheDialogMessage">This will delete all the cache data including files and images.\n\nProceed with deletion?</string>
<string name="draftsHeader">Drafts</string>
<string name="draftsHintText">Comments draft</string>
<string name="settingsEnableCommentsDeletionText">Enable Drafts Deletion</string>
<string name="settingsEnableCommentsDeletionHintText">Delete comment draft when comment is posted</string>
<string name="settingsGeneralHeader">General</string>
<string name="generalHintText">Home screen, drafts, crash reports</string>
<string name="draftsHeader">草稿</string>
<string name="draftsHintText">留言草稿</string>
<string name="settingsEnableCommentsDeletionText">啓用草稿刪除</string>
<string name="settingsEnableCommentsDeletionHintText">當留言發佈時,刪除留言草稿</string>
<string name="settingsGeneralHeader">一般</string>
<string name="generalHintText">主畫面,草稿,崩潰報告</string>
<string name="generalDeepLinkDefaultScreen">Default Link Handler</string>
<string name="generalDeepLinkDefaultScreenHintText">Choose what screen should be loaded if the app cannot handle external links. It will redirect you automatically.</string>
<string name="linkSelectorDialogTitle">Select Default Link Handler Screen</string>
@ -195,48 +193,57 @@
<string name="settingsLabelsInListHeader">Labels With Text Support</string>
<string name="settingsLabelsInListHint">Enabling this will show labels with text in issues and pr lists, default are color dots</string>
<string name="ceSyntaxHighlightColor">Syntax Highlighting Color</string>
<string name="ceIndentation">Indentation</string>
<string name="ceIndentation">縮排</string>
<string name="ceIndentationTabsWidth">Tabs Width</string>
<string name="system_font">System Default Font</string>
<string name="fragmentTabsAnimationHeader">Tabs Animation</string>
<string name="fadeOut">Fade Out</string>
<string name="system_font">系統預設字體</string>
<string name="fragmentTabsAnimationHeader">分頁動畫</string>
<string name="fadeOut">淡出</string>
<string name="zoomOut">Zoom Out</string>
<string name="backup">Backup</string>
<string name="restore">Restore</string>
<string name="backupFileSuccess">The backup was successfully created</string>
<string name="backupFileError">An error occurred while creating a data backup</string>
<string name="backupFilePopupText">This action will backup your accounts, settings, drafts, notes, and data related to repositories.\n\nClick the Backup button to download the backup file.</string>
<string name="restoreFilePopupText">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.</string>
<string name="restoreError">An error occurred while restoring from the backup file.</string>
<string name="restoreFromBackup">Restore from Backup</string>
<string name="restoreFromBackupPopupText">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.</string>
<!-- settings -->
<string name="noMoreData">No more data available</string>
<string name="createLabel">New Label</string>
<string name="menuTitleText">Repo Menu</string>
<string name="labelName">Label Name</string>
<string name="labelColor">Label Color</string>
<string name="labelEmptyError">Label name is empty</string>
<string name="labelNameError">Label name is not valid</string>
<string name="labelCreated">Label created</string>
<string name="labelUpdated">Label updated</string>
<string name="labelMenuContentDesc">Desc</string>
<string name="labelDeleteText">Label deleted</string>
<string name="selectBranchError">Select a branch for release</string>
<string name="createLabel">新增標籤</string>
<string name="menuTitleText">倉儲主選單</string>
<string name="labelName">標籤名稱</string>
<string name="labelColor">標籤顏色</string>
<string name="labelEmptyError">標籤名稱爲空</string>
<string name="labelNameError">標籤名稱無效</string>
<string name="labelCreated">標籤已建立</string>
<string name="labelUpdated">標籤已更新</string>
<string name="labelMenuContentDesc">降冪</string>
<string name="labelDeleteText">標籤已刪除</string>
<string name="selectBranchError">選擇分支以發行</string>
<string name="alertDialogTokenRevokedTitle">Authorization Error</string>
<string name="alertDialogTokenRevokedMessage">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</string>
<string name="labelDeleteMessage">Do you really want to delete this label?</string>
<!-- org tabbed layout str -->
<string name="orgTabTeams">Teams</string>
<string name="orgTabMembers">Members</string>
<string name="teamTitle">Team name</string>
<string name="orgTabTeams">團隊</string>
<string name="orgTabMembers">成員</string>
<string name="teamTitle">團隊名稱</string>
<string name="teamDescription">Team desc</string>
<string name="teamPermissions">Permissions</string>
<string name="teamPermissions">權限</string>
<string name="teamPermissionNone">• Members of this team do not have any permissions.</string>
<string name="teamPermissionRead">• Members of this team can view team repositories.</string>
<string name="teamPermissionWrite">• Members of this team can view and push to team repositories.</string>
<string name="teamPermissionAdmin">• Members of this team can push to and from team repositories and add collaborators.</string>
<string name="teamPermissionOwner">• Members of this team have owner permissions.</string>
<string name="teamShowAll">show all</string>
<string name="orgMember">Org members</string>
<string name="orgTeamMembers">Organization team members</string>
<string name="removeTeamMember">Remove %s</string>
<string name="addTeamMember">Add %s</string>
<string name="addTeamMemberMessage">Do you want to add this user to the team?</string>
<string name="removeTeamMemberMessage">Do you want to remove this user from the team?</string>
<string name="memberAddedMessage">Member added to the team successfully</string>
<string name="memberRemovedMessage">Member removed from the team successfully</string>
<string name="teamShowAll">顯示全部</string>
<string name="orgMember">組織成員</string>
<string name="orgTeamMembers">組織團隊成員</string>
<string name="removeTeamMember">移除 %s</string>
<string name="addTeamMember">新增 %s</string>
<string name="addTeamMemberMessage">是否將該成員到團隊中?</string>
<string name="removeTeamMemberMessage">是否將該成員從團隊移除?</string>
<string name="memberAddedMessage">成功將成員新增至團隊中</string>
<string name="memberRemovedMessage">成功將成員從團隊移除</string>
<string name="repoAddedMessage">Repository added to the team successfully</string>
<string name="repoRemovedMessage">Repository removed from the team successfully</string>
<string name="repoAddToTeamMessage">Add repository %1$s to organization %2$s team %3$s</string>
@ -244,14 +251,13 @@
<string name="addRemoveMember">Add / Remove Member</string>
<!-- org tabbed layout str -->
<!-- create team -->
<string name="newTeamTitle">Team Name</string>
<string name="newTeamDesc">Description</string>
<string name="newTeamPermission">Permission</string>
<string name="newTeamAccessControls">Access Controls</string>
<string name="newTeamPermissionRead">Members can view and clone team repositories</string>
<string name="newTeamPermissionWrite">Members can read and push to team repositories</string>
<string name="newTeamPermissionAdmin">Members can pull and push to team repositories and add collaborators to them</string>
<string name="teamNameEmpty">Please enter team name</string>
<string name="newTeamTitle">團隊名稱</string>
<string name="newTeamPermission">權限</string>
<string name="newTeamAccessControls">存取控制</string>
<string name="newTeamPermissionRead">成員可以觀看和複製團隊倉儲</string>
<string name="newTeamPermissionWrite">成員可以讀取和推送團隊倉儲</string>
<string name="newTeamPermissionAdmin">成員可以拉取和推送到團隊倉儲以及新增協作者</string>
<string name="teamNameEmpty">請輸入團隊名稱</string>
<string name="teamNameError">Team name should contain only alphanumeric, dash (-), underscore (_) and dot (.) characters</string>
<string name="teamPermissionEmpty">Please select permission</string>
<string name="teamDescError">Team description have illegal characters</string>
@ -276,67 +282,78 @@
<!-- profile section -->
<string name="profileTabFollowers">Followers</string>
<string name="profileTabFollowing">Following</string>
<string name="editSettings">Edit Profile</string>
<string name="hideActivity">Hide Activity from profile page</string>
<string name="hideEmail">Hide Email</string>
<!-- profile section -->
<!-- account settings -->
<string name="accountEmails">Emails</string>
<string name="accountEmailTitle">Email Address</string>
<string name="emailAddedText">New email added successfully</string>
<string name="accountEmails">電子郵件</string>
<string name="accountEmailTitle">電郵地址</string>
<string name="emailAddedText">成功新增電子郵件</string>
<string name="emailErrorEmpty">Email address is empty</string>
<string name="emailErrorInvalid">Email address is not valid</string>
<string name="emailErrorInUse">Email address is already in use</string>
<string name="emailTypeText">Primary</string>
<string name="sshKeys">SSH Keys</string>
<string name="deleteEmailPopupText">This action will permanently delete email %s from your account.</string>
<string name="deleteEmailSuccess">Email deleted successfully</string>
<string name="addSSHKey">Add SSH Key</string>
<string name="sshKeyStatusReadOnly">Read-only Access</string>
<string name="sshKeyStatusReadWrite">Read-write Access</string>
<string name="sshKey">SSH Key</string>
<string name="sshKeySuccess">New SSH key added successfully</string>
<string name="sshKeyError">Invalid SSH key or SSH key already exists</string>
<!-- account settings -->
<!-- single issue section -->
<string name="singleIssueEditLabels">Add / Remove Labels</string>
<string name="labelsUpdated">Labels updated</string>
<string name="closeIssue">Close Issue</string>
<string name="editIssue">Edit Issue</string>
<string name="reOpenIssue">Reopen Issue</string>
<string name="issueStateClosed">Issue closed</string>
<string name="issueStateReopened">Issue reopened</string>
<string name="addRemoveAssignees">Add / Remove Assignees</string>
<string name="assigneesUpdated">Assignees updated</string>
<string name="singleIssueSubscribe">Subscribe</string>
<string name="singleIssueUnSubscribe">Unsubscribe</string>
<string name="editIssue">編輯議題</string>
<string name="reOpenIssue">重啓議題</string>
<string name="issueStateClosed">議題已關閉</string>
<string name="issueStateReopened">議題已重新開啓</string>
<string name="addRemoveAssignees">新增 / 移除負責人</string>
<string name="assigneesUpdated">負責人更新</string>
<string name="singleIssueSubscribe">訂閱</string>
<string name="singleIssueUnSubscribe">取消訂閱</string>
<!-- single issue section -->
<string name="repoMetaData">Repository Meta</string>
<!-- admin -->
<string name="adminCreateNewUser">New User</string>
<string name="adminUsers">System Users</string>
<string name="userRoleAdmin">Admin</string>
<string name="adminCreateNewUser">建立使用者</string>
<string name="adminUsers">系統使用者</string>
<string name="userRoleAdmin">管理員</string>
<string name="adminCron">Cron Tasks</string>
<string name="adminCronScheduleHeader">Schedule</string>
<string name="adminCronNextRunHeader">Next Run</string>
<string name="adminCronLastRunHeader">Last Run</string>
<string name="adminCronScheduleHeader">排程</string>
<string name="adminCronNextRunHeader">下次執行</string>
<string name="adminCronLastRunHeader">上次執行</string>
<string name="adminCronExecutionHeader">Executions</string>
<string name="adminCronTaskSuccessMsg">Task %1$s is initiated successfully</string>
<string name="adminCronTaskSuccessMsg">任務 %1$s 已成功初始化</string>
<!-- admin -->
<!-- create user -->
<string name="userFullNameText">Full Name</string>
<string name="userEmail">Email</string>
<string name="userUserName">Username</string>
<string name="userPassword">Password</string>
<string name="userInvalidFullName">Invalid Full Name</string>
<string name="userInvalidUserName">Invalid Username</string>
<string name="userInvalidEmail">Invalid Email</string>
<string name="userCreatedText">New user added successfully</string>
<string name="userExistsError">User already exists</string>
<string name="userFullNameText">全名</string>
<string name="userEmail">電子郵件</string>
<string name="userUserName">使用者名稱</string>
<string name="userPassword">密碼</string>
<string name="userInvalidFullName">全名無效</string>
<string name="userInvalidUserName">使用者名稱無效</string>
<string name="userInvalidEmail">電子郵件無效</string>
<string name="userCreatedText">成功新增使用者</string>
<string name="userExistsError">使用者已存在</string>
<!-- create user -->
<!-- edit issue -->
<string name="editIssueNavHeader">Edit Issue #%1$s</string>
<string name="editIssueSuccessMessage">Issue updated</string>
<string name="editIssueNavHeader">編輯議題 #%1$s</string>
<string name="editIssueSuccessMessage">議題已更新</string>
<!-- edit issue -->
<!-- release -->
<string name="createRelease">New Release</string>
<string name="releaseTagNameText">Tag Name</string>
<string name="releaseTitleText">Title</string>
<string name="releaseContentText">Content</string>
<string name="createRelease">發行新版本</string>
<string name="releaseTagNameText">標籤名稱</string>
<string name="releaseTitleText">標題</string>
<string name="releaseContentText">內容</string>
<string name="releaseTypeText">Mark as Pre-Release</string>
<string name="releaseBranchText">Select Branch</string>
<string name="releaseDraftText">Draft</string>
<string name="tagNameErrorEmpty">Tag name is empty</string>
<string name="titleErrorEmpty">Title is empty</string>
<string name="releaseBranchText">選擇分支</string>
<string name="releaseDraftText">草稿</string>
<string name="tagNameErrorEmpty">標籤名稱爲空</string>
<string name="titleErrorEmpty">標題爲空</string>
<string name="releaseCreatedText">New release created</string>
<string name="deleteReleaseConfirmation">Do you really want to delete this release?</string>
<string name="releaseDeleted">Release deleted</string>
@ -384,34 +401,34 @@
<string name="okButton">OK</string>
<string name="doneButton">Done</string>
<string name="cancelButton">Cancel</string>
<string name="genericError">Something went wrong, please try again</string>
<string name="genericError">發生錯誤,請重試</string>
<string name="apiNotFound">This request needs higher version than the one installed. Please upgrade your instance to the latest version.</string>
<string name="noDataFound">🌟 Nothing in here 🌟</string>
<string name="addButton">Add</string>
<string name="removeButton">Remove</string>
<string name="authorizeError">You are not authorized to perform this action.</string>
<string name="menuContentDesc">Menu</string>
<string name="menuEditText">Edit</string>
<string name="menuDeleteText">Delete</string>
<string name="menuCopyText">Copy</string>
<string name="noDataFound">🌟 這裡空空如也 🌟</string>
<string name="addButton">新增</string>
<string name="removeButton">移除</string>
<string name="authorizeError">您並未授權執行此操作。</string>
<string name="menuContentDesc">選單</string>
<string name="menuEditText">編輯</string>
<string name="menuDeleteText">刪除</string>
<string name="menuCopyText">複製</string>
<string name="menuQuoteText">Quote Reply</string>
<string name="modifiedText">edited</string>
<string name="saveButton">Save</string>
<string name="websiteText">Website</string>
<string name="locationText">Location</string>
<string name="characters255Limit">Max 255 characters</string>
<string name="emptyFields">All fields are required</string>
<string name="textContinue">Continue</string>
<string name="copyToken">Token</string>
<string name="viewInBrowser">View in Browser</string>
<string name="isOpen">Open</string>
<string name="isClosed">Closed</string>
<string name="genericServerResponseError">We cannot reach the server at the moment, please check your server status and try again</string>
<string name="genericCopyUrl">Copy URL</string>
<string name="genericWaitFor">Hold on</string>
<string name="file">File</string>
<string name="issue">Issue</string>
<string name="labelTxt">Label</string>
<string name="modifiedText">已編輯</string>
<string name="saveButton">儲存</string>
<string name="websiteText">網站</string>
<string name="locationText">位置</string>
<string name="characters255Limit">最多可輸入 255 個字元</string>
<string name="emptyFields">所有欄位爲必填</string>
<string name="textContinue">繼續</string>
<string name="copyToken">權杖</string>
<string name="viewInBrowser">於瀏覽器中檢視</string>
<string name="isOpen">已開啓</string>
<string name="isClosed">已關閉</string>
<string name="genericServerResponseError">我們現在無法連接到伺服器,請確認您的伺服器狀態並重新嘗試。</string>
<string name="genericCopyUrl">複製 URL</string>
<string name="genericWaitFor">稍等</string>
<string name="file">檔案</string>
<string name="issue">議題</string>
<string name="labelTxt">標籤</string>
<string name="release">Release</string>
<string name="pr">Pull Request</string>
<string name="collaborator">Collaborator</string>
@ -432,6 +449,8 @@
<string name="none">None</string>
<string name="main">main</string>
<string name="license">License</string>
<string name="title">Title</string>
<string name="description">Description</string>
<!-- generic copy -->
<string name="exploreUsers">Explore users</string>
<string name="exploreIssues">Explore issues</string>
@ -485,12 +504,12 @@
<string name="editFileMessage">File is modified by branch %1$s</string>
<string name="sizeCopy">Size</string>
<string name="shareIssue">Share Issue</string>
<string name="shareRepository">Share Repository</string>
<string name="createRepository">Create Repository</string>
<string name="commitTitle">Commits</string>
<string name="shareRepository">分享倉儲</string>
<string name="createRepository">建立倉儲</string>
<string name="commitTitle">提交</string>
<string name="commitAuthoredByAndCommittedByWhen"><![CDATA[<b>%1$s</b> authored and <b>%2$s</b> committed %3$s]]></string>
<string name="commitCommittedByWhen"><![CDATA[<b>%1$s</b> committed %2$s]]></string>
<string name="viewCommits">View Commits</string>
<string name="viewCommits">檢視提交</string>
<!-- Memorizing Trust Manager -->
<string name="mtmNotification">Certificate Verification</string>
<string name="mtmAcceptCert">Accept Unknown Certificate?</string>
@ -499,41 +518,44 @@
<string name="mtmAcceptServerName">Accept Mismatching Server Name?</string>
<string name="mtmHostnameMismatch">Server could not authenticate as \&quot;%s\&quot;. The certificate is only valid for:</string>
<string name="mtmConnectAnyway">Do you want to connect anyway?</string>
<string name="mtmCertDetails">Certificate details:</string>
<string name="mtmCertDetails">憑證細節:</string>
<string name="mtmDecisionAlways">Trust</string>
<string name="mtmDecisionAbort">Abort</string>
<string name="subscribedSuccessfully">Subscribed successfully</string>
<string name="alreadySubscribed">You have already subscribed</string>
<string name="subscriptionError">Subscription failed</string>
<string name="unsubscribedSuccessfully">Unsubscribed successfully</string>
<string name="alreadyUnsubscribed">You have already Unsubscribed</string>
<string name="unSubscriptionError">Un-Subscription failed</string>
<string name="closeMilestone">Close Milestone</string>
<string name="openMilestone">Open Milestone</string>
<string name="milestoneStatusUpdate">Milestone status updated successfully</string>
<string name="reportViewerHeader">Crash Reports</string>
<string name="settingsEnableReportsText">Enable Crash Reports</string>
<string name="crashTitle">GitNex has stopped :(</string>
<string name="setCrashReports">Crash reports</string>
<string name="subscribedSuccessfully">成功訂閱</string>
<string name="alreadySubscribed">您已訂閱</string>
<string name="subscriptionError">訂閱失敗</string>
<string name="unsubscribedSuccessfully">成功取消訂閱</string>
<string name="alreadyUnsubscribed">您已取消訂閱</string>
<string name="unSubscriptionError">取消訂閱失敗</string>
<string name="closeMilestone">關閉里程碑</string>
<string name="openMilestone">開啓里程碑</string>
<string name="milestoneStatusUpdate">成功更新里程碑狀態</string>
<string name="reportViewerHeader">當機回報</string>
<string name="settingsEnableReportsText">啓用當機回報</string>
<string name="crashTitle">GitNex 已停止 :(</string>
<string name="setCrashReports">當機回報</string>
<string name="crashMessage">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!</string>
<string name="forceLogoutDialogHeader">Please sign in again</string>
<string name="forceLogoutDialogHeader">請重新登入</string>
<string name="forceLogoutDialogDescription">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.</string>
<string name="deleteAllDrafts">Delete All Drafts</string>
<string name="draftsListEmpty">No drafts found</string>
<string name="draftsDeleteSuccess">Drafts deleted successfully</string>
<string name="draftsSingleDeleteSuccess">Draft deleted successfully</string>
<string name="deleteAllDraftsDialogMessage">This will delete all the drafts for this account. \n\nProceed with deletion?</string>
<string name="draftSaved">Draft was saved automatically.</string>
<string name="resetMostReposCounter">Counter is reset successfully</string>
<string name="resetCounterDialogMessage">Do you want to reset counter for repository %s?</string>
<string name="deleteAllDrafts">刪除所有草稿</string>
<string name="draftsListEmpty">找不到草稿</string>
<string name="draftsDeleteSuccess">成功刪除草稿</string>
<string name="draftsSingleDeleteSuccess">成功刪除草稿</string>
<string name="deleteAllDraftsDialogMessage">將刪除此帳號的所有草稿。\n\n 確定繼續刪除?</string>
<string name="draftSaved">草稿已自動保存</string>
<string name="resetMostReposCounter">成功重設計數器</string>
<string name="resetCounterDialogMessage">您想爲此倉儲 %s 重設計數器嗎?</string>
<string name="resetCounterAllDialogMessage">This will reset all the counters for this account repositories.</string>
<string name="appearanceHintText">Themes, fonts, badges, translation</string>
<string name="securityHintText">Biometric authentication, SSL certificates, cache</string>
<string name="languagesHintText">Languages</string>
<string name="reportsHintText">Crash reports</string>
<string name="reportsHintText">當機回報</string>
<string name="rateAppHintText">如果你也喜歡 GitNext歡迎五星好評</string>
<string name="aboutAppHintText">App version, build, user instance version</string>
<string name="codeEditorHintText">Syntax color, indentation</string>
<string name="codeEditorHintText">語法顏色,縮排</string>
<string name="backupRestoreHintText">備份與還原帳號,設定以及更多</string>
<string name="backupDataHintText">Backup accounts, settings, notes and more</string>
<string name="restoreDataHintText">Restore accounts, settings, notes and more</string>
<string name="archivedRepository">Archived</string>
<string name="archivedRepositoryMessage">This repo is archived. You can view files, but cannot push or open issues/pull-requests.</string>
<string name="accountDeletedMessage">Account deleted successfully</string>
@ -575,7 +597,7 @@
<string name="isUnread">Unread</string>
<string name="repoSettingsTitle">Repository Settings</string>
<string name="repoSettingsEditProperties">Edit Properties</string>
<string name="repoSettingsDelete">Delete Repository</string>
<string name="repoSettingsDelete">刪除倉儲</string>
<string name="repoSettingsDeleteHint">Be careful, this operation CANNOT be undone!</string>
<string name="repoPropertiesTemplate">Set as Template</string>
<string name="repoPropertiesEnableIssues">Enable Issues</string>
@ -683,16 +705,16 @@
<!-- code editor -->
<string name="openInCodeEditor">Open in Code Editor</string>
<!-- notes -->
<string name="newNote">New Note</string>
<string name="newNote">新增備註</string>
<string name="editNote">Edit Note</string>
<string name="newNoteContentHint">Start taking your notes here</string>
<string name="newNoteContentHint">開始撰寫你的筆記吧</string>
<string name="noteDateTime">Created %s</string>
<string name="noteTimeModified">Updated %s</string>
<string name="noteDeleteDialogMessage">Do you really want to delete this note?</string>
<plurals name="noteDeleteMessage">
<item quantity="other">Notes deleted successfully</item>
</plurals>
<string name="notesAllDeletionMessage">This will delete all of your notes. This action cannot be undone.</string>
<string name="notesAllDeletionMessage">將刪除你的所有備註,該操作無法復原。</string>
<!-- timeline -->
<string name="commitsText">commit</string>
<string name="commitText">commit</string>

View File

@ -1,8 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<changelog>
<release version="5.4.0-dev" versioncode="535">
<change>Under development</change>
<release version="5.4.0" versioncode="540">
<change>New: Restore/import app data</change>
<change>New: Backup/export app data</change>
<change>New: Delete email from account</change>
<change>New: Update profile settings</change>
<change>New: Add SSH key to account</change>
<change>Improvement: Open specific URL in deep links</change>
<change>Improvement: Show open in browser with other buttons in deep links</change>
<change>Improvement: Show pinned messages in timeline</change>
<change>Improvement: Hide Comment button if issue is locked</change>
<change>Improvement: New languages and translation updates</change>
<change>Bugfix: Fix crash on dynamic snackbar colors for older Android versions</change>
<change>Bugfix: Fix missing text after links in issue/pr</change>
<change>Bugfix: Fix emoji parsing in code blocks in issue/pr</change>
<change>Bugfix: Fix crash on null objects in timeline from API</change>
<change>Bugfix: Fix not seeing labels for repo admin when code option is disabled</change>
<change>Bugfix: Fix Task list in Markdown</change>
<change>Bugfix: Fix other issues related to Markdown</change>
<change>Bugfix: Fix crash on images with no path</change>
</release>
</changelog>

View File

@ -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