Compare commits

..
Author SHA1 Message Date
Renovate Bot 7eee5fd2ae Update dependency androidx.compose.runtime:runtime to v1.12.0 2026-08-14 02:01:32 +00:00
choelzlandGitHub 1034e961ab New Crowdin updates (#6)
* New translations strings.xml (Romanian)

[ci skip]

* New translations strings.xml (French)

[ci skip]

* New translations strings.xml (Spanish)

[ci skip]

* New translations strings.xml (Afrikaans)

[ci skip]

* New translations strings.xml (Arabic)

[ci skip]

* New translations strings.xml (Catalan)

[ci skip]

* New translations strings.xml (Czech)

[ci skip]

* New translations strings.xml (Danish)

[ci skip]

* New translations strings.xml (German)

[ci skip]

* New translations strings.xml (Greek)

[ci skip]

* New translations strings.xml (Finnish)

[ci skip]

* New translations strings.xml (Hebrew)

[ci skip]

* New translations strings.xml (Hungarian)

[ci skip]

* New translations strings.xml (Italian)

[ci skip]

* New translations strings.xml (Japanese)

[ci skip]

* New translations strings.xml (Korean)

[ci skip]

* New translations strings.xml (Dutch)

[ci skip]

* New translations strings.xml (Norwegian)

[ci skip]

* New translations strings.xml (Polish)

[ci skip]

* New translations strings.xml (Portuguese)

[ci skip]

* New translations strings.xml (Russian)

[ci skip]

* New translations strings.xml (Serbian (Cyrillic))

[ci skip]

* New translations strings.xml (Swedish)

[ci skip]

* New translations strings.xml (Turkish)

[ci skip]

* New translations strings.xml (Ukrainian)

[ci skip]

* New translations strings.xml (Chinese Simplified)

[ci skip]

* New translations strings.xml (Chinese Traditional)

[ci skip]

* New translations strings.xml (English)

[ci skip]

* New translations strings.xml (Vietnamese)

[ci skip]

* New translations strings.xml (Portuguese, Brazilian)

[ci skip]

* New translations strings.xml (Romanian)

[ci skip]

* New translations strings.xml (French)

[ci skip]

* New translations strings.xml (Spanish)

[ci skip]

* New translations strings.xml (Arabic)

[ci skip]

* New translations strings.xml (Czech)

[ci skip]

* New translations strings.xml (Danish)

[ci skip]

* New translations strings.xml (German)

[ci skip]

* New translations strings.xml (Greek)

[ci skip]

* New translations strings.xml (Finnish)

[ci skip]

* New translations strings.xml (Italian)

[ci skip]

* New translations strings.xml (Japanese)

[ci skip]

* New translations strings.xml (Dutch)

[ci skip]

* New translations strings.xml (Norwegian)

[ci skip]

* New translations strings.xml (Polish)

[ci skip]

* New translations strings.xml (Portuguese)

[ci skip]

* New translations strings.xml (Russian)

[ci skip]

* New translations strings.xml (Swedish)

[ci skip]

* New translations strings.xml (Ukrainian)

[ci skip]

* New translations strings.xml (Chinese Simplified)

[ci skip]

* New translations strings.xml (Portuguese, Brazilian)

[ci skip]
2026-08-03 20:20:30 +02:00
choelzl ff93fdd4d7 Update Crowdin configuration file
[ci skip]
2026-08-03 20:02:44 +02:00
soraefir 726c4a73dc Fix project creation nextcloud 2026-08-03 19:51:26 +02:00
soraefir 191f221faa Allow comma in title 2026-08-03 19:51:26 +02:00
sora 553e33d441 Merge pull request 'Configure Renovate' (#1) from renovate/configure into main
Reviewed-on: #1
2026-07-12 14:47:56 +02:00
sora eec95cdcb0 Merge branch 'main' into renovate/configure 2026-07-12 14:47:47 +02:00
soraefir 106c4e27fc Fix sync and add beta features 2026-07-09 19:22:04 +02:00
Renovate Bot c2f59fa1df Add renovate.json 2026-05-30 02:02:13 +00:00
46 changed files with 7294 additions and 43 deletions
+2 -2
View File
@@ -14,7 +14,7 @@ android {
applicationId "net.helcel.cowspent" applicationId "net.helcel.cowspent"
minSdk = 26 minSdk = 26
targetSdk = 37 targetSdk = 37
versionName project.hasProperty('VERSION_NAME') ? project.property('VERSION_NAME') : "1" versionName project.hasProperty('VERSION_NAME') ? project.property('VERSION_NAME') : "1.4"
versionCode project.hasProperty('VERSION_CODE') ? project.property('VERSION_CODE').toInteger() : 1 versionCode project.hasProperty('VERSION_CODE') ? project.property('VERSION_CODE').toInteger() : 1
} }
@@ -97,7 +97,7 @@ android {
dependencies { dependencies {
implementation 'androidx.compose.foundation:foundation:1.11.4' implementation 'androidx.compose.foundation:foundation:1.11.4'
implementation 'androidx.compose.runtime:runtime:1.11.4' implementation 'androidx.compose.runtime:runtime:1.12.0'
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.1.5' coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.1.5'
implementation 'androidx.preference:preference-ktx:1.2.1' implementation 'androidx.preference:preference-ktx:1.2.1'
@@ -467,7 +467,7 @@ fun BillAdditionalDetailsSection(
modifier = Modifier.padding(bottom = 8.dp, top = 16.dp) modifier = Modifier.padding(bottom = 8.dp, top = 16.dp)
) )
val context = androidx.compose.ui.platform.LocalContext.current val context = LocalContext.current
var categoryExpanded by remember { mutableStateOf(false) } var categoryExpanded by remember { mutableStateOf(false) }
val selectedCategory = val selectedCategory =
categories.find { it.id == viewModel.categoryId } ?: CategoryUtils.getCategoryById(context, viewModel.categoryId) categories.find { it.id == viewModel.categoryId } ?: CategoryUtils.getCategoryById(context, viewModel.categoryId)
@@ -2,22 +2,20 @@ package net.helcel.cowspent.android.bill_edit
import androidx.compose.runtime.getValue import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableDoubleStateOf import androidx.compose.runtime.mutableDoubleStateOf
import androidx.compose.runtime.mutableIntStateOf
import androidx.compose.runtime.mutableLongStateOf import androidx.compose.runtime.mutableLongStateOf
import androidx.compose.runtime.mutableStateMapOf import androidx.compose.runtime.mutableStateMapOf
import androidx.compose.runtime.mutableStateOf import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.setValue import androidx.compose.runtime.setValue
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.lifecycle.ViewModel import androidx.lifecycle.ViewModel
import net.helcel.cowspent.model.DBBill
import net.helcel.cowspent.model.DBMember
import net.helcel.cowspent.android.helper.DialogState import net.helcel.cowspent.android.helper.DialogState
import net.helcel.cowspent.android.helper.parseAmount import net.helcel.cowspent.android.helper.parseAmount
import net.helcel.cowspent.model.DBBill
import net.helcel.cowspent.model.DBCurrency
import net.helcel.cowspent.model.DBMember
import net.helcel.cowspent.util.SupportUtil import net.helcel.cowspent.util.SupportUtil
import net.helcel.cowspent.util.evalMath import net.helcel.cowspent.util.evalMath
import net.helcel.cowspent.model.DBCurrency
import androidx.compose.ui.graphics.vector.ImageVector
class EditBillViewModel : ViewModel() { class EditBillViewModel : ViewModel() {
var what by mutableStateOf("") var what by mutableStateOf("")
var amount by mutableStateOf("") var amount by mutableStateOf("")
@@ -243,7 +241,7 @@ class EditBillViewModel : ViewModel() {
} }
fun isFormValid(): Boolean { fun isFormValid(): Boolean {
return what.isNotEmpty() && !what.contains(",") && return what.isNotEmpty() &&
timestamp != 0L && timestamp != 0L &&
payerId != 0L && payerId != 0L &&
owersSelection.any { it.value } owersSelection.any { it.value }
@@ -257,7 +255,7 @@ class EditBillViewModel : ViewModel() {
errorInvalidForm: String errorInvalidForm: String
): String? { ): String? {
return when { return when {
what.isEmpty() || what.contains(",") -> errorWhat what.isEmpty() -> errorWhat
timestamp == 0L -> errorDate timestamp == 0L -> errorDate
payerId == 0L -> errorPayer payerId == 0L -> errorPayer
owersSelection.none { it.value } -> errorOwers owersSelection.none { it.value } -> errorOwers
@@ -103,6 +103,10 @@ fun BillsListScreen(
val context = LocalContext.current val context = LocalContext.current
val sharedPreferences = remember { PreferenceManager.getDefaultSharedPreferences(context) } val sharedPreferences = remember { PreferenceManager.getDefaultSharedPreferences(context) }
val showArchived = sharedPreferences.getBoolean(stringResource(R.string.pref_key_show_archived), false) val showArchived = sharedPreferences.getBoolean(stringResource(R.string.pref_key_show_archived), false)
val keyBetaFeatures = stringResource(R.string.pref_key_beta_features)
var showBetaFeatures by remember(keyBetaFeatures) {
mutableStateOf(sharedPreferences.getBoolean(keyBetaFeatures, false))
}
StatefulAlertDialog( StatefulAlertDialog(
state = viewModel.dialogState, state = viewModel.dialogState,
@@ -158,7 +162,8 @@ fun BillsListScreen(
isArchived = proj?.isArchived == true, isArchived = proj?.isArchived == true,
projectType = proj?.type ?: ProjectType.LOCAL, projectType = proj?.type ?: ProjectType.LOCAL,
accessLevel = proj?.myAccessLevel ?: DBProject.ACCESS_LEVEL_ADMIN, accessLevel = proj?.myAccessLevel ?: DBProject.ACCESS_LEVEL_ADMIN,
isShareable = proj?.isShareable() ?: true isShareable = proj?.isShareable() ?: true,
showBetaFeatures = showBetaFeatures
) )
} }
} }
@@ -327,7 +332,7 @@ fun BillsListScreen(
}, },
actions = { actions = {
if (!isSearchExpanded) { if (!isSearchExpanded) {
if (viewModel.hasUnlabeledBills) { if (showBetaFeatures && viewModel.hasUnlabeledBills) {
IconButton(onClick = onLabelBillsClick) { IconButton(onClick = onLabelBillsClick) {
Icon( Icon(
Icons.Default.Category, Icons.Default.Category,
@@ -35,7 +35,8 @@ fun ProjectOptionsDialogContent(
isArchived: Boolean = false, isArchived: Boolean = false,
projectType: ProjectType = ProjectType.LOCAL, projectType: ProjectType = ProjectType.LOCAL,
accessLevel: Int = DBProject.ACCESS_LEVEL_ADMIN, accessLevel: Int = DBProject.ACCESS_LEVEL_ADMIN,
isShareable: Boolean = true isShareable: Boolean = true,
showBetaFeatures: Boolean = false
) { ) {
Surface( Surface(
shape = MaterialTheme.shapes.large, shape = MaterialTheme.shapes.large,
@@ -79,7 +80,7 @@ fun ProjectOptionsDialogContent(
// Row 2: Manage Member, Manage Labels, Manage Currencies // Row 2: Manage Member, Manage Labels, Manage Currencies
if (!isArchived && isMaintainer) { if (!isArchived && isMaintainer) {
row2.add(ProjectOption(stringResource(R.string.action_members), Icons.Default.Group, onManageMembers)) row2.add(ProjectOption(stringResource(R.string.action_members), Icons.Default.Group, onManageMembers))
if (false && (projectType == ProjectType.LOCAL || projectType == ProjectType.COSPEND)) { if (showBetaFeatures && (projectType == ProjectType.LOCAL || projectType == ProjectType.COSPEND)) {
row2.add(ProjectOption(stringResource(R.string.action_labels), Icons.AutoMirrored.Filled.Label, onManageLabels)) row2.add(ProjectOption(stringResource(R.string.action_labels), Icons.AutoMirrored.Filled.Label, onManageLabels))
} }
row2.add(ProjectOption(stringResource(R.string.action_currencies), Icons.Default.MonetizationOn, onManageCurrencies)) row2.add(ProjectOption(stringResource(R.string.action_currencies), Icons.Default.MonetizationOn, onManageCurrencies))
@@ -181,7 +182,8 @@ fun ProjectOptionsDialogPreview() {
isArchived = false, isArchived = false,
projectType = ProjectType.COSPEND, projectType = ProjectType.COSPEND,
accessLevel = DBProject.ACCESS_LEVEL_ADMIN, accessLevel = DBProject.ACCESS_LEVEL_ADMIN,
isShareable = true isShareable = true,
showBetaFeatures = true
) )
} }
} }
@@ -205,7 +207,8 @@ fun ProjectOptionsDialogPreview2() {
isArchived = true, isArchived = true,
projectType = ProjectType.COSPEND, projectType = ProjectType.COSPEND,
accessLevel = DBProject.ACCESS_LEVEL_ADMIN, accessLevel = DBProject.ACCESS_LEVEL_ADMIN,
isShareable = true isShareable = true,
showBetaFeatures = true
) )
} }
} }
@@ -228,7 +231,8 @@ fun ProjectOptionsDialogPreview3() {
isArchived = false, isArchived = false,
projectType = ProjectType.LOCAL, projectType = ProjectType.LOCAL,
accessLevel = DBProject.ACCESS_LEVEL_ADMIN, accessLevel = DBProject.ACCESS_LEVEL_ADMIN,
isShareable = true isShareable = true,
showBetaFeatures = true
) )
} }
} }
@@ -165,15 +165,7 @@ class NewProjectActivity : AppCompatActivity() {
null, false, DBProject.ACCESS_LEVEL_UNKNOWN, null, false, DBProject.ACCESS_LEVEL_UNKNOWN,
"" ""
) )
createProject()
if (isValidUrl(url) && todoCreate && ProjectType.COSPEND == type &&
db.cowspentServerSyncHelper.canCreateAuthenticatedProject(fakeProj) &&
!viewModel.showAuthWarningDialog // Avoid infinite loop
) {
viewModel.showAuthWarningDialog = true
} else {
createProject()
}
} }
private fun getFormattedUrl(): String { private fun getFormattedUrl(): String {
@@ -79,6 +79,7 @@ fun SettingsScreen(
val keyColor = stringResource(R.string.pref_key_color) val keyColor = stringResource(R.string.pref_key_color)
val keyOfflineMode = stringResource(R.string.pref_key_offline_mode) val keyOfflineMode = stringResource(R.string.pref_key_offline_mode)
val keyShowArchived = stringResource(R.string.pref_key_show_archived) val keyShowArchived = stringResource(R.string.pref_key_show_archived)
val keyBetaFeatures = stringResource(R.string.pref_key_beta_features)
// States for preferences // States for preferences
var nightMode by remember(keyNightMode) { var nightMode by remember(keyNightMode) {
@@ -113,6 +114,9 @@ fun SettingsScreen(
var showArchived by remember(keyShowArchived) { var showArchived by remember(keyShowArchived) {
mutableStateOf(sharedPreferences.getBoolean(keyShowArchived, false)) mutableStateOf(sharedPreferences.getBoolean(keyShowArchived, false))
} }
var betaFeatures by remember(keyBetaFeatures) {
mutableStateOf(sharedPreferences.getBoolean(keyBetaFeatures, false))
}
Scaffold( Scaffold(
topBar = { topBar = {
@@ -242,6 +246,19 @@ fun SettingsScreen(
// Other // Other
SettingsCategory(stringResource(R.string.settings_other)) SettingsCategory(stringResource(R.string.settings_other))
SettingsSwitchPreference(
title = stringResource(R.string.settings_beta_features),
summary = stringResource(R.string.settings_beta_features_summary),
icon = Icons.Default.Info,
checked = betaFeatures,
onCheckedChange = {
betaFeatures = it
sharedPreferences.edit {
putBoolean(keyBetaFeatures, it)
}
}
)
SettingsPreference( SettingsPreference(
title = stringResource(R.string.title_about), title = stringResource(R.string.title_about),
icon = Icons.Default.Info, icon = Icons.Default.Info,
@@ -1,6 +1,5 @@
package net.helcel.cowspent.model package net.helcel.cowspent.model
import android.util.Log
import java.io.Serializable import java.io.Serializable
import java.util.Calendar import java.util.Calendar
import java.util.Locale import java.util.Locale
@@ -7,16 +7,22 @@ import android.database.Cursor
import android.database.sqlite.SQLiteDatabase import android.database.sqlite.SQLiteDatabase
import android.database.sqlite.SQLiteOpenHelper import android.database.sqlite.SQLiteOpenHelper
import android.text.TextUtils import android.text.TextUtils
import android.util.Log
import androidx.annotation.WorkerThread import androidx.annotation.WorkerThread
import androidx.preference.PreferenceManager import androidx.preference.PreferenceManager
import net.helcel.cowspent.R import net.helcel.cowspent.R
import net.helcel.cowspent.android.main.BillsListViewActivity import net.helcel.cowspent.model.DBAccountProject
import net.helcel.cowspent.model.* import net.helcel.cowspent.model.DBBill
import net.helcel.cowspent.model.DBBillOwer
import net.helcel.cowspent.model.DBCategory
import net.helcel.cowspent.model.DBCurrency
import net.helcel.cowspent.model.DBMember
import net.helcel.cowspent.model.DBPaymentMode
import net.helcel.cowspent.model.DBProject
import net.helcel.cowspent.model.ProjectType
import net.helcel.cowspent.util.CategoryUtils import net.helcel.cowspent.util.CategoryUtils
import net.helcel.cowspent.util.SecureStorage import net.helcel.cowspent.util.SecureStorage
import net.helcel.cowspent.util.SupportUtil import net.helcel.cowspent.util.SupportUtil
import java.util.* import java.util.Locale
/** /**
* Helps to add, get, update and delete bills, members, projects with the option to trigger a sync with the server. * Helps to add, get, update and delete bills, members, projects with the option to trigger a sync with the server.
@@ -1177,7 +1183,6 @@ class CowspentSQLiteOpenHelper private constructor(val context: Context) :
@Suppress("ConstPropertyName") @Suppress("ConstPropertyName")
companion object { companion object {
private val TAG = CowspentSQLiteOpenHelper::class.java.simpleName
private const val database_version = 1 private const val database_version = 1
private const val database_name = "COWSPENT" private const val database_name = "COWSPENT"
private const val table_members = "MEMBERS" private const val table_members = "MEMBERS"
@@ -29,11 +29,9 @@ import net.helcel.cowspent.android.account.AccountActivity
import net.helcel.cowspent.android.main.BillsListViewActivity import net.helcel.cowspent.android.main.BillsListViewActivity
import net.helcel.cowspent.android.main.MainConstants import net.helcel.cowspent.android.main.MainConstants
import net.helcel.cowspent.model.DBBill import net.helcel.cowspent.model.DBBill
import net.helcel.cowspent.model.DBCategory
import net.helcel.cowspent.model.DBProject import net.helcel.cowspent.model.DBProject
import net.helcel.cowspent.model.ProjectType import net.helcel.cowspent.model.ProjectType
import net.helcel.cowspent.util.CospendClientUtil.LoginStatus import net.helcel.cowspent.util.CospendClientUtil.LoginStatus
import net.helcel.cowspent.util.CategoryUtils
import net.helcel.cowspent.util.ICallback import net.helcel.cowspent.util.ICallback
import net.helcel.cowspent.util.IProjectCreationCallback import net.helcel.cowspent.util.IProjectCreationCallback
import net.helcel.cowspent.util.NextcloudClient import net.helcel.cowspent.util.NextcloudClient
@@ -103,9 +103,6 @@ class NextcloudClient(
val acceptHeader: MutableList<String> = ArrayList() val acceptHeader: MutableList<String> = ArrayList()
acceptHeader.add("application/json") acceptHeader.add("application/json")
headers["Accept"] = acceptHeader headers["Accept"] = acceptHeader
val ocsHeader: MutableList<String> = ArrayList()
ocsHeader.add("true")
headers["OCS-APIRequest"] = ocsHeader
} }
val nextcloudRequest: NextcloudRequest = if (params == null) { val nextcloudRequest: NextcloudRequest = if (params == null) {
NextcloudRequest.Builder() NextcloudRequest.Builder()
@@ -68,7 +68,7 @@ open class ServerResponse(
} }
val rawData = JSONObject(content) val rawData = JSONObject(content)
val data = rawData.getJSONObject("ocs") val data = rawData.getJSONObject("ocs")
return data.get("data").toString() return data.getString("data")
} }
class ProjectResponse(response: VersatileProjectSyncClient.ResponseData, isOcsResponse: Boolean) : class ProjectResponse(response: VersatileProjectSyncClient.ResponseData, isOcsResponse: Boolean) :
@@ -88,7 +88,7 @@ class VersatileProjectSyncClient(
"/ocs/v2.php/apps/cospend/api/v1/projects/" + project.remoteId "/ocs/v2.php/apps/cospend/api/v1/projects/" + project.remoteId
else else
"/index.php/apps/cospend/api-priv/projects/" + project.remoteId "/index.php/apps/cospend/api-priv/projects/" + project.remoteId
return ServerResponse.ProjectResponse(requestServerWithSSO(nextcloudAPI!!, target, METHOD_GET, null, null, true), true) return ServerResponse.ProjectResponse(requestServerWithSSO(nextcloudAPI!!, target, METHOD_GET, null, null, cospendVersionGT161), cospendVersionGT161)
} else { } else {
useOcsApiRequest = cospendVersionGT161 useOcsApiRequest = cospendVersionGT161
target = if (cospendVersionGT161) target = if (cospendVersionGT161)
@@ -1348,9 +1348,6 @@ class VersatileProjectSyncClient(
val acceptHeader: MutableList<String> = ArrayList() val acceptHeader: MutableList<String> = ArrayList()
acceptHeader.add("application/json") acceptHeader.add("application/json")
headers["Accept"] = acceptHeader headers["Accept"] = acceptHeader
val ocsHeader: MutableList<String> = ArrayList()
ocsHeader.add("true")
headers["OCS-APIRequest"] = ocsHeader
} }
val nextcloudRequest: NextcloudRequest = if (params == null) { val nextcloudRequest: NextcloudRequest = if (params == null) {
NextcloudRequest.Builder() NextcloudRequest.Builder()
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Cowspent</string>
<!-- Actions -->
<string name="action_new_bill">New bill</string>
<string name="action_add_project">Add project</string>
<string name="action_save">Save</string>
<string name="action_edit">Edit</string>
<string name="action_share">Share</string>
<string name="action_search">Search</string>
<string name="action_delete">Delete</string>
<string name="action_archive">Archive</string>
<string name="action_unarchive">Unarchive</string>
<string name="action_export">Export</string>
<string name="action_stats">Stats</string>
<string name="action_settle">Settle</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Settings</string>
<string name="action_label_bills">Label missing categories</string>
<string name="action_logout">Logout</string>
<string name="action_connect">Connect</string>
<string name="action_discard">Discard</string>
<string name="action_members">Members</string>
<string name="action_labels">Labels</string>
<string name="action_currencies">Currencies</string>
<!-- Titles -->
<string name="title_stats">Statistics</string>
<string name="title_edit_project">Edit project</string>
<string name="title_label_bills">Label Bills</string>
<string name="title_labels">Manage Labels</string>
<string name="title_about">About</string>
<string name="title_settle">Settle Project</string>
<string name="title_share">Share Project</string>
<string name="title_add_project">Add Project</string>
<string name="title_add_category">Add Category</string>
<string name="title_add_payment_mode">Add Payment Mode</string>
<string name="title_account">Nextcloud Account</string>
<string name="title_share_web">Web link</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">Are you sure?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">All bills</string>
<string name="label_categories">Categories</string>
<string name="label_payment_modes">Payment Modes</string>
<string name="label_name">Name</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Color</string>
<string name="label_weight">Weight</string>
<string name="label_activated">Activated</string>
<string name="label_password">Password</string>
<string name="label_email">E-mail</string>
<string name="label_url">Server address</string>
<string name="label_username">Username</string>
<string name="label_comment">Comment</string>
<string name="label_what">What?</string>
<string name="label_payer">Who paid?</string>
<string name="label_owers">For whom?</string>
<string name="label_repeat">Repeat every</string>
<string name="label_mode">Mode</string>
<string name="label_category">Category</string>
<string name="label_project_id">Project ID/name</string>
<string name="label_project_title">Project title</string>
<string name="label_use_sso">Use Nextcloud App Account</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Unsaved changes</string>
<string name="dialog_unsaved_changes_msg">Save changes before leaving?</string>
<string name="dialog_confirm_remove_project_msg">The remote project will not be deleted.</string>
<string name="dialog_sync_error_title">Sync error</string>
<string name="dialog_sync_error_msg">Sync failed for %1$s.\n\n%2$s</string>
<string name="dialog_balanced_msg">Expenses are already balanced.</string>
<string name="msg_project_added">Project %1$s added</string>
<string name="msg_bill_labeled_done">All bills labeled</string>
<string name="msg_no_suggestions">No suggestions</string>
<string name="msg_auth_warning">Requires Cospend v0.3.4+.</string>
<string name="msg_link_copied">Link copied to clipboard</string>
<string name="msg_share_qr">Scan QR code or share the link to join.</string>
<string name="msg_share_web">Link for web browser access.</string>
<string name="msg_share_qr_warn">Share this link with a Cowspent user.</string>
<string name="msg_settle_intro">Settlement for %1$s:</string>
<string name="msg_settle_sentence">%1$s owes %3$.2f to %2$s</string>
<string name="msg_stats_intro">Stats for %1$s:</string>
<string name="msg_stats_header">Member (Paid | Spent | Balance)</string>
<string name="msg_logged_in_as">Logged in as %1$s</string>
<!-- Errors -->
<string name="error_generic">Error</string>
<string name="error_loading">Loading</string>
<string name="error_no_projects">No projects found</string>
<string name="error_no_members">No members found</string>
<string name="error_no_bills">No bills found</string>
<string name="error_no_member">At least one member required</string>
<string name="error_maintenance_mode">Server is in maintenance mode</string>
<string name="error_400">400 Bad request</string>
<string name="error_401">401 Unauthorized</string>
<string name="error_403">403 Forbidden</string>
<string name="error_404">404 Not Found</string>
<string name="error_sync">Sync failed: %1$s</string>
<string name="error_invalid_login">Invalid login: %1$s</string>
<string name="error_auth">Wrong username or password</string>
<string name="error_json">Invalid server response</string>
<string name="error_req_failed">Request failed</string>
<string name="error_invalid_email">Invalid e-mail</string>
<string name="error_invalid_project_id">Invalid project ID</string>
<string name="error_invalid_project_name">Invalid project title</string>
<string name="error_invalid_bill_name">Invalid bill name</string>
<string name="error_invalid_bill_date">Invalid bill date</string>
<string name="error_invalid_bill_payer">Payer required</string>
<string name="error_invalid_bill_owers">Owers required</string>
<string name="error_no_network">No network connection</string>
<string name="error_server">Server error</string>
<string name="error_io">Server connection broken</string>
<string name="error_share_impossible">Cannot share this project</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Connect to Nextcloud account</string>
<string name="drawer_last_sync">Last sync: %1$02d:%2$02d</string>
<string name="simple_cancel">Cancel</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">Ok</string>
<string name="simple_yes">Yes</string>
<string name="simple_no">No</string>
<string name="simple_close">Close</string>
<!-- Settings -->
<string name="settings_appearance">Appearance</string>
<string name="settings_network">Network</string>
<string name="settings_other">Other</string>
<string name="settings_night_mode">Theme</string>
<string name="settings_offline_mode">Offline mode</string>
<string name="settings_offline_mode_summary">Only sync manually.</string>
<string name="settings_color_custom">Custom color</string>
<string name="settings_color_mode">Color Selection</string>
<string name="settings_show_archived">Show archived projects</string>
<string name="settings_beta_features">Beta Features</string>
<string name="settings_beta_features_summary">Enable experimental features. Use at your own risk.</string>
<string name="settings_url_warn_http">WARNING: \"http\" is unsafe. Use \"https\".</string>
<string name="settings_colorpicker_title">Choose Color</string>
<string name="pref_value_color_system">System</string>
<string name="pref_value_color_server">Nextcloud</string>
<string name="pref_value_color_manual">Manual</string>
<string name="pref_value_theme_light">Light</string>
<string name="pref_value_theme_dark">Dark</string>
<string name="pref_value_theme_system">Follow system</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">No repeat</string>
<string name="repeat_day">Daily</string>
<string name="repeat_week">Weekly</string>
<string name="repeat_fortnight">Fortnightly</string>
<string name="repeat_month">Monthly</string>
<string name="repeat_year">Yearly</string>
<string name="payment_mode_none">None</string>
<string name="payment_mode_all">All</string>
<string name="payment_mode_credit_card">Credit card</string>
<string name="payment_mode_cash">Cash</string>
<string name="payment_mode_check">Check</string>
<string name="payment_mode_online">Online</string>
<string name="payment_mode_transfer">Transfer</string>
<string name="category_none">None</string>
<string name="category_all">All</string>
<string name="category_all_except_reimbursement">All except reimbursement</string>
<string name="category_groceries">Grocery</string>
<string name="category_leisure">Bar/Party</string>
<string name="category_rent">Rent</string>
<string name="category_bills">Bill</string>
<string name="category_excursion">Excursion/Culture</string>
<string name="category_health">Health</string>
<string name="category_shopping">Shopping</string>
<string name="category_reimbursement">Reimbursement</string>
<string name="category_restaurant">Restaurant</string>
<string name="category_accomodation">Accommodation</string>
<string name="category_transport">Transport</string>
<string name="category_sport">Sport</string>
<!-- Project specific -->
<string name="new_project_action">What</string>
<string name="new_project_where">Where</string>
<string name="where_local">Local only</string>
<string name="where_cospend">Cospend</string>
<string name="where_ihatemoney">IHateMoney</string>
<string name="todo_join">Join existing project</string>
<string name="todo_create">Create new project</string>
<string name="import_tooltip">Import from file</string>
<string name="choose_account_project_dialog_title">Choose project</string>
<string name="choose_account_project_dialog_impossible">No projects found on this account.</string>
<string name="choose_project_management_action">Project</string>
<string name="project_added_success">Project added successfully.</string>
<string name="no_projects_text">You have no projects yet.</string>
<string name="configure_account_choice">Configure Nextcloud account</string>
<string name="add_project_choice">Add project manually</string>
<string name="no_members_text">No members in this project.</string>
<string name="no_bills_text">No bills found.</string>
<string name="member_already_exists">Member already exists.</string>
<string name="activity_dialog_title">Project: %1$s</string>
<string name="remove_project_confirmation">Project %1$s removed.</string>
<string name="file_saved_success">File saved: %1$s</string>
<string name="import_error_header">Import failed at row %d</string>
<string name="import_error_date">Invalid date format at row %d</string>
<string name="import_error_owers">Invalid owers at row %d</string>
<string name="add_member_dialog_title">Add Member</string>
<string name="edit_member_dialog_title">Edit Member</string>
<string name="member_edit_delete">Delete</string>
<string name="project_edition_no_change">No changes to save.</string>
<!-- Settlement -->
<string name="center_none">None (Optimal)</string>
<string name="settle_who">Who pays</string>
<string name="settle_to_whom">To whom</string>
<string name="settle_how_much">Amount</string>
<string name="simple_settle_share">Share</string>
<string name="simple_create_bills">Create bills</string>
<string name="settle_bill_what">Settlement</string>
<!-- Currencies -->
<string name="currency_dialog_title">Choose Currency (%s)</string>
<string name="setting_none">None</string>
<string name="setting_all">All</string>
<string name="currency_saved_success">Currency settings saved.</string>
<string name="main_currency">Main Currency</string>
<!-- Statistics -->
<string name="label_bills_suggested">Suggested Categories</string>
<string name="label_bills_skip">Skip</string>
<string name="stats_date_min">From</string>
<string name="stats_date_max">To</string>
<string name="stats_who">Member</string>
<string name="stats_paid">Paid</string>
<string name="stats_spent">Spent</string>
<string name="stats_balance">Balance</string>
<string name="total">Total: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">Connection failed: %1$s</string>
<string name="error_create_remote_project_helper">Creation failed: %1$s</string>
<string name="error_edit_remote_project_helper">Error updating remote project: %1$s</string>
<string name="remote_project_operation_no_network">Network unavailable for remote operation.</string>
<string name="error_scanning_bill_qr_code">Failed to parse QR code.</string>
<string name="error_token_mismatch">Authentication token mismatch. Please log in again.</string>
<string name="insufficient_access_level">You don\'t have permission to perform this action.</string>
<string name="delete_label_confirmation_title">Delete Label</string>
<string name="delete_label_confirmation_message">Are you sure you want to delete this label?</string>
<!-- About -->
<string name="about_version">Version %1$s</string>
<string name="about_maintainer_title">Maintainer</string>
<string name="about_license_title">License</string>
<string name="about_source_title">Source code</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Project %1$s</string>
<string name="share_chooser_title">Share %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">نفق</string>
<!-- Actions -->
<string name="action_new_bill">فاتورة جديدة</string>
<string name="action_add_project">إضافة مشروع</string>
<string name="action_save">حفظ</string>
<string name="action_edit">تحرير</string>
<string name="action_share">مشاركة</string>
<string name="action_search">البحث</string>
<string name="action_delete">حذف</string>
<string name="action_archive">أرشيف</string>
<string name="action_unarchive">إلغاء الأرشيف</string>
<string name="action_export">تصدير</string>
<string name="action_stats">إحصائيات</string>
<string name="action_settle">حسم</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">الإعدادات</string>
<string name="action_label_bills">فئات التسمية المفقودة</string>
<string name="action_logout">تسجيل الخروج</string>
<string name="action_connect">الاتصال</string>
<string name="action_discard">تجاهل</string>
<string name="action_members">الأعضاء</string>
<string name="action_labels">التسميات</string>
<string name="action_currencies">العملات</string>
<!-- Titles -->
<string name="title_stats">الإحصائيات</string>
<string name="title_edit_project">تحرير المشروع</string>
<string name="title_label_bills">فواتير التسمية</string>
<string name="title_labels">إدارة التسميات</string>
<string name="title_about">حول</string>
<string name="title_settle">تسوية المشروع</string>
<string name="title_share">مشاركة المشروع</string>
<string name="title_add_project">إضافة مشروع</string>
<string name="title_add_category">إضافة فئة</string>
<string name="title_add_payment_mode">إضافة وضع الدفع</string>
<string name="title_account">حساب Nextcloud</string>
<string name="title_share_web">رابط ويب</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">هل أنت متأكد؟</string>
<!-- Labels and Fields -->
<string name="label_all_bills">جميع الفواتير</string>
<string name="label_categories">الفئات</string>
<string name="label_payment_modes">طرق الدفع</string>
<string name="label_name">الاسم</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">اللون</string>
<string name="label_weight">الوزن</string>
<string name="label_activated">مُفعّل</string>
<string name="label_password">كلمة المرور</string>
<string name="label_email">البريد الإلكتروني</string>
<string name="label_url">عنوان الخادم</string>
<string name="label_username">اسم المستخدم</string>
<string name="label_comment">تعليق</string>
<string name="label_what">ماذا؟</string>
<string name="label_payer">من المدفوع؟</string>
<string name="label_owers">لمن؟</string>
<string name="label_repeat">كرر كل</string>
<string name="label_mode">الوضع</string>
<string name="label_category">الفئة</string>
<string name="label_project_id">معرف/اسم المشروع</string>
<string name="label_project_title">عنوان المشروع</string>
<string name="label_use_sso">استخدام حساب تطبيق Nextcloud</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">التغييرات غير المحفوظة</string>
<string name="dialog_unsaved_changes_msg">حفظ التغييرات قبل المغادرة؟</string>
<string name="dialog_confirm_remove_project_msg">لن يتم حذف المشروع البعيد.</string>
<string name="dialog_sync_error_title">خطأ في المزامنة</string>
<string name="dialog_sync_error_msg">Sync failed for %1$s.\n\n%2$s</string>
<string name="dialog_balanced_msg">تم بالفعل موازنة المصروفات.</string>
<string name="msg_project_added">تم إضافة المشروع %1$s</string>
<string name="msg_bill_labeled_done">جميع الفواتير الموصوفة</string>
<string name="msg_no_suggestions">لا توجد اقتراحات</string>
<string name="msg_auth_warning">يتطلب انفاق التكلفة v0.3.4+.</string>
<string name="msg_link_copied">تم نسخ الرابط إلى الحافظة</string>
<string name="msg_share_qr">امسح رمز QR أو شارك الرابط للانضمام.</string>
<string name="msg_share_web">رابط للوصول إلى متصفح الويب.</string>
<string name="msg_share_qr_warn">شارك هذا الرابط مع مستخدم مستهلك.</string>
<string name="msg_settle_intro">التسوية ل %1$s:</string>
<string name="msg_settle_sentence">%1$s مدين %3$.2f ل %2$s</string>
<string name="msg_stats_intro">إحصائيات %1$s:</string>
<string name="msg_stats_header">عضو (رصيد مدفوع &lt;unk&gt; رصيد مدفوع)</string>
<string name="msg_logged_in_as">تم تسجيل الدخول كـ %1$s</string>
<!-- Errors -->
<string name="error_generic">خطأ</string>
<string name="error_loading">جاري التحميل</string>
<string name="error_no_projects">لم يتم العثور على مشاريع</string>
<string name="error_no_members">لم يتم العثور على أعضاء</string>
<string name="error_no_bills">لم يتم العثور على فواتير</string>
<string name="error_no_member">مطلوب عضو واحد على الأقل</string>
<string name="error_maintenance_mode">الخادم في وضع الصيانة</string>
<string name="error_400">400 طلب خاطئ</string>
<string name="error_401">401 غير مأذون</string>
<string name="error_403">403 محظور</string>
<string name="error_404">404 غير موجود</string>
<string name="error_sync">فشلت المزامنة: %1$s</string>
<string name="error_invalid_login">تسجيل الدخول غير صالح: %1$s</string>
<string name="error_auth">اسم المستخدم أو كلمة المرور خاطئة</string>
<string name="error_json">استجابة الخادم غير صالحة</string>
<string name="error_req_failed">فشل الطلب</string>
<string name="error_invalid_email">بريد إلكتروني غير صالح</string>
<string name="error_invalid_project_id">معرف المشروع غير صالح</string>
<string name="error_invalid_project_name">عنوان المشروع غير صالح</string>
<string name="error_invalid_bill_name">اسم الفاتورة غير صالح</string>
<string name="error_invalid_bill_date">تاريخ الفاتورة غير صالح</string>
<string name="error_invalid_bill_payer">الدفع مطلوب</string>
<string name="error_invalid_bill_owers">الحائزين مطلوبون</string>
<string name="error_no_network">لا يوجد اتصال بالشبكة</string>
<string name="error_server">خطأ في الخادم</string>
<string name="error_io">تم كسر اتصال الخادم</string>
<string name="error_share_impossible">لا يمكن مشاركة هذا المشروع</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">الاتصال بحساب Nextcloud</string>
<string name="drawer_last_sync">آخر مزامنة: %1$02d:%2$02d</string>
<string name="simple_cancel">إلغاء</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">حسناً</string>
<string name="simple_yes">نعم</string>
<string name="simple_no">لا</string>
<string name="simple_close">أغلق</string>
<!-- Settings -->
<string name="settings_appearance">المظهر</string>
<string name="settings_network">الشبكة</string>
<string name="settings_other">اخرى</string>
<string name="settings_night_mode">السمة</string>
<string name="settings_offline_mode">وضع غير متصل</string>
<string name="settings_offline_mode_summary">فقط المزامنة يدوياً.</string>
<string name="settings_color_custom">لون مخصص</string>
<string name="settings_color_mode">تحديد الألوان</string>
<string name="settings_show_archived">إظهار المشاريع المؤرشفة</string>
<string name="settings_beta_features">ميزات بيتا</string>
<string name="settings_beta_features_summary">تمكين الميزات التجريبية. استخدمها على مسؤوليتك الخاصة.</string>
<string name="settings_url_warn_http">تحذير: \"http\" غير آمن. استخدم \"https\".</string>
<string name="settings_colorpicker_title">اختر اللون</string>
<string name="pref_value_color_system">النظام</string>
<string name="pref_value_color_server">السحابة التالية</string>
<string name="pref_value_color_manual">دليل</string>
<string name="pref_value_theme_light">فاتح</string>
<string name="pref_value_theme_dark">داكن</string>
<string name="pref_value_theme_system">اتبع النظام</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">لا تكرّر</string>
<string name="repeat_day">يومياً</string>
<string name="repeat_week">أسبوعيا</string>
<string name="repeat_fortnight">نصف شهري</string>
<string name="repeat_month">شهريا</string>
<string name="repeat_year">سنوي</string>
<string name="payment_mode_none">لا</string>
<string name="payment_mode_all">الكل</string>
<string name="payment_mode_credit_card">بطاقة الائتمان</string>
<string name="payment_mode_cash">نقدا</string>
<string name="payment_mode_check">تحقق</string>
<string name="payment_mode_online">متصل</string>
<string name="payment_mode_transfer">نقل</string>
<string name="category_none">لا</string>
<string name="category_all">الكل</string>
<string name="category_all_except_reimbursement">جميع ما عدا رد التكاليف</string>
<string name="category_groceries">البقالة</string>
<string name="category_leisure">شريط/حفلة</string>
<string name="category_rent">إيجار</string>
<string name="category_bills">فاتورة</string>
<string name="category_excursion">الرحلة/الثقافة</string>
<string name="category_health">الصحة</string>
<string name="category_shopping">التسوق</string>
<string name="category_reimbursement">رد</string>
<string name="category_restaurant">مطعم</string>
<string name="category_accomodation">السكن</string>
<string name="category_transport">النقل</string>
<string name="category_sport">الرياضة</string>
<!-- Project specific -->
<string name="new_project_action">ماذا</string>
<string name="new_project_where">أين</string>
<string name="where_local">محلي فقط</string>
<string name="where_cospend">انفاق التكلفة</string>
<string name="where_ihatemoney">IHateMoney</string>
<string name="todo_join">الانضمام إلى المشروع الحالي</string>
<string name="todo_create">إنشاء مشروع جديد</string>
<string name="import_tooltip">استيراد من الملف</string>
<string name="choose_account_project_dialog_title">اختر المشروع</string>
<string name="choose_account_project_dialog_impossible">لا توجد مشاريع في هذا الحساب.</string>
<string name="choose_project_management_action">مشروع</string>
<string name="project_added_success">تمت إضافة المشروع بنجاح.</string>
<string name="no_projects_text">ليس لديك مشاريع حتى الآن.</string>
<string name="configure_account_choice">تكوين حساب Nextcloud</string>
<string name="add_project_choice">إضافة مشروع يدوياً</string>
<string name="no_members_text">لا يوجد أعضاء في هذا المشروع.</string>
<string name="no_bills_text">لا توجد فواتير.</string>
<string name="member_already_exists">العضو موجود مسبقا.</string>
<string name="activity_dialog_title">المشروع: %1$s</string>
<string name="remove_project_confirmation">تمت إزالة المشروع %1$s.</string>
<string name="file_saved_success">تم حفظ الملف: %1$s</string>
<string name="import_error_header">فشل الاستيراد في الصف %d</string>
<string name="import_error_date">تنسيق التاريخ غير صالح في الصف %d</string>
<string name="import_error_owers">غير صالح في الصف %d</string>
<string name="add_member_dialog_title">إضافة عضو</string>
<string name="edit_member_dialog_title">تعديل العضو</string>
<string name="member_edit_delete">حذف</string>
<string name="project_edition_no_change">لا توجد تغييرات للحفظ.</string>
<!-- Settlement -->
<string name="center_none">لا شيء (مثالي)</string>
<string name="settle_who">من يدفع</string>
<string name="settle_to_whom">مَن</string>
<string name="settle_how_much">المبلغ</string>
<string name="simple_settle_share">مشاركة</string>
<string name="simple_create_bills">إنشاء فواتير</string>
<string name="settle_bill_what">تسوية</string>
<!-- Currencies -->
<string name="currency_dialog_title">اختر العملة (%s)</string>
<string name="setting_none">لا</string>
<string name="setting_all">الكل</string>
<string name="currency_saved_success">تم حفظ إعدادات العملة.</string>
<string name="main_currency">العملة الرئيسية</string>
<!-- Statistics -->
<string name="label_bills_suggested">الفئات المقترحة</string>
<string name="label_bills_skip">تخطي</string>
<string name="stats_date_min">من</string>
<string name="stats_date_max">إلى</string>
<string name="stats_who">عضو</string>
<string name="stats_paid">مدفوع</string>
<string name="stats_spent">أنفق</string>
<string name="stats_balance">الرصيد</string>
<string name="total">المجموع: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">فشل الاتصال: %1$s</string>
<string name="error_create_remote_project_helper">فشل الإنشاء: %1$s</string>
<string name="error_edit_remote_project_helper">خطأ في تحديث المشروع البعيد: %1$s</string>
<string name="remote_project_operation_no_network">الشبكة غير متوفرة للتشغيل عن بعد.</string>
<string name="error_scanning_bill_qr_code">فشل تحليل رمز QR.</string>
<string name="error_token_mismatch">عدم تطابق رمز المصادقة. الرجاء تسجيل الدخول مرة أخرى.</string>
<string name="insufficient_access_level">ليس لديك الصلاحية للقيام بهذا الإجراء.</string>
<string name="delete_label_confirmation_title">حذف التسمية</string>
<string name="delete_label_confirmation_message">هل أنت متأكد من أنك تريد حذف هذه التسمية؟</string>
<!-- About -->
<string name="about_version">الإصدار %1$s</string>
<string name="about_maintainer_title">المشرف</string>
<string name="about_license_title">الترخيص</string>
<string name="about_source_title">الكود المصدري</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">المشروع %1$s</string>
<string name="share_chooser_title">مشاركة %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Cowspent</string>
<!-- Actions -->
<string name="action_new_bill">New bill</string>
<string name="action_add_project">Add project</string>
<string name="action_save">Save</string>
<string name="action_edit">Edit</string>
<string name="action_share">Share</string>
<string name="action_search">Search</string>
<string name="action_delete">Delete</string>
<string name="action_archive">Archive</string>
<string name="action_unarchive">Unarchive</string>
<string name="action_export">Export</string>
<string name="action_stats">Stats</string>
<string name="action_settle">Settle</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Settings</string>
<string name="action_label_bills">Label missing categories</string>
<string name="action_logout">Logout</string>
<string name="action_connect">Connect</string>
<string name="action_discard">Discard</string>
<string name="action_members">Members</string>
<string name="action_labels">Labels</string>
<string name="action_currencies">Currencies</string>
<!-- Titles -->
<string name="title_stats">Statistics</string>
<string name="title_edit_project">Edit project</string>
<string name="title_label_bills">Label Bills</string>
<string name="title_labels">Manage Labels</string>
<string name="title_about">About</string>
<string name="title_settle">Settle Project</string>
<string name="title_share">Share Project</string>
<string name="title_add_project">Add Project</string>
<string name="title_add_category">Add Category</string>
<string name="title_add_payment_mode">Add Payment Mode</string>
<string name="title_account">Nextcloud Account</string>
<string name="title_share_web">Web link</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">Are you sure?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">All bills</string>
<string name="label_categories">Categories</string>
<string name="label_payment_modes">Payment Modes</string>
<string name="label_name">Name</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Color</string>
<string name="label_weight">Weight</string>
<string name="label_activated">Activated</string>
<string name="label_password">Password</string>
<string name="label_email">E-mail</string>
<string name="label_url">Server address</string>
<string name="label_username">Username</string>
<string name="label_comment">Comment</string>
<string name="label_what">What?</string>
<string name="label_payer">Who paid?</string>
<string name="label_owers">For whom?</string>
<string name="label_repeat">Repeat every</string>
<string name="label_mode">Mode</string>
<string name="label_category">Category</string>
<string name="label_project_id">Project ID/name</string>
<string name="label_project_title">Project title</string>
<string name="label_use_sso">Use Nextcloud App Account</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Unsaved changes</string>
<string name="dialog_unsaved_changes_msg">Save changes before leaving?</string>
<string name="dialog_confirm_remove_project_msg">The remote project will not be deleted.</string>
<string name="dialog_sync_error_title">Sync error</string>
<string name="dialog_sync_error_msg">Sync failed for %1$s.\n\n%2$s</string>
<string name="dialog_balanced_msg">Expenses are already balanced.</string>
<string name="msg_project_added">Project %1$s added</string>
<string name="msg_bill_labeled_done">All bills labeled</string>
<string name="msg_no_suggestions">No suggestions</string>
<string name="msg_auth_warning">Requires Cospend v0.3.4+.</string>
<string name="msg_link_copied">Link copied to clipboard</string>
<string name="msg_share_qr">Scan QR code or share the link to join.</string>
<string name="msg_share_web">Link for web browser access.</string>
<string name="msg_share_qr_warn">Share this link with a Cowspent user.</string>
<string name="msg_settle_intro">Settlement for %1$s:</string>
<string name="msg_settle_sentence">%1$s owes %3$.2f to %2$s</string>
<string name="msg_stats_intro">Stats for %1$s:</string>
<string name="msg_stats_header">Member (Paid | Spent | Balance)</string>
<string name="msg_logged_in_as">Logged in as %1$s</string>
<!-- Errors -->
<string name="error_generic">Error</string>
<string name="error_loading">Loading</string>
<string name="error_no_projects">No projects found</string>
<string name="error_no_members">No members found</string>
<string name="error_no_bills">No bills found</string>
<string name="error_no_member">At least one member required</string>
<string name="error_maintenance_mode">Server is in maintenance mode</string>
<string name="error_400">400 Bad request</string>
<string name="error_401">401 Unauthorized</string>
<string name="error_403">403 Forbidden</string>
<string name="error_404">404 Not Found</string>
<string name="error_sync">Sync failed: %1$s</string>
<string name="error_invalid_login">Invalid login: %1$s</string>
<string name="error_auth">Wrong username or password</string>
<string name="error_json">Invalid server response</string>
<string name="error_req_failed">Request failed</string>
<string name="error_invalid_email">Invalid e-mail</string>
<string name="error_invalid_project_id">Invalid project ID</string>
<string name="error_invalid_project_name">Invalid project title</string>
<string name="error_invalid_bill_name">Invalid bill name</string>
<string name="error_invalid_bill_date">Invalid bill date</string>
<string name="error_invalid_bill_payer">Payer required</string>
<string name="error_invalid_bill_owers">Owers required</string>
<string name="error_no_network">No network connection</string>
<string name="error_server">Server error</string>
<string name="error_io">Server connection broken</string>
<string name="error_share_impossible">Cannot share this project</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Connect to Nextcloud account</string>
<string name="drawer_last_sync">Last sync: %1$02d:%2$02d</string>
<string name="simple_cancel">Cancel</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">Ok</string>
<string name="simple_yes">Yes</string>
<string name="simple_no">No</string>
<string name="simple_close">Close</string>
<!-- Settings -->
<string name="settings_appearance">Appearance</string>
<string name="settings_network">Network</string>
<string name="settings_other">Other</string>
<string name="settings_night_mode">Theme</string>
<string name="settings_offline_mode">Offline mode</string>
<string name="settings_offline_mode_summary">Only sync manually.</string>
<string name="settings_color_custom">Custom color</string>
<string name="settings_color_mode">Color Selection</string>
<string name="settings_show_archived">Show archived projects</string>
<string name="settings_beta_features">Beta Features</string>
<string name="settings_beta_features_summary">Enable experimental features. Use at your own risk.</string>
<string name="settings_url_warn_http">WARNING: \"http\" is unsafe. Use \"https\".</string>
<string name="settings_colorpicker_title">Choose Color</string>
<string name="pref_value_color_system">System</string>
<string name="pref_value_color_server">Nextcloud</string>
<string name="pref_value_color_manual">Manual</string>
<string name="pref_value_theme_light">Light</string>
<string name="pref_value_theme_dark">Dark</string>
<string name="pref_value_theme_system">Follow system</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">No repeat</string>
<string name="repeat_day">Daily</string>
<string name="repeat_week">Weekly</string>
<string name="repeat_fortnight">Fortnightly</string>
<string name="repeat_month">Monthly</string>
<string name="repeat_year">Yearly</string>
<string name="payment_mode_none">None</string>
<string name="payment_mode_all">All</string>
<string name="payment_mode_credit_card">Credit card</string>
<string name="payment_mode_cash">Cash</string>
<string name="payment_mode_check">Check</string>
<string name="payment_mode_online">Online</string>
<string name="payment_mode_transfer">Transfer</string>
<string name="category_none">None</string>
<string name="category_all">All</string>
<string name="category_all_except_reimbursement">All except reimbursement</string>
<string name="category_groceries">Grocery</string>
<string name="category_leisure">Bar/Party</string>
<string name="category_rent">Rent</string>
<string name="category_bills">Bill</string>
<string name="category_excursion">Excursion/Culture</string>
<string name="category_health">Health</string>
<string name="category_shopping">Shopping</string>
<string name="category_reimbursement">Reimbursement</string>
<string name="category_restaurant">Restaurant</string>
<string name="category_accomodation">Accommodation</string>
<string name="category_transport">Transport</string>
<string name="category_sport">Sport</string>
<!-- Project specific -->
<string name="new_project_action">What</string>
<string name="new_project_where">Where</string>
<string name="where_local">Local only</string>
<string name="where_cospend">Cospend</string>
<string name="where_ihatemoney">IHateMoney</string>
<string name="todo_join">Join existing project</string>
<string name="todo_create">Create new project</string>
<string name="import_tooltip">Import from file</string>
<string name="choose_account_project_dialog_title">Choose project</string>
<string name="choose_account_project_dialog_impossible">No projects found on this account.</string>
<string name="choose_project_management_action">Project</string>
<string name="project_added_success">Project added successfully.</string>
<string name="no_projects_text">You have no projects yet.</string>
<string name="configure_account_choice">Configure Nextcloud account</string>
<string name="add_project_choice">Add project manually</string>
<string name="no_members_text">No members in this project.</string>
<string name="no_bills_text">No bills found.</string>
<string name="member_already_exists">Member already exists.</string>
<string name="activity_dialog_title">Project: %1$s</string>
<string name="remove_project_confirmation">Project %1$s removed.</string>
<string name="file_saved_success">File saved: %1$s</string>
<string name="import_error_header">Import failed at row %d</string>
<string name="import_error_date">Invalid date format at row %d</string>
<string name="import_error_owers">Invalid owers at row %d</string>
<string name="add_member_dialog_title">Add Member</string>
<string name="edit_member_dialog_title">Edit Member</string>
<string name="member_edit_delete">Delete</string>
<string name="project_edition_no_change">No changes to save.</string>
<!-- Settlement -->
<string name="center_none">None (Optimal)</string>
<string name="settle_who">Who pays</string>
<string name="settle_to_whom">To whom</string>
<string name="settle_how_much">Amount</string>
<string name="simple_settle_share">Share</string>
<string name="simple_create_bills">Create bills</string>
<string name="settle_bill_what">Settlement</string>
<!-- Currencies -->
<string name="currency_dialog_title">Choose Currency (%s)</string>
<string name="setting_none">None</string>
<string name="setting_all">All</string>
<string name="currency_saved_success">Currency settings saved.</string>
<string name="main_currency">Main Currency</string>
<!-- Statistics -->
<string name="label_bills_suggested">Suggested Categories</string>
<string name="label_bills_skip">Skip</string>
<string name="stats_date_min">From</string>
<string name="stats_date_max">To</string>
<string name="stats_who">Member</string>
<string name="stats_paid">Paid</string>
<string name="stats_spent">Spent</string>
<string name="stats_balance">Balance</string>
<string name="total">Total: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">Connection failed: %1$s</string>
<string name="error_create_remote_project_helper">Creation failed: %1$s</string>
<string name="error_edit_remote_project_helper">Error updating remote project: %1$s</string>
<string name="remote_project_operation_no_network">Network unavailable for remote operation.</string>
<string name="error_scanning_bill_qr_code">Failed to parse QR code.</string>
<string name="error_token_mismatch">Authentication token mismatch. Please log in again.</string>
<string name="insufficient_access_level">You don\'t have permission to perform this action.</string>
<string name="delete_label_confirmation_title">Delete Label</string>
<string name="delete_label_confirmation_message">Are you sure you want to delete this label?</string>
<!-- About -->
<string name="about_version">Version %1$s</string>
<string name="about_maintainer_title">Maintainer</string>
<string name="about_license_title">License</string>
<string name="about_source_title">Source code</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Project %1$s</string>
<string name="share_chooser_title">Share %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Vyčerpané krávy</string>
<!-- Actions -->
<string name="action_new_bill">Nový účet</string>
<string name="action_add_project">Přidat projekt</string>
<string name="action_save">Uložit</string>
<string name="action_edit">Upravit</string>
<string name="action_share">Sdílet</string>
<string name="action_search">Hledat</string>
<string name="action_delete">Vymazat</string>
<string name="action_archive">Archiv</string>
<string name="action_unarchive">Zrušit archiv</string>
<string name="action_export">Exportovat</string>
<string name="action_stats">Statistiky</string>
<string name="action_settle">Sada</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Nastavení</string>
<string name="action_label_bills">Chybí kategorie</string>
<string name="action_logout">Odhlásit se</string>
<string name="action_connect">Připojit</string>
<string name="action_discard">Zahodit</string>
<string name="action_members">Členové</string>
<string name="action_labels">Popisky</string>
<string name="action_currencies">Měny</string>
<!-- Titles -->
<string name="title_stats">Statistiky</string>
<string name="title_edit_project">Upravit projekt</string>
<string name="title_label_bills">Etiketové účty</string>
<string name="title_labels">Spravovat štítky</string>
<string name="title_about">O aplikaci</string>
<string name="title_settle">Projekt settle</string>
<string name="title_share">Sdílet projekt</string>
<string name="title_add_project">Přidat projekt</string>
<string name="title_add_category">Přidat kategorii</string>
<string name="title_add_payment_mode">Přidat platební režim</string>
<string name="title_account">Nextcloud účet</string>
<string name="title_share_web">Webový odkaz</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">Jste si jisti?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">Všechny účty</string>
<string name="label_categories">Kategorie</string>
<string name="label_payment_modes">Platební režimy</string>
<string name="label_name">Název</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Barva</string>
<string name="label_weight">Hmotnost</string>
<string name="label_activated">Aktivováno</string>
<string name="label_password">Heslo</string>
<string name="label_email">E-mail</string>
<string name="label_url">Adresa serveru</string>
<string name="label_username">Uživatelské jméno</string>
<string name="label_comment">Komentář</string>
<string name="label_what">Co to znamená?</string>
<string name="label_payer">Kdo zaplatil?</string>
<string name="label_owers">Pro koho?</string>
<string name="label_repeat">Opakovat každý</string>
<string name="label_mode">Režim</string>
<string name="label_category">Kategorie</string>
<string name="label_project_id">ID / název projektu</string>
<string name="label_project_title">Název projektu</string>
<string name="label_use_sso">Použít Nextcloud účet aplikace</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Neuložené změny</string>
<string name="dialog_unsaved_changes_msg">Uložit změny před odchodem?</string>
<string name="dialog_confirm_remove_project_msg">Vzdálený projekt nebude odstraněn.</string>
<string name="dialog_sync_error_title">Chyba synchronizace</string>
<string name="dialog_sync_error_msg">Synchronizace se nezdařila pro %1$s.\n\n%2$s</string>
<string name="dialog_balanced_msg">Výdaje jsou již vyrovnané.</string>
<string name="msg_project_added">Projekt %1$s byl přidán</string>
<string name="msg_bill_labeled_done">Všechny účty jsou označeny</string>
<string name="msg_no_suggestions">Žádné návrhy</string>
<string name="msg_auth_warning">Vyžaduje Cospend v0.3.4+.</string>
<string name="msg_link_copied">Odkaz zkopírován do schránky</string>
<string name="msg_share_qr">Naskenujte QR kód nebo sdílejte odkaz pro připojení.</string>
<string name="msg_share_web">Odkaz pro přístup k webovému prohlížeči.</string>
<string name="msg_share_qr_warn">Sdílejte tento odkaz s Cowspent uživatelem.</string>
<string name="msg_settle_intro">Vyrovnání pro %1$s:</string>
<string name="msg_settle_sentence">%1$s dluží %3$.2f %2$s</string>
<string name="msg_stats_intro">Statistiky pro %1$s:</string>
<string name="msg_stats_header">Člen (Placené | utraceno | Zůstatek)</string>
<string name="msg_logged_in_as">Přihlášen jako %1$s</string>
<!-- Errors -->
<string name="error_generic">Chyba</string>
<string name="error_loading">Načítání</string>
<string name="error_no_projects">Nebyly nalezeny žádné projekty</string>
<string name="error_no_members">Nenalezeni žádní členové</string>
<string name="error_no_bills">Nebyly nalezeny žádné účty</string>
<string name="error_no_member">Požadován alespoň jeden člen</string>
<string name="error_maintenance_mode">Server je v režimu údržby</string>
<string name="error_400">400 špatný požadavek</string>
<string name="error_401">401 Neautorizováno</string>
<string name="error_403">403 zakázáno</string>
<string name="error_404">404 Nenalezeno</string>
<string name="error_sync">Synchronizace selhala: %1$s</string>
<string name="error_invalid_login">Neplatné přihlášení: %1$s</string>
<string name="error_auth">Nesprávné uživatelské jméno nebo heslo</string>
<string name="error_json">Neplatná odpověď serveru</string>
<string name="error_req_failed">Požadavek se nezdařil</string>
<string name="error_invalid_email">Neplatný e-mail</string>
<string name="error_invalid_project_id">Neplatné ID projektu</string>
<string name="error_invalid_project_name">Neplatný název projektu</string>
<string name="error_invalid_bill_name">Neplatné jméno účtu</string>
<string name="error_invalid_bill_date">Neplatné datum faktury</string>
<string name="error_invalid_bill_payer">Je vyžadován plátce</string>
<string name="error_invalid_bill_owers">Je vyžadován majitel</string>
<string name="error_no_network">Žádné připojení k síti</string>
<string name="error_server">Chyba serveru</string>
<string name="error_io">Připojení k serveru bylo přerušeno</string>
<string name="error_share_impossible">Nelze sdílet tento projekt</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Připojit k Nextcloud účtu</string>
<string name="drawer_last_sync">Poslední synchronizace: %1$02d:%2$02d</string>
<string name="simple_cancel">Zrušit</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">Ok</string>
<string name="simple_yes">Ano</string>
<string name="simple_no">Ne</string>
<string name="simple_close">Zavřít</string>
<!-- Settings -->
<string name="settings_appearance">Vzhled</string>
<string name="settings_network">Síť</string>
<string name="settings_other">Ostatní</string>
<string name="settings_night_mode">Téma</string>
<string name="settings_offline_mode">Offline režim</string>
<string name="settings_offline_mode_summary">Synchronizovat pouze ručně.</string>
<string name="settings_color_custom">Vlastní barva</string>
<string name="settings_color_mode">Výběr barvy</string>
<string name="settings_show_archived">Zobrazit archivované projekty</string>
<string name="settings_beta_features">Beta funkce</string>
<string name="settings_beta_features_summary">Povolit experimentální funkce. Používejte na vlastní riziko.</string>
<string name="settings_url_warn_http">VAROVÁNÍ: \"http\" není bezpečné. Použijte \"https://\".</string>
<string name="settings_colorpicker_title">Vybrat barvu</string>
<string name="pref_value_color_system">Systém</string>
<string name="pref_value_color_server">Nextcloud</string>
<string name="pref_value_color_manual">Ruční</string>
<string name="pref_value_theme_light">Světlý</string>
<string name="pref_value_theme_dark">Tmavý</string>
<string name="pref_value_theme_system">Sledovat systém</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">Žádné opakování</string>
<string name="repeat_day">Denní</string>
<string name="repeat_week">Týdenní</string>
<string name="repeat_fortnight">Čtvrtletní</string>
<string name="repeat_month">Měsíčně</string>
<string name="repeat_year">Roční</string>
<string name="payment_mode_none">Nic</string>
<string name="payment_mode_all">Vše</string>
<string name="payment_mode_credit_card">Kreditní karta</string>
<string name="payment_mode_cash">Hotovost</string>
<string name="payment_mode_check">Zkontrolovat</string>
<string name="payment_mode_online">Online</string>
<string name="payment_mode_transfer">Převod</string>
<string name="category_none">Nic</string>
<string name="category_all">Vše</string>
<string name="category_all_except_reimbursement">Všechny kromě úhrady</string>
<string name="category_groceries">Slepičí</string>
<string name="category_leisure">Čárka/Party</string>
<string name="category_rent">Pronájem</string>
<string name="category_bills">Faktura</string>
<string name="category_excursion">Výstup/kultura</string>
<string name="category_health">Zdraví</string>
<string name="category_shopping">Nakupování</string>
<string name="category_reimbursement">Náhrada</string>
<string name="category_restaurant">Restaurace</string>
<string name="category_accomodation">Ubytování</string>
<string name="category_transport">Přeprava</string>
<string name="category_sport">Sport</string>
<!-- Project specific -->
<string name="new_project_action">Co</string>
<string name="new_project_where">Kde</string>
<string name="where_local">Pouze místní</string>
<string name="where_cospend">Koutracení</string>
<string name="where_ihatemoney">IhateMoney</string>
<string name="todo_join">Připojit se k existujícímu projektu</string>
<string name="todo_create">Vytvořit nový projekt</string>
<string name="import_tooltip">Importovat ze souboru</string>
<string name="choose_account_project_dialog_title">Vybrat projekt</string>
<string name="choose_account_project_dialog_impossible">Na tomto účtu nebyly nalezeny žádné projekty.</string>
<string name="choose_project_management_action">Projekt</string>
<string name="project_added_success">Projekt byl úspěšně přidán.</string>
<string name="no_projects_text">Zatím nemáte žádné projekty.</string>
<string name="configure_account_choice">Konfigurovat Nextcloud účet</string>
<string name="add_project_choice">Přidat projekt ručně</string>
<string name="no_members_text">Žádní členové tohoto projektu.</string>
<string name="no_bills_text">Nebyly nalezeny žádné účty.</string>
<string name="member_already_exists">Člen již existuje.</string>
<string name="activity_dialog_title">Projekt: %1$s</string>
<string name="remove_project_confirmation">Projekt %1$s byl odstraněn.</string>
<string name="file_saved_success">Soubor uložen: %1$s</string>
<string name="import_error_header">Import se nezdařil na řádku %d</string>
<string name="import_error_date">Neplatný formát data na řádku %d</string>
<string name="import_error_owers">Neplatné dlužníky na řádku %d</string>
<string name="add_member_dialog_title">Přidat člena</string>
<string name="edit_member_dialog_title">Upravit člena</string>
<string name="member_edit_delete">Vymazat</string>
<string name="project_edition_no_change">Žádné změny k uložení.</string>
<!-- Settlement -->
<string name="center_none">Žádný (optimální)</string>
<string name="settle_who">Kdo zaplatí</string>
<string name="settle_to_whom">komu</string>
<string name="settle_how_much">Částka, která má být získána</string>
<string name="simple_settle_share">Sdílet</string>
<string name="simple_create_bills">Vytvořit účty</string>
<string name="settle_bill_what">Vypořádání</string>
<!-- Currencies -->
<string name="currency_dialog_title">Vybrat měnu (%s)</string>
<string name="setting_none">Nic</string>
<string name="setting_all">Vše</string>
<string name="currency_saved_success">Nastavení měny uloženo.</string>
<string name="main_currency">Hlavní měna</string>
<!-- Statistics -->
<string name="label_bills_suggested">Navrhované kategorie</string>
<string name="label_bills_skip">Přeskočit</string>
<string name="stats_date_min">Od</string>
<string name="stats_date_max">Komu</string>
<string name="stats_who">Člen</string>
<string name="stats_paid">Zaplaceno</string>
<string name="stats_spent">Utraceno</string>
<string name="stats_balance">Zůstatek</string>
<string name="total">Celkem: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">Připojení se nezdařilo: %1$s</string>
<string name="error_create_remote_project_helper">Vytvoření selhalo: %1$s</string>
<string name="error_edit_remote_project_helper">Chyba při aktualizaci vzdáleného projektu: %1$s</string>
<string name="remote_project_operation_no_network">Síť není k dispozici pro vzdálenou operaci.</string>
<string name="error_scanning_bill_qr_code">Nepodařilo se zpracovat QR kód.</string>
<string name="error_token_mismatch">Ověřovací token se neshoduje. Přihlaste se znovu.</string>
<string name="insufficient_access_level">Nemáte oprávnění k provedení této akce.</string>
<string name="delete_label_confirmation_title">Odstranit štítek</string>
<string name="delete_label_confirmation_message">Jste si jisti, že chcete odstranit tento štítek?</string>
<!-- About -->
<string name="about_version">Verze %1$s</string>
<string name="about_maintainer_title">Správce</string>
<string name="about_license_title">Licence</string>
<string name="about_source_title">Zdrojový kód</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Projekt %1$s</string>
<string name="share_chooser_title">Sdílet %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Kowbrugt</string>
<!-- Actions -->
<string name="action_new_bill">Ny regning</string>
<string name="action_add_project">Tilføj projekt</string>
<string name="action_save">Gem</string>
<string name="action_edit">Rediger</string>
<string name="action_share">Del</string>
<string name="action_search">Søg</string>
<string name="action_delete">Slet</string>
<string name="action_archive">Arkiv</string>
<string name="action_unarchive">Fjern Arkiv</string>
<string name="action_export">Eksporter</string>
<string name="action_stats">Statistik</string>
<string name="action_settle">Afregn</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Indstillinger</string>
<string name="action_label_bills">Etiket mangler kategorier</string>
<string name="action_logout">Log Ud</string>
<string name="action_connect">Forbind</string>
<string name="action_discard">Kassér</string>
<string name="action_members">Medlemmer</string>
<string name="action_labels">Etiketter</string>
<string name="action_currencies">Valutaer</string>
<!-- Titles -->
<string name="title_stats">Statistik</string>
<string name="title_edit_project">Rediger projekt</string>
<string name="title_label_bills">Etiketregninger</string>
<string name="title_labels">Administrer Etiketter</string>
<string name="title_about">Om</string>
<string name="title_settle">Afregn Projekt</string>
<string name="title_share">Del Projekt</string>
<string name="title_add_project">Tilføj Projekt</string>
<string name="title_add_category">Tilføj Kategori</string>
<string name="title_add_payment_mode">Tilføj Betalingstilstand</string>
<string name="title_account">Nextcloud Konto</string>
<string name="title_share_web">Weblink</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">Er du sikker?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">Alle regninger</string>
<string name="label_categories">Kategorier</string>
<string name="label_payment_modes">Betalingstilstande</string>
<string name="label_name">Navn</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Farve</string>
<string name="label_weight">Vægt</string>
<string name="label_activated">Aktiveret</string>
<string name="label_password">Adgangskode</string>
<string name="label_email">E-mail</string>
<string name="label_url">Server adresse</string>
<string name="label_username">Brugernavn</string>
<string name="label_comment">Kommentar</string>
<string name="label_what">Hvad?</string>
<string name="label_payer">Hvem betalte?</string>
<string name="label_owers">For hvem?</string>
<string name="label_repeat">Gentag hver</string>
<string name="label_mode">Tilstand</string>
<string name="label_category">Kategori</string>
<string name="label_project_id">Projekt ID/navn</string>
<string name="label_project_title">Projektets titel</string>
<string name="label_use_sso">Brug Nextcloud App-konto</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Ikke-gemte ændringer</string>
<string name="dialog_unsaved_changes_msg">Gem ændringer før afrejsen?</string>
<string name="dialog_confirm_remove_project_msg">Fjernprojektet vil ikke blive slettet.</string>
<string name="dialog_sync_error_title">Synkronisering fejl</string>
<string name="dialog_sync_error_msg">Synkronisering mislykkedes for %1$s.\n\n%2$s</string>
<string name="dialog_balanced_msg">Udgifterne er allerede afbalancerede.</string>
<string name="msg_project_added">Projekt %1$s tilføjet</string>
<string name="msg_bill_labeled_done">Alle regninger mærket</string>
<string name="msg_no_suggestions">Ingen forslag</string>
<string name="msg_auth_warning">Kræver Cospend v0.3.4+.</string>
<string name="msg_link_copied">Link kopieret til udklipsholder</string>
<string name="msg_share_qr">Scan QR-kode eller del linket for at deltage.</string>
<string name="msg_share_web">Link til webbrowser-adgang.</string>
<string name="msg_share_qr_warn">Del dette link med en Cowspent bruger.</string>
<string name="msg_settle_intro">Udligning for %1$s:</string>
<string name="msg_settle_sentence">%1$s skylder %3$.2f til %2$s</string>
<string name="msg_stats_intro">Statistik for %1$s:</string>
<string name="msg_stats_header">Medlem (Betalt - Spent - Balance)</string>
<string name="msg_logged_in_as">Logget ind som %1$s</string>
<!-- Errors -->
<string name="error_generic">Fejl</string>
<string name="error_loading">Indlæser</string>
<string name="error_no_projects">Ingen projekter fundet</string>
<string name="error_no_members">Ingen medlemmer fundet</string>
<string name="error_no_bills">Ingen regninger fundet</string>
<string name="error_no_member">Mindst et medlem kræves</string>
<string name="error_maintenance_mode">Serveren er i vedligeholdelsestilstand</string>
<string name="error_400">400 Dårlig forespørgsel</string>
<string name="error_401">401 Uautoriseret</string>
<string name="error_403">403 Forbudt</string>
<string name="error_404">404 Ikke Fundet</string>
<string name="error_sync">Synkronisering mislykkedes: %1$s</string>
<string name="error_invalid_login">Ugyldigt login: %1$s</string>
<string name="error_auth">Forkert brugernavn eller adgangskode</string>
<string name="error_json">Ugyldigt serversvar</string>
<string name="error_req_failed">Anmodning mislykkedes</string>
<string name="error_invalid_email">Ugyldig e-mail</string>
<string name="error_invalid_project_id">Ugyldigt projekt ID</string>
<string name="error_invalid_project_name">Ugyldig projekttitel</string>
<string name="error_invalid_bill_name">Ugyldigt regnings navn</string>
<string name="error_invalid_bill_date">Ugyldig faktureringsdato</string>
<string name="error_invalid_bill_payer">Betaler påkrævet</string>
<string name="error_invalid_bill_owers">Ejere påkrævet</string>
<string name="error_no_network">Ingen netværksforbindelse</string>
<string name="error_server">Server fejl</string>
<string name="error_io">Server forbindelse ødelagt</string>
<string name="error_share_impossible">Kan ikke dele dette projekt</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Opret forbindelse til Nextcloud konto</string>
<string name="drawer_last_sync">Seneste synkronisering: %1$02d:%2$02d</string>
<string name="simple_cancel">Annuller</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">OK</string>
<string name="simple_yes">Ja</string>
<string name="simple_no">Nej</string>
<string name="simple_close">Luk</string>
<!-- Settings -->
<string name="settings_appearance">Udseende</string>
<string name="settings_network">Netværk</string>
<string name="settings_other">Andet</string>
<string name="settings_night_mode">Tema</string>
<string name="settings_offline_mode">Offline tilstand</string>
<string name="settings_offline_mode_summary">Synkroniser kun manuelt.</string>
<string name="settings_color_custom">Brugerdefineret farve</string>
<string name="settings_color_mode">Valg Af Farver</string>
<string name="settings_show_archived">Vis arkiverede projekter</string>
<string name="settings_beta_features">Beta Funktioner</string>
<string name="settings_beta_features_summary">Aktiver eksperimentelle funktioner. Brug på egen risiko.</string>
<string name="settings_url_warn_http">ADVARSEL: \"http\" er usikkert. Brug \"https\".</string>
<string name="settings_colorpicker_title">Vælg Farve</string>
<string name="pref_value_color_system">System</string>
<string name="pref_value_color_server">Nextcloud</string>
<string name="pref_value_color_manual">Manuelt</string>
<string name="pref_value_theme_light">Lys</string>
<string name="pref_value_theme_dark">Mørk</string>
<string name="pref_value_theme_system">Følg system</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">Ingen gentagelse</string>
<string name="repeat_day">Dagligt</string>
<string name="repeat_week">Ugentlig</string>
<string name="repeat_fortnight">Fortnightly</string>
<string name="repeat_month">Månedligt</string>
<string name="repeat_year">Årligt</string>
<string name="payment_mode_none">Ingen</string>
<string name="payment_mode_all">Alle</string>
<string name="payment_mode_credit_card">Kreditkort</string>
<string name="payment_mode_cash">Kontant</string>
<string name="payment_mode_check">Tjek</string>
<string name="payment_mode_online">Online</string>
<string name="payment_mode_transfer">Overfør</string>
<string name="category_none">Ingen</string>
<string name="category_all">Alle</string>
<string name="category_all_except_reimbursement">Alle undtagen refusion</string>
<string name="category_groceries">Køller</string>
<string name="category_leisure">Bar/Party</string>
<string name="category_rent">Leje</string>
<string name="category_bills">Regning</string>
<string name="category_excursion">Udflugter/Kultur</string>
<string name="category_health">Sundhed</string>
<string name="category_shopping">Shopping</string>
<string name="category_reimbursement">Tilbagebetaling</string>
<string name="category_restaurant">Restaurant</string>
<string name="category_accomodation">Overnatning</string>
<string name="category_transport">Transport</string>
<string name="category_sport">Sport</string>
<!-- Project specific -->
<string name="new_project_action">Hvad</string>
<string name="new_project_where">Hvor</string>
<string name="where_local">Kun lokalt</string>
<string name="where_cospend">Cospendér</string>
<string name="where_ihatemoney">IHateMoney</string>
<string name="todo_join">Deltag i eksisterende projekt</string>
<string name="todo_create">Opret nyt projekt</string>
<string name="import_tooltip">Importer fra fil</string>
<string name="choose_account_project_dialog_title">Vælg projekt</string>
<string name="choose_account_project_dialog_impossible">Ingen projekter fundet på denne konto.</string>
<string name="choose_project_management_action">Projekt</string>
<string name="project_added_success">Projekt tilføjet.</string>
<string name="no_projects_text">Du har endnu ingen projekter.</string>
<string name="configure_account_choice">Konfigurer Nextcloud konto</string>
<string name="add_project_choice">Tilføj projekt manuelt</string>
<string name="no_members_text">Ingen medlemmer i dette projekt.</string>
<string name="no_bills_text">Ingen regninger fundet.</string>
<string name="member_already_exists">Medlemmet findes allerede.</string>
<string name="activity_dialog_title">Projekt: %1$s</string>
<string name="remove_project_confirmation">Projekt %1$s fjernet.</string>
<string name="file_saved_success">Fil gemt: %1$s</string>
<string name="import_error_header">Import mislykkedes ved række %d</string>
<string name="import_error_date">Ugyldigt datoformat ved række %d</string>
<string name="import_error_owers">Ugyldige ejere ved række %d</string>
<string name="add_member_dialog_title">Tilføj Medlem</string>
<string name="edit_member_dialog_title">Rediger Medlem</string>
<string name="member_edit_delete">Slet</string>
<string name="project_edition_no_change">Ingen ændringer at gemme.</string>
<!-- Settlement -->
<string name="center_none">Ingen (Optimal)</string>
<string name="settle_who">Hvem betaler</string>
<string name="settle_to_whom">Til hvem</string>
<string name="settle_how_much">Beløb</string>
<string name="simple_settle_share">Del</string>
<string name="simple_create_bills">Opret regninger</string>
<string name="settle_bill_what">Afregning</string>
<!-- Currencies -->
<string name="currency_dialog_title">Vælg Valuta (%s)</string>
<string name="setting_none">Ingen</string>
<string name="setting_all">Alle</string>
<string name="currency_saved_success">Valuta indstillinger gemt.</string>
<string name="main_currency">Primær Valuta</string>
<!-- Statistics -->
<string name="label_bills_suggested">Foreslåede Kategorier</string>
<string name="label_bills_skip">Overspring</string>
<string name="stats_date_min">Fra</string>
<string name="stats_date_max">Til</string>
<string name="stats_who">Medlem</string>
<string name="stats_paid">Betalt</string>
<string name="stats_spent">Brugt</string>
<string name="stats_balance">Saldo</string>
<string name="total">Total: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">Forbindelse fejlede: %1$s</string>
<string name="error_create_remote_project_helper">Oprettelse fejlede: %1$s</string>
<string name="error_edit_remote_project_helper">Fejl under opdatering af fjernprojekt: %1$s</string>
<string name="remote_project_operation_no_network">Netværk utilgængeligt for fjernbetjening.</string>
<string name="error_scanning_bill_qr_code">Kunne ikke fortolke QR-kode.</string>
<string name="error_token_mismatch">Godkendelse token mismatch. Log venligst ind igen.</string>
<string name="insufficient_access_level">Du har ikke tilladelse til at udføre denne handling.</string>
<string name="delete_label_confirmation_title">Slet Etiket</string>
<string name="delete_label_confirmation_message">Er du sikker på, at du vil slette denne etiket?</string>
<!-- About -->
<string name="about_version">Version %1$s</string>
<string name="about_maintainer_title">Vedligeholder</string>
<string name="about_license_title">Licens</string>
<string name="about_source_title">Kilde kode</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Projekt %1$s</string>
<string name="share_chooser_title">Del %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Kuh ausgegeben</string>
<!-- Actions -->
<string name="action_new_bill">Neue Rechnung</string>
<string name="action_add_project">Projekt hinzufügen</string>
<string name="action_save">Speichern</string>
<string name="action_edit">Bearbeiten</string>
<string name="action_share">Teilen</string>
<string name="action_search">Suchen</string>
<string name="action_delete">Löschen</string>
<string name="action_archive">Archivieren</string>
<string name="action_unarchive">Archivieren</string>
<string name="action_export">Exportieren</string>
<string name="action_stats">Statistik</string>
<string name="action_settle">Abrechnen</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Einstellungen</string>
<string name="action_label_bills">Fehlende Kategorien</string>
<string name="action_logout">Abmelden</string>
<string name="action_connect">Verbinden</string>
<string name="action_discard">Verwerfen</string>
<string name="action_members">Mitglieder</string>
<string name="action_labels">Etiketten</string>
<string name="action_currencies">Währungen</string>
<!-- Titles -->
<string name="title_stats">Statistiken</string>
<string name="title_edit_project">Projekt bearbeiten</string>
<string name="title_label_bills">Etikett Rechnungen</string>
<string name="title_labels">Labels verwalten</string>
<string name="title_about">Über</string>
<string name="title_settle">Projekt regeln</string>
<string name="title_share">Projekt teilen</string>
<string name="title_add_project">Projekt hinzufügen</string>
<string name="title_add_category">Neue Kategorie</string>
<string name="title_add_payment_mode">Zahlungsmodus hinzufügen</string>
<string name="title_account">Nächstes Cloud-Konto</string>
<string name="title_share_web">Weblink</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">Bist du sicher?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">Alle Rechnungen</string>
<string name="label_categories">Kategorien</string>
<string name="label_payment_modes">Zahlungsarten</string>
<string name="label_name">Name</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Farbe</string>
<string name="label_weight">Gewicht</string>
<string name="label_activated">Aktiviert</string>
<string name="label_password">Passwort</string>
<string name="label_email">E-Mail</string>
<string name="label_url">Serveradresse</string>
<string name="label_username">Benutzername</string>
<string name="label_comment">Kommentar</string>
<string name="label_what">Was?</string>
<string name="label_payer">Wer hat bezahlt?</string>
<string name="label_owers">Für wen?</string>
<string name="label_repeat">Wiederholen alle</string>
<string name="label_mode">Modus</string>
<string name="label_category">Kategorie</string>
<string name="label_project_id">Projekt-ID/Name</string>
<string name="label_project_title">Projekttitel</string>
<string name="label_use_sso">Nextcloud App-Konto verwenden</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Ungespeicherte Änderungen</string>
<string name="dialog_unsaved_changes_msg">Änderungen vor dem Verlassen speichern?</string>
<string name="dialog_confirm_remove_project_msg">Das entfernte Projekt wird nicht gelöscht.</string>
<string name="dialog_sync_error_title">Sync-Fehler</string>
<string name="dialog_sync_error_msg">Synchronisation fehlgeschlagen für %1$s.\n\n%2$s</string>
<string name="dialog_balanced_msg">Die Ausgaben sind bereits ausgeglichen.</string>
<string name="msg_project_added">Projekt %1$s hinzugefügt</string>
<string name="msg_bill_labeled_done">Alle Rechnungen markiert</string>
<string name="msg_no_suggestions">Keine Vorschläge</string>
<string name="msg_auth_warning">Benötigt Cospend v0.3.4+.</string>
<string name="msg_link_copied">Link in Zwischenablage kopiert</string>
<string name="msg_share_qr">Scannen Sie QR-Code oder teilen Sie den Link, um beizutreten.</string>
<string name="msg_share_web">Link für den Zugriff auf Web-Browser.</string>
<string name="msg_share_qr_warn">Teilen Sie diesen Link mit einem Cowspent Benutzer.</string>
<string name="msg_settle_intro">Abrechnung für %1$s:</string>
<string name="msg_settle_sentence">%1$s schuldet %3$.2f %2$s</string>
<string name="msg_stats_intro">Statistiken für %1$s:</string>
<string name="msg_stats_header">Mitglied (Paid | Ausgaben | Guthaben)</string>
<string name="msg_logged_in_as">Angemeldet als %1$s</string>
<!-- Errors -->
<string name="error_generic">Fehler</string>
<string name="error_loading">Lädt</string>
<string name="error_no_projects">Keine Projekte gefunden</string>
<string name="error_no_members">Keine Mitglieder gefunden</string>
<string name="error_no_bills">Keine Rechnungen gefunden</string>
<string name="error_no_member">Mindestens ein Mitglied erforderlich</string>
<string name="error_maintenance_mode">Server ist im Wartungsmodus</string>
<string name="error_400">400 Falsche Anfrage</string>
<string name="error_401">401 Unautorisiert</string>
<string name="error_403">403 Verboten</string>
<string name="error_404">404 Nicht gefunden</string>
<string name="error_sync">Sync fehlgeschlagen: %1$s</string>
<string name="error_invalid_login">Ungültiger Login: %1$s</string>
<string name="error_auth">Benutzername oder Passwort falsch</string>
<string name="error_json">Ungültige Server-Antwort</string>
<string name="error_req_failed">Anfrage fehlgeschlagen</string>
<string name="error_invalid_email">Ungültige E-Mail</string>
<string name="error_invalid_project_id">Ungültige Projekt-ID</string>
<string name="error_invalid_project_name">Ungültiger Projekttitel</string>
<string name="error_invalid_bill_name">Ungültiger Rechnungsname</string>
<string name="error_invalid_bill_date">Ungültiges Rechnungsdatum</string>
<string name="error_invalid_bill_payer">Zahler erforderlich</string>
<string name="error_invalid_bill_owers">Eigene erforderlich</string>
<string name="error_no_network">Keine Netzwerkverbindung</string>
<string name="error_server">Serverfehler</string>
<string name="error_io">Serververbindung defekt</string>
<string name="error_share_impossible">Dieses Projekt kann nicht geteilt werden</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Mit Nextcloud Konto verbinden</string>
<string name="drawer_last_sync">Letzter Sync: %1$02d:%2$02d</string>
<string name="simple_cancel">Abbrechen</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">Ok</string>
<string name="simple_yes">Ja</string>
<string name="simple_no">Nein</string>
<string name="simple_close">Schließen</string>
<!-- Settings -->
<string name="settings_appearance">Erscheinung</string>
<string name="settings_network">Netzwerk</string>
<string name="settings_other">Andere</string>
<string name="settings_night_mode">Thema</string>
<string name="settings_offline_mode">Offline-Modus</string>
<string name="settings_offline_mode_summary">Nur manuell synchronisieren.</string>
<string name="settings_color_custom">Eigene Farbe</string>
<string name="settings_color_mode">Farbauswahl</string>
<string name="settings_show_archived">Archivierte Projekte anzeigen</string>
<string name="settings_beta_features">Beta-Funktionen</string>
<string name="settings_beta_features_summary">Experimentelle Funktionen aktivieren. Benutzung auf eigene Gefahr.</string>
<string name="settings_url_warn_http">WARNUNG: \"http\" ist unsicher. Verwenden Sie \"https\".</string>
<string name="settings_colorpicker_title">Farbe wählen</string>
<string name="pref_value_color_system">System</string>
<string name="pref_value_color_server">Nächste Cloud</string>
<string name="pref_value_color_manual">Manuell</string>
<string name="pref_value_theme_light">Hell</string>
<string name="pref_value_theme_dark">Dunkel</string>
<string name="pref_value_theme_system">System folgen</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">Keine Wiederholung</string>
<string name="repeat_day">Täglich</string>
<string name="repeat_week">Wöchentlich</string>
<string name="repeat_fortnight">Vierzehn</string>
<string name="repeat_month">Monatlich</string>
<string name="repeat_year">Jährlich</string>
<string name="payment_mode_none">Keine</string>
<string name="payment_mode_all">Alle</string>
<string name="payment_mode_credit_card">Kreditkarte</string>
<string name="payment_mode_cash">Bargeld</string>
<string name="payment_mode_check">Prüfen</string>
<string name="payment_mode_online">Online</string>
<string name="payment_mode_transfer">Überweisung</string>
<string name="category_none">Keine</string>
<string name="category_all">Alle</string>
<string name="category_all_except_reimbursement">Alle außer Rückerstattung</string>
<string name="category_groceries">Fleischgerichte</string>
<string name="category_leisure">Bar/Party</string>
<string name="category_rent">Miete</string>
<string name="category_bills">Abrechnung</string>
<string name="category_excursion">Ausflug/Kultur</string>
<string name="category_health">Gesundheit</string>
<string name="category_shopping">Einkaufen</string>
<string name="category_reimbursement">Rückzahlung</string>
<string name="category_restaurant">Restaurant</string>
<string name="category_accomodation">Unterkunft</string>
<string name="category_transport">Transport</string>
<string name="category_sport">Sport</string>
<!-- Project specific -->
<string name="new_project_action">Was</string>
<string name="new_project_where">Wo</string>
<string name="where_local">Nur lokal</string>
<string name="where_cospend">Ko-Ausgaben</string>
<string name="where_ihatemoney">IHateMoney</string>
<string name="todo_join">Bestehendes Projekt beitreten</string>
<string name="todo_create">Neues Projekt erstellen</string>
<string name="import_tooltip">Aus Datei importieren</string>
<string name="choose_account_project_dialog_title">Projekt auswählen</string>
<string name="choose_account_project_dialog_impossible">Keine Projekte auf diesem Konto gefunden.</string>
<string name="choose_project_management_action">Projekt</string>
<string name="project_added_success">Projekt erfolgreich hinzugefügt.</string>
<string name="no_projects_text">Sie haben noch keine Projekte.</string>
<string name="configure_account_choice">Nextcloud-Konto konfigurieren</string>
<string name="add_project_choice">Projekt manuell hinzufügen</string>
<string name="no_members_text">Keine Mitglieder in diesem Projekt.</string>
<string name="no_bills_text">Keine Rechnungen gefunden.</string>
<string name="member_already_exists">Mitglied existiert bereits.</string>
<string name="activity_dialog_title">Projekt: %1$s</string>
<string name="remove_project_confirmation">Projekt %1$s entfernt.</string>
<string name="file_saved_success">Datei gespeichert: %1$s</string>
<string name="import_error_header">Import fehlgeschlagen in Zeile %d</string>
<string name="import_error_date">Ungültiges Datumsformat in Zeile %d</string>
<string name="import_error_owers">Ungültige Eigener in Zeile %d</string>
<string name="add_member_dialog_title">Mitglied hinzufügen</string>
<string name="edit_member_dialog_title">Mitglied bearbeiten</string>
<string name="member_edit_delete">Löschen</string>
<string name="project_edition_no_change">Keine zu speichernden Änderungen.</string>
<!-- Settlement -->
<string name="center_none">Keine (optimal)</string>
<string name="settle_who">Wer zahlt</string>
<string name="settle_to_whom">An wen</string>
<string name="settle_how_much">Betrag</string>
<string name="simple_settle_share">Teilen</string>
<string name="simple_create_bills">Rechnungen erstellen</string>
<string name="settle_bill_what">Abrechnung</string>
<!-- Currencies -->
<string name="currency_dialog_title">Währung wählen (%s)</string>
<string name="setting_none">Keine</string>
<string name="setting_all">Alle</string>
<string name="currency_saved_success">Währungseinstellungen gespeichert.</string>
<string name="main_currency">Hauptwährung</string>
<!-- Statistics -->
<string name="label_bills_suggested">Empfohlene Kategorien</string>
<string name="label_bills_skip">Überspringen</string>
<string name="stats_date_min">Von</string>
<string name="stats_date_max">An</string>
<string name="stats_who">Mitglied</string>
<string name="stats_paid">Bezahlt</string>
<string name="stats_spent">Ausgegeben</string>
<string name="stats_balance">Saldo</string>
<string name="total">Gesamt: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">Verbindung fehlgeschlagen: %1$s</string>
<string name="error_create_remote_project_helper">Erstellung fehlgeschlagen: %1$s</string>
<string name="error_edit_remote_project_helper">Fehler beim Aktualisieren des fernen Projekts: %1$s</string>
<string name="remote_project_operation_no_network">Netzwerk nicht verfügbar für Remote Operation.</string>
<string name="error_scanning_bill_qr_code">Fehler beim Analysieren des QR-Codes.</string>
<string name="error_token_mismatch">Authentifizierungstoken stimmen nicht überein. Bitte melden Sie sich erneut an.</string>
<string name="insufficient_access_level">Sie haben keine Berechtigung, um diese Aktion durchzuführen.</string>
<string name="delete_label_confirmation_title">Label löschen</string>
<string name="delete_label_confirmation_message">Sind Sie sicher, dass Sie diese Bezeichnung löschen möchten?</string>
<!-- About -->
<string name="about_version">Version %1$s</string>
<string name="about_maintainer_title">Betreuer</string>
<string name="about_license_title">Lizenz</string>
<string name="about_source_title">Quellcode</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Projekt %1$s</string>
<string name="share_chooser_title">Teilen %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Έλαιο</string>
<!-- Actions -->
<string name="action_new_bill">Νέος λογαριασμός</string>
<string name="action_add_project">Προσθήκη έργου</string>
<string name="action_save">Αποθήκευση</string>
<string name="action_edit">Επεξεργασία</string>
<string name="action_share">Κοινοποίηση</string>
<string name="action_search">Αναζήτηση</string>
<string name="action_delete">Διαγραφή</string>
<string name="action_archive">Αρχειοθέτηση</string>
<string name="action_unarchive">Αποσυμπιεσμένο</string>
<string name="action_export">Εξαγωγή</string>
<string name="action_stats">Στατιστικά</string>
<string name="action_settle">Διευθέτηση</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Ρυθμίσεις</string>
<string name="action_label_bills">Λείπει η ετικέτα κατηγορίες</string>
<string name="action_logout">Αποσύνδεση</string>
<string name="action_connect">Σύνδεση</string>
<string name="action_discard">Απορρίψτε</string>
<string name="action_members">Μέλη</string>
<string name="action_labels">Ετικέτες</string>
<string name="action_currencies">Νομίσματα</string>
<!-- Titles -->
<string name="title_stats">Στατιστικά</string>
<string name="title_edit_project">Επεξεργασία έργου</string>
<string name="title_label_bills">Λογαριασμοί Ετικέτας</string>
<string name="title_labels">Διαχείριση Ετικετών</string>
<string name="title_about">Σχετικά</string>
<string name="title_settle">Διευθέτηση Έργου</string>
<string name="title_share">Μοιραστείτε Το Έργο</string>
<string name="title_add_project">Προσθήκη Έργου</string>
<string name="title_add_category">Προσθήκη Κατηγορίας</string>
<string name="title_add_payment_mode">Προσθήκη Λειτουργίας Πληρωμής</string>
<string name="title_account">Λογαριασμός Nextcloud</string>
<string name="title_share_web">Σύνδεσμος ιστού</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">Είσαι σίγουρος?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">Όλοι οι λογαριασμοί</string>
<string name="label_categories">Κατηγορίες</string>
<string name="label_payment_modes">Τρόποι Πληρωμής</string>
<string name="label_name">Όνομα</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Χρώμα</string>
<string name="label_weight">Βάρος</string>
<string name="label_activated">Ενεργοποιήθηκε</string>
<string name="label_password">Κωδικός</string>
<string name="label_email">E-mail</string>
<string name="label_url">Διεύθυνση διακομιστή</string>
<string name="label_username">Όνομα Χρήστη</string>
<string name="label_comment">Σχόλιο</string>
<string name="label_what">Τι Είναι?</string>
<string name="label_payer">Ποιος πλήρωσε?</string>
<string name="label_owers">Για ποιον?</string>
<string name="label_repeat">Επανάληψη κάθε</string>
<string name="label_mode">Λειτουργία</string>
<string name="label_category">Κατηγορία</string>
<string name="label_project_id">Ταυτότητα/όνομα Έργου</string>
<string name="label_project_title">Τίτλος έργου</string>
<string name="label_use_sso">Χρήση Λογαριασμού Εφαρμογής Nextcloud</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Μη αποθηκευμένες αλλαγές</string>
<string name="dialog_unsaved_changes_msg">Αποθήκευση αλλαγών πριν την αναχώρηση?</string>
<string name="dialog_confirm_remove_project_msg">Το απομακρυσμένο έργο δεν θα διαγραφεί.</string>
<string name="dialog_sync_error_title">Σφάλμα συγχρονισμού</string>
<string name="dialog_sync_error_msg">Ο Συγχρονισμός απέτυχε για %1$s.\n\n%2$s</string>
<string name="dialog_balanced_msg">Οι δαπάνες είναι ήδη ισορροπημένες.</string>
<string name="msg_project_added">Το έργο %1$s προστέθηκε</string>
<string name="msg_bill_labeled_done">Όλοι οι λογαριασμοί με επισήμανση</string>
<string name="msg_no_suggestions">Δεν υπάρχουν προτάσεις</string>
<string name="msg_auth_warning">Απαιτεί Cospend v0.3.4+.</string>
<string name="msg_link_copied">Ο σύνδεσμος αντιγράφηκε στο πρόχειρο</string>
<string name="msg_share_qr">Σαρώστε τον κωδικό QR ή μοιραστείτε το σύνδεσμο για να ενταχθείτε.</string>
<string name="msg_share_web">Σύνδεσμος για πρόσβαση στο πρόγραμμα περιήγησης ιστού.</string>
<string name="msg_share_qr_warn">Μοιραστείτε αυτό το σύνδεσμο με έναν χρήστη Cowspent .</string>
<string name="msg_settle_intro">Διευθέτηση για %1$s:</string>
<string name="msg_settle_sentence">%1$s owes %3$.2f to %2$s</string>
<string name="msg_stats_intro">Στατιστικά για %1$s:</string>
<string name="msg_stats_header">Μέλος (Πάροχος (Ισορροπία)</string>
<string name="msg_logged_in_as">Συνδεδεμένος ως %1$s</string>
<!-- Errors -->
<string name="error_generic">Σφάλμα</string>
<string name="error_loading">Φόρτωση</string>
<string name="error_no_projects">Δεν βρέθηκαν πρότζεκτ</string>
<string name="error_no_members">Δεν βρέθηκαν μέλη</string>
<string name="error_no_bills">Δεν βρέθηκαν λογαριασμοί</string>
<string name="error_no_member">Απαιτείται τουλάχιστον ένα μέλος</string>
<string name="error_maintenance_mode">Ο διακομιστής είναι σε λειτουργία συντήρησης</string>
<string name="error_400">400 Εσφαλμένο αίτημα</string>
<string name="error_401">401 Μη Εξουσιοδοτημένο</string>
<string name="error_403">403 Απαγορευμένο</string>
<string name="error_404">404 Δεν Βρέθηκε</string>
<string name="error_sync">Συγχρονισμός απέτυχε: %1$s</string>
<string name="error_invalid_login">Μη έγκυρη σύνδεση: %1$s</string>
<string name="error_auth">Λάθος όνομα χρήστη ή κωδικός πρόσβασης</string>
<string name="error_json">Μη έγκυρη απάντηση διακομιστή</string>
<string name="error_req_failed">Το αίτημα απέτυχε</string>
<string name="error_invalid_email">Μη έγκυρο e-mail</string>
<string name="error_invalid_project_id">Μη έγκυρο ID έργου</string>
<string name="error_invalid_project_name">Μη έγκυρος τίτλος έργου</string>
<string name="error_invalid_bill_name">Μη έγκυρο όνομα λογαριασμού</string>
<string name="error_invalid_bill_date">Μη έγκυρη ημερομηνία λογαριασμού</string>
<string name="error_invalid_bill_payer">Απαιτείται πληρωτής</string>
<string name="error_invalid_bill_owers">Απαιτούνται ιδιοκτήτες</string>
<string name="error_no_network">Χωρίς σύνδεση δικτύου</string>
<string name="error_server">Σφάλμα διακομιστή</string>
<string name="error_io">Η σύνδεση διακομιστή έσπασε</string>
<string name="error_share_impossible">Αδύνατη η κοινοποίηση αυτού του έργου</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Συνδεθείτε στο λογαριασμό Nextcloud</string>
<string name="drawer_last_sync">Τελευταίος συγχρονισμός: %1$02d:%2$02d</string>
<string name="simple_cancel">Ακύρωση</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">Εντάξει</string>
<string name="simple_yes">Ναι</string>
<string name="simple_no">Όχι</string>
<string name="simple_close">Κλείσιμο</string>
<!-- Settings -->
<string name="settings_appearance">Εμφάνιση</string>
<string name="settings_network">Δίκτυο</string>
<string name="settings_other">Άλλο</string>
<string name="settings_night_mode">Θέμα</string>
<string name="settings_offline_mode">Λειτουργία χωρίς σύνδεση</string>
<string name="settings_offline_mode_summary">Μόνο χειροκίνητος συγχρονισμός.</string>
<string name="settings_color_custom">Προσαρμοσμένο χρώμα</string>
<string name="settings_color_mode">Επιλογή Χρώματος</string>
<string name="settings_show_archived">Εμφάνιση αρχειοθετημένων έργων</string>
<string name="settings_beta_features">Χαρακτηριστικά Beta</string>
<string name="settings_beta_features_summary">Ενεργοποιήσετε πειραματικά χαρακτηριστικά. Χρησιμοποιήστε το με δική σας ευθύνη.</string>
<string name="settings_url_warn_http">ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Το \"http\" δεν είναι ασφαλές. Χρησιμοποιήστε το \"Ř\".</string>
<string name="settings_colorpicker_title">Επιλογή Χρώματος</string>
<string name="pref_value_color_system">Σύστημα</string>
<string name="pref_value_color_server">Nextcloud</string>
<string name="pref_value_color_manual">Χειροκίνητα</string>
<string name="pref_value_theme_light">Φωτεινό</string>
<string name="pref_value_theme_dark">Σκοτεινό</string>
<string name="pref_value_theme_system">Ακολουθήστε το σύστημα</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">Χωρίς επανάληψη</string>
<string name="repeat_day">Καθημερινά</string>
<string name="repeat_week">Εβδομαδιαία</string>
<string name="repeat_fortnight">Δεκαπενθήμερα</string>
<string name="repeat_month">Μηνιαία</string>
<string name="repeat_year">Ετήσια</string>
<string name="payment_mode_none">Κανένα</string>
<string name="payment_mode_all">Όλα</string>
<string name="payment_mode_credit_card">Πιστωτική κάρτα</string>
<string name="payment_mode_cash">Μετρητά</string>
<string name="payment_mode_check">Έλεγχος</string>
<string name="payment_mode_online">Συνδεδεμένος</string>
<string name="payment_mode_transfer">Μεταφορά</string>
<string name="category_none">Κανένα</string>
<string name="category_all">Όλα</string>
<string name="category_all_except_reimbursement">Όλα εκτός από την επιστροφή</string>
<string name="category_groceries">Παντοπωλείο</string>
<string name="category_leisure">Μπαρ/Πάρτι</string>
<string name="category_rent">Ενοίκιο</string>
<string name="category_bills">Λογαριασμός</string>
<string name="category_excursion">Εκδρομή/Πολιτισμός</string>
<string name="category_health">Υγεία</string>
<string name="category_shopping">Αγορές</string>
<string name="category_reimbursement">Επιστροφή</string>
<string name="category_restaurant">Εστιατόριο</string>
<string name="category_accomodation">Διαμονή</string>
<string name="category_transport">Μεταφορές</string>
<string name="category_sport">Αθλητισμός</string>
<!-- Project specific -->
<string name="new_project_action">Τι</string>
<string name="new_project_where">Όπου</string>
<string name="where_local">Τοπικό μόνο</string>
<string name="where_cospend">Κόστος</string>
<string name="where_ihatemoney">IHateMoney</string>
<string name="todo_join">Συμμετοχή σε υπάρχον έργο</string>
<string name="todo_create">Δημιουργία νέου έργου</string>
<string name="import_tooltip">Εισαγωγή από αρχείο</string>
<string name="choose_account_project_dialog_title">Επιλογή έργου</string>
<string name="choose_account_project_dialog_impossible">Δεν βρέθηκαν έργα σε αυτόν τον λογαριασμό.</string>
<string name="choose_project_management_action">Έργο</string>
<string name="project_added_success">Το έργο προστέθηκε επιτυχώς.</string>
<string name="no_projects_text">Δεν έχετε ακόμα πρότζεκτ.</string>
<string name="configure_account_choice">Ρύθμιση λογαριασμού Nextcloud</string>
<string name="add_project_choice">Χειροκίνητη προσθήκη έργου</string>
<string name="no_members_text">Κανένα μέλος σε αυτό το έργο.</string>
<string name="no_bills_text">Δεν βρέθηκαν λογαριασμοί.</string>
<string name="member_already_exists">Το μέλος υπάρχει ήδη.</string>
<string name="activity_dialog_title">Έργο: %1$s</string>
<string name="remove_project_confirmation">Το έργο %1$s αφαιρέθηκε.</string>
<string name="file_saved_success">Το αρχείο αποθηκεύτηκε: %1$s</string>
<string name="import_error_header">Η εισαγωγή απέτυχε στη γραμμή %d</string>
<string name="import_error_date">Μη έγκυρη μορφή ημερομηνίας στη γραμμή %d</string>
<string name="import_error_owers">Μη έγκυρες owers στη σειρά %d</string>
<string name="add_member_dialog_title">Προσθήκη Μελών</string>
<string name="edit_member_dialog_title">Επεξεργασία Μέλους</string>
<string name="member_edit_delete">Διαγραφή</string>
<string name="project_edition_no_change">Δεν υπάρχουν αλλαγές για αποθήκευση.</string>
<!-- Settlement -->
<string name="center_none">Κανένα (Βέλτιστο Μέρος)</string>
<string name="settle_who">Ποιος πληρώνει</string>
<string name="settle_to_whom">Σε ποιους</string>
<string name="settle_how_much">Ποσό</string>
<string name="simple_settle_share">Κοινοποίηση</string>
<string name="simple_create_bills">Δημιουργία λογαριασμών</string>
<string name="settle_bill_what">Διευθέτηση</string>
<!-- Currencies -->
<string name="currency_dialog_title">Επιλέξτε Νόμισμα (%s)</string>
<string name="setting_none">Κανένα</string>
<string name="setting_all">Όλα</string>
<string name="currency_saved_success">Οι ρυθμίσεις νομίσματος αποθηκεύτηκαν.</string>
<string name="main_currency">Κύριο Νόμισμα</string>
<!-- Statistics -->
<string name="label_bills_suggested">Προτεινόμενες Κατηγορίες</string>
<string name="label_bills_skip">Παράλειψη</string>
<string name="stats_date_min">Από</string>
<string name="stats_date_max">Προς</string>
<string name="stats_who">Κράτος</string>
<string name="stats_paid">Πληρωμένο</string>
<string name="stats_spent">Δαπανήθηκε</string>
<string name="stats_balance">Υπόλοιπο</string>
<string name="total">Σύνολο: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">Αποτυχία σύνδεσης: %1$s</string>
<string name="error_create_remote_project_helper">Η δημιουργία απέτυχε: %1$s</string>
<string name="error_edit_remote_project_helper">Σφάλμα ενημέρωσης απομακρυσμένου έργου: %1$s</string>
<string name="remote_project_operation_no_network">Το δίκτυο δεν είναι διαθέσιμο για απομακρυσμένη λειτουργία.</string>
<string name="error_scanning_bill_qr_code">Αποτυχία ανάλυσης QR code.</string>
<string name="error_token_mismatch">Ασυμφωνία διακριτικού ταυτοποίησης. Παρακαλώ συνδεθείτε ξανά.</string>
<string name="insufficient_access_level">Δεν έχετε άδεια για να εκτελέσετε αυτήν την ενέργεια.</string>
<string name="delete_label_confirmation_title">Διαγραφή Ετικέτας</string>
<string name="delete_label_confirmation_message">Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτή την ετικέτα?</string>
<!-- About -->
<string name="about_version">Έκδοση %1$s</string>
<string name="about_maintainer_title">Συντηρητής</string>
<string name="about_license_title">Άδεια</string>
<string name="about_source_title">Πηγαίος κώδικας</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Έργο %1$s</string>
<string name="share_chooser_title">Κοινοποίηση %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Cowspent</string>
<!-- Actions -->
<string name="action_new_bill">New bill</string>
<string name="action_add_project">Add project</string>
<string name="action_save">Save</string>
<string name="action_edit">Edit</string>
<string name="action_share">Share</string>
<string name="action_search">Search</string>
<string name="action_delete">Delete</string>
<string name="action_archive">Archive</string>
<string name="action_unarchive">Unarchive</string>
<string name="action_export">Export</string>
<string name="action_stats">Stats</string>
<string name="action_settle">Settle</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Settings</string>
<string name="action_label_bills">Label missing categories</string>
<string name="action_logout">Logout</string>
<string name="action_connect">Connect</string>
<string name="action_discard">Discard</string>
<string name="action_members">Members</string>
<string name="action_labels">Labels</string>
<string name="action_currencies">Currencies</string>
<!-- Titles -->
<string name="title_stats">Statistics</string>
<string name="title_edit_project">Edit project</string>
<string name="title_label_bills">Label Bills</string>
<string name="title_labels">Manage Labels</string>
<string name="title_about">About</string>
<string name="title_settle">Settle Project</string>
<string name="title_share">Share Project</string>
<string name="title_add_project">Add Project</string>
<string name="title_add_category">Add Category</string>
<string name="title_add_payment_mode">Add Payment Mode</string>
<string name="title_account">Nextcloud Account</string>
<string name="title_share_web">Web link</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">Are you sure?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">All bills</string>
<string name="label_categories">Categories</string>
<string name="label_payment_modes">Payment Modes</string>
<string name="label_name">Name</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Color</string>
<string name="label_weight">Weight</string>
<string name="label_activated">Activated</string>
<string name="label_password">Password</string>
<string name="label_email">E-mail</string>
<string name="label_url">Server address</string>
<string name="label_username">Username</string>
<string name="label_comment">Comment</string>
<string name="label_what">What?</string>
<string name="label_payer">Who paid?</string>
<string name="label_owers">For whom?</string>
<string name="label_repeat">Repeat every</string>
<string name="label_mode">Mode</string>
<string name="label_category">Category</string>
<string name="label_project_id">Project ID/name</string>
<string name="label_project_title">Project title</string>
<string name="label_use_sso">Use Nextcloud App Account</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Unsaved changes</string>
<string name="dialog_unsaved_changes_msg">Save changes before leaving?</string>
<string name="dialog_confirm_remove_project_msg">The remote project will not be deleted.</string>
<string name="dialog_sync_error_title">Sync error</string>
<string name="dialog_sync_error_msg">Sync failed for %1$s.\n\n%2$s</string>
<string name="dialog_balanced_msg">Expenses are already balanced.</string>
<string name="msg_project_added">Project %1$s added</string>
<string name="msg_bill_labeled_done">All bills labeled</string>
<string name="msg_no_suggestions">No suggestions</string>
<string name="msg_auth_warning">Requires Cospend v0.3.4+.</string>
<string name="msg_link_copied">Link copied to clipboard</string>
<string name="msg_share_qr">Scan QR code or share the link to join.</string>
<string name="msg_share_web">Link for web browser access.</string>
<string name="msg_share_qr_warn">Share this link with a Cowspent user.</string>
<string name="msg_settle_intro">Settlement for %1$s:</string>
<string name="msg_settle_sentence">%1$s owes %3$.2f to %2$s</string>
<string name="msg_stats_intro">Stats for %1$s:</string>
<string name="msg_stats_header">Member (Paid | Spent | Balance)</string>
<string name="msg_logged_in_as">Logged in as %1$s</string>
<!-- Errors -->
<string name="error_generic">Error</string>
<string name="error_loading">Loading</string>
<string name="error_no_projects">No projects found</string>
<string name="error_no_members">No members found</string>
<string name="error_no_bills">No bills found</string>
<string name="error_no_member">At least one member required</string>
<string name="error_maintenance_mode">Server is in maintenance mode</string>
<string name="error_400">400 Bad request</string>
<string name="error_401">401 Unauthorized</string>
<string name="error_403">403 Forbidden</string>
<string name="error_404">404 Not Found</string>
<string name="error_sync">Sync failed: %1$s</string>
<string name="error_invalid_login">Invalid login: %1$s</string>
<string name="error_auth">Wrong username or password</string>
<string name="error_json">Invalid server response</string>
<string name="error_req_failed">Request failed</string>
<string name="error_invalid_email">Invalid e-mail</string>
<string name="error_invalid_project_id">Invalid project ID</string>
<string name="error_invalid_project_name">Invalid project title</string>
<string name="error_invalid_bill_name">Invalid bill name</string>
<string name="error_invalid_bill_date">Invalid bill date</string>
<string name="error_invalid_bill_payer">Payer required</string>
<string name="error_invalid_bill_owers">Owers required</string>
<string name="error_no_network">No network connection</string>
<string name="error_server">Server error</string>
<string name="error_io">Server connection broken</string>
<string name="error_share_impossible">Cannot share this project</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Connect to Nextcloud account</string>
<string name="drawer_last_sync">Last sync: %1$02d:%2$02d</string>
<string name="simple_cancel">Cancel</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">Ok</string>
<string name="simple_yes">Yes</string>
<string name="simple_no">No</string>
<string name="simple_close">Close</string>
<!-- Settings -->
<string name="settings_appearance">Appearance</string>
<string name="settings_network">Network</string>
<string name="settings_other">Other</string>
<string name="settings_night_mode">Theme</string>
<string name="settings_offline_mode">Offline mode</string>
<string name="settings_offline_mode_summary">Only sync manually.</string>
<string name="settings_color_custom">Custom color</string>
<string name="settings_color_mode">Color Selection</string>
<string name="settings_show_archived">Show archived projects</string>
<string name="settings_beta_features">Beta Features</string>
<string name="settings_beta_features_summary">Enable experimental features. Use at your own risk.</string>
<string name="settings_url_warn_http">WARNING: \"http\" is unsafe. Use \"https\".</string>
<string name="settings_colorpicker_title">Choose Color</string>
<string name="pref_value_color_system">System</string>
<string name="pref_value_color_server">Nextcloud</string>
<string name="pref_value_color_manual">Manual</string>
<string name="pref_value_theme_light">Light</string>
<string name="pref_value_theme_dark">Dark</string>
<string name="pref_value_theme_system">Follow system</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">No repeat</string>
<string name="repeat_day">Daily</string>
<string name="repeat_week">Weekly</string>
<string name="repeat_fortnight">Fortnightly</string>
<string name="repeat_month">Monthly</string>
<string name="repeat_year">Yearly</string>
<string name="payment_mode_none">None</string>
<string name="payment_mode_all">All</string>
<string name="payment_mode_credit_card">Credit card</string>
<string name="payment_mode_cash">Cash</string>
<string name="payment_mode_check">Check</string>
<string name="payment_mode_online">Online</string>
<string name="payment_mode_transfer">Transfer</string>
<string name="category_none">None</string>
<string name="category_all">All</string>
<string name="category_all_except_reimbursement">All except reimbursement</string>
<string name="category_groceries">Grocery</string>
<string name="category_leisure">Bar/Party</string>
<string name="category_rent">Rent</string>
<string name="category_bills">Bill</string>
<string name="category_excursion">Excursion/Culture</string>
<string name="category_health">Health</string>
<string name="category_shopping">Shopping</string>
<string name="category_reimbursement">Reimbursement</string>
<string name="category_restaurant">Restaurant</string>
<string name="category_accomodation">Accommodation</string>
<string name="category_transport">Transport</string>
<string name="category_sport">Sport</string>
<!-- Project specific -->
<string name="new_project_action">What</string>
<string name="new_project_where">Where</string>
<string name="where_local">Local only</string>
<string name="where_cospend">Cospend</string>
<string name="where_ihatemoney">IHateMoney</string>
<string name="todo_join">Join existing project</string>
<string name="todo_create">Create new project</string>
<string name="import_tooltip">Import from file</string>
<string name="choose_account_project_dialog_title">Choose project</string>
<string name="choose_account_project_dialog_impossible">No projects found on this account.</string>
<string name="choose_project_management_action">Project</string>
<string name="project_added_success">Project added successfully.</string>
<string name="no_projects_text">You have no projects yet.</string>
<string name="configure_account_choice">Configure Nextcloud account</string>
<string name="add_project_choice">Add project manually</string>
<string name="no_members_text">No members in this project.</string>
<string name="no_bills_text">No bills found.</string>
<string name="member_already_exists">Member already exists.</string>
<string name="activity_dialog_title">Project: %1$s</string>
<string name="remove_project_confirmation">Project %1$s removed.</string>
<string name="file_saved_success">File saved: %1$s</string>
<string name="import_error_header">Import failed at row %d</string>
<string name="import_error_date">Invalid date format at row %d</string>
<string name="import_error_owers">Invalid owers at row %d</string>
<string name="add_member_dialog_title">Add Member</string>
<string name="edit_member_dialog_title">Edit Member</string>
<string name="member_edit_delete">Delete</string>
<string name="project_edition_no_change">No changes to save.</string>
<!-- Settlement -->
<string name="center_none">None (Optimal)</string>
<string name="settle_who">Who pays</string>
<string name="settle_to_whom">To whom</string>
<string name="settle_how_much">Amount</string>
<string name="simple_settle_share">Share</string>
<string name="simple_create_bills">Create bills</string>
<string name="settle_bill_what">Settlement</string>
<!-- Currencies -->
<string name="currency_dialog_title">Choose Currency (%s)</string>
<string name="setting_none">None</string>
<string name="setting_all">All</string>
<string name="currency_saved_success">Currency settings saved.</string>
<string name="main_currency">Main Currency</string>
<!-- Statistics -->
<string name="label_bills_suggested">Suggested Categories</string>
<string name="label_bills_skip">Skip</string>
<string name="stats_date_min">From</string>
<string name="stats_date_max">To</string>
<string name="stats_who">Member</string>
<string name="stats_paid">Paid</string>
<string name="stats_spent">Spent</string>
<string name="stats_balance">Balance</string>
<string name="total">Total: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">Connection failed: %1$s</string>
<string name="error_create_remote_project_helper">Creation failed: %1$s</string>
<string name="error_edit_remote_project_helper">Error updating remote project: %1$s</string>
<string name="remote_project_operation_no_network">Network unavailable for remote operation.</string>
<string name="error_scanning_bill_qr_code">Failed to parse QR code.</string>
<string name="error_token_mismatch">Authentication token mismatch. Please log in again.</string>
<string name="insufficient_access_level">You don\'t have permission to perform this action.</string>
<string name="delete_label_confirmation_title">Delete Label</string>
<string name="delete_label_confirmation_message">Are you sure you want to delete this label?</string>
<!-- About -->
<string name="about_version">Version %1$s</string>
<string name="about_maintainer_title">Maintainer</string>
<string name="about_license_title">License</string>
<string name="about_source_title">Source code</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Project %1$s</string>
<string name="share_chooser_title">Share %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Capucha gastada</string>
<!-- Actions -->
<string name="action_new_bill">Nueva factura</string>
<string name="action_add_project">Añadir proyecto</string>
<string name="action_save">Guardar</string>
<string name="action_edit">Editar</string>
<string name="action_share">Compartir</string>
<string name="action_search">Buscar</string>
<string name="action_delete">Eliminar</string>
<string name="action_archive">Archivar</string>
<string name="action_unarchive">Desarchivar</string>
<string name="action_export">Exportar</string>
<string name="action_stats">Estadísticas</string>
<string name="action_settle">Salir</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Ajustes</string>
<string name="action_label_bills">Categorías faltantes de etiqueta</string>
<string name="action_logout">Cerrar sesión</string>
<string name="action_connect">Conectar</string>
<string name="action_discard">Descartar</string>
<string name="action_members">Miembros</string>
<string name="action_labels">Etiquetas</string>
<string name="action_currencies">Monedas</string>
<!-- Titles -->
<string name="title_stats">Estadísticas</string>
<string name="title_edit_project">Editar proyecto</string>
<string name="title_label_bills">Facturas de etiqueta</string>
<string name="title_labels">Administrar etiquetas</string>
<string name="title_about">Acerca de</string>
<string name="title_settle">Liquidar Proyecto</string>
<string name="title_share">Compartir proyecto</string>
<string name="title_add_project">Añadir proyecto</string>
<string name="title_add_category">Añadir categoría</string>
<string name="title_add_payment_mode">Añadir modo de pago</string>
<string name="title_account">Cuenta Nextcloud</string>
<string name="title_share_web">Enlace web</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">¿Estás seguro?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">Todas las facturas</string>
<string name="label_categories">Categorías</string>
<string name="label_payment_modes">Modos de pago</string>
<string name="label_name">Nombre</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Color</string>
<string name="label_weight">Peso</string>
<string name="label_activated">Activado</string>
<string name="label_password">Contraseña</string>
<string name="label_email">E-mail</string>
<string name="label_url">Dirección del servidor</string>
<string name="label_username">Usuario</string>
<string name="label_comment">Comentario</string>
<string name="label_what">¿Qué?</string>
<string name="label_payer">¿Quién pagó?</string>
<string name="label_owers">¿Para quién?</string>
<string name="label_repeat">Repetir cada</string>
<string name="label_mode">Modo</string>
<string name="label_category">Categoría</string>
<string name="label_project_id">ID del proyecto/nombre</string>
<string name="label_project_title">Título del proyecto</string>
<string name="label_use_sso">Usar cuenta de la aplicación Nextcloud</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Cambios sin guardar</string>
<string name="dialog_unsaved_changes_msg">¿Guardar cambios antes de salir?</string>
<string name="dialog_confirm_remove_project_msg">El proyecto remoto no se eliminará.</string>
<string name="dialog_sync_error_title">Error de sincronización</string>
<string name="dialog_sync_error_msg">Sincronización fallida para %1$s.\n\n%2$s</string>
<string name="dialog_balanced_msg">Los gastos ya están equilibrados.</string>
<string name="msg_project_added">Proyecto %1$s añadido</string>
<string name="msg_bill_labeled_done">Todas las facturas etiquetadas</string>
<string name="msg_no_suggestions">No hay sugerencias</string>
<string name="msg_auth_warning">Requiere Gasto v0.3.4+.</string>
<string name="msg_link_copied">Enlace copiado al portapapeles</string>
<string name="msg_share_qr">Escanea el código QR o comparte el enlace para unirte.</string>
<string name="msg_share_web">Enlace para acceso al navegador web.</string>
<string name="msg_share_qr_warn">Comparte este enlace con un usuario de Cowged.</string>
<string name="msg_settle_intro">Acuerdo para %1$s:</string>
<string name="msg_settle_sentence">%1$s debe %3$.2f a %2$s</string>
<string name="msg_stats_intro">Estadísticas de %1$s:</string>
<string name="msg_stats_header">Miembro Pagado | Gasto | Saldo)</string>
<string name="msg_logged_in_as">Logged in as %1$s</string>
<!-- Errors -->
<string name="error_generic">Error</string>
<string name="error_loading">Cargando</string>
<string name="error_no_projects">No se encontraron proyectos</string>
<string name="error_no_members">Ningún miembro encontrado</string>
<string name="error_no_bills">No se encontraron facturas</string>
<string name="error_no_member">Se requiere al menos un miembro</string>
<string name="error_maintenance_mode">El servidor está en modo mantenimiento</string>
<string name="error_400">400 Solicitud errónea</string>
<string name="error_401">401 no autorizado</string>
<string name="error_403">403 Prohibida</string>
<string name="error_404">404 no encontrado</string>
<string name="error_sync">Sincronización fallida: %1$s</string>
<string name="error_invalid_login">Inicio de sesión no válido: %1$s</string>
<string name="error_auth">Nombre de usuario o contraseña incorrectos</string>
<string name="error_json">Respuesta del servidor inválida</string>
<string name="error_req_failed">Petición fallida</string>
<string name="error_invalid_email">E-mail inválido</string>
<string name="error_invalid_project_id">ID de proyecto inválido</string>
<string name="error_invalid_project_name">Título del proyecto inválido</string>
<string name="error_invalid_bill_name">Nombre de factura no válido</string>
<string name="error_invalid_bill_date">Fecha de factura inválida</string>
<string name="error_invalid_bill_payer">Pagador requerido</string>
<string name="error_invalid_bill_owers">Propietarios requeridos</string>
<string name="error_no_network">No hay conexión de red</string>
<string name="error_server">Error del servidor</string>
<string name="error_io">Conexión con el servidor dañada</string>
<string name="error_share_impossible">No se puede compartir este proyecto</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Conectar a la cuenta de Nextcloud</string>
<string name="drawer_last_sync">Última sincronización: %1$02d:%2$02d</string>
<string name="simple_cancel">Cancelar</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">Ok</string>
<string name="simple_yes"></string>
<string name="simple_no">Nu</string>
<string name="simple_close">Cerrar</string>
<!-- Settings -->
<string name="settings_appearance">Apariencia</string>
<string name="settings_network">Red</string>
<string name="settings_other">Otro</string>
<string name="settings_night_mode">Tema</string>
<string name="settings_offline_mode">Modo sin conexión</string>
<string name="settings_offline_mode_summary">Solo sincronizar manualmente.</string>
<string name="settings_color_custom">Color personalizado</string>
<string name="settings_color_mode">Selección de color</string>
<string name="settings_show_archived">Mostrar proyectos archivados</string>
<string name="settings_beta_features">Características beta</string>
<string name="settings_beta_features_summary">Activar características experimentales. Úsalo bajo tu propio riesgo.</string>
<string name="settings_url_warn_http">ADVERTENCIA: \"http\" no es seguro. Use \"https\".</string>
<string name="settings_colorpicker_title">Elegir color</string>
<string name="pref_value_color_system">Sistema</string>
<string name="pref_value_color_server">Nextcloud</string>
<string name="pref_value_color_manual">Manual</string>
<string name="pref_value_theme_light">Claro</string>
<string name="pref_value_theme_dark">Oscuro</string>
<string name="pref_value_theme_system">Seguir sistema</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">No repetir</string>
<string name="repeat_day">Diario</string>
<string name="repeat_week">Semanal</string>
<string name="repeat_fortnight">Fortnocturno</string>
<string name="repeat_month">Mensual</string>
<string name="repeat_year">Anual</string>
<string name="payment_mode_none">Ninguna</string>
<string name="payment_mode_all">Todos</string>
<string name="payment_mode_credit_card">Tarjeta de crédito</string>
<string name="payment_mode_cash">Dinero</string>
<string name="payment_mode_check">Comprobar</string>
<string name="payment_mode_online">En línea</string>
<string name="payment_mode_transfer">Transferir</string>
<string name="category_none">Ninguna</string>
<string name="category_all">Todos</string>
<string name="category_all_except_reimbursement">Todos excepto reembolso</string>
<string name="category_groceries">Comestible</string>
<string name="category_leisure">Bar/Fiesta</string>
<string name="category_rent">Alquiler</string>
<string name="category_bills">Factura</string>
<string name="category_excursion">Excursión/Cultura</string>
<string name="category_health">Salud</string>
<string name="category_shopping">Compras</string>
<string name="category_reimbursement">Reembolso</string>
<string name="category_restaurant">Restaurante</string>
<string name="category_accomodation">Alojamiento</string>
<string name="category_transport">Transporte</string>
<string name="category_sport">Deporte</string>
<!-- Project specific -->
<string name="new_project_action">Qué</string>
<string name="new_project_where">Donde</string>
<string name="where_local">Solo local</string>
<string name="where_cospend">Gastar</string>
<string name="where_ihatemoney">Dinero IHate</string>
<string name="todo_join">Unirse al proyecto existente</string>
<string name="todo_create">Crear nuevo proyecto</string>
<string name="import_tooltip">Importar desde archivo</string>
<string name="choose_account_project_dialog_title">Elegir proyecto</string>
<string name="choose_account_project_dialog_impossible">No se encontraron proyectos en esta cuenta.</string>
<string name="choose_project_management_action">Projekt</string>
<string name="project_added_success">Proyecto añadido correctamente.</string>
<string name="no_projects_text">Aún no tienes proyectos.</string>
<string name="configure_account_choice">Configurar cuenta Nextcloud</string>
<string name="add_project_choice">Añadir proyecto manualmente</string>
<string name="no_members_text">No hay miembros en este proyecto.</string>
<string name="no_bills_text">No se encontraron facturas.</string>
<string name="member_already_exists">El miembro ya existe.</string>
<string name="activity_dialog_title">Proyecto: %1$s</string>
<string name="remove_project_confirmation">Proyecto %1$s eliminado.</string>
<string name="file_saved_success">Archivo guardado: %1$s</string>
<string name="import_error_header">Error al importar en la fila %d</string>
<string name="import_error_date">Formato de fecha no válido en la fila %d</string>
<string name="import_error_owers">Dueños no válidos en la fila %d</string>
<string name="add_member_dialog_title">Añadir miembro</string>
<string name="edit_member_dialog_title">Editar miembro</string>
<string name="member_edit_delete">Eliminar</string>
<string name="project_edition_no_change">No hay cambios para guardar.</string>
<!-- Settlement -->
<string name="center_none">Ninguno (óptimo)</string>
<string name="settle_who">Quién paga</string>
<string name="settle_to_whom">A quien</string>
<string name="settle_how_much">Cantidad</string>
<string name="simple_settle_share">Compartir</string>
<string name="simple_create_bills">Crear facturas</string>
<string name="settle_bill_what">Acuerdo</string>
<!-- Currencies -->
<string name="currency_dialog_title">Elija la moneda (%s)</string>
<string name="setting_none">Ninguna</string>
<string name="setting_all">Todos</string>
<string name="currency_saved_success">Ajustes de moneda guardados.</string>
<string name="main_currency">Moneda principal</string>
<!-- Statistics -->
<string name="label_bills_suggested">Categorías sugeridas</string>
<string name="label_bills_skip">Saltar</string>
<string name="stats_date_min">De</string>
<string name="stats_date_max">A</string>
<string name="stats_who">Miembro</string>
<string name="stats_paid">Pagado</string>
<string name="stats_spent">Escrito</string>
<string name="stats_balance">Saldo</string>
<string name="total">Total: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">Conexión fallida: %1$s</string>
<string name="error_create_remote_project_helper">Creación fallida: %1$s</string>
<string name="error_edit_remote_project_helper">Error al actualizar proyecto remoto: %1$s</string>
<string name="remote_project_operation_no_network">Red no disponible para operaciones remotas.</string>
<string name="error_scanning_bill_qr_code">Error al analizar el código QR.</string>
<string name="error_token_mismatch">El token de autenticación no coincide. Por favor, inicia sesión de nuevo.</string>
<string name="insufficient_access_level">No tienes permiso para realizar esta acción.</string>
<string name="delete_label_confirmation_title">Eliminar Etiqueta</string>
<string name="delete_label_confirmation_message">¿Está seguro que desea eliminar esta etiqueta?</string>
<!-- About -->
<string name="about_version">Versión %1$s</string>
<string name="about_maintainer_title">Mantenedor</string>
<string name="about_license_title">Licencia</string>
<string name="about_source_title">Código fuente</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Proyecto %1$s</string>
<string name="share_chooser_title">Compartir %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Lehmä</string>
<!-- Actions -->
<string name="action_new_bill">Uusi lasku</string>
<string name="action_add_project">Lisää projekti</string>
<string name="action_save">Tallenna</string>
<string name="action_edit">Muokkaa</string>
<string name="action_share">Jaa</string>
<string name="action_search">Etsi</string>
<string name="action_delete">Poista</string>
<string name="action_archive">Arkistoi</string>
<string name="action_unarchive">Poista</string>
<string name="action_export">Vie</string>
<string name="action_stats">Tilastot</string>
<string name="action_settle">Ratkaise</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Asetukset</string>
<string name="action_label_bills">Tunnisteet puuttuvat kategoriat</string>
<string name="action_logout">Kirjaudu Ulos</string>
<string name="action_connect">Yhdistä</string>
<string name="action_discard">Hylkää</string>
<string name="action_members">Jäsenet</string>
<string name="action_labels">Tunnisteet</string>
<string name="action_currencies">Valuutat</string>
<!-- Titles -->
<string name="title_stats">Tilastot</string>
<string name="title_edit_project">Muokkaa projektia</string>
<string name="title_label_bills">Merkitse Laskut</string>
<string name="title_labels">Hallitse Tunnisteita</string>
<string name="title_about">Tietoja</string>
<string name="title_settle">Ratkaise Projekti</string>
<string name="title_share">Jaa Projekti</string>
<string name="title_add_project">Lisää Projekti</string>
<string name="title_add_category">Lisää Kategoria</string>
<string name="title_add_payment_mode">Lisää Maksutila</string>
<string name="title_account">Nextcloud Tili</string>
<string name="title_share_web">Linkki</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">Oletko varma?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">Kaikki laskut</string>
<string name="label_categories">Kategoriat</string>
<string name="label_payment_modes">Maksutavat</string>
<string name="label_name">Nimi</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Väri</string>
<string name="label_weight">Paino</string>
<string name="label_activated">Aktivoitu</string>
<string name="label_password">Salasana</string>
<string name="label_email">Sähköposti</string>
<string name="label_url">Palvelimen osoite</string>
<string name="label_username">Käyttäjätunnus</string>
<string name="label_comment">Kommentti</string>
<string name="label_what">Mitä?</string>
<string name="label_payer">Kuka maksoi?</string>
<string name="label_owers">Kenen puolesta?</string>
<string name="label_repeat">Toista joka</string>
<string name="label_mode">Tila</string>
<string name="label_category">Kategoria</string>
<string name="label_project_id">Projektin ID/nimi</string>
<string name="label_project_title">Projektin otsikko</string>
<string name="label_use_sso">Käytä Nextcloud -sovellustiliä</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Tallentamattomat muutokset</string>
<string name="dialog_unsaved_changes_msg">Tallennetaanko muutokset ennen lähtöä?</string>
<string name="dialog_confirm_remove_project_msg">Etäprojektia ei poisteta.</string>
<string name="dialog_sync_error_title">Virhe synkronoinnissa</string>
<string name="dialog_sync_error_msg">%1$ssynkronointi epäonnistui.\n\n%2$s</string>
<string name="dialog_balanced_msg">Menot ovat jo tasapainossa.</string>
<string name="msg_project_added">Projekti %1$s lisätty</string>
<string name="msg_bill_labeled_done">Kaikki laskut merkitty</string>
<string name="msg_no_suggestions">Ei ehdotuksia</string>
<string name="msg_auth_warning">Tarvitsee Kustannukset v0.3.4+.</string>
<string name="msg_link_copied">Linkki kopioitu leikepöydälle</string>
<string name="msg_share_qr">Skannaa QR-koodi tai jaa linkki johon liittyä.</string>
<string name="msg_share_web">Linkki selaimen käyttöön.</string>
<string name="msg_share_qr_warn">Jaa tämä linkki Cowkäytetyn käyttäjän kanssa.</string>
<string name="msg_settle_intro">%1$s:n toimitus:</string>
<string name="msg_settle_sentence">%1$s owes %3$.2f to %2$s</string>
<string name="msg_stats_intro">Tilastot %1$s:</string>
<string name="msg_stats_header">Jäsenen (Käytetty Saldo)</string>
<string name="msg_logged_in_as">Kirjautunut sisään nimellä %1$s</string>
<!-- Errors -->
<string name="error_generic">Virhe</string>
<string name="error_loading">Ladataan</string>
<string name="error_no_projects">Projekteja ei löytynyt</string>
<string name="error_no_members">Jäseniä ei löytynyt</string>
<string name="error_no_bills">Laskuja ei löytynyt</string>
<string name="error_no_member">Vaadittu vähintään yksi jäsen</string>
<string name="error_maintenance_mode">Palvelin on huoltotilassa</string>
<string name="error_400">400 Virheellinen pyyntö</string>
<string name="error_401">401 Luvaton</string>
<string name="error_403">403 Kielletty</string>
<string name="error_404">404 Ei Löytynyt</string>
<string name="error_sync">Synkronointi epäonnistui: %1$s</string>
<string name="error_invalid_login">Virheellinen kirjautuminen: %1$s</string>
<string name="error_auth">Väärä käyttäjätunnus tai salasana</string>
<string name="error_json">Virheellinen palvelimen vastaus</string>
<string name="error_req_failed">Pyyntö epäonnistui</string>
<string name="error_invalid_email">Virheellinen sähköpostiosoite</string>
<string name="error_invalid_project_id">Virheellinen projektin tunnus</string>
<string name="error_invalid_project_name">Virheellinen projektin otsikko</string>
<string name="error_invalid_bill_name">Virheellinen laskun nimi</string>
<string name="error_invalid_bill_date">Virheellinen laskun päivämäärä</string>
<string name="error_invalid_bill_payer">Maksaja vaaditaan</string>
<string name="error_invalid_bill_owers">Uutiskirjeet vaaditaan</string>
<string name="error_no_network">Ei verkkoyhteyttä</string>
<string name="error_server">Palvelin virhe</string>
<string name="error_io">Palvelinyhteys rikki</string>
<string name="error_share_impossible">Projektia ei voi jakaa</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Yhdistä Nextcloud tiliin</string>
<string name="drawer_last_sync">Last sync: %1$02d:%2$02d</string>
<string name="simple_cancel">Peruuta</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">OK</string>
<string name="simple_yes">Kyllä</string>
<string name="simple_no">Ei</string>
<string name="simple_close">Sulje</string>
<!-- Settings -->
<string name="settings_appearance">Ulkoasu</string>
<string name="settings_network">Verkko</string>
<string name="settings_other">Muu</string>
<string name="settings_night_mode">Teema</string>
<string name="settings_offline_mode">Offline-tila</string>
<string name="settings_offline_mode_summary">Synkronoi vain käsin.</string>
<string name="settings_color_custom">Mukautettu väri</string>
<string name="settings_color_mode">Värin Valinta</string>
<string name="settings_show_archived">Näytä arkistoidut projektit</string>
<string name="settings_beta_features">Beta Ominaisuudet</string>
<string name="settings_beta_features_summary">Ota käyttöön kokeelliset ominaisuudet. Käytä omalla vastuullasi.</string>
<string name="settings_url_warn_http">VAROITUS: \"http\" ei ole turvallinen. Käytä \"℃\".</string>
<string name="settings_colorpicker_title">Valitse Väri</string>
<string name="pref_value_color_system">Järjestelmä</string>
<string name="pref_value_color_server">Nextcloud</string>
<string name="pref_value_color_manual">Manuaalinen</string>
<string name="pref_value_theme_light">Vaalea</string>
<string name="pref_value_theme_dark">Tumma</string>
<string name="pref_value_theme_system">Seuraa järjestelmää</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">Ei toistumista</string>
<string name="repeat_day">Päivittäin</string>
<string name="repeat_week">Viikoittain</string>
<string name="repeat_fortnight">Onneksi</string>
<string name="repeat_month">Kuukausittain</string>
<string name="repeat_year">Vuosittain</string>
<string name="payment_mode_none">Ei Mitään</string>
<string name="payment_mode_all">Kaikki</string>
<string name="payment_mode_credit_card">Luottokortti</string>
<string name="payment_mode_cash">Käteinen</string>
<string name="payment_mode_check">Tarkista</string>
<string name="payment_mode_online">Paikalla</string>
<string name="payment_mode_transfer">Siirto</string>
<string name="category_none">Ei Mitään</string>
<string name="category_all">Kaikki</string>
<string name="category_all_except_reimbursement">Kaikki paitsi korvaukset</string>
<string name="category_groceries">Ruokakauppa</string>
<string name="category_leisure">Baari/Juhla</string>
<string name="category_rent">Vuokra</string>
<string name="category_bills">Lasku</string>
<string name="category_excursion">Retki/Kulttuuri</string>
<string name="category_health">Terveys</string>
<string name="category_shopping">Ostokset</string>
<string name="category_reimbursement">Korvaus</string>
<string name="category_restaurant">Ravintola</string>
<string name="category_accomodation">Majoitus</string>
<string name="category_transport">Kuljetus</string>
<string name="category_sport">Urheilu</string>
<!-- Project specific -->
<string name="new_project_action">Mitä</string>
<string name="new_project_where">Missä</string>
<string name="where_local">Vain paikallinen</string>
<string name="where_cospend">Kulut</string>
<string name="where_ihatemoney">IHateMoney</string>
<string name="todo_join">Liity olemassa olevaan projektiin</string>
<string name="todo_create">Luo uusi projekti</string>
<string name="import_tooltip">Tuo tiedostosta</string>
<string name="choose_account_project_dialog_title">Valitse projekti</string>
<string name="choose_account_project_dialog_impossible">Tällä tilillä ei löytynyt projekteja.</string>
<string name="choose_project_management_action">Projekti</string>
<string name="project_added_success">Projekti lisätty onnistuneesti.</string>
<string name="no_projects_text">Sinulla ei ole vielä projekteja.</string>
<string name="configure_account_choice">Määritä Nextcloud tili</string>
<string name="add_project_choice">Lisää projekti käsin</string>
<string name="no_members_text">Ei jäseniä tässä projektissa.</string>
<string name="no_bills_text">Laskuja ei löytynyt.</string>
<string name="member_already_exists">Jäsentä on jo olemassa.</string>
<string name="activity_dialog_title">Projekti: %1$s</string>
<string name="remove_project_confirmation">Projekti %1$s poistettu.</string>
<string name="file_saved_success">Tiedosto tallennettu: %1$s</string>
<string name="import_error_header">Tuonti epäonnistui rivillä %d</string>
<string name="import_error_date">Päivämäärän muoto ei kelpaa rivillä %d</string>
<string name="import_error_owers">Virheelliset ruohonleikkurit rivillä %d</string>
<string name="add_member_dialog_title">Lisää Jäsen</string>
<string name="edit_member_dialog_title">Muokkaa Jäsen</string>
<string name="member_edit_delete">Poista</string>
<string name="project_edition_no_change">Tallennettavia muutoksia ei ole.</string>
<!-- Settlement -->
<string name="center_none">Ei Mitään (valinnainen)</string>
<string name="settle_who">Kuka maksaa</string>
<string name="settle_to_whom">Kenelle</string>
<string name="settle_how_much">Määrä</string>
<string name="simple_settle_share">Jaa</string>
<string name="simple_create_bills">Luo laskuja</string>
<string name="settle_bill_what">Selvitys</string>
<!-- Currencies -->
<string name="currency_dialog_title">Valitse Valuutta (%s)</string>
<string name="setting_none">Ei Mitään</string>
<string name="setting_all">Kaikki</string>
<string name="currency_saved_success">Valuutan asetukset tallennettu.</string>
<string name="main_currency">Päävaluutta</string>
<!-- Statistics -->
<string name="label_bills_suggested">Ehdotetut Kategoriat</string>
<string name="label_bills_skip">Ohita</string>
<string name="stats_date_min">Alkaen</string>
<string name="stats_date_max">Vastaanottaja</string>
<string name="stats_who">Jäsen</string>
<string name="stats_paid">Maksettu</string>
<string name="stats_spent">Käytetty</string>
<string name="stats_balance">Saldo</string>
<string name="total">Yhteensä: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">Yhteys epäonnistui: %1$s</string>
<string name="error_create_remote_project_helper">Luonti epäonnistui: %1$s</string>
<string name="error_edit_remote_project_helper">Virhe päivitettäessä etäporjektia: %1$s</string>
<string name="remote_project_operation_no_network">Verkko ei ole käytettävissä etäkäyttöön.</string>
<string name="error_scanning_bill_qr_code">QR-koodin jäsentäminen epäonnistui.</string>
<string name="error_token_mismatch">Todennustunnus ei täsmää. Kirjaudu sisään uudelleen.</string>
<string name="insufficient_access_level">Sinulla ei ole oikeuksia suorittaa tätä toimintoa.</string>
<string name="delete_label_confirmation_title">Poista Tunniste</string>
<string name="delete_label_confirmation_message">Oletko varma, että haluat poistaa tämän tunnisteen?</string>
<!-- About -->
<string name="about_version">Versio %1$s</string>
<string name="about_maintainer_title">Ylläpitäjä</string>
<string name="about_license_title">Lisenssi</string>
<string name="about_source_title">Lähdekoodi</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Projekti %1$s</string>
<string name="share_chooser_title">Jaa %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Vache dépensée</string>
<!-- Actions -->
<string name="action_new_bill">Nouvelle facture</string>
<string name="action_add_project">Ajouter un projet</string>
<string name="action_save">Enregistrer</string>
<string name="action_edit">Editer</string>
<string name="action_share">Partager</string>
<string name="action_search">Chercher</string>
<string name="action_delete">Supprimez</string>
<string name="action_archive">Archive</string>
<string name="action_unarchive">Désarchiver</string>
<string name="action_export">Exportation</string>
<string name="action_stats">Stats</string>
<string name="action_settle">Régler</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Réglages</string>
<string name="action_label_bills">Catégories manquantes</string>
<string name="action_logout">Déconnexion</string>
<string name="action_connect">Connecter</string>
<string name="action_discard">Abandonner</string>
<string name="action_members">Membres</string>
<string name="action_labels">Étiquettes</string>
<string name="action_currencies">Devises</string>
<!-- Titles -->
<string name="title_stats">Statistiques</string>
<string name="title_edit_project">Modifier le projet</string>
<string name="title_label_bills">Étiquettes de factures</string>
<string name="title_labels">Gérer les étiquettes</string>
<string name="title_about">À propos de</string>
<string name="title_settle">Régler le projet</string>
<string name="title_share">Partager le projet</string>
<string name="title_add_project">Ajouter un projet</string>
<string name="title_add_category">Ajouter une catégorie</string>
<string name="title_add_payment_mode">Ajouter un mode de paiement</string>
<string name="title_account">Compte Nextcloud</string>
<string name="title_share_web">Lien web</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">Êtes-vous sûr(e) ?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">Toutes les factures</string>
<string name="label_categories">Catégories</string>
<string name="label_payment_modes">Modes de paiement</string>
<string name="label_name">Nom</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Couleur</string>
<string name="label_weight">Poids</string>
<string name="label_activated">Activé</string>
<string name="label_password">Mot de passe</string>
<string name="label_email">Courriel</string>
<string name="label_url">Adresse du serveur</string>
<string name="label_username">Nom d\'utilisateur</string>
<string name="label_comment">Commenter</string>
<string name="label_what">Quoi?</string>
<string name="label_payer">Qui a payé ?</string>
<string name="label_owers">Pour qui?</string>
<string name="label_repeat">Répéter toutes les</string>
<string name="label_mode">Mode</string>
<string name="label_category">Catégorie</string>
<string name="label_project_id">ID/nom du projet</string>
<string name="label_project_title">Titre du projet</string>
<string name="label_use_sso">Utiliser le compte Nextcloud App</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Modifications non enregistrées</string>
<string name="dialog_unsaved_changes_msg">Enregistrer les modifications avant de partir?</string>
<string name="dialog_confirm_remove_project_msg">Le projet distant ne sera pas supprimé.</string>
<string name="dialog_sync_error_title">Erreur de synchronisation</string>
<string name="dialog_sync_error_msg">Échec de la synchronisation pour %1$s.\n\n%2$s</string>
<string name="dialog_balanced_msg">Les dépenses sont déjà équilibrées.</string>
<string name="msg_project_added">Projet %1$s ajouté</string>
<string name="msg_bill_labeled_done">Toutes les factures étiquetées</string>
<string name="msg_no_suggestions">Aucune suggestion</string>
<string name="msg_auth_warning">Nécessite Cospend v0.3.4+.</string>
<string name="msg_link_copied">Lien copié dans le presse-papiers</string>
<string name="msg_share_qr">Scannez le code QR ou partagez le lien pour vous inscrire.</string>
<string name="msg_share_web">Lien pour accéder au navigateur Web.</string>
<string name="msg_share_qr_warn">Partagez ce lien avec un utilisateur Cowspent</string>
<string name="msg_settle_intro">Réglage pour %1$s:</string>
<string name="msg_settle_sentence">%1$s doit %3$.2f à %2$s</string>
<string name="msg_stats_intro">Statistiques pour %1$s:</string>
<string name="msg_stats_header">Membre (payé | Dépensé | Solde)</string>
<string name="msg_logged_in_as">Connecté en tant que %1$s</string>
<!-- Errors -->
<string name="error_generic">Erreur</string>
<string name="error_loading">En cours de chargement</string>
<string name="error_no_projects">Aucun projet trouvé</string>
<string name="error_no_members">Aucun membre trouvé</string>
<string name="error_no_bills">Aucune facture trouvée</string>
<string name="error_no_member">Au moins un membre est requis</string>
<string name="error_maintenance_mode">Le serveur est en mode maintenance</string>
<string name="error_400">400 Mauvaise requête</string>
<string name="error_401">401 Non autorisé</string>
<string name="error_403">403 Interdit</string>
<string name="error_404">404 introuvable</string>
<string name="error_sync">Échec de la synchronisation : %1$s</string>
<string name="error_invalid_login">Identifiant invalide : %1$s</string>
<string name="error_auth">Mauvais nom d\'utilisateur ou mot de passe</string>
<string name="error_json">Réponse du serveur invalide</string>
<string name="error_req_failed">La requête a échoué</string>
<string name="error_invalid_email">Adresse e-mail invalide</string>
<string name="error_invalid_project_id">ID de projet invalide</string>
<string name="error_invalid_project_name">Titre du projet non valide</string>
<string name="error_invalid_bill_name">Nom de facture invalide</string>
<string name="error_invalid_bill_date">Date de facture invalide</string>
<string name="error_invalid_bill_payer">Payeur requis</string>
<string name="error_invalid_bill_owers">Propriétaires requis</string>
<string name="error_no_network">Aucune connexion réseau</string>
<string name="error_server">Erreur serveur</string>
<string name="error_io">La connexion au serveur a échoué</string>
<string name="error_share_impossible">Impossible de partager ce projet</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Se connecter au compte Nextcloud</string>
<string name="drawer_last_sync">Dernière synchronisation : %1$02d:%2$02d</string>
<string name="simple_cancel">Abandonner</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">Ok</string>
<string name="simple_yes">Oui</string>
<string name="simple_no">Non</string>
<string name="simple_close">Fermer</string>
<!-- Settings -->
<string name="settings_appearance">Apparence</string>
<string name="settings_network">Réseau</string>
<string name="settings_other">Autres</string>
<string name="settings_night_mode">Thème</string>
<string name="settings_offline_mode">Mode hors-ligne</string>
<string name="settings_offline_mode_summary">Synchroniser uniquement manuellement.</string>
<string name="settings_color_custom">Couleur personnalisée</string>
<string name="settings_color_mode">Sélection de la couleur</string>
<string name="settings_show_archived">Afficher les projets archivés</string>
<string name="settings_beta_features">Fonctionnalités bêta</string>
<string name="settings_beta_features_summary">Activer les fonctionnalités expérimentales. Utiliser à vos propres risques.</string>
<string name="settings_url_warn_http">AVERTISSEMENT : \"http\" n\'est pas sûr. Utilisez \"https\".</string>
<string name="settings_colorpicker_title">Choisir une couleur</string>
<string name="pref_value_color_system">Système</string>
<string name="pref_value_color_server">Nuage suivant</string>
<string name="pref_value_color_manual">Manuelle</string>
<string name="pref_value_theme_light">Lumière</string>
<string name="pref_value_theme_dark">Sombre</string>
<string name="pref_value_theme_system">Suivre le système</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">Pas de répétition</string>
<string name="repeat_day">Tous les jours</string>
<string name="repeat_week">Hebdomadaire</string>
<string name="repeat_fortnight">Tous les quinze jours</string>
<string name="repeat_month">Mensuel</string>
<string name="repeat_year">Annuel</string>
<string name="payment_mode_none">Aucun</string>
<string name="payment_mode_all">Tous</string>
<string name="payment_mode_credit_card">Carte de crédit</string>
<string name="payment_mode_cash">Espèces</string>
<string name="payment_mode_check">Contrôler</string>
<string name="payment_mode_online">En ligne</string>
<string name="payment_mode_transfer">Transférer</string>
<string name="category_none">Aucun</string>
<string name="category_all">Tous</string>
<string name="category_all_except_reimbursement">Tout sauf remboursement</string>
<string name="category_groceries">Épicerie</string>
<string name="category_leisure">Barre/Fête</string>
<string name="category_rent">Louer</string>
<string name="category_bills">Facture</string>
<string name="category_excursion">Excursion/Culture</string>
<string name="category_health">Santé</string>
<string name="category_shopping">Achats</string>
<string name="category_reimbursement">Remboursement</string>
<string name="category_restaurant">Restaurant</string>
<string name="category_accomodation">Hébergement</string>
<string name="category_transport">Transport</string>
<string name="category_sport">Sport</string>
<!-- Project specific -->
<string name="new_project_action">Qu\'est-ce que</string>
<string name="new_project_where">Où se trouve</string>
<string name="where_local">Seulement en local</string>
<string name="where_cospend">Codépense</string>
<string name="where_ihatemoney">format@@0 IHateMoney</string>
<string name="todo_join">Rejoindre un projet existant</string>
<string name="todo_create">Créer un nouveau projet</string>
<string name="import_tooltip">Importer depuis un fichier</string>
<string name="choose_account_project_dialog_title">Choisir un projet</string>
<string name="choose_account_project_dialog_impossible">Aucun projet trouvé sur ce compte.</string>
<string name="choose_project_management_action">Projet</string>
<string name="project_added_success">Le projet a été ajouté avec succès.</string>
<string name="no_projects_text">Vous n\'avez pas encore de projets.</string>
<string name="configure_account_choice">Configurer le compte Nextcloud</string>
<string name="add_project_choice">Ajouter un projet manuellement</string>
<string name="no_members_text">Aucun membre dans ce projet.</string>
<string name="no_bills_text">Aucune facture trouvée.</string>
<string name="member_already_exists">Ce membre existe déjà.</string>
<string name="activity_dialog_title">Projet: %1$s</string>
<string name="remove_project_confirmation">Projet %1$s supprimé.</string>
<string name="file_saved_success">Fichier enregistré : %1$s</string>
<string name="import_error_header">Échec de l\'importation à la ligne %d</string>
<string name="import_error_date">Format de date invalide à la ligne %d</string>
<string name="import_error_owers">Propriétés non valides à la ligne %d</string>
<string name="add_member_dialog_title">Ajouter un membre</string>
<string name="edit_member_dialog_title">Modifier le membre</string>
<string name="member_edit_delete">Supprimez</string>
<string name="project_edition_no_change">Aucune modification à enregistrer.</string>
<!-- Settlement -->
<string name="center_none">Aucun (optimiste)</string>
<string name="settle_who">Qui paie</string>
<string name="settle_to_whom">À qui</string>
<string name="settle_how_much">Montant</string>
<string name="simple_settle_share">Partager</string>
<string name="simple_create_bills">Créer des factures</string>
<string name="settle_bill_what">Réglement</string>
<!-- Currencies -->
<string name="currency_dialog_title">Choisir la devise (%s)</string>
<string name="setting_none">Aucun</string>
<string name="setting_all">Tous</string>
<string name="currency_saved_success">Paramètres des devises enregistrés.</string>
<string name="main_currency">Devise principale</string>
<!-- Statistics -->
<string name="label_bills_suggested">Catégories suggérées</string>
<string name="label_bills_skip">Ignorer</string>
<string name="stats_date_min">A partir de</string>
<string name="stats_date_max">À</string>
<string name="stats_who">Membre</string>
<string name="stats_paid">Payé</string>
<string name="stats_spent">Dépensé</string>
<string name="stats_balance">Solde</string>
<string name="total">Total : %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">Échec de la connexion : %1$s</string>
<string name="error_create_remote_project_helper">Échec de la création : %1$s</string>
<string name="error_edit_remote_project_helper">Erreur lors de la mise à jour du projet distant : %1$s</string>
<string name="remote_project_operation_no_network">Réseau indisponible pour le fonctionnement à distance.</string>
<string name="error_scanning_bill_qr_code">Impossible d\'analyser le code QR.</string>
<string name="error_token_mismatch">Incompatibilité du jeton d\'authentification. Veuillez vous reconnecter.</string>
<string name="insufficient_access_level">Vous n\'avez pas la permission d\'effectuer cette action.</string>
<string name="delete_label_confirmation_title">Supprimer l\'étiquette</string>
<string name="delete_label_confirmation_message">Êtes-vous sûr de vouloir supprimer ce label ?</string>
<!-- About -->
<string name="about_version">Version %1$s</string>
<string name="about_maintainer_title">Mainteneur</string>
<string name="about_license_title">Licence</string>
<string name="about_source_title">Code source</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Projet %1$s</string>
<string name="share_chooser_title">Partager %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Cowspent</string>
<!-- Actions -->
<string name="action_new_bill">New bill</string>
<string name="action_add_project">Add project</string>
<string name="action_save">Save</string>
<string name="action_edit">Edit</string>
<string name="action_share">Share</string>
<string name="action_search">Search</string>
<string name="action_delete">Delete</string>
<string name="action_archive">Archive</string>
<string name="action_unarchive">Unarchive</string>
<string name="action_export">Export</string>
<string name="action_stats">Stats</string>
<string name="action_settle">Settle</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Settings</string>
<string name="action_label_bills">Label missing categories</string>
<string name="action_logout">Logout</string>
<string name="action_connect">Connect</string>
<string name="action_discard">Discard</string>
<string name="action_members">Members</string>
<string name="action_labels">Labels</string>
<string name="action_currencies">Currencies</string>
<!-- Titles -->
<string name="title_stats">Statistics</string>
<string name="title_edit_project">Edit project</string>
<string name="title_label_bills">Label Bills</string>
<string name="title_labels">Manage Labels</string>
<string name="title_about">About</string>
<string name="title_settle">Settle Project</string>
<string name="title_share">Share Project</string>
<string name="title_add_project">Add Project</string>
<string name="title_add_category">Add Category</string>
<string name="title_add_payment_mode">Add Payment Mode</string>
<string name="title_account">Nextcloud Account</string>
<string name="title_share_web">Web link</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">Are you sure?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">All bills</string>
<string name="label_categories">Categories</string>
<string name="label_payment_modes">Payment Modes</string>
<string name="label_name">Name</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Color</string>
<string name="label_weight">Weight</string>
<string name="label_activated">Activated</string>
<string name="label_password">Password</string>
<string name="label_email">E-mail</string>
<string name="label_url">Server address</string>
<string name="label_username">Username</string>
<string name="label_comment">Comment</string>
<string name="label_what">What?</string>
<string name="label_payer">Who paid?</string>
<string name="label_owers">For whom?</string>
<string name="label_repeat">Repeat every</string>
<string name="label_mode">Mode</string>
<string name="label_category">Category</string>
<string name="label_project_id">Project ID/name</string>
<string name="label_project_title">Project title</string>
<string name="label_use_sso">Use Nextcloud App Account</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Unsaved changes</string>
<string name="dialog_unsaved_changes_msg">Save changes before leaving?</string>
<string name="dialog_confirm_remove_project_msg">The remote project will not be deleted.</string>
<string name="dialog_sync_error_title">Sync error</string>
<string name="dialog_sync_error_msg">Sync failed for %1$s.\n\n%2$s</string>
<string name="dialog_balanced_msg">Expenses are already balanced.</string>
<string name="msg_project_added">Project %1$s added</string>
<string name="msg_bill_labeled_done">All bills labeled</string>
<string name="msg_no_suggestions">No suggestions</string>
<string name="msg_auth_warning">Requires Cospend v0.3.4+.</string>
<string name="msg_link_copied">Link copied to clipboard</string>
<string name="msg_share_qr">Scan QR code or share the link to join.</string>
<string name="msg_share_web">Link for web browser access.</string>
<string name="msg_share_qr_warn">Share this link with a Cowspent user.</string>
<string name="msg_settle_intro">Settlement for %1$s:</string>
<string name="msg_settle_sentence">%1$s owes %3$.2f to %2$s</string>
<string name="msg_stats_intro">Stats for %1$s:</string>
<string name="msg_stats_header">Member (Paid | Spent | Balance)</string>
<string name="msg_logged_in_as">Logged in as %1$s</string>
<!-- Errors -->
<string name="error_generic">Error</string>
<string name="error_loading">Loading</string>
<string name="error_no_projects">No projects found</string>
<string name="error_no_members">No members found</string>
<string name="error_no_bills">No bills found</string>
<string name="error_no_member">At least one member required</string>
<string name="error_maintenance_mode">Server is in maintenance mode</string>
<string name="error_400">400 Bad request</string>
<string name="error_401">401 Unauthorized</string>
<string name="error_403">403 Forbidden</string>
<string name="error_404">404 Not Found</string>
<string name="error_sync">Sync failed: %1$s</string>
<string name="error_invalid_login">Invalid login: %1$s</string>
<string name="error_auth">Wrong username or password</string>
<string name="error_json">Invalid server response</string>
<string name="error_req_failed">Request failed</string>
<string name="error_invalid_email">Invalid e-mail</string>
<string name="error_invalid_project_id">Invalid project ID</string>
<string name="error_invalid_project_name">Invalid project title</string>
<string name="error_invalid_bill_name">Invalid bill name</string>
<string name="error_invalid_bill_date">Invalid bill date</string>
<string name="error_invalid_bill_payer">Payer required</string>
<string name="error_invalid_bill_owers">Owers required</string>
<string name="error_no_network">No network connection</string>
<string name="error_server">Server error</string>
<string name="error_io">Server connection broken</string>
<string name="error_share_impossible">Cannot share this project</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Connect to Nextcloud account</string>
<string name="drawer_last_sync">Last sync: %1$02d:%2$02d</string>
<string name="simple_cancel">Cancel</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">Ok</string>
<string name="simple_yes">Yes</string>
<string name="simple_no">No</string>
<string name="simple_close">Close</string>
<!-- Settings -->
<string name="settings_appearance">Appearance</string>
<string name="settings_network">Network</string>
<string name="settings_other">Other</string>
<string name="settings_night_mode">Theme</string>
<string name="settings_offline_mode">Offline mode</string>
<string name="settings_offline_mode_summary">Only sync manually.</string>
<string name="settings_color_custom">Custom color</string>
<string name="settings_color_mode">Color Selection</string>
<string name="settings_show_archived">Show archived projects</string>
<string name="settings_beta_features">Beta Features</string>
<string name="settings_beta_features_summary">Enable experimental features. Use at your own risk.</string>
<string name="settings_url_warn_http">WARNING: \"http\" is unsafe. Use \"https\".</string>
<string name="settings_colorpicker_title">Choose Color</string>
<string name="pref_value_color_system">System</string>
<string name="pref_value_color_server">Nextcloud</string>
<string name="pref_value_color_manual">Manual</string>
<string name="pref_value_theme_light">Light</string>
<string name="pref_value_theme_dark">Dark</string>
<string name="pref_value_theme_system">Follow system</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">No repeat</string>
<string name="repeat_day">Daily</string>
<string name="repeat_week">Weekly</string>
<string name="repeat_fortnight">Fortnightly</string>
<string name="repeat_month">Monthly</string>
<string name="repeat_year">Yearly</string>
<string name="payment_mode_none">None</string>
<string name="payment_mode_all">All</string>
<string name="payment_mode_credit_card">Credit card</string>
<string name="payment_mode_cash">Cash</string>
<string name="payment_mode_check">Check</string>
<string name="payment_mode_online">Online</string>
<string name="payment_mode_transfer">Transfer</string>
<string name="category_none">None</string>
<string name="category_all">All</string>
<string name="category_all_except_reimbursement">All except reimbursement</string>
<string name="category_groceries">Grocery</string>
<string name="category_leisure">Bar/Party</string>
<string name="category_rent">Rent</string>
<string name="category_bills">Bill</string>
<string name="category_excursion">Excursion/Culture</string>
<string name="category_health">Health</string>
<string name="category_shopping">Shopping</string>
<string name="category_reimbursement">Reimbursement</string>
<string name="category_restaurant">Restaurant</string>
<string name="category_accomodation">Accommodation</string>
<string name="category_transport">Transport</string>
<string name="category_sport">Sport</string>
<!-- Project specific -->
<string name="new_project_action">What</string>
<string name="new_project_where">Where</string>
<string name="where_local">Local only</string>
<string name="where_cospend">Cospend</string>
<string name="where_ihatemoney">IHateMoney</string>
<string name="todo_join">Join existing project</string>
<string name="todo_create">Create new project</string>
<string name="import_tooltip">Import from file</string>
<string name="choose_account_project_dialog_title">Choose project</string>
<string name="choose_account_project_dialog_impossible">No projects found on this account.</string>
<string name="choose_project_management_action">Project</string>
<string name="project_added_success">Project added successfully.</string>
<string name="no_projects_text">You have no projects yet.</string>
<string name="configure_account_choice">Configure Nextcloud account</string>
<string name="add_project_choice">Add project manually</string>
<string name="no_members_text">No members in this project.</string>
<string name="no_bills_text">No bills found.</string>
<string name="member_already_exists">Member already exists.</string>
<string name="activity_dialog_title">Project: %1$s</string>
<string name="remove_project_confirmation">Project %1$s removed.</string>
<string name="file_saved_success">File saved: %1$s</string>
<string name="import_error_header">Import failed at row %d</string>
<string name="import_error_date">Invalid date format at row %d</string>
<string name="import_error_owers">Invalid owers at row %d</string>
<string name="add_member_dialog_title">Add Member</string>
<string name="edit_member_dialog_title">Edit Member</string>
<string name="member_edit_delete">Delete</string>
<string name="project_edition_no_change">No changes to save.</string>
<!-- Settlement -->
<string name="center_none">None (Optimal)</string>
<string name="settle_who">Who pays</string>
<string name="settle_to_whom">To whom</string>
<string name="settle_how_much">Amount</string>
<string name="simple_settle_share">Share</string>
<string name="simple_create_bills">Create bills</string>
<string name="settle_bill_what">Settlement</string>
<!-- Currencies -->
<string name="currency_dialog_title">Choose Currency (%s)</string>
<string name="setting_none">None</string>
<string name="setting_all">All</string>
<string name="currency_saved_success">Currency settings saved.</string>
<string name="main_currency">Main Currency</string>
<!-- Statistics -->
<string name="label_bills_suggested">Suggested Categories</string>
<string name="label_bills_skip">Skip</string>
<string name="stats_date_min">From</string>
<string name="stats_date_max">To</string>
<string name="stats_who">Member</string>
<string name="stats_paid">Paid</string>
<string name="stats_spent">Spent</string>
<string name="stats_balance">Balance</string>
<string name="total">Total: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">Connection failed: %1$s</string>
<string name="error_create_remote_project_helper">Creation failed: %1$s</string>
<string name="error_edit_remote_project_helper">Error updating remote project: %1$s</string>
<string name="remote_project_operation_no_network">Network unavailable for remote operation.</string>
<string name="error_scanning_bill_qr_code">Failed to parse QR code.</string>
<string name="error_token_mismatch">Authentication token mismatch. Please log in again.</string>
<string name="insufficient_access_level">You don\'t have permission to perform this action.</string>
<string name="delete_label_confirmation_title">Delete Label</string>
<string name="delete_label_confirmation_message">Are you sure you want to delete this label?</string>
<!-- About -->
<string name="about_version">Version %1$s</string>
<string name="about_maintainer_title">Maintainer</string>
<string name="about_license_title">License</string>
<string name="about_source_title">Source code</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Project %1$s</string>
<string name="share_chooser_title">Share %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Cowspent</string>
<!-- Actions -->
<string name="action_new_bill">Nuova bolletta</string>
<string name="action_add_project">Aggiungi progetto</string>
<string name="action_save">Salva</string>
<string name="action_edit">Modifica</string>
<string name="action_share">Condividi</string>
<string name="action_search">Cerca</string>
<string name="action_delete">Elimina</string>
<string name="action_archive">Archivio</string>
<string name="action_unarchive">Disarchivia</string>
<string name="action_export">Esporta</string>
<string name="action_stats">Statistiche</string>
<string name="action_settle">Salta</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Impostazioni</string>
<string name="action_label_bills">Etichetta categorie mancanti</string>
<string name="action_logout">Esci</string>
<string name="action_connect">Connetti</string>
<string name="action_discard">Scarta</string>
<string name="action_members">Membri</string>
<string name="action_labels">Etichette</string>
<string name="action_currencies">Valute</string>
<!-- Titles -->
<string name="title_stats">Statistiche</string>
<string name="title_edit_project">Modifica progetto</string>
<string name="title_label_bills">Etichetta Di Bollette</string>
<string name="title_labels">Gestisci Etichette</string>
<string name="title_about">Informazioni</string>
<string name="title_settle">Settle Project</string>
<string name="title_share">Condividi Progetto</string>
<string name="title_add_project">Aggiungi Progetto</string>
<string name="title_add_category">Aggiungi Categoria</string>
<string name="title_add_payment_mode">Aggiungi Modalità Di Pagamento</string>
<string name="title_account">Account Nextcloud</string>
<string name="title_share_web">Collegamento web</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">Sei sicuro?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">Tutte le bollette</string>
<string name="label_categories">Categorie</string>
<string name="label_payment_modes">Modalità Di Pagamento</string>
<string name="label_name">Nome</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Colore</string>
<string name="label_weight">Peso</string>
<string name="label_activated">Attivato</string>
<string name="label_password">Password</string>
<string name="label_email">E-mail</string>
<string name="label_url">Indirizzo del server</string>
<string name="label_username">Username</string>
<string name="label_comment">Commento</string>
<string name="label_what">Cosa?</string>
<string name="label_payer">Chi ha pagato?</string>
<string name="label_owers">Per chi?</string>
<string name="label_repeat">Ripeti ogni</string>
<string name="label_mode">Modalità</string>
<string name="label_category">Categoria</string>
<string name="label_project_id">Id Del Progetto/Nome</string>
<string name="label_project_title">Titolo del progetto</string>
<string name="label_use_sso">Usa Account App Nextcloud</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Modifiche non salvate</string>
<string name="dialog_unsaved_changes_msg">Salvare le modifiche prima di partire?</string>
<string name="dialog_confirm_remove_project_msg">Il progetto remoto non verrà eliminato.</string>
<string name="dialog_sync_error_title">Errore di sincronizzazione</string>
<string name="dialog_sync_error_msg">Sincronizzazione fallita per %1$s.\n\n%2$s</string>
<string name="dialog_balanced_msg">Le spese sono già bilanciate.</string>
<string name="msg_project_added">Project %1$s added</string>
<string name="msg_bill_labeled_done">Tutte le fatture etichettate</string>
<string name="msg_no_suggestions">Nessun suggerimento</string>
<string name="msg_auth_warning">Richiede Cospend v0.3.4+.</string>
<string name="msg_link_copied">Link copiato negli appunti</string>
<string name="msg_share_qr">Scansiona il codice QR o condividi il link per unirsi.</string>
<string name="msg_share_web">Link per l\'accesso al browser web.</string>
<string name="msg_share_qr_warn">Condividi questo link con un utente Cowspent</string>
<string name="msg_settle_intro">Regolamento per %1$s:</string>
<string name="msg_settle_sentence">%1$s deve %3$.2f a %2$s</string>
<string name="msg_stats_intro">Statistiche per %1$s:</string>
<string name="msg_stats_header">Membro (Saldo &lt;unk&gt; Speso &lt;unk&gt; Balance)</string>
<string name="msg_logged_in_as">Accesso effettuato come %1$s</string>
<!-- Errors -->
<string name="error_generic">Errore</string>
<string name="error_loading">Caricamento</string>
<string name="error_no_projects">Nessun progetto trovato</string>
<string name="error_no_members">Nessun membro trovato</string>
<string name="error_no_bills">Nessuna bolletta trovata</string>
<string name="error_no_member">Almeno un membro richiesto</string>
<string name="error_maintenance_mode">Il server è in modalità manutenzione</string>
<string name="error_400">400 Richiesta errata</string>
<string name="error_401">401 Non Autorizzato</string>
<string name="error_403">403 Vietato</string>
<string name="error_404">404 Non Trovato</string>
<string name="error_sync">Sincronizzazione non riuscita: %1$s</string>
<string name="error_invalid_login">Login non valido: %1$s</string>
<string name="error_auth">Nome utente o password errati</string>
<string name="error_json">Risposta server non valida</string>
<string name="error_req_failed">Richiesta fallita</string>
<string name="error_invalid_email">E-mail non valida</string>
<string name="error_invalid_project_id">ID progetto non valido</string>
<string name="error_invalid_project_name">Titolo progetto non valido</string>
<string name="error_invalid_bill_name">Nome fattura non valido</string>
<string name="error_invalid_bill_date">Data fattura non valida</string>
<string name="error_invalid_bill_payer">Pagatore richiesto</string>
<string name="error_invalid_bill_owers">Proprietari richiesti</string>
<string name="error_no_network">Nessuna connessione di rete</string>
<string name="error_server">Errore del server</string>
<string name="error_io">Connessione al server interrotta</string>
<string name="error_share_impossible">Impossibile condividere questo progetto</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Connetti all\'account Nextcloud</string>
<string name="drawer_last_sync">Ultima sincronizzazione: %1$02d:%2$02d</string>
<string name="simple_cancel">Annulla</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">Ok</string>
<string name="simple_yes"></string>
<string name="simple_no">No</string>
<string name="simple_close">Chiudi</string>
<!-- Settings -->
<string name="settings_appearance">Aspetto</string>
<string name="settings_network">Rete</string>
<string name="settings_other">Altro</string>
<string name="settings_night_mode">Tema</string>
<string name="settings_offline_mode">Modalità offline</string>
<string name="settings_offline_mode_summary">Sincronizza solo manualmente.</string>
<string name="settings_color_custom">Colore personalizzato</string>
<string name="settings_color_mode">Selezione Colore</string>
<string name="settings_show_archived">Mostra progetti archiviati</string>
<string name="settings_beta_features">Caratteristiche Beta</string>
<string name="settings_beta_features_summary">Abilita le funzioni sperimentali. Usa a tuo rischio.</string>
<string name="settings_url_warn_http">ATTENZIONE: \"http\" non è sicuro. Usa \"국\".</string>
<string name="settings_colorpicker_title">Scegli Colore</string>
<string name="pref_value_color_system">Sistema</string>
<string name="pref_value_color_server">Nextcloud</string>
<string name="pref_value_color_manual">Manuale</string>
<string name="pref_value_theme_light">Chiaro</string>
<string name="pref_value_theme_dark">Scuro</string>
<string name="pref_value_theme_system">Segui sistema</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">Nessuna ripetizione</string>
<string name="repeat_day">Giornaliero</string>
<string name="repeat_week">Settimanale</string>
<string name="repeat_fortnight">Quindici</string>
<string name="repeat_month">Mensile</string>
<string name="repeat_year">Annuale</string>
<string name="payment_mode_none">Nessuno</string>
<string name="payment_mode_all">Tutti</string>
<string name="payment_mode_credit_card">Carta di credito</string>
<string name="payment_mode_cash">Contanti</string>
<string name="payment_mode_check">Controlla</string>
<string name="payment_mode_online">Online</string>
<string name="payment_mode_transfer">Trasferisci</string>
<string name="category_none">Nessuno</string>
<string name="category_all">Tutti</string>
<string name="category_all_except_reimbursement">Tutti tranne il rimborso</string>
<string name="category_groceries">Alimentari</string>
<string name="category_leisure">Bar/Party</string>
<string name="category_rent">Affitto</string>
<string name="category_bills">Fattura</string>
<string name="category_excursion">Escursione/Cultura</string>
<string name="category_health">Salute</string>
<string name="category_shopping">Shopping</string>
<string name="category_reimbursement">Rimborso</string>
<string name="category_restaurant">Ristorante</string>
<string name="category_accomodation">Alloggio</string>
<string name="category_transport">Trasporti</string>
<string name="category_sport">Sport</string>
<!-- Project specific -->
<string name="new_project_action">Cosa</string>
<string name="new_project_where">Dove</string>
<string name="where_local">Solo locale</string>
<string name="where_cospend">Cospend</string>
<string name="where_ihatemoney">IHateMoney</string>
<string name="todo_join">Unisciti al progetto esistente</string>
<string name="todo_create">Crea nuovo progetto</string>
<string name="import_tooltip">Importa da file</string>
<string name="choose_account_project_dialog_title">Scegli progetto</string>
<string name="choose_account_project_dialog_impossible">Nessun progetto trovato su questo account.</string>
<string name="choose_project_management_action">Progetto</string>
<string name="project_added_success">Progetto aggiunto con successo.</string>
<string name="no_projects_text">Non hai ancora alcun progetto.</string>
<string name="configure_account_choice">Configura account Nextcloud</string>
<string name="add_project_choice">Aggiunge manualmente il progetto</string>
<string name="no_members_text">Nessun membro in questo progetto.</string>
<string name="no_bills_text">Nessuna bolletta trovata.</string>
<string name="member_already_exists">Membro già esistente.</string>
<string name="activity_dialog_title">Progetto: %1$s</string>
<string name="remove_project_confirmation">Project %1$s removed.</string>
<string name="file_saved_success">File salvato: %1$s</string>
<string name="import_error_header">Importazione fallita alla riga %d</string>
<string name="import_error_date">Formato data non valido alla riga %d</string>
<string name="import_error_owers">Guanti non validi alla riga %d</string>
<string name="add_member_dialog_title">Aggiungi Membro</string>
<string name="edit_member_dialog_title">Modifica Membro</string>
<string name="member_edit_delete">Elimina</string>
<string name="project_edition_no_change">Nessuna modifica da salvare.</string>
<!-- Settlement -->
<string name="center_none">Nessuno (ottimale)</string>
<string name="settle_who">Chi paga</string>
<string name="settle_to_whom">A chi</string>
<string name="settle_how_much">Importo</string>
<string name="simple_settle_share">Condividi</string>
<string name="simple_create_bills">Crea bollette</string>
<string name="settle_bill_what">Regolamento</string>
<!-- Currencies -->
<string name="currency_dialog_title">Scegli Valuta (%s)</string>
<string name="setting_none">Nessuno</string>
<string name="setting_all">Tutti</string>
<string name="currency_saved_success">Impostazioni valuta salvate.</string>
<string name="main_currency">Valuta Principale</string>
<!-- Statistics -->
<string name="label_bills_suggested">Categorie Suggerite</string>
<string name="label_bills_skip">Salta</string>
<string name="stats_date_min">Da</string>
<string name="stats_date_max">A</string>
<string name="stats_who">Membro</string>
<string name="stats_paid">Pagato</string>
<string name="stats_spent">Speso</string>
<string name="stats_balance">Saldo</string>
<string name="total">Totale: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">Connessione non riuscita: %1$s</string>
<string name="error_create_remote_project_helper">Creazione fallita: %1$s</string>
<string name="error_edit_remote_project_helper">Errore nell\'aggiornare il progetto remoto: %1$s</string>
<string name="remote_project_operation_no_network">Rete non disponibile per operazioni remote.</string>
<string name="error_scanning_bill_qr_code">Analisi del codice QR non riuscita.</string>
<string name="error_token_mismatch">Token di autenticazione non corrisponde. Effettua nuovamente il login.</string>
<string name="insufficient_access_level">Non hai i permessi per eseguire questa azione.</string>
<string name="delete_label_confirmation_title">Elimina Etichetta</string>
<string name="delete_label_confirmation_message">Sei sicuro di voler eliminare questa etichetta?</string>
<!-- About -->
<string name="about_version">Versione %1$s</string>
<string name="about_maintainer_title">Responsabile</string>
<string name="about_license_title">Licenza</string>
<string name="about_source_title">Codice sorgente</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Project %1$s</string>
<string name="share_chooser_title">Condividi %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Cowspent</string>
<!-- Actions -->
<string name="action_new_bill">New bill</string>
<string name="action_add_project">Add project</string>
<string name="action_save">Save</string>
<string name="action_edit">Edit</string>
<string name="action_share">Share</string>
<string name="action_search">Search</string>
<string name="action_delete">Delete</string>
<string name="action_archive">Archive</string>
<string name="action_unarchive">Unarchive</string>
<string name="action_export">Export</string>
<string name="action_stats">Stats</string>
<string name="action_settle">Settle</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Settings</string>
<string name="action_label_bills">Label missing categories</string>
<string name="action_logout">Logout</string>
<string name="action_connect">Connect</string>
<string name="action_discard">Discard</string>
<string name="action_members">Members</string>
<string name="action_labels">Labels</string>
<string name="action_currencies">Currencies</string>
<!-- Titles -->
<string name="title_stats">Statistics</string>
<string name="title_edit_project">Edit project</string>
<string name="title_label_bills">Label Bills</string>
<string name="title_labels">Manage Labels</string>
<string name="title_about">About</string>
<string name="title_settle">Settle Project</string>
<string name="title_share">Share Project</string>
<string name="title_add_project">Add Project</string>
<string name="title_add_category">Add Category</string>
<string name="title_add_payment_mode">Add Payment Mode</string>
<string name="title_account">Nextcloud Account</string>
<string name="title_share_web">Web link</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">Are you sure?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">All bills</string>
<string name="label_categories">Categories</string>
<string name="label_payment_modes">Payment Modes</string>
<string name="label_name">Name</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Color</string>
<string name="label_weight">Weight</string>
<string name="label_activated">Activated</string>
<string name="label_password">Password</string>
<string name="label_email">E-mail</string>
<string name="label_url">Server address</string>
<string name="label_username">Username</string>
<string name="label_comment">Comment</string>
<string name="label_what">What?</string>
<string name="label_payer">Who paid?</string>
<string name="label_owers">For whom?</string>
<string name="label_repeat">Repeat every</string>
<string name="label_mode">Mode</string>
<string name="label_category">Category</string>
<string name="label_project_id">Project ID/name</string>
<string name="label_project_title">Project title</string>
<string name="label_use_sso">Use Nextcloud App Account</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Unsaved changes</string>
<string name="dialog_unsaved_changes_msg">Save changes before leaving?</string>
<string name="dialog_confirm_remove_project_msg">The remote project will not be deleted.</string>
<string name="dialog_sync_error_title">Sync error</string>
<string name="dialog_sync_error_msg">Sync failed for %1$s.\n\n%2$s</string>
<string name="dialog_balanced_msg">Expenses are already balanced.</string>
<string name="msg_project_added">Project %1$s added</string>
<string name="msg_bill_labeled_done">All bills labeled</string>
<string name="msg_no_suggestions">No suggestions</string>
<string name="msg_auth_warning">Requires Cospend v0.3.4+.</string>
<string name="msg_link_copied">Link copied to clipboard</string>
<string name="msg_share_qr">Scan QR code or share the link to join.</string>
<string name="msg_share_web">Link for web browser access.</string>
<string name="msg_share_qr_warn">Share this link with a Cowspent user.</string>
<string name="msg_settle_intro">Settlement for %1$s:</string>
<string name="msg_settle_sentence">%1$s owes %3$.2f to %2$s</string>
<string name="msg_stats_intro">Stats for %1$s:</string>
<string name="msg_stats_header">Member (Paid | Spent | Balance)</string>
<string name="msg_logged_in_as">Logged in as %1$s</string>
<!-- Errors -->
<string name="error_generic">Error</string>
<string name="error_loading">Loading</string>
<string name="error_no_projects">No projects found</string>
<string name="error_no_members">No members found</string>
<string name="error_no_bills">No bills found</string>
<string name="error_no_member">At least one member required</string>
<string name="error_maintenance_mode">Server is in maintenance mode</string>
<string name="error_400">400 Bad request</string>
<string name="error_401">401 Unauthorized</string>
<string name="error_403">403 Forbidden</string>
<string name="error_404">404 Not Found</string>
<string name="error_sync">Sync failed: %1$s</string>
<string name="error_invalid_login">Invalid login: %1$s</string>
<string name="error_auth">Wrong username or password</string>
<string name="error_json">Invalid server response</string>
<string name="error_req_failed">Request failed</string>
<string name="error_invalid_email">Invalid e-mail</string>
<string name="error_invalid_project_id">Invalid project ID</string>
<string name="error_invalid_project_name">Invalid project title</string>
<string name="error_invalid_bill_name">Invalid bill name</string>
<string name="error_invalid_bill_date">Invalid bill date</string>
<string name="error_invalid_bill_payer">Payer required</string>
<string name="error_invalid_bill_owers">Owers required</string>
<string name="error_no_network">No network connection</string>
<string name="error_server">Server error</string>
<string name="error_io">Server connection broken</string>
<string name="error_share_impossible">Cannot share this project</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Connect to Nextcloud account</string>
<string name="drawer_last_sync">Last sync: %1$02d:%2$02d</string>
<string name="simple_cancel">Cancel</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">Ok</string>
<string name="simple_yes">Yes</string>
<string name="simple_no">No</string>
<string name="simple_close">Close</string>
<!-- Settings -->
<string name="settings_appearance">Appearance</string>
<string name="settings_network">Network</string>
<string name="settings_other">Other</string>
<string name="settings_night_mode">Theme</string>
<string name="settings_offline_mode">Offline mode</string>
<string name="settings_offline_mode_summary">Only sync manually.</string>
<string name="settings_color_custom">Custom color</string>
<string name="settings_color_mode">Color Selection</string>
<string name="settings_show_archived">Show archived projects</string>
<string name="settings_beta_features">Beta Features</string>
<string name="settings_beta_features_summary">Enable experimental features. Use at your own risk.</string>
<string name="settings_url_warn_http">WARNING: \"http\" is unsafe. Use \"https\".</string>
<string name="settings_colorpicker_title">Choose Color</string>
<string name="pref_value_color_system">System</string>
<string name="pref_value_color_server">Nextcloud</string>
<string name="pref_value_color_manual">Manual</string>
<string name="pref_value_theme_light">Light</string>
<string name="pref_value_theme_dark">Dark</string>
<string name="pref_value_theme_system">Follow system</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">No repeat</string>
<string name="repeat_day">Daily</string>
<string name="repeat_week">Weekly</string>
<string name="repeat_fortnight">Fortnightly</string>
<string name="repeat_month">Monthly</string>
<string name="repeat_year">Yearly</string>
<string name="payment_mode_none">None</string>
<string name="payment_mode_all">All</string>
<string name="payment_mode_credit_card">Credit card</string>
<string name="payment_mode_cash">Cash</string>
<string name="payment_mode_check">Check</string>
<string name="payment_mode_online">Online</string>
<string name="payment_mode_transfer">Transfer</string>
<string name="category_none">None</string>
<string name="category_all">All</string>
<string name="category_all_except_reimbursement">All except reimbursement</string>
<string name="category_groceries">Grocery</string>
<string name="category_leisure">Bar/Party</string>
<string name="category_rent">Rent</string>
<string name="category_bills">Bill</string>
<string name="category_excursion">Excursion/Culture</string>
<string name="category_health">Health</string>
<string name="category_shopping">Shopping</string>
<string name="category_reimbursement">Reimbursement</string>
<string name="category_restaurant">Restaurant</string>
<string name="category_accomodation">Accommodation</string>
<string name="category_transport">Transport</string>
<string name="category_sport">Sport</string>
<!-- Project specific -->
<string name="new_project_action">What</string>
<string name="new_project_where">Where</string>
<string name="where_local">Local only</string>
<string name="where_cospend">Cospend</string>
<string name="where_ihatemoney">IHateMoney</string>
<string name="todo_join">Join existing project</string>
<string name="todo_create">Create new project</string>
<string name="import_tooltip">Import from file</string>
<string name="choose_account_project_dialog_title">Choose project</string>
<string name="choose_account_project_dialog_impossible">No projects found on this account.</string>
<string name="choose_project_management_action">Project</string>
<string name="project_added_success">Project added successfully.</string>
<string name="no_projects_text">You have no projects yet.</string>
<string name="configure_account_choice">Configure Nextcloud account</string>
<string name="add_project_choice">Add project manually</string>
<string name="no_members_text">No members in this project.</string>
<string name="no_bills_text">No bills found.</string>
<string name="member_already_exists">Member already exists.</string>
<string name="activity_dialog_title">Project: %1$s</string>
<string name="remove_project_confirmation">Project %1$s removed.</string>
<string name="file_saved_success">File saved: %1$s</string>
<string name="import_error_header">Import failed at row %d</string>
<string name="import_error_date">Invalid date format at row %d</string>
<string name="import_error_owers">Invalid owers at row %d</string>
<string name="add_member_dialog_title">Add Member</string>
<string name="edit_member_dialog_title">Edit Member</string>
<string name="member_edit_delete">Delete</string>
<string name="project_edition_no_change">No changes to save.</string>
<!-- Settlement -->
<string name="center_none">None (Optimal)</string>
<string name="settle_who">Who pays</string>
<string name="settle_to_whom">To whom</string>
<string name="settle_how_much">Amount</string>
<string name="simple_settle_share">Share</string>
<string name="simple_create_bills">Create bills</string>
<string name="settle_bill_what">Settlement</string>
<!-- Currencies -->
<string name="currency_dialog_title">Choose Currency (%s)</string>
<string name="setting_none">None</string>
<string name="setting_all">All</string>
<string name="currency_saved_success">Currency settings saved.</string>
<string name="main_currency">Main Currency</string>
<!-- Statistics -->
<string name="label_bills_suggested">Suggested Categories</string>
<string name="label_bills_skip">Skip</string>
<string name="stats_date_min">From</string>
<string name="stats_date_max">To</string>
<string name="stats_who">Member</string>
<string name="stats_paid">Paid</string>
<string name="stats_spent">Spent</string>
<string name="stats_balance">Balance</string>
<string name="total">Total: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">Connection failed: %1$s</string>
<string name="error_create_remote_project_helper">Creation failed: %1$s</string>
<string name="error_edit_remote_project_helper">Error updating remote project: %1$s</string>
<string name="remote_project_operation_no_network">Network unavailable for remote operation.</string>
<string name="error_scanning_bill_qr_code">Failed to parse QR code.</string>
<string name="error_token_mismatch">Authentication token mismatch. Please log in again.</string>
<string name="insufficient_access_level">You don\'t have permission to perform this action.</string>
<string name="delete_label_confirmation_title">Delete Label</string>
<string name="delete_label_confirmation_message">Are you sure you want to delete this label?</string>
<!-- About -->
<string name="about_version">Version %1$s</string>
<string name="about_maintainer_title">Maintainer</string>
<string name="about_license_title">License</string>
<string name="about_source_title">Source code</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Project %1$s</string>
<string name="share_chooser_title">Share %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Cowspent</string>
<!-- Actions -->
<string name="action_new_bill">新しい請求書</string>
<string name="action_add_project">プロジェクトを追加</string>
<string name="action_save">保存</string>
<string name="action_edit">編集</string>
<string name="action_share">共有</string>
<string name="action_search">検索</string>
<string name="action_delete">削除</string>
<string name="action_archive">アーカイブ</string>
<string name="action_unarchive">アーカイブ解除</string>
<string name="action_export">エクスポート</string>
<string name="action_stats">統計</string>
<string name="action_settle">決済する</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">設定</string>
<string name="action_label_bills">ラベル不足しているカテゴリ</string>
<string name="action_logout">ログアウト</string>
<string name="action_connect">接続する</string>
<string name="action_discard">破棄する</string>
<string name="action_members">メンバー</string>
<string name="action_labels">ラベル</string>
<string name="action_currencies">通貨</string>
<!-- Titles -->
<string name="title_stats">統計情報</string>
<string name="title_edit_project">プロジェクトを編集</string>
<string name="title_label_bills">請求書のラベル</string>
<string name="title_labels">ラベルの管理</string>
<string name="title_about">About</string>
<string name="title_settle">プロジェクトを決済する</string>
<string name="title_share">プロジェクトを共有</string>
<string name="title_add_project">プロジェクトを追加</string>
<string name="title_add_category">カテゴリを追加</string>
<string name="title_add_payment_mode">支払いモードを追加</string>
<string name="title_account">Nextcloudアカウント</string>
<string name="title_share_web">ウェブリンク</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">よろしいですか?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">すべての請求書</string>
<string name="label_categories">カテゴリ</string>
<string name="label_payment_modes">支払いモード</string>
<string name="label_name">名前</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color"></string>
<string name="label_weight">重量</string>
<string name="label_activated">アクティベート済み</string>
<string name="label_password">パスワード</string>
<string name="label_email">電子メール</string>
<string name="label_url">サーバーアドレス</string>
<string name="label_username">ユーザー名</string>
<string name="label_comment">コメント</string>
<string name="label_what">何?</string>
<string name="label_payer">誰が支払ったのですか?</string>
<string name="label_owers">誰のために?</string>
<string name="label_repeat">繰り返します</string>
<string name="label_mode">モード</string>
<string name="label_category">カテゴリ</string>
<string name="label_project_id">プロジェクト ID/名前</string>
<string name="label_project_title">プロジェクトのタイトル</string>
<string name="label_use_sso">Nextcloudアプリアカウントを使用する</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">保存されていない変更</string>
<string name="dialog_unsaved_changes_msg">脱退する前に変更を保存しますか?</string>
<string name="dialog_confirm_remove_project_msg">リモートプロジェクトは削除されません。</string>
<string name="dialog_sync_error_title">同期エラー</string>
<string name="dialog_sync_error_msg">%1$sの同期に失敗しました。\n\n%2$s</string>
<string name="dialog_balanced_msg">費用はすでに均衡しています。</string>
<string name="msg_project_added">プロジェクト %1$s が追加されました</string>
<string name="msg_bill_labeled_done">すべての請求書がラベル付けされました</string>
<string name="msg_no_suggestions">候補なし</string>
<string name="msg_auth_warning">Cospend v0.3.4以上が必要です。</string>
<string name="msg_link_copied">リンクをクリップボードにコピーしました</string>
<string name="msg_share_qr">QRコードをスキャンするか、リンクを共有して参加してください。</string>
<string name="msg_share_web">ウェブブラウザへのアクセスのためのリンク。</string>
<string name="msg_share_qr_warn">Cowspent ユーザーとこのリンクを共有します。</string>
<string name="msg_settle_intro">%1$sの決済:</string>
<string name="msg_settle_sentence">%1$s は %3$.2f を %2$sに借りています</string>
<string name="msg_stats_intro">%1$s の統計:</string>
<string name="msg_stats_header">メンバー (ペイド | 使用済み)</string>
<string name="msg_logged_in_as">%1$s としてログイン中</string>
<!-- Errors -->
<string name="error_generic">エラー</string>
<string name="error_loading">読み込み中</string>
<string name="error_no_projects">プロジェクトが見つかりません</string>
<string name="error_no_members">メンバーが見つかりませんでした</string>
<string name="error_no_bills">請求書が見つかりません</string>
<string name="error_no_member">少なくとも1人のメンバーが必要です</string>
<string name="error_maintenance_mode">サーバーはメンテナンスモードです</string>
<string name="error_400">400件の不正なリクエスト</string>
<string name="error_401">401 Unauthorized</string>
<string name="error_403">403 禁止されました</string>
<string name="error_404">404 が見つかりません</string>
<string name="error_sync">同期失敗: %1$s</string>
<string name="error_invalid_login">無効なログイン: %1$s</string>
<string name="error_auth">ユーザー名またはパスワードが間違っています</string>
<string name="error_json">無効なサーバー応答</string>
<string name="error_req_failed">リクエストに失敗しました</string>
<string name="error_invalid_email">無効なメールアドレス</string>
<string name="error_invalid_project_id">無効なプロジェクト ID</string>
<string name="error_invalid_project_name">無効なプロジェクトのタイトル</string>
<string name="error_invalid_bill_name">無効な請求書名</string>
<string name="error_invalid_bill_date">請求書の日付が無効</string>
<string name="error_invalid_bill_payer">支払者が必要です</string>
<string name="error_invalid_bill_owers">所有者が必要</string>
<string name="error_no_network">ネットワーク接続がありません</string>
<string name="error_server">サーバーエラー</string>
<string name="error_io">サーバー接続が切断されました</string>
<string name="error_share_impossible">このプロジェクトを共有できません</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Nextcloudアカウントに接続</string>
<string name="drawer_last_sync">最終同期: %1$02d:%2$02d</string>
<string name="simple_cancel">キャンセル</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">OK</string>
<string name="simple_yes">はい</string>
<string name="simple_no">いいえ</string>
<string name="simple_close">閉じる</string>
<!-- Settings -->
<string name="settings_appearance">外観</string>
<string name="settings_network">ネットワーク</string>
<string name="settings_other">その他</string>
<string name="settings_night_mode">テーマ</string>
<string name="settings_offline_mode">オフラインモード</string>
<string name="settings_offline_mode_summary">手動同期のみ。</string>
<string name="settings_color_custom">カスタムカラー</string>
<string name="settings_color_mode">色の選択</string>
<string name="settings_show_archived">アーカイブされたプロジェクトを表示</string>
<string name="settings_beta_features">ベータ版の機能</string>
<string name="settings_beta_features_summary">実験的な機能を有効にします。自己責任で使用してください。</string>
<string name="settings_url_warn_http">警告: \"http\"は安全ではありません。\"https\"を使用してください。</string>
<string name="settings_colorpicker_title">色を選択</string>
<string name="pref_value_color_system">システム</string>
<string name="pref_value_color_server">Nextcloud:</string>
<string name="pref_value_color_manual">マニュアル</string>
<string name="pref_value_theme_light">ライト</string>
<string name="pref_value_theme_dark">ダーク</string>
<string name="pref_value_theme_system">システムをフォロー</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">繰り返しなし</string>
<string name="repeat_day">毎日</string>
<string name="repeat_week">Weekly</string>
<string name="repeat_fortnight">四十夜</string>
<string name="repeat_month">月ごと</string>
<string name="repeat_year">年ごと</string>
<string name="payment_mode_none">なし</string>
<string name="payment_mode_all">すべて</string>
<string name="payment_mode_credit_card">クレジットカード</string>
<string name="payment_mode_cash">現金</string>
<string name="payment_mode_check">チェック</string>
<string name="payment_mode_online">オンライン</string>
<string name="payment_mode_transfer">送金</string>
<string name="category_none">なし</string>
<string name="category_all">すべて</string>
<string name="category_all_except_reimbursement">払い戻し以外のすべて</string>
<string name="category_groceries">食料品店</string>
<string name="category_leisure">バー/パーティー</string>
<string name="category_rent">レンタル</string>
<string name="category_bills">請求書:</string>
<string name="category_excursion">エクスカーション/文化</string>
<string name="category_health">健康</string>
<string name="category_shopping">ショッピング</string>
<string name="category_reimbursement">払い戻し額</string>
<string name="category_restaurant">レストラン</string>
<string name="category_accomodation">宿泊施設</string>
<string name="category_transport">交通</string>
<string name="category_sport">スポーツ</string>
<!-- Project specific -->
<string name="new_project_action">What</string>
<string name="new_project_where">場所</string>
<string name="where_local">ローカルのみ</string>
<string name="where_cospend">Cospend</string>
<string name="where_ihatemoney">IHateMoney</string>
<string name="todo_join">既存のプロジェクトに参加</string>
<string name="todo_create">新しいプロジェクトを作成</string>
<string name="import_tooltip">ファイルからインポート</string>
<string name="choose_account_project_dialog_title">プロジェクトを選択</string>
<string name="choose_account_project_dialog_impossible">このアカウントにはプロジェクトが見つかりません。</string>
<string name="choose_project_management_action">プロジェクト</string>
<string name="project_added_success">プロジェクトが正常に追加されました。</string>
<string name="no_projects_text">プロジェクトはまだありません。</string>
<string name="configure_account_choice">Nextcloudアカウントの設定</string>
<string name="add_project_choice">プロジェクトを手動で追加</string>
<string name="no_members_text">このプロジェクトにはメンバーがいません。</string>
<string name="no_bills_text">請求書が見つかりません。</string>
<string name="member_already_exists">メンバーは既に存在します。</string>
<string name="activity_dialog_title">プロジェクト: %1$s</string>
<string name="remove_project_confirmation">プロジェクト %1$s が削除されました。</string>
<string name="file_saved_success">ファイルを保存しました: %1$s</string>
<string name="import_error_header">%d 行目のインポートに失敗しました</string>
<string name="import_error_date">%d 行目に不正な日付形式があります</string>
<string name="import_error_owers">行 %d に無効な所有者がいます</string>
<string name="add_member_dialog_title">メンバーを追加</string>
<string name="edit_member_dialog_title">メンバーを編集</string>
<string name="member_edit_delete">削除</string>
<string name="project_edition_no_change">保存する変更はありません。</string>
<!-- Settlement -->
<string name="center_none">なし (最適)</string>
<string name="settle_who">誰が支払うか</string>
<string name="settle_to_whom">誰に</string>
<string name="settle_how_much">金額</string>
<string name="simple_settle_share">共有</string>
<string name="simple_create_bills">請求書を作成</string>
<string name="settle_bill_what">受領日</string>
<!-- Currencies -->
<string name="currency_dialog_title">通貨を選択 (%s)</string>
<string name="setting_none">なし</string>
<string name="setting_all">すべて</string>
<string name="currency_saved_success">通貨設定を保存しました。</string>
<string name="main_currency">主な通貨</string>
<!-- Statistics -->
<string name="label_bills_suggested">おすすめのカテゴリ</string>
<string name="label_bills_skip">スキップ</string>
<string name="stats_date_min">差出人:</string>
<string name="stats_date_max">終了日</string>
<string name="stats_who">メンバー</string>
<string name="stats_paid">支払い済み</string>
<string name="stats_spent">使用済み:</string>
<string name="stats_balance">残高</string>
<string name="total">合計: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">接続に失敗しました: %1$s</string>
<string name="error_create_remote_project_helper">作成失敗: %1$s</string>
<string name="error_edit_remote_project_helper">リモートプロジェクトの更新中にエラーが発生しました: %1$s</string>
<string name="remote_project_operation_no_network">リモート操作でネットワークを利用できません。</string>
<string name="error_scanning_bill_qr_code">QRコードの解析に失敗しました。</string>
<string name="error_token_mismatch">認証トークンが一致しません。もう一度ログインしてください。</string>
<string name="insufficient_access_level">このアクションを実行する権限がありません。</string>
<string name="delete_label_confirmation_title">ラベルを削除</string>
<string name="delete_label_confirmation_message">このラベルを削除してもよろしいですか?</string>
<!-- About -->
<string name="about_version">バージョン %1$s</string>
<string name="about_maintainer_title">メンテナー</string>
<string name="about_license_title">ライセンス</string>
<string name="about_source_title">ソース コード</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">プロジェクト %1$s</string>
<string name="share_chooser_title">%1$sを共有</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Cowspent</string>
<!-- Actions -->
<string name="action_new_bill">New bill</string>
<string name="action_add_project">Add project</string>
<string name="action_save">Save</string>
<string name="action_edit">Edit</string>
<string name="action_share">Share</string>
<string name="action_search">Search</string>
<string name="action_delete">Delete</string>
<string name="action_archive">Archive</string>
<string name="action_unarchive">Unarchive</string>
<string name="action_export">Export</string>
<string name="action_stats">Stats</string>
<string name="action_settle">Settle</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Settings</string>
<string name="action_label_bills">Label missing categories</string>
<string name="action_logout">Logout</string>
<string name="action_connect">Connect</string>
<string name="action_discard">Discard</string>
<string name="action_members">Members</string>
<string name="action_labels">Labels</string>
<string name="action_currencies">Currencies</string>
<!-- Titles -->
<string name="title_stats">Statistics</string>
<string name="title_edit_project">Edit project</string>
<string name="title_label_bills">Label Bills</string>
<string name="title_labels">Manage Labels</string>
<string name="title_about">About</string>
<string name="title_settle">Settle Project</string>
<string name="title_share">Share Project</string>
<string name="title_add_project">Add Project</string>
<string name="title_add_category">Add Category</string>
<string name="title_add_payment_mode">Add Payment Mode</string>
<string name="title_account">Nextcloud Account</string>
<string name="title_share_web">Web link</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">Are you sure?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">All bills</string>
<string name="label_categories">Categories</string>
<string name="label_payment_modes">Payment Modes</string>
<string name="label_name">Name</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Color</string>
<string name="label_weight">Weight</string>
<string name="label_activated">Activated</string>
<string name="label_password">Password</string>
<string name="label_email">E-mail</string>
<string name="label_url">Server address</string>
<string name="label_username">Username</string>
<string name="label_comment">Comment</string>
<string name="label_what">What?</string>
<string name="label_payer">Who paid?</string>
<string name="label_owers">For whom?</string>
<string name="label_repeat">Repeat every</string>
<string name="label_mode">Mode</string>
<string name="label_category">Category</string>
<string name="label_project_id">Project ID/name</string>
<string name="label_project_title">Project title</string>
<string name="label_use_sso">Use Nextcloud App Account</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Unsaved changes</string>
<string name="dialog_unsaved_changes_msg">Save changes before leaving?</string>
<string name="dialog_confirm_remove_project_msg">The remote project will not be deleted.</string>
<string name="dialog_sync_error_title">Sync error</string>
<string name="dialog_sync_error_msg">Sync failed for %1$s.\n\n%2$s</string>
<string name="dialog_balanced_msg">Expenses are already balanced.</string>
<string name="msg_project_added">Project %1$s added</string>
<string name="msg_bill_labeled_done">All bills labeled</string>
<string name="msg_no_suggestions">No suggestions</string>
<string name="msg_auth_warning">Requires Cospend v0.3.4+.</string>
<string name="msg_link_copied">Link copied to clipboard</string>
<string name="msg_share_qr">Scan QR code or share the link to join.</string>
<string name="msg_share_web">Link for web browser access.</string>
<string name="msg_share_qr_warn">Share this link with a Cowspent user.</string>
<string name="msg_settle_intro">Settlement for %1$s:</string>
<string name="msg_settle_sentence">%1$s owes %3$.2f to %2$s</string>
<string name="msg_stats_intro">Stats for %1$s:</string>
<string name="msg_stats_header">Member (Paid | Spent | Balance)</string>
<string name="msg_logged_in_as">Logged in as %1$s</string>
<!-- Errors -->
<string name="error_generic">Error</string>
<string name="error_loading">Loading</string>
<string name="error_no_projects">No projects found</string>
<string name="error_no_members">No members found</string>
<string name="error_no_bills">No bills found</string>
<string name="error_no_member">At least one member required</string>
<string name="error_maintenance_mode">Server is in maintenance mode</string>
<string name="error_400">400 Bad request</string>
<string name="error_401">401 Unauthorized</string>
<string name="error_403">403 Forbidden</string>
<string name="error_404">404 Not Found</string>
<string name="error_sync">Sync failed: %1$s</string>
<string name="error_invalid_login">Invalid login: %1$s</string>
<string name="error_auth">Wrong username or password</string>
<string name="error_json">Invalid server response</string>
<string name="error_req_failed">Request failed</string>
<string name="error_invalid_email">Invalid e-mail</string>
<string name="error_invalid_project_id">Invalid project ID</string>
<string name="error_invalid_project_name">Invalid project title</string>
<string name="error_invalid_bill_name">Invalid bill name</string>
<string name="error_invalid_bill_date">Invalid bill date</string>
<string name="error_invalid_bill_payer">Payer required</string>
<string name="error_invalid_bill_owers">Owers required</string>
<string name="error_no_network">No network connection</string>
<string name="error_server">Server error</string>
<string name="error_io">Server connection broken</string>
<string name="error_share_impossible">Cannot share this project</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Connect to Nextcloud account</string>
<string name="drawer_last_sync">Last sync: %1$02d:%2$02d</string>
<string name="simple_cancel">Cancel</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">Ok</string>
<string name="simple_yes">Yes</string>
<string name="simple_no">No</string>
<string name="simple_close">Close</string>
<!-- Settings -->
<string name="settings_appearance">Appearance</string>
<string name="settings_network">Network</string>
<string name="settings_other">Other</string>
<string name="settings_night_mode">Theme</string>
<string name="settings_offline_mode">Offline mode</string>
<string name="settings_offline_mode_summary">Only sync manually.</string>
<string name="settings_color_custom">Custom color</string>
<string name="settings_color_mode">Color Selection</string>
<string name="settings_show_archived">Show archived projects</string>
<string name="settings_beta_features">Beta Features</string>
<string name="settings_beta_features_summary">Enable experimental features. Use at your own risk.</string>
<string name="settings_url_warn_http">WARNING: \"http\" is unsafe. Use \"https\".</string>
<string name="settings_colorpicker_title">Choose Color</string>
<string name="pref_value_color_system">System</string>
<string name="pref_value_color_server">Nextcloud</string>
<string name="pref_value_color_manual">Manual</string>
<string name="pref_value_theme_light">Light</string>
<string name="pref_value_theme_dark">Dark</string>
<string name="pref_value_theme_system">Follow system</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">No repeat</string>
<string name="repeat_day">Daily</string>
<string name="repeat_week">Weekly</string>
<string name="repeat_fortnight">Fortnightly</string>
<string name="repeat_month">Monthly</string>
<string name="repeat_year">Yearly</string>
<string name="payment_mode_none">None</string>
<string name="payment_mode_all">All</string>
<string name="payment_mode_credit_card">Credit card</string>
<string name="payment_mode_cash">Cash</string>
<string name="payment_mode_check">Check</string>
<string name="payment_mode_online">Online</string>
<string name="payment_mode_transfer">Transfer</string>
<string name="category_none">None</string>
<string name="category_all">All</string>
<string name="category_all_except_reimbursement">All except reimbursement</string>
<string name="category_groceries">Grocery</string>
<string name="category_leisure">Bar/Party</string>
<string name="category_rent">Rent</string>
<string name="category_bills">Bill</string>
<string name="category_excursion">Excursion/Culture</string>
<string name="category_health">Health</string>
<string name="category_shopping">Shopping</string>
<string name="category_reimbursement">Reimbursement</string>
<string name="category_restaurant">Restaurant</string>
<string name="category_accomodation">Accommodation</string>
<string name="category_transport">Transport</string>
<string name="category_sport">Sport</string>
<!-- Project specific -->
<string name="new_project_action">What</string>
<string name="new_project_where">Where</string>
<string name="where_local">Local only</string>
<string name="where_cospend">Cospend</string>
<string name="where_ihatemoney">IHateMoney</string>
<string name="todo_join">Join existing project</string>
<string name="todo_create">Create new project</string>
<string name="import_tooltip">Import from file</string>
<string name="choose_account_project_dialog_title">Choose project</string>
<string name="choose_account_project_dialog_impossible">No projects found on this account.</string>
<string name="choose_project_management_action">Project</string>
<string name="project_added_success">Project added successfully.</string>
<string name="no_projects_text">You have no projects yet.</string>
<string name="configure_account_choice">Configure Nextcloud account</string>
<string name="add_project_choice">Add project manually</string>
<string name="no_members_text">No members in this project.</string>
<string name="no_bills_text">No bills found.</string>
<string name="member_already_exists">Member already exists.</string>
<string name="activity_dialog_title">Project: %1$s</string>
<string name="remove_project_confirmation">Project %1$s removed.</string>
<string name="file_saved_success">File saved: %1$s</string>
<string name="import_error_header">Import failed at row %d</string>
<string name="import_error_date">Invalid date format at row %d</string>
<string name="import_error_owers">Invalid owers at row %d</string>
<string name="add_member_dialog_title">Add Member</string>
<string name="edit_member_dialog_title">Edit Member</string>
<string name="member_edit_delete">Delete</string>
<string name="project_edition_no_change">No changes to save.</string>
<!-- Settlement -->
<string name="center_none">None (Optimal)</string>
<string name="settle_who">Who pays</string>
<string name="settle_to_whom">To whom</string>
<string name="settle_how_much">Amount</string>
<string name="simple_settle_share">Share</string>
<string name="simple_create_bills">Create bills</string>
<string name="settle_bill_what">Settlement</string>
<!-- Currencies -->
<string name="currency_dialog_title">Choose Currency (%s)</string>
<string name="setting_none">None</string>
<string name="setting_all">All</string>
<string name="currency_saved_success">Currency settings saved.</string>
<string name="main_currency">Main Currency</string>
<!-- Statistics -->
<string name="label_bills_suggested">Suggested Categories</string>
<string name="label_bills_skip">Skip</string>
<string name="stats_date_min">From</string>
<string name="stats_date_max">To</string>
<string name="stats_who">Member</string>
<string name="stats_paid">Paid</string>
<string name="stats_spent">Spent</string>
<string name="stats_balance">Balance</string>
<string name="total">Total: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">Connection failed: %1$s</string>
<string name="error_create_remote_project_helper">Creation failed: %1$s</string>
<string name="error_edit_remote_project_helper">Error updating remote project: %1$s</string>
<string name="remote_project_operation_no_network">Network unavailable for remote operation.</string>
<string name="error_scanning_bill_qr_code">Failed to parse QR code.</string>
<string name="error_token_mismatch">Authentication token mismatch. Please log in again.</string>
<string name="insufficient_access_level">You don\'t have permission to perform this action.</string>
<string name="delete_label_confirmation_title">Delete Label</string>
<string name="delete_label_confirmation_message">Are you sure you want to delete this label?</string>
<!-- About -->
<string name="about_version">Version %1$s</string>
<string name="about_maintainer_title">Maintainer</string>
<string name="about_license_title">License</string>
<string name="about_source_title">Source code</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Project %1$s</string>
<string name="share_chooser_title">Share %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Gekocht</string>
<!-- Actions -->
<string name="action_new_bill">Nieuwe rekening</string>
<string name="action_add_project">Project toevoegen</string>
<string name="action_save">Opslaan</string>
<string name="action_edit">Bewerken</string>
<string name="action_share">Delen</string>
<string name="action_search">Zoeken</string>
<string name="action_delete">Verwijderen</string>
<string name="action_archive">Archief</string>
<string name="action_unarchive">Dearchiveren</string>
<string name="action_export">Exporteren</string>
<string name="action_stats">Statistieken</string>
<string name="action_settle">Schikken</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Instellingen</string>
<string name="action_label_bills">Label ontbrekende categorieën</string>
<string name="action_logout">Afmelden</string>
<string name="action_connect">Verbinden</string>
<string name="action_discard">Weggooien</string>
<string name="action_members">leden</string>
<string name="action_labels">Labels</string>
<string name="action_currencies">Valuta\'s</string>
<!-- Titles -->
<string name="title_stats">Statistieken</string>
<string name="title_edit_project">Bewerk project</string>
<string name="title_label_bills">Label rekeningen</string>
<string name="title_labels">Labels beheren</string>
<string name="title_about">Informatie</string>
<string name="title_settle">Project schikken</string>
<string name="title_share">Project delen</string>
<string name="title_add_project">Project toevoegen</string>
<string name="title_add_category">Categorie toevoegen</string>
<string name="title_add_payment_mode">Betalingsmodus toevoegen</string>
<string name="title_account">Nextcloud account</string>
<string name="title_share_web">Weblink</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">Weet je het zeker?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">Alle rekeningen</string>
<string name="label_categories">Categoriechar@@0n</string>
<string name="label_payment_modes">Betalings modi</string>
<string name="label_name">naam</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Kleur</string>
<string name="label_weight">Gewicht</string>
<string name="label_activated">Geactiveerd</string>
<string name="label_password">Wachtwoord</string>
<string name="label_email">E-mailadres</string>
<string name="label_url">Server adres</string>
<string name="label_username">Gebruikersnaam</string>
<string name="label_comment">Opmerking</string>
<string name="label_what">Wat?</string>
<string name="label_payer">Wie heeft betaald?</string>
<string name="label_owers">Voor wie?</string>
<string name="label_repeat">Herhaal elke</string>
<string name="label_mode">Modus</string>
<string name="label_category">categorie</string>
<string name="label_project_id">Project ID/naam</string>
<string name="label_project_title">Project titel</string>
<string name="label_use_sso">Gebruik Nextcloud account</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Niet-opgeslagen wijzigingen</string>
<string name="dialog_unsaved_changes_msg">Wijzigingen opslaan voor verlaten?</string>
<string name="dialog_confirm_remove_project_msg">Het externe project wordt niet verwijderd.</string>
<string name="dialog_sync_error_title">Synchronisatie fout</string>
<string name="dialog_sync_error_msg">Synchronisatie mislukt voor %1$s.\n\n%2$s</string>
<string name="dialog_balanced_msg">Uitgaven zijn al in evenwicht.</string>
<string name="msg_project_added">Project %1$s toegevoegd</string>
<string name="msg_bill_labeled_done">Alle contracten gelabeld</string>
<string name="msg_no_suggestions">Geen suggesties</string>
<string name="msg_auth_warning">Vereist Cospend-v0.3.4+.</string>
<string name="msg_link_copied">Link gekopieerd naar klembord</string>
<string name="msg_share_qr">Scan QR-code of deel de link om je aan te sluiten.</string>
<string name="msg_share_web">Link voor toegang tot de webbrowser.</string>
<string name="msg_share_qr_warn">Deel deze link met een Cowspent gebruiker.</string>
<string name="msg_settle_intro">Afwikkeling voor %1$s:</string>
<string name="msg_settle_sentence">%1$s is %3$.2f verschuldigd aan %2$s</string>
<string name="msg_stats_intro">Statistieken voor %1$s:</string>
<string name="msg_stats_header">Lid ((Paid →Besteed Balance)</string>
<string name="msg_logged_in_as">Ingelogd als %1$s</string>
<!-- Errors -->
<string name="error_generic">Foutmelding</string>
<string name="error_loading">Laden...</string>
<string name="error_no_projects">Geen projecten gevonden</string>
<string name="error_no_members">Geen deelnemers gevonden</string>
<string name="error_no_bills">Geen contracten gevonden</string>
<string name="error_no_member">Ten minste één lid vereist</string>
<string name="error_maintenance_mode">Server is in onderhoudsmodus</string>
<string name="error_400">400 Slechte aanvraag</string>
<string name="error_401">401 Ongeautoriseerd</string>
<string name="error_403">403 Verboden</string>
<string name="error_404">404 niet gevonden</string>
<string name="error_sync">Synchronisatie mislukt: %1$s</string>
<string name="error_invalid_login">Ongeldige login: %1$s</string>
<string name="error_auth">Verkeerde gebruikersnaam of wachtwoord</string>
<string name="error_json">Ongeldige serverreactie</string>
<string name="error_req_failed">Verzoek mislukt</string>
<string name="error_invalid_email">Ongeldig e-mailadres</string>
<string name="error_invalid_project_id">Ongeldig project ID</string>
<string name="error_invalid_project_name">Ongeldige projecttitel</string>
<string name="error_invalid_bill_name">Ongeldige rekeningnaam</string>
<string name="error_invalid_bill_date">Ongeldige rekeningdatum</string>
<string name="error_invalid_bill_payer">Betaler vereist</string>
<string name="error_invalid_bill_owers">Owers vereist</string>
<string name="error_no_network">Geen netwerkverbinding</string>
<string name="error_server">Server fout</string>
<string name="error_io">Verbinding met server verbroken</string>
<string name="error_share_impossible">Kan dit project niet delen</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Verbinding maken met Nextcloud account</string>
<string name="drawer_last_sync">Laatste synchronisatie: %1$02d:%2$02d</string>
<string name="simple_cancel">annuleren</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">OK</string>
<string name="simple_yes">ja</string>
<string name="simple_no">Neen</string>
<string name="simple_close">Afsluiten</string>
<!-- Settings -->
<string name="settings_appearance">Uiterlijk</string>
<string name="settings_network">Netwerk</string>
<string name="settings_other">anders</string>
<string name="settings_night_mode">Thema</string>
<string name="settings_offline_mode">Offline modus</string>
<string name="settings_offline_mode_summary">Alleen handmatig synchroniseren.</string>
<string name="settings_color_custom">Aangepaste kleur</string>
<string name="settings_color_mode">Kleur Selectie</string>
<string name="settings_show_archived">Gearchiveerde projecten weergeven</string>
<string name="settings_beta_features">Beta Functies</string>
<string name="settings_beta_features_summary">Experimentele functies inschakelen. Gebruik op eigen risico.</string>
<string name="settings_url_warn_http">WAARSCHUWING: \"http\" is onveilig. Gebruik \"https\".</string>
<string name="settings_colorpicker_title">Kies kleur</string>
<string name="pref_value_color_system">Systeem</string>
<string name="pref_value_color_server">Nextcloud</string>
<string name="pref_value_color_manual">Handleiding</string>
<string name="pref_value_theme_light">Licht</string>
<string name="pref_value_theme_dark">Donker</string>
<string name="pref_value_theme_system">Volg systeem</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">Geen herhaling</string>
<string name="repeat_day">Dagelijks</string>
<string name="repeat_week">wekelijks</string>
<string name="repeat_fortnight">Tweewekelijks</string>
<string name="repeat_month">maandelijks</string>
<string name="repeat_year">Jaarlijks</string>
<string name="payment_mode_none">geen</string>
<string name="payment_mode_all">Allemaal</string>
<string name="payment_mode_credit_card">Creditcard bestellen</string>
<string name="payment_mode_cash">Contant</string>
<string name="payment_mode_check">Controleer</string>
<string name="payment_mode_online">Online</string>
<string name="payment_mode_transfer">Overschrijving</string>
<string name="category_none">geen</string>
<string name="category_all">Allemaal</string>
<string name="category_all_except_reimbursement">Alles behalve terugbetaling</string>
<string name="category_groceries">Kruidenier</string>
<string name="category_leisure">Bar/Feest</string>
<string name="category_rent">Huur</string>
<string name="category_bills">Rekening</string>
<string name="category_excursion">Excursie/cultuur</string>
<string name="category_health">Gezondheid</string>
<string name="category_shopping">Winkelen</string>
<string name="category_reimbursement">Vergoeding</string>
<string name="category_restaurant">Restaurant</string>
<string name="category_accomodation">Accommodatie</string>
<string name="category_transport">Vervoer</string>
<string name="category_sport">Sport</string>
<!-- Project specific -->
<string name="new_project_action">Wat</string>
<string name="new_project_where">Waar</string>
<string name="where_local">Alleen lokaal</string>
<string name="where_cospend">Coderen</string>
<string name="where_ihatemoney">IHateMoney</string>
<string name="todo_join">Deelnemen aan bestaand project</string>
<string name="todo_create">Nieuw project aanmaken</string>
<string name="import_tooltip">Importeren uit bestand</string>
<string name="choose_account_project_dialog_title">Kies project</string>
<string name="choose_account_project_dialog_impossible">Geen projecten gevonden op dit account.</string>
<string name="choose_project_management_action">Project</string>
<string name="project_added_success">Project succesvol toegevoegd.</string>
<string name="no_projects_text">U heeft nog geen projecten.</string>
<string name="configure_account_choice">Configureer Nextcloud account</string>
<string name="add_project_choice">Project handmatig toevoegen</string>
<string name="no_members_text">Geen deelnemers in dit project.</string>
<string name="no_bills_text">Geen contracten gevonden.</string>
<string name="member_already_exists">Lid bestaat al.</string>
<string name="activity_dialog_title">Project: %1$s</string>
<string name="remove_project_confirmation">Project %1$s verwijderd.</string>
<string name="file_saved_success">Bestand opgeslagen: %1$s</string>
<string name="import_error_header">Importeren mislukt op rij %d</string>
<string name="import_error_date">Ongeldige datumnotatie op rij %d</string>
<string name="import_error_owers">Ongeldige owers op rij %d</string>
<string name="add_member_dialog_title">Lid toevoegen</string>
<string name="edit_member_dialog_title">Lid bewerken</string>
<string name="member_edit_delete">Verwijderen</string>
<string name="project_edition_no_change">Geen wijzigingen om op te slaan.</string>
<!-- Settlement -->
<string name="center_none">Geen (Optimaal)</string>
<string name="settle_who">Wie betaalt</string>
<string name="settle_to_whom">Naar wie</string>
<string name="settle_how_much">Hoeveelheid</string>
<string name="simple_settle_share">Delen</string>
<string name="simple_create_bills">Rekeningen aanmaken</string>
<string name="settle_bill_what">Afwikkeling</string>
<!-- Currencies -->
<string name="currency_dialog_title">Kies valuta (%s)</string>
<string name="setting_none">geen</string>
<string name="setting_all">Allemaal</string>
<string name="currency_saved_success">Valuta-instellingen opgeslagen.</string>
<string name="main_currency">Belangrijkste valuta</string>
<!-- Statistics -->
<string name="label_bills_suggested">Voorgestelde categorieën</string>
<string name="label_bills_skip">Overslaan</string>
<string name="stats_date_min">van</string>
<string name="stats_date_max">tot</string>
<string name="stats_who">Lid</string>
<string name="stats_paid">Betaald</string>
<string name="stats_spent">Uitgegeven</string>
<string name="stats_balance">Saldo</string>
<string name="total">Totaal: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">Verbinding mislukt: %1$s</string>
<string name="error_create_remote_project_helper">Aanmaken mislukt: %1$s</string>
<string name="error_edit_remote_project_helper">Fout bij het bijwerken van extern project: %1$s</string>
<string name="remote_project_operation_no_network">Netwerk niet beschikbaar voor operatie op afstand.</string>
<string name="error_scanning_bill_qr_code">Fout bij het verwerken van QR-code.</string>
<string name="error_token_mismatch">Authenticatie token komt niet overeen. Log opnieuw in.</string>
<string name="insufficient_access_level">Je hebt geen toestemming om deze actie uit te voeren.</string>
<string name="delete_label_confirmation_title">Label verwijderen</string>
<string name="delete_label_confirmation_message">Weet u zeker dat u dit label wilt verwijderen?</string>
<!-- About -->
<string name="about_version">Versie %1$s</string>
<string name="about_maintainer_title">Beheerder</string>
<string name="about_license_title">Licentie</string>
<string name="about_source_title">Bron code</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Project %1$s</string>
<string name="share_chooser_title">Delen %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Kowspent</string>
<!-- Actions -->
<string name="action_new_bill">Ny regning</string>
<string name="action_add_project">Legg til prosjekt</string>
<string name="action_save">Lagre</string>
<string name="action_edit">Rediger</string>
<string name="action_share">Del</string>
<string name="action_search">Søk</string>
<string name="action_delete">Slett</string>
<string name="action_archive">Arkiv</string>
<string name="action_unarchive">Avarkiver</string>
<string name="action_export">Eksporter</string>
<string name="action_stats">Statistikk</string>
<string name="action_settle">Betal</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Innstillinger</string>
<string name="action_label_bills">Etiketten mangler kategorier</string>
<string name="action_logout">Logg</string>
<string name="action_connect">Nettverk</string>
<string name="action_discard">Forkast</string>
<string name="action_members">Medlemmer</string>
<string name="action_labels">Etiketter</string>
<string name="action_currencies">Valutaer</string>
<!-- Titles -->
<string name="title_stats">Statistikk</string>
<string name="title_edit_project">Endre prosjekt</string>
<string name="title_label_bills">Etikett regninger</string>
<string name="title_labels">Administrer etiketter</string>
<string name="title_about">Om</string>
<string name="title_settle">Oppgjør Prosjekt</string>
<string name="title_share">Del prosjeket</string>
<string name="title_add_project">Legg til prosjekt</string>
<string name="title_add_category">Legg til kategori</string>
<string name="title_add_payment_mode">Legg til betalingsmodus</string>
<string name="title_account">Nextcloud konto</string>
<string name="title_share_web">Nettlenke</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">Er du sikker?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">Alle regninger</string>
<string name="label_categories">Kategorier</string>
<string name="label_payment_modes">Betalings modus</string>
<string name="label_name">Navn</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Farge</string>
<string name="label_weight">Vekt</string>
<string name="label_activated">Aktivert</string>
<string name="label_password">Passord</string>
<string name="label_email">E-post</string>
<string name="label_url">Server adresse</string>
<string name="label_username">Brukernavn</string>
<string name="label_comment">Kommentar</string>
<string name="label_what">Hva?</string>
<string name="label_payer">Hvem betalt?</string>
<string name="label_owers">For hvem?</string>
<string name="label_repeat">Gjenta hver</string>
<string name="label_mode">Modus</string>
<string name="label_category">Kategori</string>
<string name="label_project_id">Prosjektets ID/navn</string>
<string name="label_project_title">Tittel på prosjektet</string>
<string name="label_use_sso">Bruk Nextcloud App-konto</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Ulagrede endringer</string>
<string name="dialog_unsaved_changes_msg">Lagre endringer før du drar?</string>
<string name="dialog_confirm_remove_project_msg">Det eksterne prosjektet vil ikke bli slettet.</string>
<string name="dialog_sync_error_title">Feil med synkronisering</string>
<string name="dialog_sync_error_msg">Synkronisering feilet for %1$s.\n\n%2$s</string>
<string name="dialog_balanced_msg">Utgifter er allerede balanserte.</string>
<string name="msg_project_added">Prosjekt %1$s lagt til</string>
<string name="msg_bill_labeled_done">Alle regninger merket</string>
<string name="msg_no_suggestions">Ingen forslag</string>
<string name="msg_auth_warning">Krever Cospend v0.3.4+.</string>
<string name="msg_link_copied">Kobling kopiert til utklippstavlen</string>
<string name="msg_share_qr">Skann QR-kode eller del lenken for å bli med.</string>
<string name="msg_share_web">Lenke for tilgang til nettleser.</string>
<string name="msg_share_qr_warn">Del denne lenken med en bruker i nærområdet.</string>
<string name="msg_settle_intro">Avgjøring for %1$s:</string>
<string name="msg_settle_sentence">%1$s owes %3$.2f to %2$s</string>
<string name="msg_stats_intro">Statistikk for %1$s:</string>
<string name="msg_stats_header">Medlem (hjelpemiddel for sprøytestatistikk Balance)</string>
<string name="msg_logged_in_as">Logget inn som %1$s</string>
<!-- Errors -->
<string name="error_generic">Feil</string>
<string name="error_loading">Laster</string>
<string name="error_no_projects">Ingen prosjekter funnet</string>
<string name="error_no_members">Ingen medlemmer funnet</string>
<string name="error_no_bills">Ingen regninger funnet</string>
<string name="error_no_member">Minst ett medlem som kreves</string>
<string name="error_maintenance_mode">Serveren er i vedlikeholdsmodus</string>
<string name="error_400">400 ugyldig forespørsel</string>
<string name="error_401">401 Uautorisert</string>
<string name="error_403">403 forbudt</string>
<string name="error_404">404 ikke funnet</string>
<string name="error_sync">Synkronisering feilet: %1$s</string>
<string name="error_invalid_login">Ugyldig innlogging: %1$s</string>
<string name="error_auth">Feil brukernavn eller passord</string>
<string name="error_json">Ugyldig svar fra tjeneren</string>
<string name="error_req_failed">Forespørselen mislyktes</string>
<string name="error_invalid_email">Ugyldig e-post</string>
<string name="error_invalid_project_id">Ugyldig prosjekt-ID</string>
<string name="error_invalid_project_name">Ugyldig prosjekttittel</string>
<string name="error_invalid_bill_name">Ugyldig faktureringsnavn</string>
<string name="error_invalid_bill_date">Ugyldig faktureringsdato</string>
<string name="error_invalid_bill_payer">Betalingsgiver kreves</string>
<string name="error_invalid_bill_owers">Eier kreves</string>
<string name="error_no_network">Ingen nettverkstilkobling</string>
<string name="error_server">Server feil</string>
<string name="error_io">Server-tilkobling ødelagt</string>
<string name="error_share_impossible">Kan ikke dele dette prosjektet</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Koble til Nextcloud konto</string>
<string name="drawer_last_sync">Siste synkronisering: %1$02d:%2$02d</string>
<string name="simple_cancel">Avbryt</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">OK</string>
<string name="simple_yes">Ja</string>
<string name="simple_no">Nei</string>
<string name="simple_close">Lukk</string>
<!-- Settings -->
<string name="settings_appearance">Utseende</string>
<string name="settings_network">Nettverk</string>
<string name="settings_other">Annet</string>
<string name="settings_night_mode">Tema</string>
<string name="settings_offline_mode">Frakoblet modus</string>
<string name="settings_offline_mode_summary">Bare synkroniser manuelt.</string>
<string name="settings_color_custom">Tilpasset farge</string>
<string name="settings_color_mode">Farge Valg</string>
<string name="settings_show_archived">Vis arkiverte prosjekter</string>
<string name="settings_beta_features">Beta-funksjoner</string>
<string name="settings_beta_features_summary">Aktiver eksperimentelle funksjoner. Bruk på eget ansvar.</string>
<string name="settings_url_warn_http">ADVARSEL: «http» er usikkert. Bruk «https».</string>
<string name="settings_colorpicker_title">Velg farge</string>
<string name="pref_value_color_system">Systemadministrasjon</string>
<string name="pref_value_color_server">Nextcloud</string>
<string name="pref_value_color_manual">Manuell</string>
<string name="pref_value_theme_light">Lys</string>
<string name="pref_value_theme_dark">Mørk</string>
<string name="pref_value_theme_system">Følg system</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">Ingen gjentakelse</string>
<string name="repeat_day">Daglig</string>
<string name="repeat_week">Ukentlig</string>
<string name="repeat_fortnight">Nattlig</string>
<string name="repeat_month">Månedlig</string>
<string name="repeat_year">Årlig</string>
<string name="payment_mode_none">Ingen</string>
<string name="payment_mode_all">Alle</string>
<string name="payment_mode_credit_card">Kredittkort</string>
<string name="payment_mode_cash">Kontant</string>
<string name="payment_mode_check">Sjekk</string>
<string name="payment_mode_online">Pålogget</string>
<string name="payment_mode_transfer">Overfør</string>
<string name="category_none">Ingen</string>
<string name="category_all">Alle</string>
<string name="category_all_except_reimbursement">Alt unntatt refusjon</string>
<string name="category_groceries">Dagligvare</string>
<string name="category_leisure">Bar/Party</string>
<string name="category_rent">Lei</string>
<string name="category_bills">Regning</string>
<string name="category_excursion">Eksurering/Kultur</string>
<string name="category_health">Helse</string>
<string name="category_shopping">Handling</string>
<string name="category_reimbursement">Refusjon</string>
<string name="category_restaurant">Resturant</string>
<string name="category_accomodation">Overnatting</string>
<string name="category_transport">Transporter</string>
<string name="category_sport">Sport</string>
<!-- Project specific -->
<string name="new_project_action">Hva</string>
<string name="new_project_where">Hvor</string>
<string name="where_local">Kun lokalt</string>
<string name="where_cospend">evangeliet</string>
<string name="where_ihatemoney">IHatePenger</string>
<string name="todo_join">Delta i eksisterende prosjekt</string>
<string name="todo_create">Opprett nytt prosjekt</string>
<string name="import_tooltip">Importer fra fil</string>
<string name="choose_account_project_dialog_title">Velg prosjekt</string>
<string name="choose_account_project_dialog_impossible">Ingen prosjekter ble funnet på denne kontoen.</string>
<string name="choose_project_management_action">Prosjekt</string>
<string name="project_added_success">Prosjektet ble lagt til.</string>
<string name="no_projects_text">Du har ingen prosjekter ennå.</string>
<string name="configure_account_choice">Konfigurer Nextcloud konto</string>
<string name="add_project_choice">Legg til prosjekt manuelt</string>
<string name="no_members_text">Ingen medlemmer i dette prosjektet.</string>
<string name="no_bills_text">Ingen regninger funnet.</string>
<string name="member_already_exists">Medlem finnes allerede.</string>
<string name="activity_dialog_title">Prosjekt: %1$s</string>
<string name="remove_project_confirmation">Prosjektet %1$s fjernet.</string>
<string name="file_saved_success">Fil lagret: %1$s</string>
<string name="import_error_header">Import failed at row %d</string>
<string name="import_error_date">Ugyldig dato format ved rad %d</string>
<string name="import_error_owers">Ugyldige doser på rad %d</string>
<string name="add_member_dialog_title">Legg til medlem</string>
<string name="edit_member_dialog_title">Rediger medlem</string>
<string name="member_edit_delete">Slett</string>
<string name="project_edition_no_change">Ingen endringer å lagre.</string>
<!-- Settlement -->
<string name="center_none">Ingen (optimalt)</string>
<string name="settle_who">Hvem betaler</string>
<string name="settle_to_whom">Til hvem</string>
<string name="settle_how_much">Beløp</string>
<string name="simple_settle_share">Del</string>
<string name="simple_create_bills">Opprett regninger</string>
<string name="settle_bill_what">Oppgjør</string>
<!-- Currencies -->
<string name="currency_dialog_title">Velg valuta (%s)</string>
<string name="setting_none">Ingen</string>
<string name="setting_all">Alle</string>
<string name="currency_saved_success">Valuta innstillinger lagret.</string>
<string name="main_currency">Hoved valuta</string>
<!-- Statistics -->
<string name="label_bills_suggested">Foreslåtte kategorier</string>
<string name="label_bills_skip">Hopp</string>
<string name="stats_date_min">Fra</string>
<string name="stats_date_max">Til</string>
<string name="stats_who">Medlem</string>
<string name="stats_paid">Betalt</string>
<string name="stats_spent">Brukt</string>
<string name="stats_balance">Balanse</string>
<string name="total">Totalt: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">Tilkobling mislyktes: %1$s</string>
<string name="error_create_remote_project_helper">Creation failed: %1$s</string>
<string name="error_edit_remote_project_helper">Feil ved oppdatering av fjernprosjektet: %1$s</string>
<string name="remote_project_operation_no_network">Nettverk er ikke tilgjengelig for ekstern operasjon.</string>
<string name="error_scanning_bill_qr_code">Kunne ikke analysere QR-kode.</string>
<string name="error_token_mismatch">Feil ved godkjenningstoken. Vennligst logg inn på nytt.</string>
<string name="insufficient_access_level">Du har ikke tillatelse til å gjøre denne handlingen.</string>
<string name="delete_label_confirmation_title">Slett etikett</string>
<string name="delete_label_confirmation_message">Er du sikker på at du vil slette dette merket?</string>
<!-- About -->
<string name="about_version">Versjon %1$s</string>
<string name="about_maintainer_title">Vedlikeholdere</string>
<string name="about_license_title">Lisens</string>
<string name="about_source_title">Kildekode</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Prosjekt %1$s</string>
<string name="share_chooser_title">Del %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Krowy wydane</string>
<!-- Actions -->
<string name="action_new_bill">Nowy rachunek</string>
<string name="action_add_project">Dodaj projekt</string>
<string name="action_save">Zapisz</string>
<string name="action_edit">Edytuj</string>
<string name="action_share">Udostępnij</string>
<string name="action_search">Szukaj</string>
<string name="action_delete">Usuń</string>
<string name="action_archive">Archiwum</string>
<string name="action_unarchive">Usuń z archiwum</string>
<string name="action_export">Eksportuj</string>
<string name="action_stats">Statystyki</string>
<string name="action_settle">Utrata</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Ustawienia</string>
<string name="action_label_bills">Brakujące kategorie etykiet</string>
<string name="action_logout">Wyloguj się</string>
<string name="action_connect">Połącz</string>
<string name="action_discard">Odrzuć</string>
<string name="action_members">Członkowie</string>
<string name="action_labels">Etykiety</string>
<string name="action_currencies">Waluty</string>
<!-- Titles -->
<string name="title_stats">Statystyki</string>
<string name="title_edit_project">Edytuj projekt</string>
<string name="title_label_bills">Etykiety rachunków</string>
<string name="title_labels">Zarządzaj etykietami</string>
<string name="title_about">O programie</string>
<string name="title_settle">Ustawiony projekt</string>
<string name="title_share">Udostępnij projekt</string>
<string name="title_add_project">Dodaj projekt</string>
<string name="title_add_category">Dodaj kategorię</string>
<string name="title_add_payment_mode">Dodaj tryb płatności</string>
<string name="title_account">Konto Nextcloud</string>
<string name="title_share_web">Link internetowy</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">Jesteś pewien?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">Wszystkie rachunki</string>
<string name="label_categories">Kategorie</string>
<string name="label_payment_modes">Tryby płatności</string>
<string name="label_name">Nazwisko</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Kolor</string>
<string name="label_weight">Waga</string>
<string name="label_activated">Aktywowano</string>
<string name="label_password">Hasło</string>
<string name="label_email">E-mail</string>
<string name="label_url">Adres serwera</string>
<string name="label_username">Nazwa użytkownika</string>
<string name="label_comment">Komentarz</string>
<string name="label_what">Co?</string>
<string name="label_payer">Kto zapłacił?</string>
<string name="label_owers">Dla kogo?</string>
<string name="label_repeat">Powtarzaj co</string>
<string name="label_mode">Tryb</string>
<string name="label_category">Kategoria</string>
<string name="label_project_id">Identyfikator/nazwa projektu</string>
<string name="label_project_title">Tytuł projektu</string>
<string name="label_use_sso">Użyj konta aplikacji Nextcloud</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Niezapisane zmiany</string>
<string name="dialog_unsaved_changes_msg">Zapisać zmiany przed wyjściem?</string>
<string name="dialog_confirm_remove_project_msg">Zdalny projekt nie zostanie usunięty.</string>
<string name="dialog_sync_error_title">Błąd synchronizacji</string>
<string name="dialog_sync_error_msg">Synchronizacja %1$snie powiodła się.\n\n%2$s</string>
<string name="dialog_balanced_msg">Wydatki są już zrównoważone.</string>
<string name="msg_project_added">Projekt %1$s dodany</string>
<string name="msg_bill_labeled_done">Wszystkie rachunki oznaczone</string>
<string name="msg_no_suggestions">Brak sugestii</string>
<string name="msg_auth_warning">Wymaga Dołączyć v0.3.4+.</string>
<string name="msg_link_copied">Link skopiowany do schowka</string>
<string name="msg_share_qr">Zeskanuj kod QR lub udostępnij link, aby dołączyć.</string>
<string name="msg_share_web">Link dostępu do przeglądarki internetowej.</string>
<string name="msg_share_qr_warn">Udostępnij ten link użytkownikowi Cowspent</string>
<string name="msg_settle_intro">Rozliczenie dla %1$s:</string>
<string name="msg_settle_sentence">%1$s jest winny %3$.2f do %2$s</string>
<string name="msg_stats_intro">Statystyki dla %1$s:</string>
<string name="msg_stats_header">Członek (Pomoc | Wydano | Saldo)</string>
<string name="msg_logged_in_as">Zalogowano jako %1$s</string>
<!-- Errors -->
<string name="error_generic">Błąd</string>
<string name="error_loading">Ładowanie</string>
<string name="error_no_projects">Nie znaleziono projektów</string>
<string name="error_no_members">Nie znaleziono członków</string>
<string name="error_no_bills">Nie znaleziono rachunków</string>
<string name="error_no_member">Wymagany co najmniej jeden członek</string>
<string name="error_maintenance_mode">Serwer jest w trybie konserwacji</string>
<string name="error_400">400 błędnych żądań</string>
<string name="error_401">401 Nieautoryzowany</string>
<string name="error_403">403 Zabronione</string>
<string name="error_404">404 Nie znaleziono</string>
<string name="error_sync">Synchronizacja nie powiodła się: %1$s</string>
<string name="error_invalid_login">Nieprawidłowy login: %1$s</string>
<string name="error_auth">Nieprawidłowa nazwa użytkownika lub hasło</string>
<string name="error_json">Nieprawidłowa odpowiedź serwera</string>
<string name="error_req_failed">Żądanie nie powiodło się</string>
<string name="error_invalid_email">Nieprawidłowy adres e-mail</string>
<string name="error_invalid_project_id">Nieprawidłowy identyfikator projektu</string>
<string name="error_invalid_project_name">Nieprawidłowy tytuł projektu</string>
<string name="error_invalid_bill_name">Nieprawidłowa nazwa rachunku</string>
<string name="error_invalid_bill_date">Nieprawidłowa data rozliczenia</string>
<string name="error_invalid_bill_payer">Wymagany płatnik</string>
<string name="error_invalid_bill_owers">Wymagane jest posiadanie</string>
<string name="error_no_network">Brak połączenia sieciowego</string>
<string name="error_server">Błąd serwera</string>
<string name="error_io">Połączenie z serwerem przerwane</string>
<string name="error_share_impossible">Nie można udostępnić tego projektu</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Połącz z kontem Nextcloud</string>
<string name="drawer_last_sync">Ostatnia synchronizacja: %1$02d:%2$02d</string>
<string name="simple_cancel">Anuluj</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">Ok</string>
<string name="simple_yes">Tak</string>
<string name="simple_no">Nie</string>
<string name="simple_close">Zamknij</string>
<!-- Settings -->
<string name="settings_appearance">Wygląd</string>
<string name="settings_network">Sieć</string>
<string name="settings_other">Inne</string>
<string name="settings_night_mode">Motyw</string>
<string name="settings_offline_mode">Tryb offline</string>
<string name="settings_offline_mode_summary">Synchronizuj tylko ręcznie.</string>
<string name="settings_color_custom">Własny kolor</string>
<string name="settings_color_mode">Wybór koloru</string>
<string name="settings_show_archived">Pokaż zarchiwizowane projekty</string>
<string name="settings_beta_features">Funkcje Beta</string>
<string name="settings_beta_features_summary">Włącz funkcje eksperymentalne. Używaj na własne ryzyko.</string>
<string name="settings_url_warn_http">OSTRZEŻENIE: \"http\" jest niebezpieczny. Użyj \"https\".</string>
<string name="settings_colorpicker_title">Wybierz kolor</string>
<string name="pref_value_color_system">System</string>
<string name="pref_value_color_server">Nextcloud</string>
<string name="pref_value_color_manual">Ręcznie</string>
<string name="pref_value_theme_light">Światło</string>
<string name="pref_value_theme_dark">Ciemny</string>
<string name="pref_value_theme_system">Śledź system</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">Brak powtórzeń</string>
<string name="repeat_day">Codziennie</string>
<string name="repeat_week">Tygodniowo</string>
<string name="repeat_fortnight">Co dwa tygodnie</string>
<string name="repeat_month">Miesięczny</string>
<string name="repeat_year">Rocznie</string>
<string name="payment_mode_none">Brak</string>
<string name="payment_mode_all">Wszystkie</string>
<string name="payment_mode_credit_card">Karta kredytowa</string>
<string name="payment_mode_cash">Gotówka</string>
<string name="payment_mode_check">Sprawdzanie</string>
<string name="payment_mode_online">Dostępny</string>
<string name="payment_mode_transfer">Przelew</string>
<string name="category_none">Brak</string>
<string name="category_all">Wszystkie</string>
<string name="category_all_except_reimbursement">Wszystkie z wyjątkiem zwrotu</string>
<string name="category_groceries">Żywność</string>
<string name="category_leisure">Pasek/Impreza</string>
<string name="category_rent">Wynajem</string>
<string name="category_bills">Rachunek</string>
<string name="category_excursion">Eksploatacja/kultura</string>
<string name="category_health">Zdrowie</string>
<string name="category_shopping">Zakupy</string>
<string name="category_reimbursement">Zwrot kosztów</string>
<string name="category_restaurant">Restauracja</string>
<string name="category_accomodation">Zakwaterowanie</string>
<string name="category_transport">Transport</string>
<string name="category_sport">Sport</string>
<!-- Project specific -->
<string name="new_project_action">Co</string>
<string name="new_project_where">Gdzie</string>
<string name="where_local">Tylko lokalne</string>
<string name="where_cospend">Dołącz</string>
<string name="where_ihatemoney">IHateMoney</string>
<string name="todo_join">Dołącz do istniejącego projektu</string>
<string name="todo_create">Utwórz nowy projekt</string>
<string name="import_tooltip">Importuj z pliku</string>
<string name="choose_account_project_dialog_title">Wybierz projekt</string>
<string name="choose_account_project_dialog_impossible">Nie znaleziono projektów na tym koncie.</string>
<string name="choose_project_management_action">Projekt</string>
<string name="project_added_success">Projekt dodany pomyślnie.</string>
<string name="no_projects_text">Nie masz jeszcze żadnych projektów.</string>
<string name="configure_account_choice">Konfiguruj konto Nextcloud</string>
<string name="add_project_choice">Dodaj projekt ręcznie</string>
<string name="no_members_text">Brak członków w tym projekcie.</string>
<string name="no_bills_text">Nie znaleziono rachunków.</string>
<string name="member_already_exists">Użytkownik już istnieje.</string>
<string name="activity_dialog_title">Projekt: %1$s</string>
<string name="remove_project_confirmation">Projekt %1$s usunięty.</string>
<string name="file_saved_success">Plik zapisany: %1$s</string>
<string name="import_error_header">Importowanie nie powiodło się w wierszu %d</string>
<string name="import_error_date">Nieprawidłowy format daty w wierszu %d</string>
<string name="import_error_owers">Niepoprawne owce w wierszu %d</string>
<string name="add_member_dialog_title">Dodaj członka</string>
<string name="edit_member_dialog_title">Edytuj członka</string>
<string name="member_edit_delete">Usuń</string>
<string name="project_edition_no_change">Brak zmian do zapisu.</string>
<!-- Settlement -->
<string name="center_none">Brak (Optymalny)</string>
<string name="settle_who">Kto płaci</string>
<string name="settle_to_whom">Do kogo</string>
<string name="settle_how_much">Kwota</string>
<string name="simple_settle_share">Udostępnij</string>
<string name="simple_create_bills">Utwórz rachunki</string>
<string name="settle_bill_what">Rozliczenie</string>
<!-- Currencies -->
<string name="currency_dialog_title">Wybierz walutę (%s)</string>
<string name="setting_none">Brak</string>
<string name="setting_all">Wszystkie</string>
<string name="currency_saved_success">Zapisano ustawienia waluty.</string>
<string name="main_currency">Waluta główna</string>
<!-- Statistics -->
<string name="label_bills_suggested">Sugerowane kategorie</string>
<string name="label_bills_skip">Pomiń</string>
<string name="stats_date_min">Od</string>
<string name="stats_date_max">Do</string>
<string name="stats_who">Członek</string>
<string name="stats_paid">Zapłacone</string>
<string name="stats_spent">Wydano</string>
<string name="stats_balance">Saldo</string>
<string name="total">Razem: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">Połączenie nie powiodło się: %1$s</string>
<string name="error_create_remote_project_helper">Utworzenie nie powiodło się: %1$s</string>
<string name="error_edit_remote_project_helper">Błąd podczas aktualizacji zdalnego projektu: %1$s</string>
<string name="remote_project_operation_no_network">Sieć niedostępna dla zdalnej operacji.</string>
<string name="error_scanning_bill_qr_code">Nie udało się przetworzyć kodu QR.</string>
<string name="error_token_mismatch">Nieprawidłowy token uwierzytelniania. Zaloguj się ponownie.</string>
<string name="insufficient_access_level">Nie masz uprawnień do wykonania tej czynności.</string>
<string name="delete_label_confirmation_title">Usuń etykietę</string>
<string name="delete_label_confirmation_message">Czy na pewno chcesz usunąć tę etykietę?</string>
<!-- About -->
<string name="about_version">Wersja %1$s</string>
<string name="about_maintainer_title">Opiekun</string>
<string name="about_license_title">Licencja</string>
<string name="about_source_title">Kod źródłowy</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Projekt %1$s</string>
<string name="share_chooser_title">Udostępnij %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Covarde</string>
<!-- Actions -->
<string name="action_new_bill">Nova fatura</string>
<string name="action_add_project">Adicionar projeto</string>
<string name="action_save">Guardar</string>
<string name="action_edit">Alterar</string>
<string name="action_share">Compartilhar</string>
<string name="action_search">Pesquisa</string>
<string name="action_delete">excluir</string>
<string name="action_archive">Arquivo</string>
<string name="action_unarchive">Desarquivar</string>
<string name="action_export">Exportação</string>
<string name="action_stats">Estatísticas</string>
<string name="action_settle">Liquidar</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Confirgurações</string>
<string name="action_label_bills">Categorias faltando</string>
<string name="action_logout">Desconectar</string>
<string name="action_connect">Conectar</string>
<string name="action_discard">Descartar</string>
<string name="action_members">membros</string>
<string name="action_labels">Marcadores</string>
<string name="action_currencies">Moedas</string>
<!-- Titles -->
<string name="title_stats">estatísticas</string>
<string name="title_edit_project">Editar projeto</string>
<string name="title_label_bills">Rótulo de Faturas</string>
<string name="title_labels">Gerenciar Marcadores</string>
<string name="title_about">SOBRE</string>
<string name="title_settle">Resolver o Projeto</string>
<string name="title_share">Compartilhar Projeto</string>
<string name="title_add_project">Adicionar Projeto</string>
<string name="title_add_category">Adicionar Categoria</string>
<string name="title_add_payment_mode">Adicionar modo de pagamento</string>
<string name="title_account">Conta Nextcloud</string>
<string name="title_share_web">Link da Web</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">Você tem certeza?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">Todas as contas</string>
<string name="label_categories">categorias</string>
<string name="label_payment_modes">Modos de Pagamento</string>
<string name="label_name">Nome:</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Cor</string>
<string name="label_weight">Peso</string>
<string name="label_activated">Ativado</string>
<string name="label_password">Palavra-passe</string>
<string name="label_email">e-mail</string>
<string name="label_url">Endereço do servidor</string>
<string name="label_username">Usuário:</string>
<string name="label_comment">Comentar</string>
<string name="label_what">Quê?</string>
<string name="label_payer">Quem pagou?</string>
<string name="label_owers">Para quem?</string>
<string name="label_repeat">Repita a cada</string>
<string name="label_mode">Modo</string>
<string name="label_category">categoria</string>
<string name="label_project_id">ID/nome do projeto</string>
<string name="label_project_title">Título do projeto</string>
<string name="label_use_sso">Usar Conta do App Nextcloud</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Alterações não salvas</string>
<string name="dialog_unsaved_changes_msg">Salvar as alterações antes de sair?</string>
<string name="dialog_confirm_remove_project_msg">O projeto remoto não será excluído.</string>
<string name="dialog_sync_error_title">Erro de sincronização</string>
<string name="dialog_sync_error_msg">A sincronização falhou para %1$s.\n\n%2$s</string>
<string name="dialog_balanced_msg">As despesas já estão equilibradas.</string>
<string name="msg_project_added">Projeto %1$s adicionado</string>
<string name="msg_bill_labeled_done">Todas as faturas rotuladas</string>
<string name="msg_no_suggestions">Não há sugestões</string>
<string name="msg_auth_warning">Requer Cospend v0.3.4+.</string>
<string name="msg_link_copied">Link copiado para área de transferência</string>
<string name="msg_share_qr">Escaneie o código QR ou compartilhe o link para entrar.</string>
<string name="msg_share_web">Link para acesso ao navegador web.</string>
<string name="msg_share_qr_warn">Compartilhe este link com um usuário CowGed.</string>
<string name="msg_settle_intro">Assentamento para %1$s:</string>
<string name="msg_settle_sentence">%1$s deve %3$.2f a %2$s</string>
<string name="msg_stats_intro">Estatísticas para %1$s:</string>
<string name="msg_stats_header">Membro (Ajuda-Gasto Balanço)</string>
<string name="msg_logged_in_as">Sessão iniciada como %1$s</string>
<!-- Errors -->
<string name="error_generic">ERRO</string>
<string name="error_loading">Carregando...</string>
<string name="error_no_projects">Nenhum projeto encontrado</string>
<string name="error_no_members">Nenhum membro encontrado</string>
<string name="error_no_bills">Nenhuma conta encontrada</string>
<string name="error_no_member">Pelo menos um membro é obrigatório</string>
<string name="error_maintenance_mode">O servidor está em modo de manutenção</string>
<string name="error_400">Solicitação inválida</string>
<string name="error_401">401 Não Autorizado</string>
<string name="error_403">403 Proibido</string>
<string name="error_404">404 Não Encontrado</string>
<string name="error_sync">Falha de sincronização: %1$s</string>
<string name="error_invalid_login">Login inválido: %1$s</string>
<string name="error_auth">Nome de usuário ou senha incorretos</string>
<string name="error_json">Resposta do servidor inválida</string>
<string name="error_req_failed">Falha na solicitação</string>
<string name="error_invalid_email">E-mail inválido</string>
<string name="error_invalid_project_id">ID do projeto inválido</string>
<string name="error_invalid_project_name">Título do projeto inválido</string>
<string name="error_invalid_bill_name">Nome de conta inválido</string>
<string name="error_invalid_bill_date">Data de fatura inválida</string>
<string name="error_invalid_bill_payer">Pagador necessário</string>
<string name="error_invalid_bill_owers">Proprietários obrigatórios</string>
<string name="error_no_network">Nenhuma conexão de rede</string>
<string name="error_server">Erro no servidor</string>
<string name="error_io">Conexão com o servidor interrompida</string>
<string name="error_share_impossible">Não é possível compartilhar este projeto</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Conectar à conta da Nextcloud</string>
<string name="drawer_last_sync">Última sincronização: %1$02d:%2$02d</string>
<string name="simple_cancel">cancelar</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">OK</string>
<string name="simple_yes">sim</string>
<string name="simple_no">Não</string>
<string name="simple_close">FECHAR</string>
<!-- Settings -->
<string name="settings_appearance">Aparência</string>
<string name="settings_network">Rede</string>
<string name="settings_other">Outros</string>
<string name="settings_night_mode">Tema</string>
<string name="settings_offline_mode">Modo offline</string>
<string name="settings_offline_mode_summary">Sincronizar apenas manualmente.</string>
<string name="settings_color_custom">Cor personalizada</string>
<string name="settings_color_mode">Seleção de Cor</string>
<string name="settings_show_archived">Mostrar projetos arquivados</string>
<string name="settings_beta_features">Recursos Beta</string>
<string name="settings_beta_features_summary">Habilite recursos experimentais. Use a seu próprio risco.</string>
<string name="settings_url_warn_http">AVISO: \"http\" não é seguro. Use \"https\".</string>
<string name="settings_colorpicker_title">Escolha a cor</string>
<string name="pref_value_color_system">SISTEMA</string>
<string name="pref_value_color_server">Nextcloud</string>
<string name="pref_value_color_manual">Manualmente</string>
<string name="pref_value_theme_light">Fino</string>
<string name="pref_value_theme_dark">Escuro</string>
<string name="pref_value_theme_system">Seguir sistema</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">Não repetir</string>
<string name="repeat_day">Diariamente</string>
<string name="repeat_week">Semanalmente</string>
<string name="repeat_fortnight">Quinzenal</string>
<string name="repeat_month">Mensual</string>
<string name="repeat_year">Anualmente</string>
<string name="payment_mode_none">Nenhuma</string>
<string name="payment_mode_all">TODOS</string>
<string name="payment_mode_credit_card">Cartão de crédito</string>
<string name="payment_mode_cash">Dinheiro</string>
<string name="payment_mode_check">Verificar</string>
<string name="payment_mode_online">Disponível</string>
<string name="payment_mode_transfer">Transferência</string>
<string name="category_none">Nenhuma</string>
<string name="category_all">TODOS</string>
<string name="category_all_except_reimbursement">Todos, exceto o reembolso</string>
<string name="category_groceries">Mercearia</string>
<string name="category_leisure">Barra/Party</string>
<string name="category_rent">Aluguel</string>
<string name="category_bills">Faturar</string>
<string name="category_excursion">Excursão/Cultura</string>
<string name="category_health">Vida</string>
<string name="category_shopping">Compras</string>
<string name="category_reimbursement">Reembolso</string>
<string name="category_restaurant">Restaurante</string>
<string name="category_accomodation">Acomodação</string>
<string name="category_transport">Transporte</string>
<string name="category_sport">Esporte</string>
<!-- Project specific -->
<string name="new_project_action">O</string>
<string name="new_project_where">Onde</string>
<string name="where_local">Apenas local</string>
<string name="where_cospend">Cosdar</string>
<string name="where_ihatemoney">Dinheiro</string>
<string name="todo_join">Junte-se ao projeto existente</string>
<string name="todo_create">Criar novo projeto</string>
<string name="import_tooltip">Importar do arquivo</string>
<string name="choose_account_project_dialog_title">Escolher projeto</string>
<string name="choose_account_project_dialog_impossible">Nenhum projeto encontrado nesta conta.</string>
<string name="choose_project_management_action">Projecto</string>
<string name="project_added_success">Projeto adicionado com sucesso.</string>
<string name="no_projects_text">Você ainda não tem nenhum projeto.</string>
<string name="configure_account_choice">Configurar conta Nextcloud</string>
<string name="add_project_choice">Adicionar projeto manualmente</string>
<string name="no_members_text">Nenhum membro neste projeto.</string>
<string name="no_bills_text">Nenhuma conta encontrada.</string>
<string name="member_already_exists">Membro já existe.</string>
<string name="activity_dialog_title">Projeto: %1$s</string>
<string name="remove_project_confirmation">Projeto %1$s removido.</string>
<string name="file_saved_success">Arquivo salvo: %1$s</string>
<string name="import_error_header">Importação falhou na linha %d</string>
<string name="import_error_date">Formato de data inválido na linha %d</string>
<string name="import_error_owers">Linhas inválidas na linha %d</string>
<string name="add_member_dialog_title">Adicionar Membro</string>
<string name="edit_member_dialog_title">Editar Membro</string>
<string name="member_edit_delete">excluir</string>
<string name="project_edition_no_change">Sem alterações para salvar.</string>
<!-- Settlement -->
<string name="center_none">Nenhum (Profissional)</string>
<string name="settle_who">Quem paga</string>
<string name="settle_to_whom">A quem</string>
<string name="settle_how_much">Quantidade</string>
<string name="simple_settle_share">Compartilhar</string>
<string name="simple_create_bills">Criar faturas</string>
<string name="settle_bill_what">Liquidação</string>
<!-- Currencies -->
<string name="currency_dialog_title">Escolher Moeda (%s)</string>
<string name="setting_none">Nenhuma</string>
<string name="setting_all">TODOS</string>
<string name="currency_saved_success">Configurações de moeda salvas.</string>
<string name="main_currency">Moeda Principal</string>
<!-- Statistics -->
<string name="label_bills_suggested">Categorias Sugeridas</string>
<string name="label_bills_skip">Ignorar</string>
<string name="stats_date_min">De</string>
<string name="stats_date_max">Para</string>
<string name="stats_who">Membro</string>
<string name="stats_paid">Paga</string>
<string name="stats_spent">Gasto</string>
<string name="stats_balance">Saldo</string>
<string name="total">Total: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">A conexão falhou: %1$s</string>
<string name="error_create_remote_project_helper">Falha na criação: %1$s</string>
<string name="error_edit_remote_project_helper">Erro ao atualizar projeto remoto: %1$s</string>
<string name="remote_project_operation_no_network">Rede indisponível para operação remota.</string>
<string name="error_scanning_bill_qr_code">Falha ao analisar o código QR.</string>
<string name="error_token_mismatch">Token de autenticação incompatível. Por favor, faça login novamente.</string>
<string name="insufficient_access_level">Você não tem permissão para executar esta ação</string>
<string name="delete_label_confirmation_title">Excluir etiqueta</string>
<string name="delete_label_confirmation_message">Você tem certeza que deseja excluir este marcador?</string>
<!-- About -->
<string name="about_version">Versão %1$s</string>
<string name="about_maintainer_title">Mantenedor</string>
<string name="about_license_title">Tipo:</string>
<string name="about_source_title">Código fonte</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Projeto %1$s</string>
<string name="share_chooser_title">Compartilhar %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Covarde</string>
<!-- Actions -->
<string name="action_new_bill">Nova fatura</string>
<string name="action_add_project">Adicionar projeto</string>
<string name="action_save">Guardar</string>
<string name="action_edit">Alterar</string>
<string name="action_share">Compartilhar</string>
<string name="action_search">Pesquisa</string>
<string name="action_delete">excluir</string>
<string name="action_archive">Arquivo</string>
<string name="action_unarchive">Desarquivar</string>
<string name="action_export">Exportação</string>
<string name="action_stats">Estatísticas</string>
<string name="action_settle">Liquidar</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Confirgurações</string>
<string name="action_label_bills">Categorias faltando</string>
<string name="action_logout">Desconectar</string>
<string name="action_connect">Conectar</string>
<string name="action_discard">Descartar</string>
<string name="action_members">membros</string>
<string name="action_labels">Marcadores</string>
<string name="action_currencies">Moedas</string>
<!-- Titles -->
<string name="title_stats">estatísticas</string>
<string name="title_edit_project">Editar projeto</string>
<string name="title_label_bills">Rótulo de Faturas</string>
<string name="title_labels">Gerenciar Marcadores</string>
<string name="title_about">SOBRE</string>
<string name="title_settle">Resolver o Projeto</string>
<string name="title_share">Compartilhar Projeto</string>
<string name="title_add_project">Adicionar Projeto</string>
<string name="title_add_category">Adicionar Categoria</string>
<string name="title_add_payment_mode">Adicionar modo de pagamento</string>
<string name="title_account">Conta Nextcloud</string>
<string name="title_share_web">Link da Web</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">Você tem certeza?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">Todas as contas</string>
<string name="label_categories">categorias</string>
<string name="label_payment_modes">Modos de Pagamento</string>
<string name="label_name">Nome:</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Cor</string>
<string name="label_weight">Peso</string>
<string name="label_activated">Ativado</string>
<string name="label_password">Palavra-passe</string>
<string name="label_email">e-mail</string>
<string name="label_url">Endereço do servidor</string>
<string name="label_username">Usuário:</string>
<string name="label_comment">Comentar</string>
<string name="label_what">Quê?</string>
<string name="label_payer">Quem pagou?</string>
<string name="label_owers">Para quem?</string>
<string name="label_repeat">Repita a cada</string>
<string name="label_mode">Modo</string>
<string name="label_category">categoria</string>
<string name="label_project_id">ID/nome do projeto</string>
<string name="label_project_title">Título do projeto</string>
<string name="label_use_sso">Usar Conta do App Nextcloud</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Alterações não salvas</string>
<string name="dialog_unsaved_changes_msg">Salvar as alterações antes de sair?</string>
<string name="dialog_confirm_remove_project_msg">O projeto remoto não será excluído.</string>
<string name="dialog_sync_error_title">Erro de sincronização</string>
<string name="dialog_sync_error_msg">A sincronização falhou para %1$s.\n\n%2$s</string>
<string name="dialog_balanced_msg">As despesas já estão equilibradas.</string>
<string name="msg_project_added">Projeto %1$s adicionado</string>
<string name="msg_bill_labeled_done">Todas as faturas rotuladas</string>
<string name="msg_no_suggestions">Não há sugestões</string>
<string name="msg_auth_warning">Requer Cospend v0.3.4+.</string>
<string name="msg_link_copied">Link copiado para área de transferência</string>
<string name="msg_share_qr">Escaneie o código QR ou compartilhe o link para entrar.</string>
<string name="msg_share_web">Link para acesso ao navegador web.</string>
<string name="msg_share_qr_warn">Compartilhe este link com um usuário CowGed.</string>
<string name="msg_settle_intro">Assentamento para %1$s:</string>
<string name="msg_settle_sentence">%1$s deve %3$.2f a %2$s</string>
<string name="msg_stats_intro">Estatísticas para %1$s:</string>
<string name="msg_stats_header">Membro (Ajuda-Gasto Balanço)</string>
<string name="msg_logged_in_as">Sessão iniciada como %1$s</string>
<!-- Errors -->
<string name="error_generic">ERRO</string>
<string name="error_loading">Carregando...</string>
<string name="error_no_projects">Nenhum projeto encontrado</string>
<string name="error_no_members">Nenhum membro encontrado</string>
<string name="error_no_bills">Nenhuma conta encontrada</string>
<string name="error_no_member">Pelo menos um membro é obrigatório</string>
<string name="error_maintenance_mode">O servidor está em modo de manutenção</string>
<string name="error_400">Solicitação inválida</string>
<string name="error_401">401 Não Autorizado</string>
<string name="error_403">403 Proibido</string>
<string name="error_404">404 Não Encontrado</string>
<string name="error_sync">Falha de sincronização: %1$s</string>
<string name="error_invalid_login">Login inválido: %1$s</string>
<string name="error_auth">Nome de usuário ou senha incorretos</string>
<string name="error_json">Resposta do servidor inválida</string>
<string name="error_req_failed">Falha na solicitação</string>
<string name="error_invalid_email">E-mail inválido</string>
<string name="error_invalid_project_id">ID do projeto inválido</string>
<string name="error_invalid_project_name">Título do projeto inválido</string>
<string name="error_invalid_bill_name">Nome de conta inválido</string>
<string name="error_invalid_bill_date">Data de fatura inválida</string>
<string name="error_invalid_bill_payer">Pagador necessário</string>
<string name="error_invalid_bill_owers">Proprietários obrigatórios</string>
<string name="error_no_network">Nenhuma conexão de rede</string>
<string name="error_server">Erro no servidor</string>
<string name="error_io">Conexão com o servidor interrompida</string>
<string name="error_share_impossible">Não é possível compartilhar este projeto</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Conectar à conta da Nextcloud</string>
<string name="drawer_last_sync">Última sincronização: %1$02d:%2$02d</string>
<string name="simple_cancel">cancelar</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">OK</string>
<string name="simple_yes">sim</string>
<string name="simple_no">Não</string>
<string name="simple_close">FECHAR</string>
<!-- Settings -->
<string name="settings_appearance">Aparência</string>
<string name="settings_network">Rede</string>
<string name="settings_other">Outros</string>
<string name="settings_night_mode">Tema</string>
<string name="settings_offline_mode">Modo offline</string>
<string name="settings_offline_mode_summary">Sincronizar apenas manualmente.</string>
<string name="settings_color_custom">Cor personalizada</string>
<string name="settings_color_mode">Seleção de Cor</string>
<string name="settings_show_archived">Mostrar projetos arquivados</string>
<string name="settings_beta_features">Recursos Beta</string>
<string name="settings_beta_features_summary">Habilite recursos experimentais. Use a seu próprio risco.</string>
<string name="settings_url_warn_http">AVISO: \"http\" não é seguro. Use \"https\".</string>
<string name="settings_colorpicker_title">Escolha a cor</string>
<string name="pref_value_color_system">SISTEMA</string>
<string name="pref_value_color_server">Nextcloud</string>
<string name="pref_value_color_manual">Manualmente</string>
<string name="pref_value_theme_light">Fino</string>
<string name="pref_value_theme_dark">Escuro</string>
<string name="pref_value_theme_system">Seguir sistema</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">Não repetir</string>
<string name="repeat_day">Diariamente</string>
<string name="repeat_week">Semanalmente</string>
<string name="repeat_fortnight">Quinzenal</string>
<string name="repeat_month">Mensual</string>
<string name="repeat_year">Anualmente</string>
<string name="payment_mode_none">Nenhuma</string>
<string name="payment_mode_all">TODOS</string>
<string name="payment_mode_credit_card">Cartão de crédito</string>
<string name="payment_mode_cash">Dinheiro</string>
<string name="payment_mode_check">Verificar</string>
<string name="payment_mode_online">Disponível</string>
<string name="payment_mode_transfer">Transferência</string>
<string name="category_none">Nenhuma</string>
<string name="category_all">TODOS</string>
<string name="category_all_except_reimbursement">Todos, exceto o reembolso</string>
<string name="category_groceries">Mercearia</string>
<string name="category_leisure">Barra/Party</string>
<string name="category_rent">Aluguel</string>
<string name="category_bills">Faturar</string>
<string name="category_excursion">Excursão/Cultura</string>
<string name="category_health">Vida</string>
<string name="category_shopping">Compras</string>
<string name="category_reimbursement">Reembolso</string>
<string name="category_restaurant">Restaurante</string>
<string name="category_accomodation">Acomodação</string>
<string name="category_transport">Transporte</string>
<string name="category_sport">Esporte</string>
<!-- Project specific -->
<string name="new_project_action">O</string>
<string name="new_project_where">Onde</string>
<string name="where_local">Apenas local</string>
<string name="where_cospend">Cosdar</string>
<string name="where_ihatemoney">Dinheiro</string>
<string name="todo_join">Junte-se ao projeto existente</string>
<string name="todo_create">Criar novo projeto</string>
<string name="import_tooltip">Importar do arquivo</string>
<string name="choose_account_project_dialog_title">Escolher projeto</string>
<string name="choose_account_project_dialog_impossible">Nenhum projeto encontrado nesta conta.</string>
<string name="choose_project_management_action">Projecto</string>
<string name="project_added_success">Projeto adicionado com sucesso.</string>
<string name="no_projects_text">Você ainda não tem nenhum projeto.</string>
<string name="configure_account_choice">Configurar conta Nextcloud</string>
<string name="add_project_choice">Adicionar projeto manualmente</string>
<string name="no_members_text">Nenhum membro neste projeto.</string>
<string name="no_bills_text">Nenhuma conta encontrada.</string>
<string name="member_already_exists">Membro já existe.</string>
<string name="activity_dialog_title">Projeto: %1$s</string>
<string name="remove_project_confirmation">Projeto %1$s removido.</string>
<string name="file_saved_success">Arquivo salvo: %1$s</string>
<string name="import_error_header">Importação falhou na linha %d</string>
<string name="import_error_date">Formato de data inválido na linha %d</string>
<string name="import_error_owers">Linhas inválidas na linha %d</string>
<string name="add_member_dialog_title">Adicionar Membro</string>
<string name="edit_member_dialog_title">Editar Membro</string>
<string name="member_edit_delete">excluir</string>
<string name="project_edition_no_change">Sem alterações para salvar.</string>
<!-- Settlement -->
<string name="center_none">Nenhum (Profissional)</string>
<string name="settle_who">Quem paga</string>
<string name="settle_to_whom">A quem</string>
<string name="settle_how_much">Quantidade</string>
<string name="simple_settle_share">Compartilhar</string>
<string name="simple_create_bills">Criar faturas</string>
<string name="settle_bill_what">Liquidação</string>
<!-- Currencies -->
<string name="currency_dialog_title">Escolher Moeda (%s)</string>
<string name="setting_none">Nenhuma</string>
<string name="setting_all">TODOS</string>
<string name="currency_saved_success">Configurações de moeda salvas.</string>
<string name="main_currency">Moeda Principal</string>
<!-- Statistics -->
<string name="label_bills_suggested">Categorias Sugeridas</string>
<string name="label_bills_skip">Ignorar</string>
<string name="stats_date_min">De</string>
<string name="stats_date_max">Para</string>
<string name="stats_who">Membro</string>
<string name="stats_paid">Paga</string>
<string name="stats_spent">Gasto</string>
<string name="stats_balance">Saldo</string>
<string name="total">Total: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">A conexão falhou: %1$s</string>
<string name="error_create_remote_project_helper">Falha na criação: %1$s</string>
<string name="error_edit_remote_project_helper">Erro ao atualizar projeto remoto: %1$s</string>
<string name="remote_project_operation_no_network">Rede indisponível para operação remota.</string>
<string name="error_scanning_bill_qr_code">Falha ao analisar o código QR.</string>
<string name="error_token_mismatch">Token de autenticação incompatível. Por favor, faça login novamente.</string>
<string name="insufficient_access_level">Você não tem permissão para executar esta ação</string>
<string name="delete_label_confirmation_title">Excluir etiqueta</string>
<string name="delete_label_confirmation_message">Você tem certeza que deseja excluir este marcador?</string>
<!-- About -->
<string name="about_version">Versão %1$s</string>
<string name="about_maintainer_title">Mantenedor</string>
<string name="about_license_title">Tipo:</string>
<string name="about_source_title">Código fonte</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Projeto %1$s</string>
<string name="share_chooser_title">Compartilhar %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Coafă</string>
<!-- Actions -->
<string name="action_new_bill">Factură nouă</string>
<string name="action_add_project">Adaugă proiect</string>
<string name="action_save">Salvează</string>
<string name="action_edit">Editare</string>
<string name="action_share">Distribuie</string>
<string name="action_search">Caută</string>
<string name="action_delete">Ștergere</string>
<string name="action_archive">Arhivează</string>
<string name="action_unarchive">Dezarhivare</string>
<string name="action_export">Exportă</string>
<string name="action_stats">Statistici</string>
<string name="action_settle">Setare</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Setări</string>
<string name="action_label_bills">Categorii lipsă etichetă</string>
<string name="action_logout">Deconectare</string>
<string name="action_connect">Conectează-te</string>
<string name="action_discard">Renunțați</string>
<string name="action_members">Membri</string>
<string name="action_labels">Etichete</string>
<string name="action_currencies">Monede</string>
<!-- Titles -->
<string name="title_stats">Statistici</string>
<string name="title_edit_project">Editare proiect</string>
<string name="title_label_bills">Etichetă factură</string>
<string name="title_labels">Gestionare etichete</string>
<string name="title_about">Despre</string>
<string name="title_settle">Settle Project</string>
<string name="title_share">Partajează proiect</string>
<string name="title_add_project">Adaugă Proiect</string>
<string name="title_add_category">Adaugă Categorie</string>
<string name="title_add_payment_mode">Adaugă Mod de Plată</string>
<string name="title_account">Cont Nextcloud</string>
<string name="title_share_web">Link web</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">Ești sigur?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">Toate facturile</string>
<string name="label_categories">Categorii</string>
<string name="label_payment_modes">Moduri de plată</string>
<string name="label_name">Nume</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Culoare</string>
<string name="label_weight">Greutate</string>
<string name="label_activated">Activat</string>
<string name="label_password">Parolă</string>
<string name="label_email">E-mail</string>
<string name="label_url">Adresa serverului</string>
<string name="label_username">Nume</string>
<string name="label_comment">Comentariu</string>
<string name="label_what">Ce?</string>
<string name="label_payer">Cine a plătit?</string>
<string name="label_owers">Pentru cine?</string>
<string name="label_repeat">Repetă fiecare</string>
<string name="label_mode">Mod</string>
<string name="label_category">Categorie</string>
<string name="label_project_id">ID/nume proiect</string>
<string name="label_project_title">Titlul proiectului</string>
<string name="label_use_sso">Utilizați contul de Nextcloud App</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Modificări nesalvate</string>
<string name="dialog_unsaved_changes_msg">Salvați modificările înainte de a pleca?</string>
<string name="dialog_confirm_remove_project_msg">Proiectul la distanță nu va fi șters.</string>
<string name="dialog_sync_error_title">Eroare de sincronizare</string>
<string name="dialog_sync_error_msg">Sincronizarea a eșuat pentru %1$s.\n\n%2$s</string>
<string name="dialog_balanced_msg">Cheltuielile sunt deja echilibrate.</string>
<string name="msg_project_added">Proiectul %1$s a fost adăugat</string>
<string name="msg_bill_labeled_done">Toate facturile etichetate</string>
<string name="msg_no_suggestions">Fără sugestii</string>
<string name="msg_auth_warning">Necesită Cospend v0.3.4+.</string>
<string name="msg_link_copied">Link copiat în clipboard</string>
<string name="msg_share_qr">Scanați codul QR sau partajați link-ul pentru a vă alătura.</string>
<string name="msg_share_web">Link pentru accesul browser-ului web.</string>
<string name="msg_share_qr_warn">Partajează acest link cu un utilizator Cowcheltuit.</string>
<string name="msg_settle_intro">Decontare pentru %1$s:</string>
<string name="msg_settle_sentence">%1$s datorează %3$.2f la %2$s</string>
<string name="msg_stats_intro">Statistici pentru %1$s:</string>
<string name="msg_stats_header">Membru (Ajutor = Balans cheltuit)</string>
<string name="msg_logged_in_as">Autentificat ca %1$s</string>
<!-- Errors -->
<string name="error_generic">Eroare</string>
<string name="error_loading">Încărcare</string>
<string name="error_no_projects">Niciun proiect găsit</string>
<string name="error_no_members">Niciun membru găsit</string>
<string name="error_no_bills">Nicio factură găsită</string>
<string name="error_no_member">Cel puţin un membru este necesar</string>
<string name="error_maintenance_mode">Serverul este în modul de mentenanță</string>
<string name="error_400">Cerere invalidă 400</string>
<string name="error_401">401 Neautorizat</string>
<string name="error_403">403 Interzis</string>
<string name="error_404">404 Nu a fost găsit</string>
<string name="error_sync">Sincronizare esuata: %1$s</string>
<string name="error_invalid_login">Autentificare invalidă: %1$s</string>
<string name="error_auth">Nume utilizator sau parolă greșite</string>
<string name="error_json">Răspuns server nevalid</string>
<string name="error_req_failed">Solicitare eșuată</string>
<string name="error_invalid_email">E-mail invalid</string>
<string name="error_invalid_project_id">Identificator proiect invalid</string>
<string name="error_invalid_project_name">Titlu proiect nevalid</string>
<string name="error_invalid_bill_name">Nume factură nevalid</string>
<string name="error_invalid_bill_date">Data facturii invalidă</string>
<string name="error_invalid_bill_payer">Plătitor necesar</string>
<string name="error_invalid_bill_owers">Proprietari necesari</string>
<string name="error_no_network">Nicio conexiune la rețea</string>
<string name="error_server">Eroare server</string>
<string name="error_io">Conexiunea serverului este întreruptă</string>
<string name="error_share_impossible">Nu se poate partaja acest proiect</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Conectare la contul Nextcloud</string>
<string name="drawer_last_sync">Ultima sincronizare: %1$02d:%2$02d</string>
<string name="simple_cancel">Anulează</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">Ok</string>
<string name="simple_yes">Da</string>
<string name="simple_no">Nr</string>
<string name="simple_close">Inchide</string>
<!-- Settings -->
<string name="settings_appearance">Aspectul</string>
<string name="settings_network">Rețea</string>
<string name="settings_other">Altele</string>
<string name="settings_night_mode">Tema</string>
<string name="settings_offline_mode">Mod offline</string>
<string name="settings_offline_mode_summary">Sincronizează doar manual.</string>
<string name="settings_color_custom">Culoare personalizată</string>
<string name="settings_color_mode">Selectare culoare</string>
<string name="settings_show_archived">Arată proiectele arhivate</string>
<string name="settings_beta_features">Caracteristici Beta</string>
<string name="settings_beta_features_summary">Activați funcțiile experimentale. Utilizați pe propriul risc.</string>
<string name="settings_url_warn_http">AVERTISMENT: \"http\" nu este sigur. Utilizaţi \"http\".</string>
<string name="settings_colorpicker_title">Alege culoare</string>
<string name="pref_value_color_system">Sistem</string>
<string name="pref_value_color_server">Nextcloud</string>
<string name="pref_value_color_manual">Manual</string>
<string name="pref_value_theme_light">Lumină</string>
<string name="pref_value_theme_dark">Întunecat</string>
<string name="pref_value_theme_system">Urmăriți sistemul</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">Fără repetare</string>
<string name="repeat_day">Zilnic</string>
<string name="repeat_week">Săptămânal</string>
<string name="repeat_fortnight">Fortăreaţă</string>
<string name="repeat_month">Lunar</string>
<string name="repeat_year">Anual</string>
<string name="payment_mode_none">Niciunul</string>
<string name="payment_mode_all">Toate</string>
<string name="payment_mode_credit_card">Card de credit</string>
<string name="payment_mode_cash">Numerar</string>
<string name="payment_mode_check">Verifică</string>
<string name="payment_mode_online">Online</string>
<string name="payment_mode_transfer">Transfer</string>
<string name="category_none">Niciunul</string>
<string name="category_all">Toate</string>
<string name="category_all_except_reimbursement">Toate cu excepția rambursării</string>
<string name="category_groceries">Mărfuri</string>
<string name="category_leisure">Barie/petrecere</string>
<string name="category_rent">Chirie</string>
<string name="category_bills">Factură</string>
<string name="category_excursion">Excursie/Cultură</string>
<string name="category_health">Sănătate</string>
<string name="category_shopping">Cumpărături</string>
<string name="category_reimbursement">Rambursare</string>
<string name="category_restaurant">Restaurant</string>
<string name="category_accomodation">Cazare</string>
<string name="category_transport">Transportul</string>
<string name="category_sport">Sport</string>
<!-- Project specific -->
<string name="new_project_action">Ce</string>
<string name="new_project_where">Unde</string>
<string name="where_local">Doar local</string>
<string name="where_cospend">Cocheltuiește</string>
<string name="where_ihatemoney">IHateMoney</string>
<string name="todo_join">Alătură-te proiectului existent</string>
<string name="todo_create">Creează un proiect nou</string>
<string name="import_tooltip">Importă din fișier</string>
<string name="choose_account_project_dialog_title">Alege proiect</string>
<string name="choose_account_project_dialog_impossible">Nu au fost găsite proiecte pe acest cont.</string>
<string name="choose_project_management_action">Proiect</string>
<string name="project_added_success">Proiect adăugat cu succes.</string>
<string name="no_projects_text">Încă nu aveți proiecte.</string>
<string name="configure_account_choice">Configurare cont Nextcloud</string>
<string name="add_project_choice">Adăugați proiectul manual</string>
<string name="no_members_text">Niciun membru în acest proiect.</string>
<string name="no_bills_text">Nicio factură găsită.</string>
<string name="member_already_exists">Membrul există deja.</string>
<string name="activity_dialog_title">Proiect: %1$s</string>
<string name="remove_project_confirmation">Proiectul %1$s a fost eliminat.</string>
<string name="file_saved_success">Fișier salvat: %1$s</string>
<string name="import_error_header">Importul a eșuat la rândul %d</string>
<string name="import_error_date">Format de dată nevalid la rândul %d</string>
<string name="import_error_owers">Ceară nevalidă la rândul %d</string>
<string name="add_member_dialog_title">Adaugă Membru</string>
<string name="edit_member_dialog_title">Editează Membru</string>
<string name="member_edit_delete">Ștergere</string>
<string name="project_edition_no_change">Nicio modificare de salvat.</string>
<!-- Settlement -->
<string name="center_none">Niciunul (Optim)</string>
<string name="settle_who">Cine plătește</string>
<string name="settle_to_whom">Cui îi este</string>
<string name="settle_how_much">Sumă</string>
<string name="simple_settle_share">Distribuie</string>
<string name="simple_create_bills">Creați facturi</string>
<string name="settle_bill_what">Decontare</string>
<!-- Currencies -->
<string name="currency_dialog_title">Alege moneda (%s)</string>
<string name="setting_none">Niciunul</string>
<string name="setting_all">Toate</string>
<string name="currency_saved_success">Setări valută salvate.</string>
<string name="main_currency">Moneda principală</string>
<!-- Statistics -->
<string name="label_bills_suggested">Categorii sugerate</string>
<string name="label_bills_skip">Omitere</string>
<string name="stats_date_min">De la</string>
<string name="stats_date_max">La</string>
<string name="stats_who">Membru</string>
<string name="stats_paid">Plătit</string>
<string name="stats_spent">Cheltuit</string>
<string name="stats_balance">Sold</string>
<string name="total">Total: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">Conexiune eșuată: %1$s</string>
<string name="error_create_remote_project_helper">Crearea a eșuat: %1$s</string>
<string name="error_edit_remote_project_helper">Eroare la actualizarea proiectului la distanță: %1$s</string>
<string name="remote_project_operation_no_network">Rețea indisponibilă pentru operarea la distanță.</string>
<string name="error_scanning_bill_qr_code">Nu s-a putut analiza codul QR.</string>
<string name="error_token_mismatch">Nepotrivire simbol de autentificare. Vă rugăm să vă autentificați din nou.</string>
<string name="insufficient_access_level">Nu aveţi permisiunea de a efectua această acţiune.</string>
<string name="delete_label_confirmation_title">Ștergere etichetă</string>
<string name="delete_label_confirmation_message">Sunteţi sigur că doriţi să ştergeţi această etichetă?</string>
<!-- About -->
<string name="about_version">Versiunea %1$s</string>
<string name="about_maintainer_title">Responsabil</string>
<string name="about_license_title">Licenta</string>
<string name="about_source_title">Cod sursă</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Proiectul %1$s</string>
<string name="share_chooser_title">Distribuie %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Тратить</string>
<!-- Actions -->
<string name="action_new_bill">Новый счет</string>
<string name="action_add_project">Добавить проект</string>
<string name="action_save">Сохранить</string>
<string name="action_edit">Редактирование</string>
<string name="action_share">Поделиться</string>
<string name="action_search">Искать</string>
<string name="action_delete">Удалить</string>
<string name="action_archive">Архивировать</string>
<string name="action_unarchive">Разархивировать</string>
<string name="action_export">Экспорт</string>
<string name="action_stats">Статистика</string>
<string name="action_settle">Загадать</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Настройки</string>
<string name="action_label_bills">Отсутствуют категории меток</string>
<string name="action_logout">Выйти</string>
<string name="action_connect">Подключиться</string>
<string name="action_discard">Сбросить</string>
<string name="action_members">Члены Комитета</string>
<string name="action_labels">Метки</string>
<string name="action_currencies">Валюты</string>
<!-- Titles -->
<string name="title_stats">Статистика</string>
<string name="title_edit_project">Редактировать проект</string>
<string name="title_label_bills">Счета меток</string>
<string name="title_labels">Управление ярлыками</string>
<string name="title_about">О программе</string>
<string name="title_settle">Установленный проект</string>
<string name="title_share">Поделиться проектом</string>
<string name="title_add_project">Добавить проект</string>
<string name="title_add_category">Добавить категорию</string>
<string name="title_add_payment_mode">Добавить режим оплаты</string>
<string name="title_account">Аккаунт следующего облака</string>
<string name="title_share_web">Веб-ссылка</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">Вы уверены?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">Все счета</string>
<string name="label_categories">Категории</string>
<string name="label_payment_modes">Способы оплаты</string>
<string name="label_name">Наименование</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Цвет</string>
<string name="label_weight">Вес</string>
<string name="label_activated">Активирован</string>
<string name="label_password">Пароль</string>
<string name="label_email">Эл. почта</string>
<string name="label_url">Адрес сервера</string>
<string name="label_username">Имя пользователя</string>
<string name="label_comment">Комментарий</string>
<string name="label_what">Что?</string>
<string name="label_payer">Кто платит?</string>
<string name="label_owers">Для кого?</string>
<string name="label_repeat">Повторять каждые</string>
<string name="label_mode">Режим</string>
<string name="label_category">Категория</string>
<string name="label_project_id">ID/имя проекта</string>
<string name="label_project_title">Название проекта</string>
<string name="label_use_sso">Использовать учётную запись Nextcloud</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Несохраненные изменения</string>
<string name="dialog_unsaved_changes_msg">Сохранить изменения перед выходом?</string>
<string name="dialog_confirm_remove_project_msg">Удаленный проект не будет удален.</string>
<string name="dialog_sync_error_title">Ошибка синхронизации</string>
<string name="dialog_sync_error_msg">Сбой синхронизации для %1$s.\n\n%2$s</string>
<string name="dialog_balanced_msg">Расходы уже сбалансированы.</string>
<string name="msg_project_added">Добавлен проект %1$s</string>
<string name="msg_bill_labeled_done">Все счета помечены</string>
<string name="msg_no_suggestions">Нет предложений</string>
<string name="msg_auth_warning">Требуется расходы v0.3.4 +.</string>
<string name="msg_link_copied">Ссылка скопирована в буфер обмена</string>
<string name="msg_share_qr">Отсканируйте QR-код или поделитесь ссылкой, чтобы присоединиться.</string>
<string name="msg_share_web">Ссылка для доступа к веб-браузеру.</string>
<string name="msg_share_qr_warn">Поделитесь этой ссылкой с пользователем, потраченным на разговор.</string>
<string name="msg_settle_intro">Расчет для %1$s</string>
<string name="msg_settle_sentence">%1$s обязана %3$.2f %2$s</string>
<string name="msg_stats_intro">Статистика для %1$s:</string>
<string name="msg_stats_header">Член (платные | Расходы | Баланс)</string>
<string name="msg_logged_in_as">Вы вошли как %1$s</string>
<!-- Errors -->
<string name="error_generic">Ошибка</string>
<string name="error_loading">Загрузка</string>
<string name="error_no_projects">Проектов не найдено</string>
<string name="error_no_members">Участников не найдено</string>
<string name="error_no_bills">Счетов не найдено</string>
<string name="error_no_member">Требуется хотя бы один участник</string>
<string name="error_maintenance_mode">Сервер находится в режиме обслуживания</string>
<string name="error_400">400 Плохой запрос</string>
<string name="error_401">401 не авторизован</string>
<string name="error_403">403 запрещено</string>
<string name="error_404">404 Не найдено</string>
<string name="error_sync">Сбой синхронизации: %1$s</string>
<string name="error_invalid_login">Неверный логин: %1$s</string>
<string name="error_auth">Неверное имя пользователя или пароль</string>
<string name="error_json">Неправильный ответ сервера</string>
<string name="error_req_failed">Запрос не удался</string>
<string name="error_invalid_email">Неверный e-mail</string>
<string name="error_invalid_project_id">Неверный ID проекта</string>
<string name="error_invalid_project_name">Неверное название проекта</string>
<string name="error_invalid_bill_name">Неверное имя счета</string>
<string name="error_invalid_bill_date">Неверная дата счета</string>
<string name="error_invalid_bill_payer">Требуется плательщик</string>
<string name="error_invalid_bill_owers">Требуется владельцы</string>
<string name="error_no_network">Нет подключения к сети</string>
<string name="error_server">Ошибка сервера</string>
<string name="error_io">Соединение с сервером прервано</string>
<string name="error_share_impossible">Не удается поделиться этим проектом</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Подключение к учётной записи Nextcloud</string>
<string name="drawer_last_sync">Последняя синхронизация: %1$02d:%2$02d</string>
<string name="simple_cancel">Отмена</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">Ок</string>
<string name="simple_yes">Да</string>
<string name="simple_no">Нет</string>
<string name="simple_close">Закрыть</string>
<!-- Settings -->
<string name="settings_appearance">Внешний вид</string>
<string name="settings_network">Сеть</string>
<string name="settings_other">Прочие вопросы</string>
<string name="settings_night_mode">Тема</string>
<string name="settings_offline_mode">Автономный режим</string>
<string name="settings_offline_mode_summary">Синхронизировать только вручную.</string>
<string name="settings_color_custom">Пользовательский цвет</string>
<string name="settings_color_mode">Выбор цвета</string>
<string name="settings_show_archived">Показать архивные проекты</string>
<string name="settings_beta_features">Функции бета-версии</string>
<string name="settings_beta_features_summary">Включить экспериментальные функции. Используйте на свой страх и риск.</string>
<string name="settings_url_warn_http">ВНИМАНИЕ: «http» небезопасен. Используйте «https».</string>
<string name="settings_colorpicker_title">Выберите цвет</string>
<string name="pref_value_color_system">Система</string>
<string name="pref_value_color_server">Следующее облако</string>
<string name="pref_value_color_manual">Ручной</string>
<string name="pref_value_theme_light">Светлая</string>
<string name="pref_value_theme_dark">Тёмная</string>
<string name="pref_value_theme_system">Следовать за системой</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">Не повторять</string>
<string name="repeat_day">Ежедневно</string>
<string name="repeat_week">Еженедельно</string>
<string name="repeat_fortnight">Счастливая ночь</string>
<string name="repeat_month">Ежемесячно</string>
<string name="repeat_year">Ежегодно</string>
<string name="payment_mode_none">Нет</string>
<string name="payment_mode_all">Все</string>
<string name="payment_mode_credit_card">Кредитная карта</string>
<string name="payment_mode_cash">Наличные</string>
<string name="payment_mode_check">Проверить</string>
<string name="payment_mode_online">Онлайн</string>
<string name="payment_mode_transfer">Перевод</string>
<string name="category_none">Нет</string>
<string name="category_all">Все</string>
<string name="category_all_except_reimbursement">Все кроме возмещения</string>
<string name="category_groceries">Бакалея</string>
<string name="category_leisure">Бар/вечеринка</string>
<string name="category_rent">Аренда</string>
<string name="category_bills">Счет</string>
<string name="category_excursion">Экскурсия/Культура</string>
<string name="category_health">Здоровье</string>
<string name="category_shopping">Покупки</string>
<string name="category_reimbursement">Возмещение</string>
<string name="category_restaurant">Ресторан</string>
<string name="category_accomodation">Проживание</string>
<string name="category_transport">Транспорт</string>
<string name="category_sport">Спорт</string>
<!-- Project specific -->
<string name="new_project_action">Что</string>
<string name="new_project_where">Где</string>
<string name="where_local">Только локальные</string>
<string name="where_cospend">Костюд</string>
<string name="where_ihatemoney">IHateMoney</string>
<string name="todo_join">Присоединиться к существующему проекту</string>
<string name="todo_create">Создать новый проект</string>
<string name="import_tooltip">Импортировать из файла</string>
<string name="choose_account_project_dialog_title">Выберите проект</string>
<string name="choose_account_project_dialog_impossible">Не найдено проектов для этой учетной записи.</string>
<string name="choose_project_management_action">Проект</string>
<string name="project_added_success">Проект успешно добавлен.</string>
<string name="no_projects_text">У вас пока нет проектов.</string>
<string name="configure_account_choice">Настроить аккаунт Nextcloud</string>
<string name="add_project_choice">Добавить проект вручную</string>
<string name="no_members_text">В этом проекте нет участников.</string>
<string name="no_bills_text">Счета не найдены.</string>
<string name="member_already_exists">Участник уже существует.</string>
<string name="activity_dialog_title">Проект: %1$s</string>
<string name="remove_project_confirmation">Проект %1$s удален.</string>
<string name="file_saved_success">Файл сохранён: %1$s</string>
<string name="import_error_header">Ошибка импорта в строке %d</string>
<string name="import_error_date">Недопустимый формат даты в строке %d</string>
<string name="import_error_owers">Недопустимые владельцы в строке %d</string>
<string name="add_member_dialog_title">Добавить участника</string>
<string name="edit_member_dialog_title">Изменить участника</string>
<string name="member_edit_delete">Удалить</string>
<string name="project_edition_no_change">Нет изменений для сохранения.</string>
<!-- Settlement -->
<string name="center_none">Нет (оптимально)</string>
<string name="settle_who">Кто платит</string>
<string name="settle_to_whom">Кому</string>
<string name="settle_how_much">Сумма</string>
<string name="simple_settle_share">Поделиться</string>
<string name="simple_create_bills">Создать счета</string>
<string name="settle_bill_what">Расчет</string>
<!-- Currencies -->
<string name="currency_dialog_title">Выберите валюту (%s)</string>
<string name="setting_none">Нет</string>
<string name="setting_all">Все</string>
<string name="currency_saved_success">Настройки валюты сохранены.</string>
<string name="main_currency">Основная валюта</string>
<!-- Statistics -->
<string name="label_bills_suggested">Предлагаемые категории</string>
<string name="label_bills_skip">Пропустить</string>
<string name="stats_date_min">От</string>
<string name="stats_date_max">Кому</string>
<string name="stats_who">Участник</string>
<string name="stats_paid">Оплачено</string>
<string name="stats_spent">Потрачено</string>
<string name="stats_balance">Баланс</string>
<string name="total">Всего: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">Ошибка соединения: %1$s</string>
<string name="error_create_remote_project_helper">Создание не удалось: %1$s</string>
<string name="error_edit_remote_project_helper">Ошибка при обновлении удаленного проекта: %1$s</string>
<string name="remote_project_operation_no_network">Сеть недоступна для удаленной операции.</string>
<string name="error_scanning_bill_qr_code">Не удалось проанализировать QR-код.</string>
<string name="error_token_mismatch">Токен аутентификации не совпадает. Пожалуйста, войдите снова.</string>
<string name="insufficient_access_level">У вас нет разрешения на выполнение этого действия.</string>
<string name="delete_label_confirmation_title">Удалить метку</string>
<string name="delete_label_confirmation_message">Вы уверены, что хотите удалить этот ярлык?</string>
<!-- About -->
<string name="about_version">Версия %1$s</string>
<string name="about_maintainer_title">Сопровождающий</string>
<string name="about_license_title">Лицензия</string>
<string name="about_source_title">Исходный код</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Проект %1$s</string>
<string name="share_chooser_title">Поделиться %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Cowspent</string>
<!-- Actions -->
<string name="action_new_bill">New bill</string>
<string name="action_add_project">Add project</string>
<string name="action_save">Save</string>
<string name="action_edit">Edit</string>
<string name="action_share">Share</string>
<string name="action_search">Search</string>
<string name="action_delete">Delete</string>
<string name="action_archive">Archive</string>
<string name="action_unarchive">Unarchive</string>
<string name="action_export">Export</string>
<string name="action_stats">Stats</string>
<string name="action_settle">Settle</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Settings</string>
<string name="action_label_bills">Label missing categories</string>
<string name="action_logout">Logout</string>
<string name="action_connect">Connect</string>
<string name="action_discard">Discard</string>
<string name="action_members">Members</string>
<string name="action_labels">Labels</string>
<string name="action_currencies">Currencies</string>
<!-- Titles -->
<string name="title_stats">Statistics</string>
<string name="title_edit_project">Edit project</string>
<string name="title_label_bills">Label Bills</string>
<string name="title_labels">Manage Labels</string>
<string name="title_about">About</string>
<string name="title_settle">Settle Project</string>
<string name="title_share">Share Project</string>
<string name="title_add_project">Add Project</string>
<string name="title_add_category">Add Category</string>
<string name="title_add_payment_mode">Add Payment Mode</string>
<string name="title_account">Nextcloud Account</string>
<string name="title_share_web">Web link</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">Are you sure?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">All bills</string>
<string name="label_categories">Categories</string>
<string name="label_payment_modes">Payment Modes</string>
<string name="label_name">Name</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Color</string>
<string name="label_weight">Weight</string>
<string name="label_activated">Activated</string>
<string name="label_password">Password</string>
<string name="label_email">E-mail</string>
<string name="label_url">Server address</string>
<string name="label_username">Username</string>
<string name="label_comment">Comment</string>
<string name="label_what">What?</string>
<string name="label_payer">Who paid?</string>
<string name="label_owers">For whom?</string>
<string name="label_repeat">Repeat every</string>
<string name="label_mode">Mode</string>
<string name="label_category">Category</string>
<string name="label_project_id">Project ID/name</string>
<string name="label_project_title">Project title</string>
<string name="label_use_sso">Use Nextcloud App Account</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Unsaved changes</string>
<string name="dialog_unsaved_changes_msg">Save changes before leaving?</string>
<string name="dialog_confirm_remove_project_msg">The remote project will not be deleted.</string>
<string name="dialog_sync_error_title">Sync error</string>
<string name="dialog_sync_error_msg">Sync failed for %1$s.\n\n%2$s</string>
<string name="dialog_balanced_msg">Expenses are already balanced.</string>
<string name="msg_project_added">Project %1$s added</string>
<string name="msg_bill_labeled_done">All bills labeled</string>
<string name="msg_no_suggestions">No suggestions</string>
<string name="msg_auth_warning">Requires Cospend v0.3.4+.</string>
<string name="msg_link_copied">Link copied to clipboard</string>
<string name="msg_share_qr">Scan QR code or share the link to join.</string>
<string name="msg_share_web">Link for web browser access.</string>
<string name="msg_share_qr_warn">Share this link with a Cowspent user.</string>
<string name="msg_settle_intro">Settlement for %1$s:</string>
<string name="msg_settle_sentence">%1$s owes %3$.2f to %2$s</string>
<string name="msg_stats_intro">Stats for %1$s:</string>
<string name="msg_stats_header">Member (Paid | Spent | Balance)</string>
<string name="msg_logged_in_as">Logged in as %1$s</string>
<!-- Errors -->
<string name="error_generic">Error</string>
<string name="error_loading">Loading</string>
<string name="error_no_projects">No projects found</string>
<string name="error_no_members">No members found</string>
<string name="error_no_bills">No bills found</string>
<string name="error_no_member">At least one member required</string>
<string name="error_maintenance_mode">Server is in maintenance mode</string>
<string name="error_400">400 Bad request</string>
<string name="error_401">401 Unauthorized</string>
<string name="error_403">403 Forbidden</string>
<string name="error_404">404 Not Found</string>
<string name="error_sync">Sync failed: %1$s</string>
<string name="error_invalid_login">Invalid login: %1$s</string>
<string name="error_auth">Wrong username or password</string>
<string name="error_json">Invalid server response</string>
<string name="error_req_failed">Request failed</string>
<string name="error_invalid_email">Invalid e-mail</string>
<string name="error_invalid_project_id">Invalid project ID</string>
<string name="error_invalid_project_name">Invalid project title</string>
<string name="error_invalid_bill_name">Invalid bill name</string>
<string name="error_invalid_bill_date">Invalid bill date</string>
<string name="error_invalid_bill_payer">Payer required</string>
<string name="error_invalid_bill_owers">Owers required</string>
<string name="error_no_network">No network connection</string>
<string name="error_server">Server error</string>
<string name="error_io">Server connection broken</string>
<string name="error_share_impossible">Cannot share this project</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Connect to Nextcloud account</string>
<string name="drawer_last_sync">Last sync: %1$02d:%2$02d</string>
<string name="simple_cancel">Cancel</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">Ok</string>
<string name="simple_yes">Yes</string>
<string name="simple_no">No</string>
<string name="simple_close">Close</string>
<!-- Settings -->
<string name="settings_appearance">Appearance</string>
<string name="settings_network">Network</string>
<string name="settings_other">Other</string>
<string name="settings_night_mode">Theme</string>
<string name="settings_offline_mode">Offline mode</string>
<string name="settings_offline_mode_summary">Only sync manually.</string>
<string name="settings_color_custom">Custom color</string>
<string name="settings_color_mode">Color Selection</string>
<string name="settings_show_archived">Show archived projects</string>
<string name="settings_beta_features">Beta Features</string>
<string name="settings_beta_features_summary">Enable experimental features. Use at your own risk.</string>
<string name="settings_url_warn_http">WARNING: \"http\" is unsafe. Use \"https\".</string>
<string name="settings_colorpicker_title">Choose Color</string>
<string name="pref_value_color_system">System</string>
<string name="pref_value_color_server">Nextcloud</string>
<string name="pref_value_color_manual">Manual</string>
<string name="pref_value_theme_light">Light</string>
<string name="pref_value_theme_dark">Dark</string>
<string name="pref_value_theme_system">Follow system</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">No repeat</string>
<string name="repeat_day">Daily</string>
<string name="repeat_week">Weekly</string>
<string name="repeat_fortnight">Fortnightly</string>
<string name="repeat_month">Monthly</string>
<string name="repeat_year">Yearly</string>
<string name="payment_mode_none">None</string>
<string name="payment_mode_all">All</string>
<string name="payment_mode_credit_card">Credit card</string>
<string name="payment_mode_cash">Cash</string>
<string name="payment_mode_check">Check</string>
<string name="payment_mode_online">Online</string>
<string name="payment_mode_transfer">Transfer</string>
<string name="category_none">None</string>
<string name="category_all">All</string>
<string name="category_all_except_reimbursement">All except reimbursement</string>
<string name="category_groceries">Grocery</string>
<string name="category_leisure">Bar/Party</string>
<string name="category_rent">Rent</string>
<string name="category_bills">Bill</string>
<string name="category_excursion">Excursion/Culture</string>
<string name="category_health">Health</string>
<string name="category_shopping">Shopping</string>
<string name="category_reimbursement">Reimbursement</string>
<string name="category_restaurant">Restaurant</string>
<string name="category_accomodation">Accommodation</string>
<string name="category_transport">Transport</string>
<string name="category_sport">Sport</string>
<!-- Project specific -->
<string name="new_project_action">What</string>
<string name="new_project_where">Where</string>
<string name="where_local">Local only</string>
<string name="where_cospend">Cospend</string>
<string name="where_ihatemoney">IHateMoney</string>
<string name="todo_join">Join existing project</string>
<string name="todo_create">Create new project</string>
<string name="import_tooltip">Import from file</string>
<string name="choose_account_project_dialog_title">Choose project</string>
<string name="choose_account_project_dialog_impossible">No projects found on this account.</string>
<string name="choose_project_management_action">Project</string>
<string name="project_added_success">Project added successfully.</string>
<string name="no_projects_text">You have no projects yet.</string>
<string name="configure_account_choice">Configure Nextcloud account</string>
<string name="add_project_choice">Add project manually</string>
<string name="no_members_text">No members in this project.</string>
<string name="no_bills_text">No bills found.</string>
<string name="member_already_exists">Member already exists.</string>
<string name="activity_dialog_title">Project: %1$s</string>
<string name="remove_project_confirmation">Project %1$s removed.</string>
<string name="file_saved_success">File saved: %1$s</string>
<string name="import_error_header">Import failed at row %d</string>
<string name="import_error_date">Invalid date format at row %d</string>
<string name="import_error_owers">Invalid owers at row %d</string>
<string name="add_member_dialog_title">Add Member</string>
<string name="edit_member_dialog_title">Edit Member</string>
<string name="member_edit_delete">Delete</string>
<string name="project_edition_no_change">No changes to save.</string>
<!-- Settlement -->
<string name="center_none">None (Optimal)</string>
<string name="settle_who">Who pays</string>
<string name="settle_to_whom">To whom</string>
<string name="settle_how_much">Amount</string>
<string name="simple_settle_share">Share</string>
<string name="simple_create_bills">Create bills</string>
<string name="settle_bill_what">Settlement</string>
<!-- Currencies -->
<string name="currency_dialog_title">Choose Currency (%s)</string>
<string name="setting_none">None</string>
<string name="setting_all">All</string>
<string name="currency_saved_success">Currency settings saved.</string>
<string name="main_currency">Main Currency</string>
<!-- Statistics -->
<string name="label_bills_suggested">Suggested Categories</string>
<string name="label_bills_skip">Skip</string>
<string name="stats_date_min">From</string>
<string name="stats_date_max">To</string>
<string name="stats_who">Member</string>
<string name="stats_paid">Paid</string>
<string name="stats_spent">Spent</string>
<string name="stats_balance">Balance</string>
<string name="total">Total: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">Connection failed: %1$s</string>
<string name="error_create_remote_project_helper">Creation failed: %1$s</string>
<string name="error_edit_remote_project_helper">Error updating remote project: %1$s</string>
<string name="remote_project_operation_no_network">Network unavailable for remote operation.</string>
<string name="error_scanning_bill_qr_code">Failed to parse QR code.</string>
<string name="error_token_mismatch">Authentication token mismatch. Please log in again.</string>
<string name="insufficient_access_level">You don\'t have permission to perform this action.</string>
<string name="delete_label_confirmation_title">Delete Label</string>
<string name="delete_label_confirmation_message">Are you sure you want to delete this label?</string>
<!-- About -->
<string name="about_version">Version %1$s</string>
<string name="about_maintainer_title">Maintainer</string>
<string name="about_license_title">License</string>
<string name="about_source_title">Source code</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Project %1$s</string>
<string name="share_chooser_title">Share %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Cowspent</string>
<!-- Actions -->
<string name="action_new_bill">Ny räkning</string>
<string name="action_add_project">Lägg till projekt</string>
<string name="action_save">Spara</string>
<string name="action_edit">Redigera</string>
<string name="action_share">Dela</string>
<string name="action_search">Sök</string>
<string name="action_delete">Radera</string>
<string name="action_archive">Arkivera</string>
<string name="action_unarchive">Avarkivera</string>
<string name="action_export">Exportera</string>
<string name="action_stats">Statistik</string>
<string name="action_settle">Bosättning</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Inställningar</string>
<string name="action_label_bills">Etikett saknade kategorier</string>
<string name="action_logout">Utloggning</string>
<string name="action_connect">Anslut</string>
<string name="action_discard">Ignorera</string>
<string name="action_members">Medlemmar</string>
<string name="action_labels">Etiketter</string>
<string name="action_currencies">Valutor</string>
<!-- Titles -->
<string name="title_stats">Statistik</string>
<string name="title_edit_project">Redigera projekt</string>
<string name="title_label_bills">Etikett räkningar</string>
<string name="title_labels">Hantera etiketter</string>
<string name="title_about">Om</string>
<string name="title_settle">Fastställ projekt</string>
<string name="title_share">Dela projekt</string>
<string name="title_add_project">Lägg till projekt</string>
<string name="title_add_category">Lägg till kategori</string>
<string name="title_add_payment_mode">Lägg till betalningsläge</string>
<string name="title_account">Nextcloud-konto</string>
<string name="title_share_web">Webblänk</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">Är du säker?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">Alla räkningar</string>
<string name="label_categories">Kategorier</string>
<string name="label_payment_modes">Betalningslägen</string>
<string name="label_name">Namn</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Färg</string>
<string name="label_weight">Vikt</string>
<string name="label_activated">Aktiverad</string>
<string name="label_password">Lösenord</string>
<string name="label_email">E-post</string>
<string name="label_url">Serverns adress</string>
<string name="label_username">Användarnamn</string>
<string name="label_comment">Kommentar</string>
<string name="label_what">Vad?</string>
<string name="label_payer">Vem betalade?</string>
<string name="label_owers">För vem?</string>
<string name="label_repeat">Upprepa varje</string>
<string name="label_mode">Läge</string>
<string name="label_category">Kategori</string>
<string name="label_project_id">Projektets ID/namn</string>
<string name="label_project_title">Projektets titel</string>
<string name="label_use_sso">Använd Nextcloud App Konto</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Osparade ändringar</string>
<string name="dialog_unsaved_changes_msg">Spara ändringar innan du lämnar?</string>
<string name="dialog_confirm_remove_project_msg">Fjärrprojektet kommer inte att raderas.</string>
<string name="dialog_sync_error_title">Synkronisera fel</string>
<string name="dialog_sync_error_msg">Synkronisering misslyckades för %1$s.\n\n%2$s</string>
<string name="dialog_balanced_msg">Kostnaderna är redan balanserade.</string>
<string name="msg_project_added">Projekt %1$s tillagt</string>
<string name="msg_bill_labeled_done">Alla räkningar märkta</string>
<string name="msg_no_suggestions">Inga förslag</string>
<string name="msg_auth_warning">Kräver Cospend v0.3.4+.</string>
<string name="msg_link_copied">Länk kopierad till urklipp</string>
<string name="msg_share_qr">Skanna QR-koden eller dela länken för att gå med.</string>
<string name="msg_share_web">Länk för åtkomst till webbläsaren.</string>
<string name="msg_share_qr_warn">Dela denna länk med en Cowspent användare.</string>
<string name="msg_settle_intro">Avräkning för %1$s:</string>
<string name="msg_settle_sentence">%1$s är skyldig %3$.2f till %2$s</string>
<string name="msg_stats_intro">Statistik för %1$s:</string>
<string name="msg_stats_header">Medlem (Betald &lt;unk&gt; Spenderad &lt;unk&gt; Balans)</string>
<string name="msg_logged_in_as">Inloggad som %1$s</string>
<!-- Errors -->
<string name="error_generic">Fel</string>
<string name="error_loading">Laddar</string>
<string name="error_no_projects">Inga projekt hittades</string>
<string name="error_no_members">Inga medlemmar hittades</string>
<string name="error_no_bills">Inga räkningar hittades</string>
<string name="error_no_member">Minst en medlem krävs</string>
<string name="error_maintenance_mode">Servern är i underhållsläge</string>
<string name="error_400">400 Felaktig begäran</string>
<string name="error_401">401 Obehörig</string>
<string name="error_403">403 Förbjuden</string>
<string name="error_404">404 hittades inte</string>
<string name="error_sync">Synkronisering misslyckades: %1$s</string>
<string name="error_invalid_login">Ogiltig inloggning: %1$s</string>
<string name="error_auth">Fel användarnamn eller lösenord</string>
<string name="error_json">Ogiltigt serversvar</string>
<string name="error_req_failed">Begäran misslyckades</string>
<string name="error_invalid_email">Ogiltig e-post</string>
<string name="error_invalid_project_id">Ogiltigt projekt-ID</string>
<string name="error_invalid_project_name">Ogiltig projekttitel</string>
<string name="error_invalid_bill_name">Ogiltigt räkningsnamn</string>
<string name="error_invalid_bill_date">Ogiltigt faktureringsdatum</string>
<string name="error_invalid_bill_payer">Betalare krävs</string>
<string name="error_invalid_bill_owers">Ägare krävs</string>
<string name="error_no_network">Ingen nätverksanslutning</string>
<string name="error_server">Serverfel</string>
<string name="error_io">Serveranslutning är trasig</string>
<string name="error_share_impossible">Kan inte dela detta projekt</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Anslut till Nextcloud-konto</string>
<string name="drawer_last_sync">Senaste synkronisering: %1$02d:%2$02d</string>
<string name="simple_cancel">Avbryt</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">OK</string>
<string name="simple_yes">Ja</string>
<string name="simple_no">Nej</string>
<string name="simple_close">Stäng</string>
<!-- Settings -->
<string name="settings_appearance">Utseende</string>
<string name="settings_network">Nätverk</string>
<string name="settings_other">Annat</string>
<string name="settings_night_mode">Tema</string>
<string name="settings_offline_mode">Offline läge</string>
<string name="settings_offline_mode_summary">Synkronisera endast manuellt.</string>
<string name="settings_color_custom">Anpassad färg</string>
<string name="settings_color_mode">Färgval</string>
<string name="settings_show_archived">Visa arkiverade projekt</string>
<string name="settings_beta_features">Beta funktioner</string>
<string name="settings_beta_features_summary">Aktivera experimentella funktioner. Använd på egen risk.</string>
<string name="settings_url_warn_http">VARNING: \"http\" är osäkra. Använd \"https\".</string>
<string name="settings_colorpicker_title">Välj färg</string>
<string name="pref_value_color_system">System</string>
<string name="pref_value_color_server">Nästamoln</string>
<string name="pref_value_color_manual">Manuell</string>
<string name="pref_value_theme_light">Ljus</string>
<string name="pref_value_theme_dark">Mörk</string>
<string name="pref_value_theme_system">Följ systemet</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">Ingen upprepning</string>
<string name="repeat_day">Dagligen</string>
<string name="repeat_week">Veckovis</string>
<string name="repeat_fortnight">Fyrkantig</string>
<string name="repeat_month">Månadsvis</string>
<string name="repeat_year">Årligen</string>
<string name="payment_mode_none">Ingen</string>
<string name="payment_mode_all">Alla</string>
<string name="payment_mode_credit_card">Kreditkort</string>
<string name="payment_mode_cash">Kontant</string>
<string name="payment_mode_check">Kontrollera</string>
<string name="payment_mode_online">Online</string>
<string name="payment_mode_transfer">Överföring</string>
<string name="category_none">Ingen</string>
<string name="category_all">Alla</string>
<string name="category_all_except_reimbursement">Alla utom ersättning</string>
<string name="category_groceries">Livsmedelsaffär</string>
<string name="category_leisure">Fest/Fest</string>
<string name="category_rent">Hyra</string>
<string name="category_bills">Räkning</string>
<string name="category_excursion">Utflykt/kultur</string>
<string name="category_health">Hälsa</string>
<string name="category_shopping">Shopping</string>
<string name="category_reimbursement">Ersättning</string>
<string name="category_restaurant">Restaurang</string>
<string name="category_accomodation">Boende</string>
<string name="category_transport">Transport</string>
<string name="category_sport">Sport</string>
<!-- Project specific -->
<string name="new_project_action">Vad</string>
<string name="new_project_where">Var</string>
<string name="where_local">Endast lokalt</string>
<string name="where_cospend">Cospend</string>
<string name="where_ihatemoney">IHateMoney</string>
<string name="todo_join">Anslut till befintligt projekt</string>
<string name="todo_create">Skapa nytt projekt</string>
<string name="import_tooltip">Importera från fil</string>
<string name="choose_account_project_dialog_title">Välj projekt</string>
<string name="choose_account_project_dialog_impossible">Inga projekt hittades på detta konto.</string>
<string name="choose_project_management_action">Projekt</string>
<string name="project_added_success">Projektet lades till.</string>
<string name="no_projects_text">Du har inga projekt än.</string>
<string name="configure_account_choice">Konfigurera Nextcloud konto</string>
<string name="add_project_choice">Lägg till projekt manuellt</string>
<string name="no_members_text">Inga medlemmar i detta projekt.</string>
<string name="no_bills_text">Inga räkningar hittades.</string>
<string name="member_already_exists">Medlemmen finns redan.</string>
<string name="activity_dialog_title">Projekt: %1$s</string>
<string name="remove_project_confirmation">Projekt %1$s borttaget.</string>
<string name="file_saved_success">Fil sparad: %1$s</string>
<string name="import_error_header">Importen misslyckades vid rad %d</string>
<string name="import_error_date">Ogiltigt datumformat på rad %d</string>
<string name="import_error_owers">Ogiltiga owers på rad %d</string>
<string name="add_member_dialog_title">Lägg till medlem</string>
<string name="edit_member_dialog_title">Redigera medlem</string>
<string name="member_edit_delete">Radera</string>
<string name="project_edition_no_change">Inga ändringar att spara.</string>
<!-- Settlement -->
<string name="center_none">Ingen (optimal)</string>
<string name="settle_who">Vem betalar</string>
<string name="settle_to_whom">Till vem</string>
<string name="settle_how_much">Belopp</string>
<string name="simple_settle_share">Dela</string>
<string name="simple_create_bills">Skapa räkningar</string>
<string name="settle_bill_what">Avräkning</string>
<!-- Currencies -->
<string name="currency_dialog_title">Välj valuta (%s)</string>
<string name="setting_none">Ingen</string>
<string name="setting_all">Alla</string>
<string name="currency_saved_success">Valutainställningar sparade.</string>
<string name="main_currency">Huvudvaluta</string>
<!-- Statistics -->
<string name="label_bills_suggested">Föreslagna kategorier</string>
<string name="label_bills_skip">Hoppa</string>
<string name="stats_date_min">Från</string>
<string name="stats_date_max">Till</string>
<string name="stats_who">Medlem</string>
<string name="stats_paid">Betald</string>
<string name="stats_spent">Spenderade</string>
<string name="stats_balance">Saldo</string>
<string name="total">Totalt: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">Anslutning misslyckades: %1$s</string>
<string name="error_create_remote_project_helper">Skapandet misslyckades: %1$s</string>
<string name="error_edit_remote_project_helper">Fel vid uppdatering av fjärrprojekt: %1$s</string>
<string name="remote_project_operation_no_network">Nätverket är inte tillgängligt för fjärrstyrning.</string>
<string name="error_scanning_bill_qr_code">Det gick inte att tolka QR-koden.</string>
<string name="error_token_mismatch">Autentiseringstoken matchar inte. Logga in igen.</string>
<string name="insufficient_access_level">Du har inte behörighet att utföra denna åtgärd.</string>
<string name="delete_label_confirmation_title">Ta bort etikett</string>
<string name="delete_label_confirmation_message">Är du säker på att du vill ta bort denna etikett?</string>
<!-- About -->
<string name="about_version">Version %1$s</string>
<string name="about_maintainer_title">Underhållare</string>
<string name="about_license_title">Licens</string>
<string name="about_source_title">Källkod</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Projekt %1$s</string>
<string name="share_chooser_title">Dela %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Cowspent</string>
<!-- Actions -->
<string name="action_new_bill">New bill</string>
<string name="action_add_project">Add project</string>
<string name="action_save">Save</string>
<string name="action_edit">Edit</string>
<string name="action_share">Share</string>
<string name="action_search">Search</string>
<string name="action_delete">Delete</string>
<string name="action_archive">Archive</string>
<string name="action_unarchive">Unarchive</string>
<string name="action_export">Export</string>
<string name="action_stats">Stats</string>
<string name="action_settle">Settle</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Settings</string>
<string name="action_label_bills">Label missing categories</string>
<string name="action_logout">Logout</string>
<string name="action_connect">Connect</string>
<string name="action_discard">Discard</string>
<string name="action_members">Members</string>
<string name="action_labels">Labels</string>
<string name="action_currencies">Currencies</string>
<!-- Titles -->
<string name="title_stats">Statistics</string>
<string name="title_edit_project">Edit project</string>
<string name="title_label_bills">Label Bills</string>
<string name="title_labels">Manage Labels</string>
<string name="title_about">About</string>
<string name="title_settle">Settle Project</string>
<string name="title_share">Share Project</string>
<string name="title_add_project">Add Project</string>
<string name="title_add_category">Add Category</string>
<string name="title_add_payment_mode">Add Payment Mode</string>
<string name="title_account">Nextcloud Account</string>
<string name="title_share_web">Web link</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">Are you sure?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">All bills</string>
<string name="label_categories">Categories</string>
<string name="label_payment_modes">Payment Modes</string>
<string name="label_name">Name</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Color</string>
<string name="label_weight">Weight</string>
<string name="label_activated">Activated</string>
<string name="label_password">Password</string>
<string name="label_email">E-mail</string>
<string name="label_url">Server address</string>
<string name="label_username">Username</string>
<string name="label_comment">Comment</string>
<string name="label_what">What?</string>
<string name="label_payer">Who paid?</string>
<string name="label_owers">For whom?</string>
<string name="label_repeat">Repeat every</string>
<string name="label_mode">Mode</string>
<string name="label_category">Category</string>
<string name="label_project_id">Project ID/name</string>
<string name="label_project_title">Project title</string>
<string name="label_use_sso">Use Nextcloud App Account</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Unsaved changes</string>
<string name="dialog_unsaved_changes_msg">Save changes before leaving?</string>
<string name="dialog_confirm_remove_project_msg">The remote project will not be deleted.</string>
<string name="dialog_sync_error_title">Sync error</string>
<string name="dialog_sync_error_msg">Sync failed for %1$s.\n\n%2$s</string>
<string name="dialog_balanced_msg">Expenses are already balanced.</string>
<string name="msg_project_added">Project %1$s added</string>
<string name="msg_bill_labeled_done">All bills labeled</string>
<string name="msg_no_suggestions">No suggestions</string>
<string name="msg_auth_warning">Requires Cospend v0.3.4+.</string>
<string name="msg_link_copied">Link copied to clipboard</string>
<string name="msg_share_qr">Scan QR code or share the link to join.</string>
<string name="msg_share_web">Link for web browser access.</string>
<string name="msg_share_qr_warn">Share this link with a Cowspent user.</string>
<string name="msg_settle_intro">Settlement for %1$s:</string>
<string name="msg_settle_sentence">%1$s owes %3$.2f to %2$s</string>
<string name="msg_stats_intro">Stats for %1$s:</string>
<string name="msg_stats_header">Member (Paid | Spent | Balance)</string>
<string name="msg_logged_in_as">Logged in as %1$s</string>
<!-- Errors -->
<string name="error_generic">Error</string>
<string name="error_loading">Loading</string>
<string name="error_no_projects">No projects found</string>
<string name="error_no_members">No members found</string>
<string name="error_no_bills">No bills found</string>
<string name="error_no_member">At least one member required</string>
<string name="error_maintenance_mode">Server is in maintenance mode</string>
<string name="error_400">400 Bad request</string>
<string name="error_401">401 Unauthorized</string>
<string name="error_403">403 Forbidden</string>
<string name="error_404">404 Not Found</string>
<string name="error_sync">Sync failed: %1$s</string>
<string name="error_invalid_login">Invalid login: %1$s</string>
<string name="error_auth">Wrong username or password</string>
<string name="error_json">Invalid server response</string>
<string name="error_req_failed">Request failed</string>
<string name="error_invalid_email">Invalid e-mail</string>
<string name="error_invalid_project_id">Invalid project ID</string>
<string name="error_invalid_project_name">Invalid project title</string>
<string name="error_invalid_bill_name">Invalid bill name</string>
<string name="error_invalid_bill_date">Invalid bill date</string>
<string name="error_invalid_bill_payer">Payer required</string>
<string name="error_invalid_bill_owers">Owers required</string>
<string name="error_no_network">No network connection</string>
<string name="error_server">Server error</string>
<string name="error_io">Server connection broken</string>
<string name="error_share_impossible">Cannot share this project</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Connect to Nextcloud account</string>
<string name="drawer_last_sync">Last sync: %1$02d:%2$02d</string>
<string name="simple_cancel">Cancel</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">Ok</string>
<string name="simple_yes">Yes</string>
<string name="simple_no">No</string>
<string name="simple_close">Close</string>
<!-- Settings -->
<string name="settings_appearance">Appearance</string>
<string name="settings_network">Network</string>
<string name="settings_other">Other</string>
<string name="settings_night_mode">Theme</string>
<string name="settings_offline_mode">Offline mode</string>
<string name="settings_offline_mode_summary">Only sync manually.</string>
<string name="settings_color_custom">Custom color</string>
<string name="settings_color_mode">Color Selection</string>
<string name="settings_show_archived">Show archived projects</string>
<string name="settings_beta_features">Beta Features</string>
<string name="settings_beta_features_summary">Enable experimental features. Use at your own risk.</string>
<string name="settings_url_warn_http">WARNING: \"http\" is unsafe. Use \"https\".</string>
<string name="settings_colorpicker_title">Choose Color</string>
<string name="pref_value_color_system">System</string>
<string name="pref_value_color_server">Nextcloud</string>
<string name="pref_value_color_manual">Manual</string>
<string name="pref_value_theme_light">Light</string>
<string name="pref_value_theme_dark">Dark</string>
<string name="pref_value_theme_system">Follow system</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">No repeat</string>
<string name="repeat_day">Daily</string>
<string name="repeat_week">Weekly</string>
<string name="repeat_fortnight">Fortnightly</string>
<string name="repeat_month">Monthly</string>
<string name="repeat_year">Yearly</string>
<string name="payment_mode_none">None</string>
<string name="payment_mode_all">All</string>
<string name="payment_mode_credit_card">Credit card</string>
<string name="payment_mode_cash">Cash</string>
<string name="payment_mode_check">Check</string>
<string name="payment_mode_online">Online</string>
<string name="payment_mode_transfer">Transfer</string>
<string name="category_none">None</string>
<string name="category_all">All</string>
<string name="category_all_except_reimbursement">All except reimbursement</string>
<string name="category_groceries">Grocery</string>
<string name="category_leisure">Bar/Party</string>
<string name="category_rent">Rent</string>
<string name="category_bills">Bill</string>
<string name="category_excursion">Excursion/Culture</string>
<string name="category_health">Health</string>
<string name="category_shopping">Shopping</string>
<string name="category_reimbursement">Reimbursement</string>
<string name="category_restaurant">Restaurant</string>
<string name="category_accomodation">Accommodation</string>
<string name="category_transport">Transport</string>
<string name="category_sport">Sport</string>
<!-- Project specific -->
<string name="new_project_action">What</string>
<string name="new_project_where">Where</string>
<string name="where_local">Local only</string>
<string name="where_cospend">Cospend</string>
<string name="where_ihatemoney">IHateMoney</string>
<string name="todo_join">Join existing project</string>
<string name="todo_create">Create new project</string>
<string name="import_tooltip">Import from file</string>
<string name="choose_account_project_dialog_title">Choose project</string>
<string name="choose_account_project_dialog_impossible">No projects found on this account.</string>
<string name="choose_project_management_action">Project</string>
<string name="project_added_success">Project added successfully.</string>
<string name="no_projects_text">You have no projects yet.</string>
<string name="configure_account_choice">Configure Nextcloud account</string>
<string name="add_project_choice">Add project manually</string>
<string name="no_members_text">No members in this project.</string>
<string name="no_bills_text">No bills found.</string>
<string name="member_already_exists">Member already exists.</string>
<string name="activity_dialog_title">Project: %1$s</string>
<string name="remove_project_confirmation">Project %1$s removed.</string>
<string name="file_saved_success">File saved: %1$s</string>
<string name="import_error_header">Import failed at row %d</string>
<string name="import_error_date">Invalid date format at row %d</string>
<string name="import_error_owers">Invalid owers at row %d</string>
<string name="add_member_dialog_title">Add Member</string>
<string name="edit_member_dialog_title">Edit Member</string>
<string name="member_edit_delete">Delete</string>
<string name="project_edition_no_change">No changes to save.</string>
<!-- Settlement -->
<string name="center_none">None (Optimal)</string>
<string name="settle_who">Who pays</string>
<string name="settle_to_whom">To whom</string>
<string name="settle_how_much">Amount</string>
<string name="simple_settle_share">Share</string>
<string name="simple_create_bills">Create bills</string>
<string name="settle_bill_what">Settlement</string>
<!-- Currencies -->
<string name="currency_dialog_title">Choose Currency (%s)</string>
<string name="setting_none">None</string>
<string name="setting_all">All</string>
<string name="currency_saved_success">Currency settings saved.</string>
<string name="main_currency">Main Currency</string>
<!-- Statistics -->
<string name="label_bills_suggested">Suggested Categories</string>
<string name="label_bills_skip">Skip</string>
<string name="stats_date_min">From</string>
<string name="stats_date_max">To</string>
<string name="stats_who">Member</string>
<string name="stats_paid">Paid</string>
<string name="stats_spent">Spent</string>
<string name="stats_balance">Balance</string>
<string name="total">Total: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">Connection failed: %1$s</string>
<string name="error_create_remote_project_helper">Creation failed: %1$s</string>
<string name="error_edit_remote_project_helper">Error updating remote project: %1$s</string>
<string name="remote_project_operation_no_network">Network unavailable for remote operation.</string>
<string name="error_scanning_bill_qr_code">Failed to parse QR code.</string>
<string name="error_token_mismatch">Authentication token mismatch. Please log in again.</string>
<string name="insufficient_access_level">You don\'t have permission to perform this action.</string>
<string name="delete_label_confirmation_title">Delete Label</string>
<string name="delete_label_confirmation_message">Are you sure you want to delete this label?</string>
<!-- About -->
<string name="about_version">Version %1$s</string>
<string name="about_maintainer_title">Maintainer</string>
<string name="about_license_title">License</string>
<string name="about_source_title">Source code</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Project %1$s</string>
<string name="share_chooser_title">Share %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Ковтаг</string>
<!-- Actions -->
<string name="action_new_bill">Нових рахунок до оплати</string>
<string name="action_add_project">Додати проект</string>
<string name="action_save">Зберегти</string>
<string name="action_edit">Редагувати</string>
<string name="action_share">Поділитись</string>
<string name="action_search">Пошук</string>
<string name="action_delete">Видалити</string>
<string name="action_archive">Архів</string>
<string name="action_unarchive">Видобути з архіву</string>
<string name="action_export">Експорт</string>
<string name="action_stats">Статистика</string>
<string name="action_settle">Сетле</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Налаштування</string>
<string name="action_label_bills">Ярлик відсутні категорії</string>
<string name="action_logout">Вихід із системи</string>
<string name="action_connect">Підключитися</string>
<string name="action_discard">Відкинути</string>
<string name="action_members">Члени</string>
<string name="action_labels">Мітки</string>
<string name="action_currencies">Валюти</string>
<!-- Titles -->
<string name="title_stats">Статистика</string>
<string name="title_edit_project">Редагувати проект</string>
<string name="title_label_bills">Мітки</string>
<string name="title_labels">Керувати мітками</string>
<string name="title_about">Про програму</string>
<string name="title_settle">Врегулювати проект</string>
<string name="title_share">Поділитися проектом</string>
<string name="title_add_project">Додати проект</string>
<string name="title_add_category">Додати Категорію</string>
<string name="title_add_payment_mode">Додати режим оплати</string>
<string name="title_account">Обліковий запис Nextcloud</string>
<string name="title_share_web">Веб-посилання</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">Ви впевнені?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">Усі рахунки</string>
<string name="label_categories">Категорії</string>
<string name="label_payment_modes">Режими оплати</string>
<string name="label_name">Ім\'я</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Колір</string>
<string name="label_weight">Вага</string>
<string name="label_activated">Активовано</string>
<string name="label_password">Пароль</string>
<string name="label_email">Ел. пошта</string>
<string name="label_url">Адреса сервера</string>
<string name="label_username">Ім\'я користувача</string>
<string name="label_comment">Коментар</string>
<string name="label_what">А що?</string>
<string name="label_payer">Хто заплатив?</string>
<string name="label_owers">Для кого?</string>
<string name="label_repeat">Повторювати кожні</string>
<string name="label_mode">Режим</string>
<string name="label_category">Категорія</string>
<string name="label_project_id">ID проекту/ім\'я</string>
<string name="label_project_title">Заголовок проекту</string>
<string name="label_use_sso">Використовувати обліковий запис Nextcloud App</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Незбережені зміни</string>
<string name="dialog_unsaved_changes_msg">Зберегти зміни перед відходом?</string>
<string name="dialog_confirm_remove_project_msg">Віддалений проект не буде видалено.</string>
<string name="dialog_sync_error_title">Помилка синхронізації</string>
<string name="dialog_sync_error_msg">Sync failed for %1$s.\n\n%2$s</string>
<string name="dialog_balanced_msg">Витрати вже врівноважені.</string>
<string name="msg_project_added">Проект %1$s додано</string>
<string name="msg_bill_labeled_done">Всі рахунки позначені</string>
<string name="msg_no_suggestions">Немає припущень</string>
<string name="msg_auth_warning">Потребує спорядження v0.3.4+.</string>
<string name="msg_link_copied">Посилання скопійовано до буфера обміну</string>
<string name="msg_share_qr">Скануйте QR-код або поділіться посиланням, щоб приєднатися.</string>
<string name="msg_share_web">Посилання для доступу до веб-браузера.</string>
<string name="msg_share_qr_warn">Поділитися цим посиланням з користувачем Cowspent користувача.</string>
<string name="msg_settle_intro">Settlement for %1$s:</string>
<string name="msg_settle_sentence">%1$s owes %3$.2f to %2$s</string>
<string name="msg_stats_intro">Статистика для %1$s:</string>
<string name="msg_stats_header">Член (Paid | Витрачено | Баланс)</string>
<string name="msg_logged_in_as">Ви увійшли як %1$s</string>
<!-- Errors -->
<string name="error_generic">Помилка</string>
<string name="error_loading">Завантаження</string>
<string name="error_no_projects">Проектів не знайдено</string>
<string name="error_no_members">Учасників не знайдено</string>
<string name="error_no_bills">Рахунків не знайдено</string>
<string name="error_no_member">Принаймні одного учасника необхідно</string>
<string name="error_maintenance_mode">Сервер знаходиться в режимі обслуговування</string>
<string name="error_400">400 поганий запит</string>
<string name="error_401">401 Неавторизовано</string>
<string name="error_403">403 Заборонено</string>
<string name="error_404">404 Не знайдено</string>
<string name="error_sync">Помилка синхронізації: %1$s</string>
<string name="error_invalid_login">Invalid login: %1$s</string>
<string name="error_auth">Неправильне ім\'я користувача або пароль</string>
<string name="error_json">Неправильна відповідь від сервера</string>
<string name="error_req_failed">Не вдалося виконати запит</string>
<string name="error_invalid_email">Некоректна e-mail адреса</string>
<string name="error_invalid_project_id">Недійсний ID проекту</string>
<string name="error_invalid_project_name">Недійсна назва проекту</string>
<string name="error_invalid_bill_name">Некоректна назва рахунку</string>
<string name="error_invalid_bill_date">Некоректна дата рахунку</string>
<string name="error_invalid_bill_payer">Потрібен платник</string>
<string name="error_invalid_bill_owers">Власники необхідні</string>
<string name="error_no_network">Немає з’єднання з мережею</string>
<string name="error_server">Помилка сервера</string>
<string name="error_io">З\'єднання з сервером розірвано</string>
<string name="error_share_impossible">Неможливо поділитися цим проектом</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Підключити до облікового запису Nextcloud</string>
<string name="drawer_last_sync">Last sync: %1$02d:%2$02d</string>
<string name="simple_cancel">Скасувати</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">Гаразд</string>
<string name="simple_yes">Так</string>
<string name="simple_no">Ні</string>
<string name="simple_close">Закрити</string>
<!-- Settings -->
<string name="settings_appearance">Зовнішній вигляд</string>
<string name="settings_network">Мережа</string>
<string name="settings_other">Інше</string>
<string name="settings_night_mode">Тема</string>
<string name="settings_offline_mode">Автономний режим</string>
<string name="settings_offline_mode_summary">Синхронізувати тільки вручну.</string>
<string name="settings_color_custom">Власний колір</string>
<string name="settings_color_mode">Вибір кольору</string>
<string name="settings_show_archived">Показати архівовані проекти</string>
<string name="settings_beta_features">Можливості Бета</string>
<string name="settings_beta_features_summary">Увімкнення експериментальних функцій. Використовуйте на свій страх і ризик.</string>
<string name="settings_url_warn_http">ПОПЕРЕДЖЕННЯ: \"http\" небезпечний. Використовуйте \"https\".</string>
<string name="settings_colorpicker_title">Вибрати колір</string>
<string name="pref_value_color_system">Система</string>
<string name="pref_value_color_server">Наступна хмара</string>
<string name="pref_value_color_manual">Вручну</string>
<string name="pref_value_theme_light">Світла</string>
<string name="pref_value_theme_dark">Темна</string>
<string name="pref_value_theme_system">Наслідувати систему</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">Без повторень</string>
<string name="repeat_day">Щоденно</string>
<string name="repeat_week">Щотижня</string>
<string name="repeat_fortnight">Фортечна</string>
<string name="repeat_month">Щомісячно</string>
<string name="repeat_year">За рік</string>
<string name="payment_mode_none">Без ефекту</string>
<string name="payment_mode_all">Всі</string>
<string name="payment_mode_credit_card">Кредитна картка</string>
<string name="payment_mode_cash">Готівкою</string>
<string name="payment_mode_check">Перевірити</string>
<string name="payment_mode_online">Онлайн</string>
<string name="payment_mode_transfer">Переказ</string>
<string name="category_none">Без ефекту</string>
<string name="category_all">Всі</string>
<string name="category_all_except_reimbursement">Усі крім відшкодування</string>
<string name="category_groceries">Ґросері</string>
<string name="category_leisure">Бар/З групою</string>
<string name="category_rent">Оренда</string>
<string name="category_bills">Рахунок</string>
<string name="category_excursion">Екскурсія/Культура</string>
<string name="category_health">Здоров\'я</string>
<string name="category_shopping">Шопінг</string>
<string name="category_reimbursement">Реімбурсація</string>
<string name="category_restaurant">Ресторан</string>
<string name="category_accomodation">Акомодація</string>
<string name="category_transport">Транспорт</string>
<string name="category_sport">Спорт</string>
<!-- Project specific -->
<string name="new_project_action">Що</string>
<string name="new_project_where">Де</string>
<string name="where_local">Лише локально</string>
<string name="where_cospend">Косменда</string>
<string name="where_ihatemoney">Ігатегрошима</string>
<string name="todo_join">Приєднатися до існуючого проекту</string>
<string name="todo_create">Створити новий проект</string>
<string name="import_tooltip">Імпортувати з файлу</string>
<string name="choose_account_project_dialog_title">Вибрати проект</string>
<string name="choose_account_project_dialog_impossible">В цьому обліковому записі не знайдено жодних проектів.</string>
<string name="choose_project_management_action">Проект</string>
<string name="project_added_success">Проект успішно доданий.</string>
<string name="no_projects_text">У вас поки що немає проектів.</string>
<string name="configure_account_choice">Налаштування облікового запису Nextcloud</string>
<string name="add_project_choice">Додати проект вручну</string>
<string name="no_members_text">Немає учасників в цьому проекті.</string>
<string name="no_bills_text">Рахунків не знайдено.</string>
<string name="member_already_exists">Участь вже існує.</string>
<string name="activity_dialog_title">Проект: %1$s</string>
<string name="remove_project_confirmation">Проект %1$s видалений.</string>
<string name="file_saved_success">Файл збережено: %1$s</string>
<string name="import_error_header">Import failed at row %d</string>
<string name="import_error_date">Неприпустимий формат дати у рядку %d</string>
<string name="import_error_owers">Недійсні рядки у рядку %d</string>
<string name="add_member_dialog_title">Додати учасника</string>
<string name="edit_member_dialog_title">Редагувати учасника</string>
<string name="member_edit_delete">Видалити</string>
<string name="project_edition_no_change">Зміни для збереження відсутні.</string>
<!-- Settlement -->
<string name="center_none">Немає (оптимально)</string>
<string name="settle_who">Хто платить</string>
<string name="settle_to_whom">Кому</string>
<string name="settle_how_much">Сума</string>
<string name="simple_settle_share">Поділитись</string>
<string name="simple_create_bills">Створити рахунки</string>
<string name="settle_bill_what">Поселення</string>
<!-- Currencies -->
<string name="currency_dialog_title">Оберіть валюту (%s)</string>
<string name="setting_none">Без ефекту</string>
<string name="setting_all">Всі</string>
<string name="currency_saved_success">Налаштування валют збережено.</string>
<string name="main_currency">Основна валюта</string>
<!-- Statistics -->
<string name="label_bills_suggested">Пропоновані категорії</string>
<string name="label_bills_skip">Пропустити</string>
<string name="stats_date_min">Від</string>
<string name="stats_date_max">На</string>
<string name="stats_who">Гравець</string>
<string name="stats_paid">Сплачено</string>
<string name="stats_spent">Витрачено</string>
<string name="stats_balance">Баланс</string>
<string name="total">Всього: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">Помилка з’єднання: %1$s</string>
<string name="error_create_remote_project_helper">Помилка при створенні %1$s</string>
<string name="error_edit_remote_project_helper">Помилка оновлення віддаленого проекту: %1$s</string>
<string name="remote_project_operation_no_network">Мережа недоступна для дистанційної операції.</string>
<string name="error_scanning_bill_qr_code">Не вдалося обробити QR-код.</string>
<string name="error_token_mismatch">Токен автентифікації не збігається. Будь ласка, увійдіть знову.</string>
<string name="insufficient_access_level">У вас немає дозволу на виконання цієї дії.</string>
<string name="delete_label_confirmation_title">Видалити мітку</string>
<string name="delete_label_confirmation_message">Ви впевнені, що хочете видалити цю мітку?</string>
<!-- About -->
<string name="about_version">Версія %1$s</string>
<string name="about_maintainer_title">Підтримка моделі</string>
<string name="about_license_title">Ліцензія</string>
<string name="about_source_title">Початковий код</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Project %1$s</string>
<string name="share_chooser_title">Поділитися %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Cowspent</string>
<!-- Actions -->
<string name="action_new_bill">New bill</string>
<string name="action_add_project">Add project</string>
<string name="action_save">Save</string>
<string name="action_edit">Edit</string>
<string name="action_share">Share</string>
<string name="action_search">Search</string>
<string name="action_delete">Delete</string>
<string name="action_archive">Archive</string>
<string name="action_unarchive">Unarchive</string>
<string name="action_export">Export</string>
<string name="action_stats">Stats</string>
<string name="action_settle">Settle</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Settings</string>
<string name="action_label_bills">Label missing categories</string>
<string name="action_logout">Logout</string>
<string name="action_connect">Connect</string>
<string name="action_discard">Discard</string>
<string name="action_members">Members</string>
<string name="action_labels">Labels</string>
<string name="action_currencies">Currencies</string>
<!-- Titles -->
<string name="title_stats">Statistics</string>
<string name="title_edit_project">Edit project</string>
<string name="title_label_bills">Label Bills</string>
<string name="title_labels">Manage Labels</string>
<string name="title_about">About</string>
<string name="title_settle">Settle Project</string>
<string name="title_share">Share Project</string>
<string name="title_add_project">Add Project</string>
<string name="title_add_category">Add Category</string>
<string name="title_add_payment_mode">Add Payment Mode</string>
<string name="title_account">Nextcloud Account</string>
<string name="title_share_web">Web link</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">Are you sure?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">All bills</string>
<string name="label_categories">Categories</string>
<string name="label_payment_modes">Payment Modes</string>
<string name="label_name">Name</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Color</string>
<string name="label_weight">Weight</string>
<string name="label_activated">Activated</string>
<string name="label_password">Password</string>
<string name="label_email">E-mail</string>
<string name="label_url">Server address</string>
<string name="label_username">Username</string>
<string name="label_comment">Comment</string>
<string name="label_what">What?</string>
<string name="label_payer">Who paid?</string>
<string name="label_owers">For whom?</string>
<string name="label_repeat">Repeat every</string>
<string name="label_mode">Mode</string>
<string name="label_category">Category</string>
<string name="label_project_id">Project ID/name</string>
<string name="label_project_title">Project title</string>
<string name="label_use_sso">Use Nextcloud App Account</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Unsaved changes</string>
<string name="dialog_unsaved_changes_msg">Save changes before leaving?</string>
<string name="dialog_confirm_remove_project_msg">The remote project will not be deleted.</string>
<string name="dialog_sync_error_title">Sync error</string>
<string name="dialog_sync_error_msg">Sync failed for %1$s.\n\n%2$s</string>
<string name="dialog_balanced_msg">Expenses are already balanced.</string>
<string name="msg_project_added">Project %1$s added</string>
<string name="msg_bill_labeled_done">All bills labeled</string>
<string name="msg_no_suggestions">No suggestions</string>
<string name="msg_auth_warning">Requires Cospend v0.3.4+.</string>
<string name="msg_link_copied">Link copied to clipboard</string>
<string name="msg_share_qr">Scan QR code or share the link to join.</string>
<string name="msg_share_web">Link for web browser access.</string>
<string name="msg_share_qr_warn">Share this link with a Cowspent user.</string>
<string name="msg_settle_intro">Settlement for %1$s:</string>
<string name="msg_settle_sentence">%1$s owes %3$.2f to %2$s</string>
<string name="msg_stats_intro">Stats for %1$s:</string>
<string name="msg_stats_header">Member (Paid | Spent | Balance)</string>
<string name="msg_logged_in_as">Logged in as %1$s</string>
<!-- Errors -->
<string name="error_generic">Error</string>
<string name="error_loading">Loading</string>
<string name="error_no_projects">No projects found</string>
<string name="error_no_members">No members found</string>
<string name="error_no_bills">No bills found</string>
<string name="error_no_member">At least one member required</string>
<string name="error_maintenance_mode">Server is in maintenance mode</string>
<string name="error_400">400 Bad request</string>
<string name="error_401">401 Unauthorized</string>
<string name="error_403">403 Forbidden</string>
<string name="error_404">404 Not Found</string>
<string name="error_sync">Sync failed: %1$s</string>
<string name="error_invalid_login">Invalid login: %1$s</string>
<string name="error_auth">Wrong username or password</string>
<string name="error_json">Invalid server response</string>
<string name="error_req_failed">Request failed</string>
<string name="error_invalid_email">Invalid e-mail</string>
<string name="error_invalid_project_id">Invalid project ID</string>
<string name="error_invalid_project_name">Invalid project title</string>
<string name="error_invalid_bill_name">Invalid bill name</string>
<string name="error_invalid_bill_date">Invalid bill date</string>
<string name="error_invalid_bill_payer">Payer required</string>
<string name="error_invalid_bill_owers">Owers required</string>
<string name="error_no_network">No network connection</string>
<string name="error_server">Server error</string>
<string name="error_io">Server connection broken</string>
<string name="error_share_impossible">Cannot share this project</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Connect to Nextcloud account</string>
<string name="drawer_last_sync">Last sync: %1$02d:%2$02d</string>
<string name="simple_cancel">Cancel</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">Ok</string>
<string name="simple_yes">Yes</string>
<string name="simple_no">No</string>
<string name="simple_close">Close</string>
<!-- Settings -->
<string name="settings_appearance">Appearance</string>
<string name="settings_network">Network</string>
<string name="settings_other">Other</string>
<string name="settings_night_mode">Theme</string>
<string name="settings_offline_mode">Offline mode</string>
<string name="settings_offline_mode_summary">Only sync manually.</string>
<string name="settings_color_custom">Custom color</string>
<string name="settings_color_mode">Color Selection</string>
<string name="settings_show_archived">Show archived projects</string>
<string name="settings_beta_features">Beta Features</string>
<string name="settings_beta_features_summary">Enable experimental features. Use at your own risk.</string>
<string name="settings_url_warn_http">WARNING: \"http\" is unsafe. Use \"https\".</string>
<string name="settings_colorpicker_title">Choose Color</string>
<string name="pref_value_color_system">System</string>
<string name="pref_value_color_server">Nextcloud</string>
<string name="pref_value_color_manual">Manual</string>
<string name="pref_value_theme_light">Light</string>
<string name="pref_value_theme_dark">Dark</string>
<string name="pref_value_theme_system">Follow system</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">No repeat</string>
<string name="repeat_day">Daily</string>
<string name="repeat_week">Weekly</string>
<string name="repeat_fortnight">Fortnightly</string>
<string name="repeat_month">Monthly</string>
<string name="repeat_year">Yearly</string>
<string name="payment_mode_none">None</string>
<string name="payment_mode_all">All</string>
<string name="payment_mode_credit_card">Credit card</string>
<string name="payment_mode_cash">Cash</string>
<string name="payment_mode_check">Check</string>
<string name="payment_mode_online">Online</string>
<string name="payment_mode_transfer">Transfer</string>
<string name="category_none">None</string>
<string name="category_all">All</string>
<string name="category_all_except_reimbursement">All except reimbursement</string>
<string name="category_groceries">Grocery</string>
<string name="category_leisure">Bar/Party</string>
<string name="category_rent">Rent</string>
<string name="category_bills">Bill</string>
<string name="category_excursion">Excursion/Culture</string>
<string name="category_health">Health</string>
<string name="category_shopping">Shopping</string>
<string name="category_reimbursement">Reimbursement</string>
<string name="category_restaurant">Restaurant</string>
<string name="category_accomodation">Accommodation</string>
<string name="category_transport">Transport</string>
<string name="category_sport">Sport</string>
<!-- Project specific -->
<string name="new_project_action">What</string>
<string name="new_project_where">Where</string>
<string name="where_local">Local only</string>
<string name="where_cospend">Cospend</string>
<string name="where_ihatemoney">IHateMoney</string>
<string name="todo_join">Join existing project</string>
<string name="todo_create">Create new project</string>
<string name="import_tooltip">Import from file</string>
<string name="choose_account_project_dialog_title">Choose project</string>
<string name="choose_account_project_dialog_impossible">No projects found on this account.</string>
<string name="choose_project_management_action">Project</string>
<string name="project_added_success">Project added successfully.</string>
<string name="no_projects_text">You have no projects yet.</string>
<string name="configure_account_choice">Configure Nextcloud account</string>
<string name="add_project_choice">Add project manually</string>
<string name="no_members_text">No members in this project.</string>
<string name="no_bills_text">No bills found.</string>
<string name="member_already_exists">Member already exists.</string>
<string name="activity_dialog_title">Project: %1$s</string>
<string name="remove_project_confirmation">Project %1$s removed.</string>
<string name="file_saved_success">File saved: %1$s</string>
<string name="import_error_header">Import failed at row %d</string>
<string name="import_error_date">Invalid date format at row %d</string>
<string name="import_error_owers">Invalid owers at row %d</string>
<string name="add_member_dialog_title">Add Member</string>
<string name="edit_member_dialog_title">Edit Member</string>
<string name="member_edit_delete">Delete</string>
<string name="project_edition_no_change">No changes to save.</string>
<!-- Settlement -->
<string name="center_none">None (Optimal)</string>
<string name="settle_who">Who pays</string>
<string name="settle_to_whom">To whom</string>
<string name="settle_how_much">Amount</string>
<string name="simple_settle_share">Share</string>
<string name="simple_create_bills">Create bills</string>
<string name="settle_bill_what">Settlement</string>
<!-- Currencies -->
<string name="currency_dialog_title">Choose Currency (%s)</string>
<string name="setting_none">None</string>
<string name="setting_all">All</string>
<string name="currency_saved_success">Currency settings saved.</string>
<string name="main_currency">Main Currency</string>
<!-- Statistics -->
<string name="label_bills_suggested">Suggested Categories</string>
<string name="label_bills_skip">Skip</string>
<string name="stats_date_min">From</string>
<string name="stats_date_max">To</string>
<string name="stats_who">Member</string>
<string name="stats_paid">Paid</string>
<string name="stats_spent">Spent</string>
<string name="stats_balance">Balance</string>
<string name="total">Total: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">Connection failed: %1$s</string>
<string name="error_create_remote_project_helper">Creation failed: %1$s</string>
<string name="error_edit_remote_project_helper">Error updating remote project: %1$s</string>
<string name="remote_project_operation_no_network">Network unavailable for remote operation.</string>
<string name="error_scanning_bill_qr_code">Failed to parse QR code.</string>
<string name="error_token_mismatch">Authentication token mismatch. Please log in again.</string>
<string name="insufficient_access_level">You don\'t have permission to perform this action.</string>
<string name="delete_label_confirmation_title">Delete Label</string>
<string name="delete_label_confirmation_message">Are you sure you want to delete this label?</string>
<!-- About -->
<string name="about_version">Version %1$s</string>
<string name="about_maintainer_title">Maintainer</string>
<string name="about_license_title">License</string>
<string name="about_source_title">Source code</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Project %1$s</string>
<string name="share_chooser_title">Share %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">花了</string>
<!-- Actions -->
<string name="action_new_bill">新建账单</string>
<string name="action_add_project">添加项目</string>
<string name="action_save">保存</string>
<string name="action_edit">编辑</string>
<string name="action_share">分享</string>
<string name="action_search">搜索</string>
<string name="action_delete">删除</string>
<string name="action_archive">存档</string>
<string name="action_unarchive">取消存档</string>
<string name="action_export">导出</string>
<string name="action_stats">统计信息</string>
<string name="action_settle">解决</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">设置</string>
<string name="action_label_bills">标签缺少类别</string>
<string name="action_logout">注销</string>
<string name="action_connect">连接</string>
<string name="action_discard">放弃...</string>
<string name="action_members">成员</string>
<string name="action_labels">标签</string>
<string name="action_currencies">货币</string>
<!-- Titles -->
<string name="title_stats">统计</string>
<string name="title_edit_project">编辑项目</string>
<string name="title_label_bills">标签计费</string>
<string name="title_labels">管理标签</string>
<string name="title_about">关于</string>
<string name="title_settle">Settle 项目</string>
<string name="title_share">分享项目</string>
<string name="title_add_project">添加项目</string>
<string name="title_add_category">添加类别</string>
<string name="title_add_payment_mode">添加支付模式</string>
<string name="title_account">下次云帐户</string>
<string name="title_share_web">友情链接</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">您确定吗?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">所有账单</string>
<string name="label_categories">类别管理</string>
<string name="label_payment_modes">支付方式</string>
<string name="label_name">名称</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">颜色</string>
<string name="label_weight">权重</string>
<string name="label_activated">已激活</string>
<string name="label_password">密码</string>
<string name="label_email">电子邮箱</string>
<string name="label_url">服务器地址</string>
<string name="label_username">用户名</string>
<string name="label_comment">评论</string>
<string name="label_what">什么?</string>
<string name="label_payer">谁付款?</string>
<string name="label_owers">给谁?</string>
<string name="label_repeat">重复每</string>
<string name="label_mode">模式</string>
<string name="label_category">类别</string>
<string name="label_project_id">项目 ID/名称</string>
<string name="label_project_title">项目标题</string>
<string name="label_use_sso">使用 Nextcloud App 帐户</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">未保存的更改</string>
<string name="dialog_unsaved_changes_msg">离开前保存更改吗?</string>
<string name="dialog_confirm_remove_project_msg">远程项目将不会被删除。</string>
<string name="dialog_sync_error_title">同步错误</string>
<string name="dialog_sync_error_msg">%1$s同步失败。\n\n%2$s</string>
<string name="dialog_balanced_msg">支出已经平衡。</string>
<string name="msg_project_added">项目 %1$s 已添加</string>
<string name="msg_bill_labeled_done">所有已标记的账单</string>
<string name="msg_no_suggestions">没有建议</string>
<string name="msg_auth_warning">需要花费v0.3.4+。</string>
<string name="msg_link_copied">链接已复制到剪贴板</string>
<string name="msg_share_qr">扫描二维码或共享链接以加入。</string>
<string name="msg_share_web">网页浏览器访问链接。</string>
<string name="msg_share_qr_warn">与一个花费的用户共享此链接。</string>
<string name="msg_settle_intro">%1$s结算:</string>
<string name="msg_settle_sentence">%1$s 欠 %3$.2f %2$s</string>
<string name="msg_stats_intro">%1$s 的统计信息:</string>
<string name="msg_stats_header">会员 (Paid | 花了 | 余额)</string>
<string name="msg_logged_in_as">以 %1$s 身份登录</string>
<!-- Errors -->
<string name="error_generic">错误</string>
<string name="error_loading">正在加载</string>
<string name="error_no_projects">未找到项目</string>
<string name="error_no_members">未找到成员</string>
<string name="error_no_bills">未找到账单</string>
<string name="error_no_member">至少需要一个成员</string>
<string name="error_maintenance_mode">服务器处于维护模式</string>
<string name="error_400">400 个错误请求</string>
<string name="error_401">401 未授权</string>
<string name="error_403">403 禁止</string>
<string name="error_404">404未找到</string>
<string name="error_sync">同步失败: %1$s</string>
<string name="error_invalid_login">无效登录名: %1$s</string>
<string name="error_auth">用户名或密码错误</string>
<string name="error_json">服务器响应无效</string>
<string name="error_req_failed">请求失败</string>
<string name="error_invalid_email">无效的电子邮件</string>
<string name="error_invalid_project_id">无效的项目 ID</string>
<string name="error_invalid_project_name">无效的项目标题</string>
<string name="error_invalid_bill_name">无效的账单名称</string>
<string name="error_invalid_bill_date">无效的账单日期</string>
<string name="error_invalid_bill_payer">需要付款人</string>
<string name="error_invalid_bill_owers">需要所有者</string>
<string name="error_no_network">没有网络连接</string>
<string name="error_server">服务器错误</string>
<string name="error_io">服务器连接已损坏</string>
<string name="error_share_impossible">无法分享此项目</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">连接到下一个云账户</string>
<string name="drawer_last_sync">上次同步: %1$02d:%2$02d</string>
<string name="simple_cancel">取消</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">好的</string>
<string name="simple_yes"></string>
<string name="simple_no"></string>
<string name="simple_close">关闭</string>
<!-- Settings -->
<string name="settings_appearance">外观</string>
<string name="settings_network">网络</string>
<string name="settings_other">其他</string>
<string name="settings_night_mode">主题</string>
<string name="settings_offline_mode">离线模式</string>
<string name="settings_offline_mode_summary">只手动同步</string>
<string name="settings_color_custom">自定义颜色</string>
<string name="settings_color_mode">颜色选择</string>
<string name="settings_show_archived">显示存档项目</string>
<string name="settings_beta_features">测试版功能</string>
<string name="settings_beta_features_summary">启用实验功能。请自行承担使用风险。</string>
<string name="settings_url_warn_http">警告:\"http\"不安全。请使用“https://”。</string>
<string name="settings_colorpicker_title">选择颜色</string>
<string name="pref_value_color_system">系统</string>
<string name="pref_value_color_server">下个云端</string>
<string name="pref_value_color_manual">手动模式</string>
<string name="pref_value_theme_light">亮色的</string>
<string name="pref_value_theme_dark">深色</string>
<string name="pref_value_theme_system">关注系统</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">不重复</string>
<string name="repeat_day">每天</string>
<string name="repeat_week">每周的</string>
<string name="repeat_fortnight">每两周一次</string>
<string name="repeat_month">每月的</string>
<string name="repeat_year">每年一次</string>
<string name="payment_mode_none"></string>
<string name="payment_mode_all">所有的</string>
<string name="payment_mode_credit_card">信用卡</string>
<string name="payment_mode_cash">现金</string>
<string name="payment_mode_check">检查</string>
<string name="payment_mode_online">在线</string>
<string name="payment_mode_transfer">转移</string>
<string name="category_none"></string>
<string name="category_all">所有的</string>
<string name="category_all_except_reimbursement">除偿还费用外的所有费用</string>
<string name="category_groceries">杂货店</string>
<string name="category_leisure">酒吧/Party</string>
<string name="category_rent">Rent</string>
<string name="category_bills">账单</string>
<string name="category_excursion">游览/文化活动</string>
<string name="category_health">保健</string>
<string name="category_shopping">购物</string>
<string name="category_reimbursement">补偿</string>
<string name="category_restaurant">餐厅</string>
<string name="category_accomodation">住宿</string>
<string name="category_transport">运输</string>
<string name="category_sport">运动</string>
<!-- Project specific -->
<string name="new_project_action">什么</string>
<string name="new_project_where">位置</string>
<string name="where_local">仅本地的</string>
<string name="where_cospend">费用</string>
<string name="where_ihatemoney">IHateMoney</string>
<string name="todo_join">加入现有的项目</string>
<string name="todo_create">创建新项目</string>
<string name="import_tooltip">从文件导入</string>
<string name="choose_account_project_dialog_title">选择项目</string>
<string name="choose_account_project_dialog_impossible">此帐户上没有找到项目。</string>
<string name="choose_project_management_action">项目</string>
<string name="project_added_success">项目添加成功。</string>
<string name="no_projects_text">您还没有项目。</string>
<string name="configure_account_choice">配置 Nextcloud 帐户</string>
<string name="add_project_choice">手动添加项目</string>
<string name="no_members_text">此项目中没有成员。</string>
<string name="no_bills_text">未找到账单。</string>
<string name="member_already_exists">成员已经存在。</string>
<string name="activity_dialog_title">项目: %1$s</string>
<string name="remove_project_confirmation">项目 %1$s 已删除。</string>
<string name="file_saved_success">文件已保存: %1$s</string>
<string name="import_error_header">在行 %d 导入失败</string>
<string name="import_error_date">无效的日期格式在行 %d</string>
<string name="import_error_owers">在行 %d 上无效的owers</string>
<string name="add_member_dialog_title">添加成员</string>
<string name="edit_member_dialog_title">编辑成员</string>
<string name="member_edit_delete">删除</string>
<string name="project_edition_no_change">没有要保存的更改。</string>
<!-- Settlement -->
<string name="center_none">无 (最佳)</string>
<string name="settle_who">谁支付</string>
<string name="settle_to_whom">给谁的</string>
<string name="settle_how_much">金额</string>
<string name="simple_settle_share">分享</string>
<string name="simple_create_bills">创建帐单</string>
<string name="settle_bill_what">结算方式</string>
<!-- Currencies -->
<string name="currency_dialog_title">选择货币 (%s)</string>
<string name="setting_none"></string>
<string name="setting_all">所有的</string>
<string name="currency_saved_success">货币设置已保存。</string>
<string name="main_currency">主要货币</string>
<!-- Statistics -->
<string name="label_bills_suggested">建议的类别</string>
<string name="label_bills_skip">跳过</string>
<string name="stats_date_min">来自</string>
<string name="stats_date_max">收件人</string>
<string name="stats_who">成员</string>
<string name="stats_paid">已支付</string>
<string name="stats_spent">已使用</string>
<string name="stats_balance">余额</string>
<string name="total">总计: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">连接失败: %1$s</string>
<string name="error_create_remote_project_helper">创建失败: %1$s</string>
<string name="error_edit_remote_project_helper">更新远程项目时出错: %1$s</string>
<string name="remote_project_operation_no_network">网络不可用于远程操作。</string>
<string name="error_scanning_bill_qr_code">解析二维码失败。</string>
<string name="error_token_mismatch">验证令牌不匹配。请重新登录。</string>
<string name="insufficient_access_level">您没有权限执行此操作。</string>
<string name="delete_label_confirmation_title">删除标签</string>
<string name="delete_label_confirmation_message">您确定要删除此标签吗?</string>
<!-- About -->
<string name="about_version">%1$s 版本</string>
<string name="about_maintainer_title">维护者</string>
<string name="about_license_title">许可协议</string>
<string name="about_source_title">源代码</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">项目 %1$s</string>
<string name="share_chooser_title">分享 %1$s</string>
</resources>
+241
View File
@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Cowspent</string>
<!-- Actions -->
<string name="action_new_bill">New bill</string>
<string name="action_add_project">Add project</string>
<string name="action_save">Save</string>
<string name="action_edit">Edit</string>
<string name="action_share">Share</string>
<string name="action_search">Search</string>
<string name="action_delete">Delete</string>
<string name="action_archive">Archive</string>
<string name="action_unarchive">Unarchive</string>
<string name="action_export">Export</string>
<string name="action_stats">Stats</string>
<string name="action_settle">Settle</string>
<string name="action_scan_qrcode">Scan QR Code</string>
<string name="action_settings">Settings</string>
<string name="action_label_bills">Label missing categories</string>
<string name="action_logout">Logout</string>
<string name="action_connect">Connect</string>
<string name="action_discard">Discard</string>
<string name="action_members">Members</string>
<string name="action_labels">Labels</string>
<string name="action_currencies">Currencies</string>
<!-- Titles -->
<string name="title_stats">Statistics</string>
<string name="title_edit_project">Edit project</string>
<string name="title_label_bills">Label Bills</string>
<string name="title_labels">Manage Labels</string>
<string name="title_about">About</string>
<string name="title_settle">Settle Project</string>
<string name="title_share">Share Project</string>
<string name="title_add_project">Add Project</string>
<string name="title_add_category">Add Category</string>
<string name="title_add_payment_mode">Add Payment Mode</string>
<string name="title_account">Nextcloud Account</string>
<string name="title_share_web">Web link</string>
<string name="title_share_qr">Cowspent link</string>
<string name="title_confirm">Are you sure?</string>
<!-- Labels and Fields -->
<string name="label_all_bills">All bills</string>
<string name="label_categories">Categories</string>
<string name="label_payment_modes">Payment Modes</string>
<string name="label_name">Name</string>
<string name="label_icon">Icon / Emoji</string>
<string name="label_color">Color</string>
<string name="label_weight">Weight</string>
<string name="label_activated">Activated</string>
<string name="label_password">Password</string>
<string name="label_email">E-mail</string>
<string name="label_url">Server address</string>
<string name="label_username">Username</string>
<string name="label_comment">Comment</string>
<string name="label_what">What?</string>
<string name="label_payer">Who paid?</string>
<string name="label_owers">For whom?</string>
<string name="label_repeat">Repeat every</string>
<string name="label_mode">Mode</string>
<string name="label_category">Category</string>
<string name="label_project_id">Project ID/name</string>
<string name="label_project_title">Project title</string>
<string name="label_use_sso">Use Nextcloud App Account</string>
<!-- Dialogs and Messages -->
<string name="dialog_unsaved_changes_title">Unsaved changes</string>
<string name="dialog_unsaved_changes_msg">Save changes before leaving?</string>
<string name="dialog_confirm_remove_project_msg">The remote project will not be deleted.</string>
<string name="dialog_sync_error_title">Sync error</string>
<string name="dialog_sync_error_msg">Sync failed for %1$s.\n\n%2$s</string>
<string name="dialog_balanced_msg">Expenses are already balanced.</string>
<string name="msg_project_added">Project %1$s added</string>
<string name="msg_bill_labeled_done">All bills labeled</string>
<string name="msg_no_suggestions">No suggestions</string>
<string name="msg_auth_warning">Requires Cospend v0.3.4+.</string>
<string name="msg_link_copied">Link copied to clipboard</string>
<string name="msg_share_qr">Scan QR code or share the link to join.</string>
<string name="msg_share_web">Link for web browser access.</string>
<string name="msg_share_qr_warn">Share this link with a Cowspent user.</string>
<string name="msg_settle_intro">Settlement for %1$s:</string>
<string name="msg_settle_sentence">%1$s owes %3$.2f to %2$s</string>
<string name="msg_stats_intro">Stats for %1$s:</string>
<string name="msg_stats_header">Member (Paid | Spent | Balance)</string>
<string name="msg_logged_in_as">Logged in as %1$s</string>
<!-- Errors -->
<string name="error_generic">Error</string>
<string name="error_loading">Loading</string>
<string name="error_no_projects">No projects found</string>
<string name="error_no_members">No members found</string>
<string name="error_no_bills">No bills found</string>
<string name="error_no_member">At least one member required</string>
<string name="error_maintenance_mode">Server is in maintenance mode</string>
<string name="error_400">400 Bad request</string>
<string name="error_401">401 Unauthorized</string>
<string name="error_403">403 Forbidden</string>
<string name="error_404">404 Not Found</string>
<string name="error_sync">Sync failed: %1$s</string>
<string name="error_invalid_login">Invalid login: %1$s</string>
<string name="error_auth">Wrong username or password</string>
<string name="error_json">Invalid server response</string>
<string name="error_req_failed">Request failed</string>
<string name="error_invalid_email">Invalid e-mail</string>
<string name="error_invalid_project_id">Invalid project ID</string>
<string name="error_invalid_project_name">Invalid project title</string>
<string name="error_invalid_bill_name">Invalid bill name</string>
<string name="error_invalid_bill_date">Invalid bill date</string>
<string name="error_invalid_bill_payer">Payer required</string>
<string name="error_invalid_bill_owers">Owers required</string>
<string name="error_no_network">No network connection</string>
<string name="error_server">Server error</string>
<string name="error_io">Server connection broken</string>
<string name="error_share_impossible">Cannot share this project</string>
<!-- Drawer / Common UI -->
<string name="drawer_no_account">Connect to Nextcloud account</string>
<string name="drawer_last_sync">Last sync: %1$02d:%2$02d</string>
<string name="simple_cancel">Cancel</string>
<string name="simple_ok" tools:ignore="ButtonCase,Typos">Ok</string>
<string name="simple_yes">Yes</string>
<string name="simple_no">No</string>
<string name="simple_close">Close</string>
<!-- Settings -->
<string name="settings_appearance">Appearance</string>
<string name="settings_network">Network</string>
<string name="settings_other">Other</string>
<string name="settings_night_mode">Theme</string>
<string name="settings_offline_mode">Offline mode</string>
<string name="settings_offline_mode_summary">Only sync manually.</string>
<string name="settings_color_custom">Custom color</string>
<string name="settings_color_mode">Color Selection</string>
<string name="settings_show_archived">Show archived projects</string>
<string name="settings_beta_features">Beta Features</string>
<string name="settings_beta_features_summary">Enable experimental features. Use at your own risk.</string>
<string name="settings_url_warn_http">WARNING: \"http\" is unsafe. Use \"https\".</string>
<string name="settings_colorpicker_title">Choose Color</string>
<string name="pref_value_color_system">System</string>
<string name="pref_value_color_server">Nextcloud</string>
<string name="pref_value_color_manual">Manual</string>
<string name="pref_value_theme_light">Light</string>
<string name="pref_value_theme_dark">Dark</string>
<string name="pref_value_theme_system">Follow system</string>
<!-- Constants (Do not translate) -->
<!-- Enums and Lists -->
<string name="repeat_no">No repeat</string>
<string name="repeat_day">Daily</string>
<string name="repeat_week">Weekly</string>
<string name="repeat_fortnight">Fortnightly</string>
<string name="repeat_month">Monthly</string>
<string name="repeat_year">Yearly</string>
<string name="payment_mode_none">None</string>
<string name="payment_mode_all">All</string>
<string name="payment_mode_credit_card">Credit card</string>
<string name="payment_mode_cash">Cash</string>
<string name="payment_mode_check">Check</string>
<string name="payment_mode_online">Online</string>
<string name="payment_mode_transfer">Transfer</string>
<string name="category_none">None</string>
<string name="category_all">All</string>
<string name="category_all_except_reimbursement">All except reimbursement</string>
<string name="category_groceries">Grocery</string>
<string name="category_leisure">Bar/Party</string>
<string name="category_rent">Rent</string>
<string name="category_bills">Bill</string>
<string name="category_excursion">Excursion/Culture</string>
<string name="category_health">Health</string>
<string name="category_shopping">Shopping</string>
<string name="category_reimbursement">Reimbursement</string>
<string name="category_restaurant">Restaurant</string>
<string name="category_accomodation">Accommodation</string>
<string name="category_transport">Transport</string>
<string name="category_sport">Sport</string>
<!-- Project specific -->
<string name="new_project_action">What</string>
<string name="new_project_where">Where</string>
<string name="where_local">Local only</string>
<string name="where_cospend">Cospend</string>
<string name="where_ihatemoney">IHateMoney</string>
<string name="todo_join">Join existing project</string>
<string name="todo_create">Create new project</string>
<string name="import_tooltip">Import from file</string>
<string name="choose_account_project_dialog_title">Choose project</string>
<string name="choose_account_project_dialog_impossible">No projects found on this account.</string>
<string name="choose_project_management_action">Project</string>
<string name="project_added_success">Project added successfully.</string>
<string name="no_projects_text">You have no projects yet.</string>
<string name="configure_account_choice">Configure Nextcloud account</string>
<string name="add_project_choice">Add project manually</string>
<string name="no_members_text">No members in this project.</string>
<string name="no_bills_text">No bills found.</string>
<string name="member_already_exists">Member already exists.</string>
<string name="activity_dialog_title">Project: %1$s</string>
<string name="remove_project_confirmation">Project %1$s removed.</string>
<string name="file_saved_success">File saved: %1$s</string>
<string name="import_error_header">Import failed at row %d</string>
<string name="import_error_date">Invalid date format at row %d</string>
<string name="import_error_owers">Invalid owers at row %d</string>
<string name="add_member_dialog_title">Add Member</string>
<string name="edit_member_dialog_title">Edit Member</string>
<string name="member_edit_delete">Delete</string>
<string name="project_edition_no_change">No changes to save.</string>
<!-- Settlement -->
<string name="center_none">None (Optimal)</string>
<string name="settle_who">Who pays</string>
<string name="settle_to_whom">To whom</string>
<string name="settle_how_much">Amount</string>
<string name="simple_settle_share">Share</string>
<string name="simple_create_bills">Create bills</string>
<string name="settle_bill_what">Settlement</string>
<!-- Currencies -->
<string name="currency_dialog_title">Choose Currency (%s)</string>
<string name="setting_none">None</string>
<string name="setting_all">All</string>
<string name="currency_saved_success">Currency settings saved.</string>
<string name="main_currency">Main Currency</string>
<!-- Statistics -->
<string name="label_bills_suggested">Suggested Categories</string>
<string name="label_bills_skip">Skip</string>
<string name="stats_date_min">From</string>
<string name="stats_date_max">To</string>
<string name="stats_who">Member</string>
<string name="stats_paid">Paid</string>
<string name="stats_spent">Spent</string>
<string name="stats_balance">Balance</string>
<string name="total">Total: %1$s</string>
<!-- Errors Extra -->
<string name="error_project_connect_check">Connection failed: %1$s</string>
<string name="error_create_remote_project_helper">Creation failed: %1$s</string>
<string name="error_edit_remote_project_helper">Error updating remote project: %1$s</string>
<string name="remote_project_operation_no_network">Network unavailable for remote operation.</string>
<string name="error_scanning_bill_qr_code">Failed to parse QR code.</string>
<string name="error_token_mismatch">Authentication token mismatch. Please log in again.</string>
<string name="insufficient_access_level">You don\'t have permission to perform this action.</string>
<string name="delete_label_confirmation_title">Delete Label</string>
<string name="delete_label_confirmation_message">Are you sure you want to delete this label?</string>
<!-- About -->
<string name="about_version">Version %1$s</string>
<string name="about_maintainer_title">Maintainer</string>
<string name="about_license_title">License</string>
<string name="about_source_title">Source code</string>
<!-- New constants for backward compatibility or shared use -->
<string name="share_intent_title">Project %1$s</string>
<string name="share_chooser_title">Share %1$s</string>
</resources>
+3
View File
@@ -135,6 +135,8 @@
<string name="settings_color_custom">Custom color</string> <string name="settings_color_custom">Custom color</string>
<string name="settings_color_mode">Color Selection</string> <string name="settings_color_mode">Color Selection</string>
<string name="settings_show_archived">Show archived projects</string> <string name="settings_show_archived">Show archived projects</string>
<string name="settings_beta_features">Beta Features</string>
<string name="settings_beta_features_summary">Enable experimental features. Use at your own risk.</string>
<string name="settings_url_warn_http">WARNING: "http" is unsafe. Use "https".</string> <string name="settings_url_warn_http">WARNING: "http" is unsafe. Use "https".</string>
<string name="settings_colorpicker_title">Choose Color</string> <string name="settings_colorpicker_title">Choose Color</string>
@@ -155,6 +157,7 @@
<string name="pref_key_color_mode" translatable="false">colorMode</string> <string name="pref_key_color_mode" translatable="false">colorMode</string>
<string name="pref_key_offline_mode" translatable="false">offlineMode</string> <string name="pref_key_offline_mode" translatable="false">offlineMode</string>
<string name="pref_key_show_archived" translatable="false">showArchived</string> <string name="pref_key_show_archived" translatable="false">showArchived</string>
<string name="pref_key_beta_features" translatable="false">betaFeatures</string>
<string name="pref_value_night_mode_no" translatable="false">1</string> <string name="pref_value_night_mode_no" translatable="false">1</string>
<string name="pref_value_night_mode_yes" translatable="false">2</string> <string name="pref_value_night_mode_yes" translatable="false">2</string>
<string name="pref_value_night_mode_system" translatable="false">-1</string> <string name="pref_value_night_mode_system" translatable="false">-1</string>
+3
View File
@@ -0,0 +1,3 @@
files:
- source: /app/src/main/res/values/strings.xml
translation: /app/src/main/res/values-%android_code%/strings.xml
+3
View File
@@ -0,0 +1,3 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
}