feat(PR): Google Maps Integration by Daplugg23

This commit is contained in:
ΞTΞRNAL
2026-02-06 09:17:28 +05:30
committed by GitHub
39 changed files with 5665 additions and 7590 deletions

View File

@@ -54,7 +54,7 @@ class Routes(
) {
companion object {
const val CONFIG_IMPORT_CONFIRMATION_ROUTE = "config_import_confirmation"
const val CONFIG_EXPORT_SUMMARY_ROUTE = "config_export_summary/?exportSensitiveData={exportSensitiveData}"
const val CONFIG_EXPORT_SUMMARY_ROUTE = "config_export_summary/?exportSensitiveData={exportSensitiveData}&includeSavedLocations={includeSavedLocations}"
const val FRIEND_TRACKER_CONFIG_EXPORT_ROUTE = "friend_tracker_config_export/?rule_id={rule_id}"
const val FRIEND_TRACKER_CONFIG_IMPORT_ROUTE = "friend_tracker_config_import"
const val VIEW_LOGGER_HISTORY_ROUTE = "view_logger_history/{uri}"

View File

@@ -52,6 +52,7 @@ import androidx.compose.ui.unit.sp
import me.eternal.purrfectsnap.ui.manager.Routes
import me.eternal.purrfectsnap.ui.manager.theme.PurrfectPalette
import me.eternal.purrfectsnap.ui.util.saveFile
import me.eternal.purrfectsnap.storage.getLocationCoordinates
import org.json.JSONArray
import org.json.JSONObject
@@ -136,10 +137,14 @@ class ConfigExportSummaryScreen : Routes.Route() {
override val content: @Composable (androidx.navigation.NavBackStackEntry) -> Unit = {
val exportSensitiveData = it.arguments?.getString("exportSensitiveData")?.toBoolean() ?: false
val includeSavedLocations = it.arguments?.getString("includeSavedLocations")?.toBoolean() ?: false
val exportLabel = context.translation["manager.sections.features.export_option"] ?: "Export"
val parser = remember { ConfigParser() }
val savedLocations = remember {
if (includeSavedLocations) context.database.getLocationCoordinates() else null
}
val featuresByCategory = remember {
parser.parse(context.config.exportToString(exportSensitiveData))
parser.parse(context.config.exportToString(exportSensitiveData, includeSavedLocations, savedLocations))
}
val expandedState = remember { mutableStateMapOf<String, Boolean>() }
@@ -210,7 +215,7 @@ class ConfigExportSummaryScreen : Routes.Route() {
runCatching {
context.androidContext.contentResolver.openOutputStream(android.net.Uri.parse(uri))?.use {
context.config.writeConfig()
context.config.exportToString(exportSensitiveData).byteInputStream().copyTo(it)
context.config.exportToString(exportSensitiveData, includeSavedLocations, savedLocations).byteInputStream().copyTo(it)
context.shortToast(context.translation["manager.sections.features.config_export_success_toast"])
}
}.onFailure {

View File

@@ -49,10 +49,14 @@ import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.launch
import me.eternal.purrfectsnap.bridge.location.LocationCoordinates
import me.eternal.purrfectsnap.storage.addOrUpdateLocationCoordinate
import me.eternal.purrfectsnap.storage.getLocationCoordinates
import me.eternal.purrfectsnap.ui.manager.Routes
import me.eternal.purrfectsnap.ui.manager.theme.PurrfectPalette
import org.json.JSONArray
import org.json.JSONObject
import kotlin.math.abs
class ConfigImportConfirmationScreen : Routes.Route() {
override val translation by lazy { context.translation.getCategory("manager.features.config_import") }
@@ -65,6 +69,44 @@ class ConfigImportConfirmationScreen : Routes.Route() {
val indentation: Int
)
companion object {
private const val COORDINATE_TOLERANCE = 0.0001 // ~11 meters tolerance for de-duplication
}
/**
* Imports saved locations from JSON array into database with de-duplication.
* Only adds locations that don't already exist (within coordinate tolerance).
*/
private fun importSavedLocations(locationsArray: com.google.gson.JsonArray) {
val existingLocations = context.database.getLocationCoordinates()
for (i in 0 until locationsArray.size()) {
val locationObj = locationsArray.get(i).asJsonObject
val name = locationObj.get("name")?.asString ?: continue
val latitude = locationObj.get("latitude")?.asDouble ?: continue
val longitude = locationObj.get("longitude")?.asDouble ?: continue
val radius = locationObj.get("radius")?.asDouble ?: 100.0
// Check for existing location with similar coordinates (de-duplication)
val existingMatch = existingLocations.find { existing ->
abs(existing.latitude - latitude) < COORDINATE_TOLERANCE &&
abs(existing.longitude - longitude) < COORDINATE_TOLERANCE
}
if (existingMatch == null) {
// No duplicate found, add as new location
val newLocation = LocationCoordinates().apply {
this.name = name
this.latitude = latitude
this.longitude = longitude
this.radius = radius
}
context.database.addOrUpdateLocationCoordinate(null, newLocation)
}
// If duplicate exists, skip (do not update or delete existing)
}
}
private inner class ConfigParser {
fun parse(configJson: String): Map<String, List<ImportedFeature>> {
val featureList = mutableListOf<ImportedFeature>()
@@ -256,7 +298,12 @@ class ConfigImportConfirmationScreen : Routes.Route() {
onClick = {
routes.configJsonForImport?.let { json ->
runCatching {
context.config.loadFromString(json)
val savedLocationsJson = context.config.loadFromString(json)
// Import saved locations if present in the JSON
savedLocationsJson?.let { locationsArray ->
importSavedLocations(locationsArray)
}
}.onFailure { err ->
context.longToast(
context.translation.format(

View File

@@ -1060,9 +1060,11 @@ class FeaturesRootSection : Routes.Route() {
@Composable
private fun SensitiveDataDialog(
onDismiss: () -> Unit,
onConfirm: (exportSensitiveData: Boolean) -> Unit
onConfirm: (exportSensitiveData: Boolean, includeSavedLocations: Boolean) -> Unit
) {
Dialog(onDismissRequest = onDismiss) {
val includeSavedLocations = remember { mutableStateOf(false) }
Surface(
shape = RoundedCornerShape(24.dp),
color = Color.White.copy(alpha = 0.06f),
@@ -1100,12 +1102,36 @@ class FeaturesRootSection : Routes.Route() {
color = PurrfectPalette.textSecondary,
modifier = Modifier.padding(horizontal = 6.dp)
)
Row(
modifier = Modifier.fillMaxWidth().padding(horizontal = 4.dp),
horizontalArrangement = Arrangement.SpaceBetween,
verticalAlignment = Alignment.CenterVertically
) {
Text(
text = "Include Saved Locations",
style = MaterialTheme.typography.bodyMedium,
color = Color.White
)
val hapticFeedback = LocalHapticFeedback.current
Switch(
checked = includeSavedLocations.value,
onCheckedChange = {
if (context.config.root.global.uiSettings.hapticFeedback.get()) {
hapticFeedback.performHapticFeedback(HapticFeedbackType.LongPress)
}
includeSavedLocations.value = it
},
colors = purrfectSwitchColors()
)
}
Row(
modifier = Modifier.fillMaxWidth(),
horizontalArrangement = Arrangement.spacedBy(10.dp, Alignment.End)
) {
Button(
onClick = { onConfirm(false) },
onClick = { onConfirm(false, includeSavedLocations.value) },
colors = ButtonDefaults.buttonColors(
containerColor = Color.White.copy(alpha = 0.08f),
contentColor = Color.White
@@ -1114,7 +1140,7 @@ class FeaturesRootSection : Routes.Route() {
Text(context.translation["button.negative"])
}
Button(
onClick = { onConfirm(true) },
onClick = { onConfirm(true, includeSavedLocations.value) },
colors = ButtonDefaults.buttonColors(
containerColor = PurrfectPalette.glowPrimary.copy(alpha = 0.32f),
contentColor = Color.White
@@ -1244,10 +1270,11 @@ class FeaturesRootSection : Routes.Route() {
if (showExportDialog) {
SensitiveDataDialog(
onDismiss = { showExportDialog = false },
onConfirm = { exportSensitiveData ->
onConfirm = { exportSensitiveData, includeSavedLocations ->
showExportDialog = false
routes.configExportSummary.navigate {
put("exportSensitiveData", exportSensitiveData.toString())
put("includeSavedLocations", includeSavedLocations.toString())
}
}
)

View File

@@ -234,6 +234,8 @@ class BetterLocationRoot : Routes.Route() {
val coordinatesProperty = remember {
context.config.root.global.betterLocation.getPropertyPair("coordinates")
}
val providerProperty = remember { context.config.root.global.betterLocation.getPropertyPair("location_search_provider") }
val apiKeyProperty = remember { context.config.root.global.betterLocation.getPropertyPair("google_maps_api_key") }
val updateDispatcher = rememberAsyncUpdateDispatcher()
val savedCoordinates = rememberAsyncMutableStateList(
@@ -245,6 +247,8 @@ class BetterLocationRoot : Routes.Route() {
var showMap by remember { mutableStateOf(false) }
var addSavedCoordinateDialog by remember { mutableStateOf(false) }
var showTeleportDialog by remember { mutableStateOf(false) }
var showProviderDialog by remember { mutableStateOf(false) }
var showApiKeyDialog by remember { mutableStateOf(false) }
val marker = remember { mutableStateOf<Marker?>(null) }
val mapView = remember { mutableStateOf<MapView?>(null) }
@@ -271,6 +275,32 @@ class BetterLocationRoot : Routes.Route() {
)
}
var currentProvider by remember { mutableStateOf(context.config.root.global.betterLocation.locationSearchProvider.get()) }
var currentApiKey by remember { mutableStateOf(context.config.root.global.betterLocation.googleMapsApiKey.get()) }
if (showProviderDialog) {
me.eternal.purrfectsnap.ui.util.Dialog(onDismissRequest = {
showProviderDialog = false
context.config.writeConfig()
currentProvider = context.config.root.global.betterLocation.locationSearchProvider.get()
}) {
alertDialogs.UniqueSelectionDialog(providerProperty)
}
}
if (showApiKeyDialog) {
me.eternal.purrfectsnap.ui.util.Dialog(onDismissRequest = {
showApiKeyDialog = false
context.config.writeConfig()
currentApiKey = context.config.root.global.betterLocation.googleMapsApiKey.get()
}) {
alertDialogs.KeyboardInputDialog(apiKeyProperty) {
showApiKeyDialog = false
context.config.writeConfig()
currentApiKey = context.config.root.global.betterLocation.googleMapsApiKey.get()
}
}
}
Column(
modifier = Modifier
.fillMaxSize()
@@ -337,9 +367,16 @@ class BetterLocationRoot : Routes.Route() {
)
) {
Box(modifier = Modifier.background(PurrfectPalette.cardOverlay)) {
alertDialogs.ChooseLocationDialog(property = coordinatesProperty, marker, mapView, saveCoordinates = {
addSavedCoordinateDialog = true
}) {
alertDialogs.ChooseLocationDialog(
property = coordinatesProperty,
marker = marker,
mapView = mapView,
locationSearchProvider = context.config.root.global.betterLocation.locationSearchProvider.get(),
googleMapsApiKey = context.config.root.global.betterLocation.googleMapsApiKey.get(),
saveCoordinates = {
addSavedCoordinateDialog = true
}
) {
showMap = false
context.config.writeConfig()
}
@@ -395,6 +432,42 @@ class BetterLocationRoot : Routes.Route() {
) {
context.config.root.global.betterLocation.suspendLocationUpdates.set(it)
}
@Composable
fun ConfigSelector(text: String, value: String, onClick: () -> Unit) {
Row(
modifier = Modifier
.fillMaxWidth()
.clickable(onClick = onClick)
.padding(horizontal = 16.dp, vertical = 12.dp),
verticalAlignment = Alignment.CenterVertically
) {
Text(text = text, modifier = Modifier.weight(1f))
Text(
text = value,
color = PurrfectPalette.textSecondary,
fontSize = 14.sp,
modifier = Modifier.padding(start = 8.dp)
)
}
}
@Composable
fun ConfigInput(text: String, value: String, onClick: () -> Unit) {
ConfigSelector(text, if (value.isNotEmpty()) "********" else translation["options.empty"], onClick)
}
ConfigSelector(
text = translation["location_search_provider_title"],
value = translation["option_$currentProvider"]
) { showProviderDialog = true }
if (currentProvider == "google_maps") {
ConfigInput(
text = translation["google_maps_api_key_title"],
value = currentApiKey
) { showApiKeyDialog = true }
}
}
item {
GlassPanel(

View File

@@ -57,8 +57,10 @@ import me.eternal.purrfectsnap.ui.manager.theme.PurrfectPalette
import okhttp3.OkHttpClient
import okhttp3.Request
import org.osmdroid.config.Configuration
import org.osmdroid.tileprovider.tilesource.OnlineTileSourceBase
import org.osmdroid.tileprovider.tilesource.TileSourceFactory
import org.osmdroid.util.GeoPoint
import org.osmdroid.util.MapTileIndex
import org.osmdroid.views.CustomZoomButtonsController
import org.osmdroid.views.MapView
import org.osmdroid.views.overlay.Marker
@@ -592,6 +594,8 @@ class AlertDialogs(
property: PropertyPair<*>,
marker: MutableState<Marker?> = remember { mutableStateOf(null) },
mapView: MutableState<MapView?> = remember { mutableStateOf(null) },
locationSearchProvider: String = "osm",
googleMapsApiKey: String = "",
saveCoordinates: (() -> Unit)? = null,
dismiss: () -> Unit = {}
) {
@@ -611,7 +615,20 @@ class AlertDialogs(
MapView(context).apply {
setMultiTouchControls(true)
zoomController.setVisibility(CustomZoomButtonsController.Visibility.NEVER)
setTileSource(TileSourceFactory.MAPNIK)
val tileSource = if (locationSearchProvider == "google_maps") {
object : OnlineTileSourceBase(
"GoogleMaps",
0, 19, 256, ".png",
arrayOf("https://mt0.google.com/vt/lyrs=m", "https://mt1.google.com/vt/lyrs=m", "https://mt2.google.com/vt/lyrs=m", "https://mt3.google.com/vt/lyrs=m")
) {
override fun getTileURLString(pMapTileIndex: Long): String {
return baseUrl + "&x=" + MapTileIndex.getX(pMapTileIndex) + "&y=" + MapTileIndex.getY(pMapTileIndex) + "&z=" + MapTileIndex.getZoom(pMapTileIndex)
}
}
} else {
TileSourceFactory.MAPNIK
}
setTileSource(tileSource)
val startPoint = GeoPoint(coordinates.first, coordinates.second)
controller.setZoom(10.0)
@@ -686,28 +703,56 @@ class AlertDialogs(
val resultsScrollState = rememberScrollState()
suspend fun search() {
okHttpClient.newCall(Request.Builder()
.url("https://nominatim.openstreetmap.org/search".toUri().buildUpon().appendQueryParameter("q", locationName).appendQueryParameter("format", "jsonv2").build().toString())
.header("User-Agent", Constants.OSM_USER_AGENT)
.build()
).await().use { response ->
if (!response.isSuccessful) {
return@use
if (locationSearchProvider == "google_maps") {
// Google Maps Search
okHttpClient.newCall(Request.Builder()
.url("https://maps.googleapis.com/maps/api/geocode/json".toUri().buildUpon()
.appendQueryParameter("address", locationName)
.appendQueryParameter("key", googleMapsApiKey)
.build().toString())
.build()
).await().use { response ->
if (!response.isSuccessful) return@use
runCatching {
val jsonResponse = JsonParser.parseString(response.body?.string() ?: "{}").asJsonObject
if (jsonResponse.has("results")) {
val results = jsonResponse.getAsJsonArray("results")
addressResults = results.take(5).map { jsonElement ->
val result = jsonElement.asJsonObject
val geometry = result.getAsJsonObject("geometry").getAsJsonObject("location")
Triple(
result.get("formatted_address").asString,
geometry.get("lat").asString,
geometry.get("lng").asString
)
}
}
}
}
runCatching {
val body = JsonParser.parseString(response.body?.string() ?: "[]").asJsonArray
addressResults = body.take(5).map { jsonElement ->
val jsonObject = jsonElement.asJsonObject
Triple(
jsonObject.get("display_name").asString,
jsonObject.get("lat").asString,
jsonObject.get("lon").asString
)
} else {
// OSM Nominatim Search (Existing Logic)
okHttpClient.newCall(Request.Builder()
.url("https://nominatim.openstreetmap.org/search".toUri().buildUpon()
.appendQueryParameter("q", locationName)
.appendQueryParameter("format", "jsonv2")
.build().toString())
.header("User-Agent", Constants.OSM_USER_AGENT)
.build()
).await().use { response ->
if (!response.isSuccessful) return@use
runCatching {
val body = JsonParser.parseString(response.body?.string() ?: "[]").asJsonArray
addressResults = body.take(5).map { jsonElement ->
val jsonObject = jsonElement.asJsonObject
Triple(
jsonObject.get("display_name").asString,
jsonObject.get("lat").asString,
jsonObject.get("lon").asString
)
}
}
}
}
searchJob = null
}

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 بواسطة Eternal",
"version_title": "v{versionName} · بواسطة Eternal",
"update_title": "تحديث PurrfectSnap",
"update_content": "الإصدار {version} متاح!",
"update_button": "تنزيل",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "لا توجد مهام",
"merge_button": "دمج",
"summary_active": "{active} نشط \u00b7 {recent} حديث",
"summary_idle": "خامل \u00b7 {recent} حديث",
"summary_active": "{active} نشط · {recent} حديث",
"summary_idle": "خامل · {recent} حديث",
"running_count": "{count} قيد التشغيل",
"clear_button_description": "مسح المهام",
"failed_to_open_file": "فشل فتح الملف",
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "انتقال فوري لصديق",
"search_bar": "بحث",
"no_friends_map": "لا يوجد أصدقاء على الخريطة",
"no_friends_found": "لم يتم العثور على أصدقاء"
"no_friends_found": "لم يتم العثور على أصدقاء",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,166 @@
},
"features": {
"notices": {
"unstable": "\u26a0 غير مستقر",
"ban_risk": "\u26a0 هذه الميزة قد تسبب حظراً",
"internal_behavior": "\u26a0 قد يكسر هذا السلوك الداخلي لـ Snapchat"
},
"options": {
"empty": "فارغ",
"walk_radius": {
"empty": "فارغ"
},
"spoof_battery_level": {
"empty": "فارغ"
},
"custom_android_id": {
"empty": "فارغ"
},
"custom_streaks_expiration_format": {
"empty": "فارغ"
},
"preferred_transcription_lang": {
"empty": "فارغ"
},
"custom_emoji_font": {
"empty": "فارغ"
},
"custom_shared_library": {
"empty": "فارغ"
},
"custom_resolution": {
"empty": "فارغ"
},
"custom_path_format": {
"empty": "فارغ"
},
"custom_video_codec": {
"empty": "فارغ"
},
"custom_audio_codec": {
"empty": "فارغ"
},
"double_tap_chat_action_custom_emoji": {
"empty": "فارغ"
},
"unsaveable_messages": {
"blacklist": "وضع القائمة السوداء",
"whitelist": "وضع القائمة البيضاء",
"null": "معطل"
},
"update_check_frequency": {
"daily": "يومياً",
"weekly": "أسبوعياً",
"monthly": "شهرياً"
}
"unstable": " غير مستقر",
"ban_risk": " هذه الميزة قد تسبب حظراً",
"internal_behavior": " قد يكسر هذا السلوك الداخلي لـ Snapchat"
},
"properties": {
"global": {
"name": "عالمي",
"description": فضيلات وافتراضيات الوحدة العامة",
"description": عديل إعدادات Snapchat العالمية",
"properties": {
"ui_settings": {
"name": "إعدادات الواجهة",
"description": "ضبط سلوك الملاحظات والإشعارات",
"better_location": {
"name": "موقع أفضل",
"description": "يحسن موقع Snapchat",
"properties": {
"haptic_feedback": {
"name": "الاهتزاز اللمسي",
"description": "الاهتزاز عند التفاعلات المدعومة"
"spoof_location": {
"name": "محاكاة الموقع",
"description": "يحاكي موقعك إلى موقع محدد"
},
"use_system_toasts": {
"name": "استخدام إشعارات النظام (Toasts)",
"description": "إظهار إشعارات Android بدلاً من التراكبات داخل التطبيق"
"coordinates": {
"name": "الإحداثيات",
"description": "تعيين إحداثيات الموقع المحاكى"
},
"walk_radius": {
"name": "نصف قطر المشي",
"description": "المشي عشوائياً ضمن هذا النصف قطر (قدم)"
},
"always_update_location": {
"name": "تحديث الموقع دائماً",
"description": "إجبار Snapchat على تحديث الموقع حتى إذا لم يتم استلام بيانات GPS"
},
"suspend_location_updates": {
"name": "تعليق تحديثات الموقع",
"description": "يمنع تحديث موقعك"
},
"spoof_battery_level": {
"name": "محاكاة مستوى البطارية",
"description": "يحاكي مستوى بطارية جهازك على الخريطة\nيجب أن تكون القيمة بين 0 و 100"
},
"spoof_headphones": {
"name": "محاكاة سماعات الرأس",
"description": "يحاكي حالة الاستماع إلى الموسيقى على الخريطة"
},
"show_battery_level": {
"name": "إظهار مستوى البطارية",
"description": "يظهر مستوى بطارية أصدقائك على الخريطة"
}
}
},
"update_settings": {
"name": "إعدادات التحديث",
"description": "التحكم في فحوصات التحديث التلقائية",
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "يمكّن ميزات Snapchat Plus\nبعض الميزات التي تعتمد على الخادم قد لا تعمل"
},
"media_upload_quality": {
"name": "جودة رفع الوسائط",
"description": "يتجاوز جودة رفع الوسائط",
"properties": {
"auto_update_check": {
"name": حص التحديث التلقائي",
"description": "التحقق من وجود إصدارات جديدة تلقائياً"
"force_video_upload_source_quality": {
"name": رض جودة المصدر لرفع الفيديو",
"description": "يفرض على Snapchat استخدام جودة المصدر عند رفع مقاطع الفيديو\nيرجى ملاحظة أن هذا قد لا يزيل البيانات الوصفية من الوسائط"
},
"update_check_frequency": {
"name": كرار فحص التحديث",
"description": "كم مرة يتم التحقق من التحديثات"
"disable_image_compression": {
"name": عطيل ضغط الصور",
"description": "يعطل ضغط الصور عند رفع الوسائط"
},
"custom_image_upload_format": {
"name": "تنسيق رفع صورة مخصص",
"description": "يحدد تنسيق رفع صورة مخصص\nاختر تنسيقاً غير ضائع (مثل PNG) للحصول على أفضل جودة"
}
}
},
"disable_confirmation_dialogs": {
"name": "تعطيل مربعات حوار التأكيد",
"description": "يؤكد تلقائياً الإجراءات المحددة"
},
"auto_updater": {
"name": "المحدث التلقائي",
"description": "يتحقق تلقائياً من وجود تحديثات جديدة"
},
"update_settings": {
"name": "إعدادات التحديث",
"description": "التحكم في كيفية تحقق PurrfectSnap من التحديثات",
"properties": {
"auto_update_check": {
"name": "فحص التحديث التلقائي"
},
"update_check_frequency": {
"name": "تكرار فحص التحديث"
}
}
},
"ui_settings": {
"name": "إعدادات الواجهة",
"properties": {
"haptic_feedback": {
"name": "الاهتزاز اللمسي"
}
}
},
"disable_metrics": {
"name": "تعطيل المقاييس",
"description": "يحظر إرسال بيانات تحليلية محددة إلى Snapchat"
},
"disable_story_sections": {
"name": "تعطيل أقسام القصة",
"description": "يزيل الأقسام من صفحة القصص\nقد يتطلب تحديثاً للعمل بشكل صحيح"
},
"block_ads": {
"name": "حظر الإعلانات",
"description": "يمنع عرض الإعلانات"
},
"disable_custom_tabs": {
"name": "تعطيل علامات التبويب المخصصة",
"description": "يفتح الروابط في التطبيقات المدعومة بدلاً من متصفح الويب"
},
"disable_permission_requests": {
"name": "تعطيل طلبات الأذونات",
"description": "يمنع Snapchat من طلب أذونات محددة"
},
"disable_memories_snap_feed": {
"name": "تعطيل موجز سناب الذكريات",
"description": "يمنع Snapchat من إظهار الذكريات الحديثة عند التمرير لأعلى في الكاميرا"
},
"spotlight_comments_username": {
"name": "اسم مستخدم تعليقات منصة الأضواء",
"description": "يظهر اسم مستخدم المؤلف في تعليقات منصة الأضواء"
},
"spotlight_comments_username_icon": {
"name": "أيقونة اسم مستخدم تعليقات منصة الأضواء",
"description": "اختر الأيقونة التي يتم عرضها بجانب أسماء المستخدمين في تعليقات منصة الأضواء"
},
"bypass_video_length_restriction": {
"name": "تجاوز قيود طول الفيديو",
"description": "مفرد: يرسل فيديو واحد\nمقسم: يقسم الفيديو بعد التحرير"
},
"default_video_playback_rate": {
"name": "معدل تشغيل الفيديو الافتراضي",
"description": "يحدد السرعة الافتراضية لتشغيل مقاطع الفيديو\nيجب أن تكون القيمة بين 0.1 و 4.0"
},
"video_playback_rate_slider": {
"name": "شريط تمرير معدل تشغيل الفيديو",
"description": "يضيف شريط تمرير في قائمة سياق أوبرا لتغيير معدل تشغيل الفيديو\nملاحظة: التغييرات تنطبق فقط على مقاطع الفيديو اللاحقة"
},
"disable_google_play_dialogs": {
"name": "تعطيل حوارات خدمات Google Play",
"description": "منع ظهور مربعات حوار توفر خدمات Google Play"
},
"default_volume_controls": {
"name": "عناصر التحكم في الصوت الافتراضية",
"description": "يفرض على Snapchat استخدام عناصر التحكم في الصوت الخاصة بالنظام"
},
"disable_telecom_framework": {
"name": "تعطيل إطار الاتصالات",
"description": "يمنع Snapchat من استخدام إطار عمل Android Telecom\nهذا يسمح لك بالاستماع إلى الموسيقى أثناء المكالمة"
},
"hide_active_music": {
"name": "إخفاء الموسيقى النشطة",
"description": "يمنع Snapchat من معرفة أنك تستمع إلى الموسيقى\nسيسمح لك هذا بأخذ سنابات باستخدام أزرار التحكم في الصوت أثناء الاستماع إلى الموسيقى"
},
"disable_snap_splitting": {
"name": "تعطيل تقسيم السناب",
"description": "يمنع تقسيم السنابات إلى أجزاء متعددة\nالصور التي ترسلها ستتحول إلى مقاطع فيديو"
}
}
},
@@ -1143,7 +1220,7 @@
},
"stealth_mode_indicator": {
"name": "مؤشر وضع التخفي",
"description": "يضيف رمز تعبيري \ud83d\udc7b بجانب المحادثات في وضع التخفي"
"description": "يضيف رمز تعبيري 👻 بجانب المحادثات في وضع التخفي"
},
"edit_text_override": {
"name": "تجاوز تحرير النص",
@@ -1671,164 +1748,6 @@
}
}
},
"global": {
"name": "عالمي",
"description": "تعديل إعدادات Snapchat العالمية",
"properties": {
"better_location": {
"name": "موقع أفضل",
"description": "يحسن موقع Snapchat",
"properties": {
"spoof_location": {
"name": "محاكاة الموقع",
"description": "يحاكي موقعك إلى موقع محدد"
},
"coordinates": {
"name": "الإحداثيات",
"description": "تعيين إحداثيات الموقع المحاكى"
},
"walk_radius": {
"name": "نصف قطر المشي",
"description": "المشي عشوائياً ضمن هذا النصف قطر (قدم)"
},
"always_update_location": {
"name": "تحديث الموقع دائماً",
"description": "إجبار Snapchat على تحديث الموقع حتى إذا لم يتم استلام بيانات GPS"
},
"suspend_location_updates": {
"name": "تعليق تحديثات الموقع",
"description": "يمنع تحديث موقعك"
},
"spoof_battery_level": {
"name": "محاكاة مستوى البطارية",
"description": "يحاكي مستوى بطارية جهازك على الخريطة\nيجب أن تكون القيمة بين 0 و 100"
},
"spoof_headphones": {
"name": "محاكاة سماعات الرأس",
"description": "يحاكي حالة الاستماع إلى الموسيقى على الخريطة"
},
"show_battery_level": {
"name": "إظهار مستوى البطارية",
"description": "يظهر مستوى بطارية أصدقائك على الخريطة"
}
}
},
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "يمكّن ميزات Snapchat Plus\nبعض الميزات التي تعتمد على الخادم قد لا تعمل"
},
"media_upload_quality": {
"name": "جودة رفع الوسائط",
"description": "يتجاوز جودة رفع الوسائط",
"properties": {
"force_video_upload_source_quality": {
"name": "فرض جودة المصدر لرفع الفيديو",
"description": "يفرض على Snapchat استخدام جودة المصدر عند رفع مقاطع الفيديو\nيرجى ملاحظة أن هذا قد لا يزيل البيانات الوصفية من الوسائط"
},
"disable_image_compression": {
"name": "تعطيل ضغط الصور",
"description": "يعطل ضغط الصور عند رفع الوسائط"
},
"custom_image_upload_format": {
"name": "تنسيق رفع صورة مخصص",
"description": "يحدد تنسيق رفع صورة مخصص\nاختر تنسيقاً غير ضائع (مثل PNG) للحصول على أفضل جودة"
}
}
},
"disable_confirmation_dialogs": {
"name": "تعطيل مربعات حوار التأكيد",
"description": "يؤكد تلقائياً الإجراءات المحددة"
},
"auto_updater": {
"name": "المحدث التلقائي",
"description": "يتحقق تلقائياً من وجود تحديثات جديدة"
},
"update_settings": {
"name": "إعدادات التحديث",
"description": "التحكم في كيفية تحقق PurrfectSnap من التحديثات",
"properties": {
"auto_update_check": {
"name": "فحص التحديث التلقائي"
},
"update_check_frequency": {
"name": "تكرار فحص التحديث"
}
}
},
"ui_settings": {
"name": "إعدادات الواجهة",
"properties": {
"haptic_feedback": {
"name": "الاهتزاز اللمسي"
}
}
},
"disable_metrics": {
"name": "تعطيل المقاييس",
"description": "يحظر إرسال بيانات تحليلية محددة إلى Snapchat"
},
"disable_story_sections": {
"name": "تعطيل أقسام القصة",
"description": "يزيل الأقسام من صفحة القصص\nقد يتطلب تحديثاً للعمل بشكل صحيح"
},
"block_ads": {
"name": "حظر الإعلانات",
"description": "يمنع عرض الإعلانات"
},
"disable_custom_tabs": {
"name": "تعطيل علامات التبويب المخصصة",
"description": "يفتح الروابط في التطبيقات المدعومة بدلاً من متصفح الويب"
},
"disable_permission_requests": {
"name": "تعطيل طلبات الأذونات",
"description": "يمنع Snapchat من طلب أذونات محددة"
},
"disable_memories_snap_feed": {
"name": "تعطيل موجز سناب الذكريات",
"description": "يمنع Snapchat من إظهار الذكريات الحديثة عند التمرير لأعلى في الكاميرا"
},
"spotlight_comments_username": {
"name": "اسم مستخدم تعليقات منصة الأضواء",
"description": "يظهر اسم مستخدم المؤلف في تعليقات منصة الأضواء"
},
"spotlight_comments_username_icon": {
"name": "أيقونة اسم مستخدم تعليقات منصة الأضواء",
"description": "اختر الأيقونة التي يتم عرضها بجانب أسماء المستخدمين في تعليقات منصة الأضواء"
},
"bypass_video_length_restriction": {
"name": "تجاوز قيود طول الفيديو",
"description": "مفرد: يرسل فيديو واحد\nمقسم: يقسم الفيديو بعد التحرير"
},
"default_video_playback_rate": {
"name": "معدل تشغيل الفيديو الافتراضي",
"description": "يحدد السرعة الافتراضية لتشغيل مقاطع الفيديو\nيجب أن تكون القيمة بين 0.1 و 4.0"
},
"video_playback_rate_slider": {
"name": "شريط تمرير معدل تشغيل الفيديو",
"description": "يضيف شريط تمرير في قائمة سياق أوبرا لتغيير معدل تشغيل الفيديو\nملاحظة: التغييرات تنطبق فقط على مقاطع الفيديو اللاحقة"
},
"disable_google_play_dialogs": {
"name": "تعطيل حوارات خدمات Google Play",
"description": "منع ظهور مربعات حوار توفر خدمات Google Play"
},
"default_volume_controls": {
"name": "عناصر التحكم في الصوت الافتراضية",
"description": "يفرض على Snapchat استخدام عناصر التحكم في الصوت الخاصة بالنظام"
},
"disable_telecom_framework": {
"name": "تعطيل إطار الاتصالات",
"description": "يمنع Snapchat من استخدام إطار عمل Android Telecom\nهذا يسمح لك بالاستماع إلى الموسيقى أثناء المكالمة"
},
"hide_active_music": {
"name": "إخفاء الموسيقى النشطة",
"description": "يمنع Snapchat من معرفة أنك تستمع إلى الموسيقى\nسيسمح لك هذا بأخذ سنابات باستخدام أزرار التحكم في الصوت أثناء الاستماع إلى الموسيقى"
},
"disable_snap_splitting": {
"name": "تعطيل تقسيم السناب",
"description": "يمنع تقسيم السنابات إلى أجزاء متعددة\nالصور التي ترسلها ستتحول إلى مقاطع فيديو"
}
}
},
"rules": {
"name": "القواعد",
"description": "تكوين قواعد الأتمتة",
@@ -2110,7 +2029,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "مؤشر الرسالة المشفرة",
"description": "يضيف رمز تعبيري \ud83d\udd12 بجانب الرسائل المشفرة"
"description": "يضيف رمز تعبيري 🔒 بجانب الرسائل المشفرة"
},
"force_message_encryption": {
"name": "فرض تشفير الرسالة",
@@ -2190,6 +2109,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "دائماً فاتح",
"always_dark": "دائماً داكن",
@@ -2207,20 +2130,20 @@
"null": "استخدام مستوى البطارية الحقيقي"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f تنزيل تلقائي",
"auto_save": "\ud83d\udcac حفظ الرسائل تلقائياً",
"unsaveable_messages": "\u2b07\ufe0f رسائل غير قابلة للحفظ",
"auto_open_snaps": "\ud83d\udcf7 فتح السنابات تلقائياً",
"stealth": "\ud83d\udc7b وضع التخفي",
"auto_reply": "\ud83d\udce8 رد تلقائي",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f حذف الرسائل المرسلة تلقائياً",
"mark_snaps_as_seen": "\ud83d\udc40 تعليم السنابات كمشاهدة",
"mark_stories_as_seen_locally": "\ud83d\udc40 تعليم القصص كمشاهدة محلياً",
"conversation_info": "\ud83d\udc64 معلومات المحادثة",
"e2e_encryption": "\ud83d\udd12 استخدام التشفير من طرف لطرف",
"message_logger": "\ud83d\udcdd سجل الرسائل",
"auto_read": "\u2705 قراءة تلقائية",
"hide_typing_indicator": "\ud83d\ude48 إخفاء مؤشر الكتابة"
"auto_download": "⬇️ تنزيل تلقائي",
"auto_save": "💬 حفظ الرسائل تلقائياً",
"unsaveable_messages": "⬇️ رسائل غير قابلة للحفظ",
"auto_open_snaps": "📷 فتح السنابات تلقائياً",
"stealth": "👻 وضع التخفي",
"auto_reply": "📨 رد تلقائي",
"auto_delete_sent_messages": "🗑️ حذف الرسائل المرسلة تلقائياً",
"mark_snaps_as_seen": "👀 تعليم السنابات كمشاهدة",
"mark_stories_as_seen_locally": "👀 تعليم القصص كمشاهدة محلياً",
"conversation_info": "👤 معلومات المحادثة",
"e2e_encryption": "🔒 استخدام التشفير من طرف لطرف",
"message_logger": "📝 سجل الرسائل",
"auto_read": " قراءة تلقائية",
"hide_typing_indicator": "🙈 إخفاء مؤشر الكتابة"
},
"schedule_scheduled_for": "مجدول لـ {name} في {time}",
"schedule_sending_in": "إرسال في {time}",
@@ -2323,16 +2246,16 @@
"custom_android_id": {
"null": "استخدام معرف Android الحقيقي"
},
"add_friend_source_spoof": {
"added_by_username": "بواسطة اسم المستخدم",
"added_by_mention": "بواسطة الإشارة (Mention)",
"added_by_group_chat": "بواسطة دردشة المجموعة",
"added_by_qr_code": "بواسطة رمز QR",
"added_by_community": "بواسطة المجتمع",
"added_by_quick_add": "بواسطة الإضافة السريعة (خطر عالي للحظر)",
"added_by_spotlight": "بواسطة منصة الأضواء",
"null": "عدم محاكاة المصدر"
},
"add_friend_source_spoof": {
"added_by_username": "بواسطة اسم المستخدم",
"added_by_mention": "بواسطة الإشارة (Mention)",
"added_by_group_chat": "بواسطة دردشة المجموعة",
"added_by_qr_code": "بواسطة رمز QR",
"added_by_community": "بواسطة المجتمع",
"added_by_quick_add": "بواسطة الإضافة السريعة (خطر عالي للحظر)",
"added_by_spotlight": "بواسطة منصة الأضواء",
"null": "عدم محاكاة المصدر"
},
"custom_streaks_expiration_format": {
"null": "افتراضي النظام"
},
@@ -2439,8 +2362,8 @@
},
"spotlight_comments_username_icon": {
"user": "أيقونة اسم المستخدم",
"\ud83d\udc64": "أيقونة اسم المستخدم",
"[\ud83d\udc64]": "أيقونة اسم المستخدم",
"👤": "أيقونة اسم المستخدم",
"[👤]": "أيقونة اسم المستخدم",
"default": "أيقونة اسم المستخدم",
"no_icon": "بدون أيقونة"
},
@@ -2520,11 +2443,11 @@
"phone_calls": "المكالمات الهاتفية"
},
"message_indicators": {
"encryption_indicator": "يضيف أيقونة \ud83d\udd12 بجانب الرسائل التي تم إرسالها إليك فقط",
"encryption_indicator": "يضيف أيقونة 🔒 بجانب الرسائل التي تم إرسالها إليك فقط",
"platform_indicator": "يضيف أيقونة المنصة التي تم إرسال الوسائط منها (مثل Android, iOS, Web)",
"location_indicator": "يضيف أيقونة \ud83d\udccd للسنابات عندما يتم إرسالها مع تمكين الموقع",
"location_indicator": "يضيف أيقونة 📍 للسنابات عندما يتم إرسالها مع تمكين الموقع",
"ovf_editor_indicator": "يشير إلى ما إذا كان السناب قد تم إرساله باستخدام محرر OVF",
"director_mode_indicator": "يضيف أيقونة \u270f\ufe0f للسنابات عندما يتم إرسالها باستخدام وضع المخرج (Director Mode)، والذي يمكن استخدامه لإرسال صور المعرض كسنابات"
"director_mode_indicator": "يضيف أيقونة ✏️ للسنابات عندما يتم إرسالها باستخدام وضع المخرج (Director Mode)، والذي يمكن استخدامه لإرسال صور المعرض كسنابات"
},
"auto_mark_as_read": {
"conversation_read": "تعليم المحادثة كمقروءة عند إرسال رسالة",
@@ -2748,7 +2671,6 @@
"show_chat_edit_history": "عرض تاريخ تعديل الدردشة",
"convert_message": "تحويل الرسالة"
},
"chat_wallpaper_downloader": {
"download_button": "تنزيل خلفية الدردشة"
},
@@ -3085,7 +3007,7 @@
"queue_cleared": "تم مسح قائمة الانتظار وإعادة تعيين الإحصائيات",
"queue_cleared_title": "تم مسح قائمة الانتظار",
"queue_cleared_reset": "مسح وإعادة تعيين قائمة الانتظار",
"queue_cleared_feedback": "تم مسح {count} سنابات في الانتظار \u2022 إعادة تعيين {processed} عداد المعالجة",
"queue_cleared_feedback": "تم مسح {count} سنابات في الانتظار إعادة تعيين {processed} عداد المعالجة",
"queue_cleared_feedback_simple": "إعادة تعيين {processed} عداد المعالجة",
"unknown_sender": "مجهول",
"unknown_user": "مستخدم مجهول",

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 Eternal দ্বারা",
"version_title": "v{versionName} · Eternal দ্বারা",
"update_title": "PurrfectSnap আপডেট",
"update_content": "ভার্সন {version} উপলব্ধ!",
"update_button": "ডাউনলোড",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "কোনো টাস্ক নেই",
"merge_button": "মার্জ",
"summary_active": "{active} সক্রিয় \u00b7 {recent} সাম্প্রতিক",
"summary_idle": "অলস \u00b7 {recent} সাম্প্রতিক",
"summary_active": "{active} সক্রিয় · {recent} সাম্প্রতিক",
"summary_idle": "অলস · {recent} সাম্প্রতিক",
"running_count": "{count} চলছে",
"clear_button_description": "টাস্ক পরিষ্কার করুন",
"failed_to_open_file": "ফাইল খুলতে ব্যর্থ",
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "বন্ধুর কাছে টেলিপোর্ট করুন",
"search_bar": "অনুসন্ধান",
"no_friends_map": "ম্যাপে কোনো বন্ধু নেই",
"no_friends_found": "কোনো বন্ধু পাওয়া যায়নি"
"no_friends_found": "কোনো বন্ধু পাওয়া যায়নি",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,166 @@
},
"features": {
"notices": {
"unstable": "\u26a0 অস্থির",
"ban_risk": "\u26a0 এই ফিচারটি ব্যান ঘটাতে পারে",
"internal_behavior": "\u26a0 এটি Snapchat-এর অভ্যন্তরীণ আচরণ নষ্ট করতে পারে"
},
"options": {
"empty": "খালি",
"walk_radius": {
"empty": "খালি"
},
"spoof_battery_level": {
"empty": "খালি"
},
"custom_android_id": {
"empty": "খালি"
},
"custom_streaks_expiration_format": {
"empty": "খালি"
},
"preferred_transcription_lang": {
"empty": "খালি"
},
"custom_emoji_font": {
"empty": "খালি"
},
"custom_shared_library": {
"empty": "খালি"
},
"custom_resolution": {
"empty": "খালি"
},
"custom_path_format": {
"empty": "খালি"
},
"custom_video_codec": {
"empty": "খালি"
},
"custom_audio_codec": {
"empty": "খালি"
},
"double_tap_chat_action_custom_emoji": {
"empty": "খালি"
},
"unsaveable_messages": {
"blacklist": "ব্ল্যাকলিস্ট মোড",
"whitelist": "হোয়াইটলিস্ট মোড",
"null": "নিষ্ক্রিয়"
},
"update_check_frequency": {
"daily": "দৈনিক",
"weekly": "সাপ্তাহিক",
"monthly": "মাসিক"
}
"unstable": " অস্থির",
"ban_risk": " এই ফিচারটি ব্যান ঘটাতে পারে",
"internal_behavior": " এটি Snapchat-এর অভ্যন্তরীণ আচরণ নষ্ট করতে পারে"
},
"properties": {
"global": {
"name": "গ্লোবাল",
"description": "সাধারণ মডিউল পছন্দ এবং ডিফল্ট",
"description": "গ্লোবাল Snapchat সেটিংস টুইক করুন",
"properties": {
"ui_settings": {
"name": "UI সেটিংস",
"description": "ফিডব্যাক এবং টোস্ট আচরণ টিউন করুন",
"better_location": {
"name": "বেটার লোকেশন",
"description": "Snapchat লোকেশন উন্নত কর",
"properties": {
"haptic_feedback": {
"name": "হ্যাপটিক ফিডব্যাক",
"description": "সমর্থিত ইন্টারঅ্যাকশনে ভাইব্রেট করুন"
"spoof_location": {
"name": "লোকেশন স্পুফ করুন",
"description": "আপনার লোকেশন একটি নির্দিষ্ট স্থানে স্পুফ কর"
},
"use_system_toasts": {
"name": "সিস্টেম টোস্ট ব্যবহার করুন",
"description": "ইন-অ্যাপ ওভারলে-এর পরিবর্তে অ্যান্ড্রয়েড টোস্ট দেখান"
"coordinates": {
"name": "স্থানাঙ্ক",
"description": "স্পুফ করা লোকেশনের স্থানাঙ্ক সেট করুন"
},
"walk_radius": {
"name": "হাঁটার ব্যাসার্ধ",
"description": "এই ব্যাসার্ধের মধ্যে এলোমেলোভাবে হাঁটুন (ft)"
},
"always_update_location": {
"name": "সর্বদা লোকেশন আপডেট করুন",
"description": "GPS ডেটা না পেলেও Snapchat-কে লোকেশন আপডেট করতে বাধ্য করুন"
},
"suspend_location_updates": {
"name": "লোকেশন আপডেট স্থগিত করুন",
"description": "আপনার লোকেশন আপডেট হওয়া থেকে প্রতিরোধ করে"
},
"spoof_battery_level": {
"name": "ব্যাটারি লেভেল স্পুফ করুন",
"description": "ম্যাপে আপনার ডিভাইসের ব্যাটারি লেভেল স্পুফ করে\nমান অবশ্যই এবং ১০০ এর মধ্যে হতে হবে"
},
"spoof_headphones": {
"name": "হেডফোন স্পুফ করুন",
"description": "ম্যাপে গান শোনার স্ট্যাটাস স্পুফ করে"
},
"show_battery_level": {
"name": "ব্যাটারি লেভেল দেখান",
"description": "ম্যাপে আপনার বন্ধুদের ব্যাটারি লেভেল দেখায়"
}
}
},
"update_settings": {
"name": "আপডেট সেটিংস",
"description": "স্বয়ংক্রিয় আপডেট চেক নিয়ন্ত্রণ করুন",
"snapchat_plus": {
"name": "Snapchat প্লাস",
"description": "Snapchat প্লাস ফিচার সক্ষম করে\nকিছু সার্ভার-সাইড ফিচার কাজ নাও করতে পারে"
},
"media_upload_quality": {
"name": "মিডিয়া আপলোড কোয়ালিটি",
"description": "মিডিয়া আপলোড কোয়ালিটি ওভাররাইড করে",
"properties": {
"auto_update_check": {
"name": "অটো আপডেট চেক",
"description": "স্বয়ংক্রিয়ভাবে নতুন বিল্ড চেক করুন"
"force_video_upload_source_quality": {
"name": "ভিডিও আপলোড সোর্স কোয়ালিটি ফোর্স করুন",
"description": "ভিডিও আপলোড করার সময় Snapchat-কে সোর্স কোয়ালিটি ব্যবহার করতে বাধ্য করে\nঅনুগ্রহ করে লক্ষ্য করুন যে এটি মিডিয়া থেকে মেটাডেটা নাও সরাতে পারে"
},
"update_check_frequency": {
"name": "আপডেট চেক ফ্রিকোয়েন্সি",
"description": "কত ঘন ঘন আপডেটের জন্য চেক করা হবে"
"disable_image_compression": {
"name": "ইমেজ কমপ্রেশন নিষ্ক্রিয় করুন",
"description": "মিডিয়া আপলোড করার সময় ইমেজ কমপ্রেশন নিষ্ক্রিয় করে"
},
"custom_image_upload_format": {
"name": "কাস্টম ইমেজ আপলোড ফরম্যাট",
"description": "একটি কাস্টম ইমেজ আপলোড ফরম্যাট সেট করে\nসেরা মানের জন্য একটি লসলেস ফরম্যাট (যেমন PNG) নির্বাচন করুন"
}
}
},
"disable_confirmation_dialogs": {
"name": "কনফার্মেশন ডায়ালগ নিষ্ক্রিয় করুন",
"description": "নির্বাচিত অ্যাকশনগুলি স্বয়ংক্রিয়ভাবে নিশ্চিত করে"
},
"auto_updater": {
"name": "অটো আপডেটার",
"description": "স্বয়ংক্রিয়ভাবে নতুন আপডেটের জন্য চেক করে"
},
"update_settings": {
"name": "আপডেট সেটিংস",
"description": "PurrfectSnap কীভাবে আপডেটের জন্য চেক করে তা নিয়ন্ত্রণ করুন",
"properties": {
"auto_update_check": {
"name": "অটো আপডেট চেক"
},
"update_check_frequency": {
"name": "আপডেট চেক ফ্রিকোয়েন্সি"
}
}
},
"ui_settings": {
"name": "UI সেটিংস",
"properties": {
"haptic_feedback": {
"name": "হ্যাপটিক ফিডব্যাক"
}
}
},
"disable_metrics": {
"name": "মেট্রিক্স নিষ্ক্রিয় করুন",
"description": "Snapchat-এ নির্দিষ্ট অ্যানালিটিক ডেটা পাঠানো ব্লক করে"
},
"disable_story_sections": {
"name": "স্টোরি সেকশন নিষ্ক্রিয় করুন",
"description": "স্টোরি পেজ থেকে সেকশনগুলি সরিয়ে ফেলে\nসঠিকভাবে কাজ করার জন্য রিফ্রেশ করার প্রয়োজন হতে পারে"
},
"block_ads": {
"name": "বিজ্ঞাপন ব্লক করুন",
"description": "বিজ্ঞাপন প্রদর্শন করা থেকে বিরত রাখে"
},
"disable_custom_tabs": {
"name": "কাস্টম ট্যাব নিষ্ক্রিয় করুন",
"description": "ওয়েব ব্রাউজারের পরিবর্তে সমর্থিত অ্যাপ্লিকেশনগুলিতে লিঙ্ক খোলে"
},
"disable_permission_requests": {
"name": "অনুমতি অনুরোধ নিষ্ক্রিয় করুন",
"description": "Snapchat-কে নির্দিষ্ট অনুমতির জন্য জিজ্ঞাসা করা থেকে বিরত রাখে"
},
"disable_memories_snap_feed": {
"name": "মেমরি স্ন্যাপ ফিড নিষ্ক্রিয় করুন",
"description": "ক্যামেরায় সোয়াইপ আপ করার সময় Snapchat-কে সাম্প্রতিক মেমরি দেখানো থেকে বিরত রাখে"
},
"spotlight_comments_username": {
"name": "স্পটলাইট কমেন্টস ইউজারনেম",
"description": "স্পটলাইট কমেন্টে লেখকের ইউজারনেম দেখায়"
},
"spotlight_comments_username_icon": {
"name": "স্পটলাইট কমেন্টস ইউজারনেম আইকন",
"description": "স্পটলাইট কমেন্টে ইউজারনেমের পাশে কোন আইকন প্রদর্শিত হবে তা বাছুন"
},
"bypass_video_length_restriction": {
"name": "ভিডিও দৈর্ঘ্যের সীমাবদ্ধতা বাইপাস",
"description": "সিঙ্গেল: একটি একক ভিডিও পাঠায়\nস্প্লিট: এডিট করার পরে ভিডিও ভাগ করে"
},
"default_video_playback_rate": {
"name": "ডিফল্ট ভিডিও প্লেব্যাক রেট",
"description": "ভিডিও প্লেব্যাকের জন্য ডিফল্ট গতি সেট করে\nমান অবশ্যই .১ এবং . এর মধ্যে হতে হবে"
},
"video_playback_rate_slider": {
"name": "ভিডিও প্লেব্যাক রেট স্লাইডার",
"description": "ভিডিও প্লেব্যাক রেট পরিবর্তন করতে অপেরা কনটেক্সট মেনুতে একটি স্লাইডার যোগ করে\nদ্রষ্টব্য: পরিবর্তনগুলি শুধুমাত্র পরবর্তী ভিডিওগুলিতে প্রযোজ্য"
},
"disable_google_play_dialogs": {
"name": "গুগল প্লে সার্ভিসেস ডায়ালগ নিষ্ক্রিয় করুন",
"description": "গুগল প্লে সার্ভিসেস উপলব্ধতা ডায়ালগ দেখানো থেকে বিরত রাখুন"
},
"default_volume_controls": {
"name": "ডিফল্ট ভলিউম কন্ট্রোল",
"description": "Snapchat-কে সিস্টেম ভলিউম কন্ট্রোল ব্যবহার করতে বাধ্য করে"
},
"disable_telecom_framework": {
"name": "টেলিকম ফ্রেমওয়ার্ক নিষ্ক্রিয় করুন",
"description": "Snapchat-কে অ্যান্ড্রয়েড টেলিকম ফ্রেমওয়ার্ক ব্যবহার করা থেকে বিরত রাখে\nএটি আপনাকে কলে থাকার সময় গান শোনার অনুমতি দেয়"
},
"hide_active_music": {
"name": "অ্যাক্টিভ মিউজিক লুকান",
"description": "Snapchat-কে জানতে দেয় না যে আপনি গান শুনছেন\nএটি আপনাকে গান শোনার সময় ভলিউম বোতাম ব্যবহার করে স্ন্যাপ নেওয়ার অনুমতি দেবে"
},
"disable_snap_splitting": {
"name": "স্ন্যাপ স্প্লিটিং নিষ্ক্রিয় করুন",
"description": "স্ন্যাপগুলিকে একাধিক অংশে ভাগ করা থেকে বিরত রাখে\nআপনার পাঠানো ছবিগুলি ভিডিওতে পরিণত হবে"
}
}
},
@@ -1143,7 +1220,7 @@
},
"stealth_mode_indicator": {
"name": "স্টিলথ মোড ইন্ডিকেটর",
"description": "স্টিলথ মোডে থাকা কনভারসেশনের পাশে একটি \ud83d\udc7b ইমোজি যোগ করে"
"description": "স্টিলথ মোডে থাকা কনভারসেশনের পাশে একটি 👻 ইমোজি যোগ করে"
},
"edit_text_override": {
"name": "এডিট টেক্সট ওভাররাইড",
@@ -1671,164 +1748,6 @@
}
}
},
"global": {
"name": "গ্লোবাল",
"description": "গ্লোবাল Snapchat সেটিংস টুইক করুন",
"properties": {
"better_location": {
"name": "বেটার লোকেশন",
"description": "Snapchat লোকেশন উন্নত করে",
"properties": {
"spoof_location": {
"name": "লোকেশন স্পুফ করুন",
"description": "আপনার লোকেশন একটি নির্দিষ্ট স্থানে স্পুফ করে"
},
"coordinates": {
"name": "স্থানাঙ্ক",
"description": "স্পুফ করা লোকেশনের স্থানাঙ্ক সেট করুন"
},
"walk_radius": {
"name": "হাঁটার ব্যাসার্ধ",
"description": "এই ব্যাসার্ধের মধ্যে এলোমেলোভাবে হাঁটুন (ft)"
},
"always_update_location": {
"name": "সর্বদা লোকেশন আপডেট করুন",
"description": "GPS ডেটা না পেলেও Snapchat-কে লোকেশন আপডেট করতে বাধ্য করুন"
},
"suspend_location_updates": {
"name": "লোকেশন আপডেট স্থগিত করুন",
"description": "আপনার লোকেশন আপডেট হওয়া থেকে প্রতিরোধ করে"
},
"spoof_battery_level": {
"name": "ব্যাটারি লেভেল স্পুফ করুন",
"description": "ম্যাপে আপনার ডিভাইসের ব্যাটারি লেভেল স্পুফ করে\nমান অবশ্যই এবং ১০০ এর মধ্যে হতে হবে"
},
"spoof_headphones": {
"name": "হেডফোন স্পুফ করুন",
"description": "ম্যাপে গান শোনার স্ট্যাটাস স্পুফ করে"
},
"show_battery_level": {
"name": "ব্যাটারি লেভেল দেখান",
"description": "ম্যাপে আপনার বন্ধুদের ব্যাটারি লেভেল দেখায়"
}
}
},
"snapchat_plus": {
"name": "Snapchat প্লাস",
"description": "Snapchat প্লাস ফিচার সক্ষম করে\nকিছু সার্ভার-সাইড ফিচার কাজ নাও করতে পারে"
},
"media_upload_quality": {
"name": "মিডিয়া আপলোড কোয়ালিটি",
"description": "মিডিয়া আপলোড কোয়ালিটি ওভাররাইড করে",
"properties": {
"force_video_upload_source_quality": {
"name": "ভিডিও আপলোড সোর্স কোয়ালিটি ফোর্স করুন",
"description": "ভিডিও আপলোড করার সময় Snapchat-কে সোর্স কোয়ালিটি ব্যবহার করতে বাধ্য করে\nঅনুগ্রহ করে লক্ষ্য করুন যে এটি মিডিয়া থেকে মেটাডেটা নাও সরাতে পারে"
},
"disable_image_compression": {
"name": "ইমেজ কমপ্রেশন নিষ্ক্রিয় করুন",
"description": "মিডিয়া আপলোড করার সময় ইমেজ কমপ্রেশন নিষ্ক্রিয় করে"
},
"custom_image_upload_format": {
"name": "কাস্টম ইমেজ আপলোড ফরম্যাট",
"description": "একটি কাস্টম ইমেজ আপলোড ফরম্যাট সেট করে\nসেরা মানের জন্য একটি লসলেস ফরম্যাট (যেমন PNG) নির্বাচন করুন"
}
}
},
"disable_confirmation_dialogs": {
"name": "কনফার্মেশন ডায়ালগ নিষ্ক্রিয় করুন",
"description": "নির্বাচিত অ্যাকশনগুলি স্বয়ংক্রিয়ভাবে নিশ্চিত করে"
},
"auto_updater": {
"name": "অটো আপডেটার",
"description": "স্বয়ংক্রিয়ভাবে নতুন আপডেটের জন্য চেক করে"
},
"update_settings": {
"name": "আপডেট সেটিংস",
"description": "PurrfectSnap কীভাবে আপডেটের জন্য চেক করে তা নিয়ন্ত্রণ করুন",
"properties": {
"auto_update_check": {
"name": "অটো আপডেট চেক"
},
"update_check_frequency": {
"name": "আপডেট চেক ফ্রিকোয়েন্সি"
}
}
},
"ui_settings": {
"name": "UI সেটিংস",
"properties": {
"haptic_feedback": {
"name": "হ্যাপটিক ফিডব্যাক"
}
}
},
"disable_metrics": {
"name": "মেট্রিক্স নিষ্ক্রিয় করুন",
"description": "Snapchat-এ নির্দিষ্ট অ্যানালিটিক ডেটা পাঠানো ব্লক করে"
},
"disable_story_sections": {
"name": "স্টোরি সেকশন নিষ্ক্রিয় করুন",
"description": "স্টোরি পেজ থেকে সেকশনগুলি সরিয়ে ফেলে\nসঠিকভাবে কাজ করার জন্য রিফ্রেশ করার প্রয়োজন হতে পারে"
},
"block_ads": {
"name": "বিজ্ঞাপন ব্লক করুন",
"description": "বিজ্ঞাপন প্রদর্শন করা থেকে বিরত রাখে"
},
"disable_custom_tabs": {
"name": "কাস্টম ট্যাব নিষ্ক্রিয় করুন",
"description": "ওয়েব ব্রাউজারের পরিবর্তে সমর্থিত অ্যাপ্লিকেশনগুলিতে লিঙ্ক খোলে"
},
"disable_permission_requests": {
"name": "অনুমতি অনুরোধ নিষ্ক্রিয় করুন",
"description": "Snapchat-কে নির্দিষ্ট অনুমতির জন্য জিজ্ঞাসা করা থেকে বিরত রাখে"
},
"disable_memories_snap_feed": {
"name": "মেমরি স্ন্যাপ ফিড নিষ্ক্রিয় করুন",
"description": "ক্যামেরায় সোয়াইপ আপ করার সময় Snapchat-কে সাম্প্রতিক মেমরি দেখানো থেকে বিরত রাখে"
},
"spotlight_comments_username": {
"name": "স্পটলাইট কমেন্টস ইউজারনেম",
"description": "স্পটলাইট কমেন্টে লেখকের ইউজারনেম দেখায়"
},
"spotlight_comments_username_icon": {
"name": "স্পটলাইট কমেন্টস ইউজারনেম আইকন",
"description": "স্পটলাইট কমেন্টে ইউজারনেমের পাশে কোন আইকন প্রদর্শিত হবে তা বাছুন"
},
"bypass_video_length_restriction": {
"name": "ভিডিও দৈর্ঘ্যের সীমাবদ্ধতা বাইপাস",
"description": "সিঙ্গেল: একটি একক ভিডিও পাঠায়\nস্প্লিট: এডিট করার পরে ভিডিও ভাগ করে"
},
"default_video_playback_rate": {
"name": "ডিফল্ট ভিডিও প্লেব্যাক রেট",
"description": "ভিডিও প্লেব্যাকের জন্য ডিফল্ট গতি সেট করে\nমান অবশ্যই .১ এবং . এর মধ্যে হতে হবে"
},
"video_playback_rate_slider": {
"name": "ভিডিও প্লেব্যাক রেট স্লাইডার",
"description": "ভিডিও প্লেব্যাক রেট পরিবর্তন করতে অপেরা কনটেক্সট মেনুতে একটি স্লাইডার যোগ করে\nদ্রষ্টব্য: পরিবর্তনগুলি শুধুমাত্র পরবর্তী ভিডিওগুলিতে প্রযোজ্য"
},
"disable_google_play_dialogs": {
"name": "গুগল প্লে সার্ভিসেস ডায়ালগ নিষ্ক্রিয় করুন",
"description": "গুগল প্লে সার্ভিসেস উপলব্ধতা ডায়ালগ দেখানো থেকে বিরত রাখুন"
},
"default_volume_controls": {
"name": "ডিফল্ট ভলিউম কন্ট্রোল",
"description": "Snapchat-কে সিস্টেম ভলিউম কন্ট্রোল ব্যবহার করতে বাধ্য করে"
},
"disable_telecom_framework": {
"name": "টেলিকম ফ্রেমওয়ার্ক নিষ্ক্রিয় করুন",
"description": "Snapchat-কে অ্যান্ড্রয়েড টেলিকম ফ্রেমওয়ার্ক ব্যবহার করা থেকে বিরত রাখে\nএটি আপনাকে কলে থাকার সময় গান শোনার অনুমতি দেয়"
},
"hide_active_music": {
"name": "অ্যাক্টিভ মিউজিক লুকান",
"description": "Snapchat-কে জানতে দেয় না যে আপনি গান শুনছেন\nএটি আপনাকে গান শোনার সময় ভলিউম বোতাম ব্যবহার করে স্ন্যাপ নেওয়ার অনুমতি দেবে"
},
"disable_snap_splitting": {
"name": "স্ন্যাপ স্প্লিটিং নিষ্ক্রিয় করুন",
"description": "স্ন্যাপগুলিকে একাধিক অংশে ভাগ করা থেকে বিরত রাখে\nআপনার পাঠানো ছবিগুলি ভিডিওতে পরিণত হবে"
}
}
},
"rules": {
"name": "রুল",
"description": "অটোমেশন রুল কনফিগার করুন",
@@ -2110,7 +2029,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "এনক্রিপ্টেড মেসেজ ইন্ডিকেটর",
"description": "এনক্রিপ্ট করা মেসেজের পাশে একটি \ud83d\udd12 ইমোজি যোগ করে"
"description": "এনক্রিপ্ট করা মেসেজের পাশে একটি 🔒 ইমোজি যোগ করে"
},
"force_message_encryption": {
"name": "মেসেজ এনক্রিপশন ফোর্স করুন",
@@ -2190,6 +2109,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "সর্বদা লাইট",
"always_dark": "সর্বদা ডার্ক",
@@ -2207,20 +2130,20 @@
"null": "আসল ব্যাটারি লেভেল ব্যবহার করুন"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f অটো ডাউনলোড",
"auto_save": "\ud83d\udcac অটো সেভ মেসেজ",
"unsaveable_messages": "\u2b07\ufe0f আনসেভেবল মেসেজ",
"auto_open_snaps": "\ud83d\udcf7 অটো ওপেন স্ন্যাপ",
"stealth": "\ud83d\udc7b স্টিলথ মোড",
"auto_reply": "\ud83d\udce8 অটো রিপ্লাই",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f পাঠানো মেসেজ অটো ডিলিট",
"mark_snaps_as_seen": "\ud83d\udc40 স্ন্যাপ দেখা হয়েছে হিসেবে চিহ্নিত করুন",
"mark_stories_as_seen_locally": "\ud83d\udc40 স্থানীয়ভাবে স্টোরি দেখা হয়েছে হিসেবে চিহ্নিত করুন",
"conversation_info": "\ud83d\udc64 কনভারসেশন ইনফো",
"e2e_encryption": "\ud83d\udd12 E2E এনক্রিপশন ব্যবহার করুন",
"message_logger": "\ud83d\udcdd মেসেজ লগার",
"auto_read": "\u2705 অটো রিড",
"hide_typing_indicator": "\ud83d\ude48 টাইপিং ইন্ডিকেটর লুকান"
"auto_download": "⬇️ অটো ডাউনলোড",
"auto_save": "💬 অটো সেভ মেসেজ",
"unsaveable_messages": "⬇️ আনসেভেবল মেসেজ",
"auto_open_snaps": "📷 অটো ওপেন স্ন্যাপ",
"stealth": "👻 স্টিলথ মোড",
"auto_reply": "📨 অটো রিপ্লাই",
"auto_delete_sent_messages": "🗑️ পাঠানো মেসেজ অটো ডিলিট",
"mark_snaps_as_seen": "👀 স্ন্যাপ দেখা হয়েছে হিসেবে চিহ্নিত করুন",
"mark_stories_as_seen_locally": "👀 স্থানীয়ভাবে স্টোরি দেখা হয়েছে হিসেবে চিহ্নিত করুন",
"conversation_info": "👤 কনভারসেশন ইনফো",
"e2e_encryption": "🔒 E2E এনক্রিপশন ব্যবহার করুন",
"message_logger": "📝 মেসেজ লগার",
"auto_read": " অটো রিড",
"hide_typing_indicator": "🙈 টাইপিং ইন্ডিকেটর লুকান"
},
"schedule_scheduled_for": "{name}-এর জন্য {time}-এ নির্ধারিত",
"schedule_sending_in": "{time}-এ পাঠানো হচ্ছে",
@@ -2323,16 +2246,16 @@
"custom_android_id": {
"null": "আসল অ্যান্ড্রয়েড ID ব্যবহার করুন"
},
"add_friend_source_spoof": {
"added_by_username": "ইউজারনেম দ্বারা",
"added_by_mention": "মেনশন দ্বারা",
"added_by_group_chat": "গ্রুপ চ্যাট দ্বারা",
"added_by_qr_code": "QR কোড দ্বারা",
"added_by_community": "কমিউনিটি দ্বারা",
"added_by_quick_add": "কুইক অ্যাড দ্বারা (ব্যান হওয়ার উচ্চ ঝুঁকি)",
"added_by_spotlight": "স্পটলাইট দ্বারা",
"null": "উৎস স্পুফ করবেন না"
},
"add_friend_source_spoof": {
"added_by_username": "ইউজারনেম দ্বারা",
"added_by_mention": "মেনশন দ্বারা",
"added_by_group_chat": "গ্রুপ চ্যাট দ্বারা",
"added_by_qr_code": "QR কোড দ্বারা",
"added_by_community": "কমিউনিটি দ্বারা",
"added_by_quick_add": "কুইক অ্যাড দ্বারা (ব্যান হওয়ার উচ্চ ঝুঁকি)",
"added_by_spotlight": "স্পটলাইট দ্বারা",
"null": "উৎস স্পুফ করবেন না"
},
"custom_streaks_expiration_format": {
"null": "সিস্টেম ডিফল্ট"
},
@@ -2439,8 +2362,8 @@
},
"spotlight_comments_username_icon": {
"user": "ইউজারনেম আইকন",
"\ud83d\udc64": "ইউজারনেম আইকন",
"[\ud83d\udc64]": "ইউজারনেম আইকন",
"👤": "ইউজারনেম আইকন",
"[👤]": "ইউজারনেম আইকন",
"default": "ইউজারনেম আইকন",
"no_icon": "কোনো আইকন নেই"
},
@@ -2520,11 +2443,11 @@
"phone_calls": "ফোন কল"
},
"message_indicators": {
"encryption_indicator": "শুধুমাত্র আপনার কাছে পাঠানো মেসেজের পাশে একটি \ud83d\udd12 আইকন যোগ করে",
"encryption_indicator": "শুধুমাত্র আপনার কাছে পাঠানো মেসেজের পাশে একটি 🔒 আইকন যোগ করে",
"platform_indicator": "মিডিয়াটি কোন প্ল্যাটফর্ম থেকে পাঠানো হয়েছে তার আইকন যোগ করে (যেমন Android, iOS, Web)",
"location_indicator": "লোকেশন সক্ষম করে পাঠানো হলে স্ন্যাপগুলিতে একটি \ud83d\udccd আইকন যোগ করে",
"location_indicator": "লোকেশন সক্ষম করে পাঠানো হলে স্ন্যাপগুলিতে একটি 📍 আইকন যোগ করে",
"ovf_editor_indicator": "OVF এডিটর ব্যবহার করে কোনো স্ন্যাপ পাঠানো হয়েছে কিনা তা নির্দেশ করে",
"director_mode_indicator": "ডিরেক্টর মোড ব্যবহার করে পাঠানো হলে স্ন্যাপগুলিতে একটি \u270f\ufe0f আইকন যোগ করে, যা স্ন্যাপ হিসেবে গ্যালারি ছবি পাঠাতে ব্যবহার করা যেতে পারে"
"director_mode_indicator": "ডিরেক্টর মোড ব্যবহার করে পাঠানো হলে স্ন্যাপগুলিতে একটি ✏️ আইকন যোগ করে, যা স্ন্যাপ হিসেবে গ্যালারি ছবি পাঠাতে ব্যবহার করা যেতে পারে"
},
"auto_mark_as_read": {
"conversation_read": "মেসেজ পাঠানোর সময় কনভারসেশন পড়া হয়েছে হিসেবে চিহ্নিত করুন",
@@ -2748,7 +2671,6 @@
"show_chat_edit_history": "চ্যাট এডিট ইতিহাস দেখান",
"convert_message": "মেসেজ কনভার্ট করুন"
},
"chat_wallpaper_downloader": {
"download_button": "চ্যাট ওয়ালপেপার ডাউনলোড করুন"
},
@@ -3078,7 +3000,7 @@
"queue_cleared": "কিউ পরিষ্কার এবং পরিসংখ্যান রিসেট করা হয়েছে",
"queue_cleared_title": "কিউ পরিষ্কার করা হয়েছে",
"queue_cleared_reset": "কিউ পরিষ্কার এবং রিসেট করা হয়েছে",
"queue_cleared_feedback": "{count} কিউতে থাকা স্ন্যাপ পরিষ্কার করা হয়েছে \u2022 {processed} প্রসেসড কাউন্ট রিসেট করা হয়েছে",
"queue_cleared_feedback": "{count} কিউতে থাকা স্ন্যাপ পরিষ্কার করা হয়েছে {processed} প্রসেসড কাউন্ট রিসেট করা হয়েছে",
"queue_cleared_feedback_simple": "{processed} প্রসেসড কাউন্ট রিসেট করা হয়েছে",
"unknown_sender": "অজানা",
"unknown_user": "অজানা ব্যবহারকারী",

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 af Eternal",
"version_title": "v{versionName} · af Eternal",
"update_title": "PurrfectSnap Opdatering",
"update_content": "Version {version} er tilgængelig!",
"update_button": "Download",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "Ingen opgaver",
"merge_button": "Flet",
"summary_active": "{active} aktiv \u00b7 {recent} seneste",
"summary_idle": "Inaktiv \u00b7 {recent} seneste",
"summary_active": "{active} aktiv · {recent} seneste",
"summary_idle": "Inaktiv · {recent} seneste",
"running_count": "{count} kører",
"clear_button_description": "Ryd opgaver",
"failed_to_open_file": "Kunne ikke åbne fil",
@@ -312,22 +312,22 @@
"remove_selected_tasks_confirm": "Fjern {count} opgaver?",
"remove_all_tasks_confirm": "Fjern alle opgaver?"
},
"features": {
"disabled": "Deaktiveret",
"export_option": "Eksporter",
"import_option": "Importer",
"reset_option": "Nulstil",
"config_export_success_toast": "Konfiguration eksporteret succesfuldt",
"config_import_success_toast": "Konfiguration importeret succesfuldt",
"config_import_failure_toast": "Kunne ikke importere konfiguration {error}",
"config_export_failure_toast": "Kunne ikke eksportere konfiguration {error}",
"saved_config_snackbar": "Konfiguration gemt",
"older_required": "Denne funktion kræver Snapchat v{version} eller ældre for at fungere korrekt",
"newer_required": "Denne funktion kræver Snapchat v{version} eller nyere for at fungere korrekt",
"search_button": "Søg",
"clear_history": "Ryd søgehistorik",
"subtitle": "Søg og administrer funktioner"
},
"features": {
"disabled": "Deaktiveret",
"export_option": "Eksporter",
"import_option": "Importer",
"reset_option": "Nulstil",
"config_export_success_toast": "Konfiguration eksporteret succesfuldt",
"config_import_success_toast": "Konfiguration importeret succesfuldt",
"config_import_failure_toast": "Kunne ikke importere konfiguration {error}",
"config_export_failure_toast": "Kunne ikke eksportere konfiguration {error}",
"saved_config_snackbar": "Konfiguration gemt",
"older_required": "Denne funktion kræver Snapchat v{version} eller ældre for at fungere korrekt",
"newer_required": "Denne funktion kræver Snapchat v{version} eller nyere for at fungere korrekt",
"search_button": "Søg",
"clear_history": "Ryd søgehistorik",
"subtitle": "Søg og administrer funktioner"
},
"bypass_status": {
"active": "PurrAura Aktiv",
"inactive": "PurrAura Inaktiv"
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "Teleporter til ven",
"search_bar": "Søg",
"no_friends_map": "Ingen venner på kortet",
"no_friends_found": "Ingen venner fundet"
"no_friends_found": "Ingen venner fundet",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,166 @@
},
"features": {
"notices": {
"unstable": "\u26a0 Ustabil",
"ban_risk": "\u26a0 Denne funktion kan medføre udelukkelser",
"internal_behavior": "\u26a0 Dette kan ødelægge Snapchats interne adfærd"
},
"options": {
"empty": "Tom",
"walk_radius": {
"empty": "Tom"
},
"spoof_battery_level": {
"empty": "Tom"
},
"custom_android_id": {
"empty": "Tom"
},
"custom_streaks_expiration_format": {
"empty": "Tom"
},
"preferred_transcription_lang": {
"empty": "Tom"
},
"custom_emoji_font": {
"empty": "Tom"
},
"custom_shared_library": {
"empty": "Tom"
},
"custom_resolution": {
"empty": "Tom"
},
"custom_path_format": {
"empty": "Tom"
},
"custom_video_codec": {
"empty": "Tom"
},
"custom_audio_codec": {
"empty": "Tom"
},
"double_tap_chat_action_custom_emoji": {
"empty": "Tom"
},
"unsaveable_messages": {
"blacklist": "Blacklist-tilstand",
"whitelist": "Whitelist-tilstand",
"null": "Deaktiveret"
},
"update_check_frequency": {
"daily": "Dagligt",
"weekly": "Ugentligt",
"monthly": "Månedligt"
}
"unstable": " Ustabil",
"ban_risk": " Denne funktion kan medføre udelukkelser",
"internal_behavior": " Dette kan ødelægge Snapchats interne adfærd"
},
"properties": {
"global": {
"name": "Global",
"description": "Generelle modulpræferencer og standarder",
"description": "Juster globale Snapchat-indstillinger",
"properties": {
"ui_settings": {
"name": "UI-indstillinger",
"description": "Juster feedback og toast-adfærd",
"better_location": {
"name": "Bedre lokation",
"description": "Forbedrer Snapchat-lokationen",
"properties": {
"haptic_feedback": {
"name": "Haptisk feedback",
"description": "Vibrer ved understøttede interaktioner"
"spoof_location": {
"name": "Spoof lokation",
"description": "Spoofer din lokation til en specificeret en"
},
"use_system_toasts": {
"name": "Brug system-toasts",
"description": "Vis Android-toasts i stedet for in-app overlays"
"coordinates": {
"name": "Koordinater",
"description": "Indstil koordinaterne for den spoofede lokation"
},
"walk_radius": {
"name": "Gå-radius",
"description": "Gå tilfældigt rundt inden for denne radius (ft)"
},
"always_update_location": {
"name": "Opdater altid lokation",
"description": "Tving Snapchat til at opdatere lokation, selvom ingen GPS-data modtages"
},
"suspend_location_updates": {
"name": "Sæt lokationsopdateringer på pause",
"description": "Forhindrer din lokation i at blive opdateret"
},
"spoof_battery_level": {
"name": "Spoof batteriniveau",
"description": "Spoofer batteriniveauet på din enhed på kortet\nVærdi skal være mellem 0 og 100"
},
"spoof_headphones": {
"name": "Spoof hovedtelefoner",
"description": "Spoofer status for lytning til musik på kortet"
},
"show_battery_level": {
"name": "Vis batteriniveau",
"description": "Viser dine venners batteriniveau på kortet"
}
}
},
"update_settings": {
"name": "Opdateringsindstillinger",
"description": "Kontroller automatiske opdateringstjek",
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Aktiverer Snapchat Plus-funktioner\nNogle server-sidede funktioner virker muligvis ikke"
},
"media_upload_quality": {
"name": "Medie-uploadkvalitet",
"description": "Overskriver medie-uploadkvaliteten",
"properties": {
"auto_update_check": {
"name": "Automatisk opdateringstjek",
"description": "Tjek for nye builds automatisk"
"force_video_upload_source_quality": {
"name": "Tving videoupload kildekvalitet",
"description": "Tvinger Snapchat til at bruge kildekvaliteten ved upload af videoer\nBemærk venligst, at dette muligvis ikke fjerner metadata fra medier"
},
"update_check_frequency": {
"name": "Opdateringstjek-frekvens",
"description": "Hvor ofte der skal tjekkes for opdateringer"
"disable_image_compression": {
"name": "Deaktiver billedkomprimering",
"description": "Deaktiverer billedkomprimering ved upload af medier"
},
"custom_image_upload_format": {
"name": "Brugerdefineret billedupload-format",
"description": "Indstiller et brugerdefineret billedupload-format\nVælg et tabsfrit format (som PNG) for den bedste kvalitet"
}
}
},
"disable_confirmation_dialogs": {
"name": "Deaktiver bekræftelsesdialoger",
"description": "Bekræfter automatisk valgte handlinger"
},
"auto_updater": {
"name": "Auto-opdaterer",
"description": "Tjekker automatisk for nye opdateringer"
},
"update_settings": {
"name": "Opdateringsindstillinger",
"description": "Styr hvordan PurrfectSnap tjekker for opdateringer",
"properties": {
"auto_update_check": {
"name": "Automatisk opdateringstjek"
},
"update_check_frequency": {
"name": "Opdateringstjek-frekvens"
}
}
},
"ui_settings": {
"name": "UI-indstillinger",
"properties": {
"haptic_feedback": {
"name": "Haptisk feedback"
}
}
},
"disable_metrics": {
"name": "Deaktiver målinger",
"description": "Blokerer afsendelse af specifikke analysedata til Snapchat"
},
"disable_story_sections": {
"name": "Deaktiver story-sektioner",
"description": "Fjerner sektioner fra Stories-siden\nKan kræve en opdatering for at fungere korrekt"
},
"block_ads": {
"name": "Bloker reklamer",
"description": "Forhindrer reklamer i at blive vist"
},
"disable_custom_tabs": {
"name": "Deaktiver brugerdefinerede faner",
"description": "Åbner links i understøttede applikationer i stedet for i webbrowseren"
},
"disable_permission_requests": {
"name": "Deaktiver tilladelsesanmodninger",
"description": "Forhindrer Snapchat i at bede om specifikke tilladelser"
},
"disable_memories_snap_feed": {
"name": "Deaktiver minder snap-feed",
"description": "Forhindrer Snapchat i at vise nylige minder, når du swiper op i kameraet"
},
"spotlight_comments_username": {
"name": "Spotlight kommentar brugernavn",
"description": "Viser forfatterens brugernavn i Spotlight-kommentarer"
},
"spotlight_comments_username_icon": {
"name": "Spotlight kommentar brugernavn ikon",
"description": "Vælg hvilket ikon der vises ved siden af brugernavne i Spotlight-kommentarer"
},
"bypass_video_length_restriction": {
"name": "Omgå videolængdebegrænsninger",
"description": "Enkelt: sender en enkelt video\nOpdelt: opdel videoer efter redigering"
},
"default_video_playback_rate": {
"name": "Standard videoafspilningshastighed",
"description": "Indstiller standardhastigheden for afspilning af videoer\nVærdi skal være mellem 0.1 og 4.0"
},
"video_playback_rate_slider": {
"name": "Videoafspilningshastighed-skyder",
"description": "Tilføjer en skyder i opera kontekstmenuen for at ændre videoafspilningshastigheden\nBemærk: Ændringer gælder kun for efterfølgende videoer"
},
"disable_google_play_dialogs": {
"name": "Deaktiver Google Play Services dialoger",
"description": "Forhindr Google Play Services tilgængelighedsdialoger i at blive vist"
},
"default_volume_controls": {
"name": "Standard lydstyrkekontroller",
"description": "Tvinger Snapchat til at bruge systemets lydstyrkekontroller"
},
"disable_telecom_framework": {
"name": "Deaktiver Telecom Framework",
"description": "Forhindrer Snapchat i at bruge Android Telecom frameworket\nDette gør det muligt at lytte til musik, mens du er i et opkald"
},
"hide_active_music": {
"name": "Skjul aktiv musik",
"description": "Forhindrer Snapchat i at vide, at du lytter til musik\nDette vil gøre det muligt at tage snaps ved hjælp af lydstyrkeknapperne, mens du lytter til musik"
},
"disable_snap_splitting": {
"name": "Deaktiver snap-opdeling",
"description": "Forhindrer Snaps i at blive opdelt i flere dele\nBilleder du sender vil blive til videoer"
}
}
},
@@ -1143,7 +1220,7 @@
},
"stealth_mode_indicator": {
"name": "Stealth-tilstand indikator",
"description": "Tilføjer en \ud83d\udc7b emoji ved siden af samtaler i stealth-tilstand"
"description": "Tilføjer en 👻 emoji ved siden af samtaler i stealth-tilstand"
},
"edit_text_override": {
"name": "Rediger tekst overskrivelse",
@@ -1671,164 +1748,6 @@
}
}
},
"global": {
"name": "Global",
"description": "Juster globale Snapchat-indstillinger",
"properties": {
"better_location": {
"name": "Bedre lokation",
"description": "Forbedrer Snapchat-lokationen",
"properties": {
"spoof_location": {
"name": "Spoof lokation",
"description": "Spoofer din lokation til en specificeret en"
},
"coordinates": {
"name": "Koordinater",
"description": "Indstil koordinaterne for den spoofede lokation"
},
"walk_radius": {
"name": "Gå-radius",
"description": "Gå tilfældigt rundt inden for denne radius (ft)"
},
"always_update_location": {
"name": "Opdater altid lokation",
"description": "Tving Snapchat til at opdatere lokation, selvom ingen GPS-data modtages"
},
"suspend_location_updates": {
"name": "Sæt lokationsopdateringer på pause",
"description": "Forhindrer din lokation i at blive opdateret"
},
"spoof_battery_level": {
"name": "Spoof batteriniveau",
"description": "Spoofer batteriniveauet på din enhed på kortet\nVærdi skal være mellem 0 og 100"
},
"spoof_headphones": {
"name": "Spoof hovedtelefoner",
"description": "Spoofer status for lytning til musik på kortet"
},
"show_battery_level": {
"name": "Vis batteriniveau",
"description": "Viser dine venners batteriniveau på kortet"
}
}
},
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Aktiverer Snapchat Plus-funktioner\nNogle server-sidede funktioner virker muligvis ikke"
},
"media_upload_quality": {
"name": "Medie-uploadkvalitet",
"description": "Overskriver medie-uploadkvaliteten",
"properties": {
"force_video_upload_source_quality": {
"name": "Tving videoupload kildekvalitet",
"description": "Tvinger Snapchat til at bruge kildekvaliteten ved upload af videoer\nBemærk venligst, at dette muligvis ikke fjerner metadata fra medier"
},
"disable_image_compression": {
"name": "Deaktiver billedkomprimering",
"description": "Deaktiverer billedkomprimering ved upload af medier"
},
"custom_image_upload_format": {
"name": "Brugerdefineret billedupload-format",
"description": "Indstiller et brugerdefineret billedupload-format\nVælg et tabsfrit format (som PNG) for den bedste kvalitet"
}
}
},
"disable_confirmation_dialogs": {
"name": "Deaktiver bekræftelsesdialoger",
"description": "Bekræfter automatisk valgte handlinger"
},
"auto_updater": {
"name": "Auto-opdaterer",
"description": "Tjekker automatisk for nye opdateringer"
},
"update_settings": {
"name": "Opdateringsindstillinger",
"description": "Styr hvordan PurrfectSnap tjekker for opdateringer",
"properties": {
"auto_update_check": {
"name": "Automatisk opdateringstjek"
},
"update_check_frequency": {
"name": "Opdateringstjek-frekvens"
}
}
},
"ui_settings": {
"name": "UI-indstillinger",
"properties": {
"haptic_feedback": {
"name": "Haptisk feedback"
}
}
},
"disable_metrics": {
"name": "Deaktiver målinger",
"description": "Blokerer afsendelse af specifikke analysedata til Snapchat"
},
"disable_story_sections": {
"name": "Deaktiver story-sektioner",
"description": "Fjerner sektioner fra Stories-siden\nKan kræve en opdatering for at fungere korrekt"
},
"block_ads": {
"name": "Bloker reklamer",
"description": "Forhindrer reklamer i at blive vist"
},
"disable_custom_tabs": {
"name": "Deaktiver brugerdefinerede faner",
"description": "Åbner links i understøttede applikationer i stedet for i webbrowseren"
},
"disable_permission_requests": {
"name": "Deaktiver tilladelsesanmodninger",
"description": "Forhindrer Snapchat i at bede om specifikke tilladelser"
},
"disable_memories_snap_feed": {
"name": "Deaktiver minder snap-feed",
"description": "Forhindrer Snapchat i at vise nylige minder, når du swiper op i kameraet"
},
"spotlight_comments_username": {
"name": "Spotlight kommentar brugernavn",
"description": "Viser forfatterens brugernavn i Spotlight-kommentarer"
},
"spotlight_comments_username_icon": {
"name": "Spotlight kommentar brugernavn ikon",
"description": "Vælg hvilket ikon der vises ved siden af brugernavne i Spotlight-kommentarer"
},
"bypass_video_length_restriction": {
"name": "Omgå videolængdebegrænsninger",
"description": "Enkelt: sender en enkelt video\nOpdelt: opdel videoer efter redigering"
},
"default_video_playback_rate": {
"name": "Standard videoafspilningshastighed",
"description": "Indstiller standardhastigheden for afspilning af videoer\nVærdi skal være mellem 0.1 og 4.0"
},
"video_playback_rate_slider": {
"name": "Videoafspilningshastighed-skyder",
"description": "Tilføjer en skyder i opera kontekstmenuen for at ændre videoafspilningshastigheden\nBemærk: Ændringer gælder kun for efterfølgende videoer"
},
"disable_google_play_dialogs": {
"name": "Deaktiver Google Play Services dialoger",
"description": "Forhindr Google Play Services tilgængelighedsdialoger i at blive vist"
},
"default_volume_controls": {
"name": "Standard lydstyrkekontroller",
"description": "Tvinger Snapchat til at bruge systemets lydstyrkekontroller"
},
"disable_telecom_framework": {
"name": "Deaktiver Telecom Framework",
"description": "Forhindrer Snapchat i at bruge Android Telecom frameworket\nDette gør det muligt at lytte til musik, mens du er i et opkald"
},
"hide_active_music": {
"name": "Skjul aktiv musik",
"description": "Forhindrer Snapchat i at vide, at du lytter til musik\nDette vil gøre det muligt at tage snaps ved hjælp af lydstyrkeknapperne, mens du lytter til musik"
},
"disable_snap_splitting": {
"name": "Deaktiver snap-opdeling",
"description": "Forhindrer Snaps i at blive opdelt i flere dele\nBilleder du sender vil blive til videoer"
}
}
},
"rules": {
"name": "Regler",
"description": "Konfigurer automatiseringsregler",
@@ -2110,7 +2029,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "Krypteret beskedindikator",
"description": "Tilføjer en \ud83d\udd12 emoji ved siden af krypterede beskeder"
"description": "Tilføjer en 🔒 emoji ved siden af krypterede beskeder"
},
"force_message_encryption": {
"name": "Tving beskedkryptering",
@@ -2190,6 +2109,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "Altid lys",
"always_dark": "Altid mørk",
@@ -2207,20 +2130,20 @@
"null": "Brug rigtigt batteriniveau"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f Auto-download",
"auto_save": "\ud83d\udcac Auto-gem beskeder",
"unsaveable_messages": "\u2b07\ufe0f Ugemmelige beskeder",
"auto_open_snaps": "\ud83d\udcf7 Auto-åben snaps",
"stealth": "\ud83d\udc7b Stealth-tilstand",
"auto_reply": "\ud83d\udce8 Auto-svar",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f Auto-slet sendte beskeder",
"mark_snaps_as_seen": "\ud83d\udc40 Marker Snaps som set",
"mark_stories_as_seen_locally": "\ud83d\udc40 Marker Stories som set lokalt",
"conversation_info": "\ud83d\udc64 Samtaleinfo",
"e2e_encryption": "\ud83d\udd12 Brug E2E-kryptering",
"message_logger": "\ud83d\udcdd Beskedlogger",
"auto_read": "\u2705 Auto-læs",
"hide_typing_indicator": "\ud83d\ude48 Skjul skriveindikator"
"auto_download": "⬇️ Auto-download",
"auto_save": "💬 Auto-gem beskeder",
"unsaveable_messages": "⬇️ Ugemmelige beskeder",
"auto_open_snaps": "📷 Auto-åben snaps",
"stealth": "👻 Stealth-tilstand",
"auto_reply": "📨 Auto-svar",
"auto_delete_sent_messages": "🗑️ Auto-slet sendte beskeder",
"mark_snaps_as_seen": "👀 Marker Snaps som set",
"mark_stories_as_seen_locally": "👀 Marker Stories som set lokalt",
"conversation_info": "👤 Samtaleinfo",
"e2e_encryption": "🔒 Brug E2E-kryptering",
"message_logger": "📝 Beskedlogger",
"auto_read": " Auto-læs",
"hide_typing_indicator": "🙈 Skjul skriveindikator"
},
"schedule_scheduled_for": "Planlagt til {name} om {time}",
"schedule_sending_in": "Sender om {time}",
@@ -2323,16 +2246,16 @@
"custom_android_id": {
"null": "Brug rigtigt Android-ID"
},
"add_friend_source_spoof": {
"added_by_username": "Via brugernavn",
"added_by_mention": "Via omtale",
"added_by_group_chat": "Via gruppechat",
"added_by_qr_code": "Via QR-kode",
"added_by_community": "Via fællesskab",
"added_by_quick_add": "Via hurtig tilføjelse (høj risiko for udelukkelse)",
"added_by_spotlight": "Via Spotlight",
"null": "Spoof ikke kilde"
},
"add_friend_source_spoof": {
"added_by_username": "Via brugernavn",
"added_by_mention": "Via omtale",
"added_by_group_chat": "Via gruppechat",
"added_by_qr_code": "Via QR-kode",
"added_by_community": "Via fællesskab",
"added_by_quick_add": "Via hurtig tilføjelse (høj risiko for udelukkelse)",
"added_by_spotlight": "Via Spotlight",
"null": "Spoof ikke kilde"
},
"custom_streaks_expiration_format": {
"null": "Systemstandard"
},
@@ -2439,8 +2362,8 @@
},
"spotlight_comments_username_icon": {
"user": "Brugernavn-ikon",
"\ud83d\udc64": "Brugernavn-ikon",
"[\ud83d\udc64]": "Brugernavn-ikon",
"👤": "Brugernavn-ikon",
"[👤]": "Brugernavn-ikon",
"default": "Brugernavn-ikon",
"no_icon": "Intet ikon"
},
@@ -2520,11 +2443,11 @@
"phone_calls": "Telefonopkald"
},
"message_indicators": {
"encryption_indicator": "Tilføjer et \ud83d\udd12 ikon ved siden af beskeder, der kun er sendt til dig",
"encryption_indicator": "Tilføjer et 🔒 ikon ved siden af beskeder, der kun er sendt til dig",
"platform_indicator": "Tilføjer platformsikonet, hvorfra et medie blev sendt (f.eks. Android, iOS, Web)",
"location_indicator": "Tilføjer et \ud83d\udccd ikon til snaps, når de er sendt med lokation aktiveret",
"location_indicator": "Tilføjer et 📍 ikon til snaps, når de er sendt med lokation aktiveret",
"ovf_editor_indicator": "Indikerer om en snap er blevet sendt ved hjælp af OVF Editor",
"director_mode_indicator": "Tilføjer et \u270f\ufe0f ikon til snaps, når de er blevet sendt ved hjælp af Director Mode, som kan bruges til at sende galleribilleder som snaps"
"director_mode_indicator": "Tilføjer et ✏️ ikon til snaps, når de er blevet sendt ved hjælp af Director Mode, som kan bruges til at sende galleribilleder som snaps"
},
"auto_mark_as_read": {
"conversation_read": "Marker samtale som læst ved afsendelse af en besked",
@@ -2748,7 +2671,6 @@
"show_chat_edit_history": "Vis chathistorik for redigeringer",
"convert_message": "Konverter besked"
},
"chat_wallpaper_downloader": {
"download_button": "Download chatbaggrund"
},
@@ -3078,7 +3000,7 @@
"queue_cleared": "Kø ryddet og statistik nulstillet",
"queue_cleared_title": "Kø ryddet",
"queue_cleared_reset": "Kø ryddet & nulstillet",
"queue_cleared_feedback": "Ryddede {count} snaps i kø \u2022 Nulstillede {processed} behandlet antal",
"queue_cleared_feedback": "Ryddede {count} snaps i kø Nulstillede {processed} behandlet antal",
"queue_cleared_feedback_simple": "Nulstillede {processed} behandlet antal",
"unknown_sender": "Ukendt",
"unknown_user": "Ukendt bruger",

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 von Eternal",
"version_title": "v{versionName} · von Eternal",
"update_title": "PurrfectSnap Update",
"update_content": "Version {version} ist verfügbar!",
"update_button": "Herunterladen",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "Keine Aufgaben",
"merge_button": "Zusammenführen",
"summary_active": "{active} aktiv \u00b7 {recent} kürzlich",
"summary_idle": "Inaktiv \u00b7 {recent} kürzlich",
"summary_active": "{active} aktiv · {recent} kürzlich",
"summary_idle": "Inaktiv · {recent} kürzlich",
"running_count": "{count} laufen",
"clear_button_description": "Aufgaben löschen",
"failed_to_open_file": "Datei konnte nicht geöffnet werden",
@@ -312,22 +312,22 @@
"remove_selected_tasks_confirm": "{count} Aufgaben entfernen?",
"remove_all_tasks_confirm": "Alle Aufgaben entfernen?"
},
"features": {
"disabled": "Deaktiviert",
"export_option": "Exportieren",
"import_option": "Importieren",
"reset_option": "Zurücksetzen",
"config_export_success_toast": "Konfiguration erfolgreich exportiert",
"config_import_success_toast": "Konfiguration erfolgreich importiert",
"config_import_failure_toast": "Konfiguration konnte nicht importiert werden {error}",
"config_export_failure_toast": "Konfiguration konnte nicht exportiert werden {error}",
"saved_config_snackbar": "Konfiguration gespeichert",
"older_required": "Diese Funktion benötigt Snapchat v{version} oder älter, um korrekt zu funktionieren",
"newer_required": "Diese Funktion benötigt Snapchat v{version} oder neuer, um korrekt zu funktionieren",
"search_button": "Suchen",
"clear_history": "Suchverlauf löschen",
"subtitle": "Funktionen suchen und verwalten"
},
"features": {
"disabled": "Deaktiviert",
"export_option": "Exportieren",
"import_option": "Importieren",
"reset_option": "Zurücksetzen",
"config_export_success_toast": "Konfiguration erfolgreich exportiert",
"config_import_success_toast": "Konfiguration erfolgreich importiert",
"config_import_failure_toast": "Konfiguration konnte nicht importiert werden {error}",
"config_export_failure_toast": "Konfiguration konnte nicht exportiert werden {error}",
"saved_config_snackbar": "Konfiguration gespeichert",
"older_required": "Diese Funktion benötigt Snapchat v{version} oder älter, um korrekt zu funktionieren",
"newer_required": "Diese Funktion benötigt Snapchat v{version} oder neuer, um korrekt zu funktionieren",
"search_button": "Suchen",
"clear_history": "Suchverlauf löschen",
"subtitle": "Funktionen suchen und verwalten"
},
"bypass_status": {
"active": "PurrAura Aktiv",
"inactive": "PurrAura Inaktiv"
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "Zu Freund teleportieren",
"search_bar": "Suchen",
"no_friends_map": "Keine Freunde auf der Karte",
"no_friends_found": "Keine Freunde gefunden"
"no_friends_found": "Keine Freunde gefunden",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,166 @@
},
"features": {
"notices": {
"unstable": "\u26a0 Instabil",
"ban_risk": "\u26a0 Diese Funktion kann zu Sperrungen führen",
"internal_behavior": "\u26a0 Dies kann das interne Verhalten von Snapchat beeinträchtigen"
},
"options": {
"empty": "Leer",
"walk_radius": {
"empty": "Leer"
},
"spoof_battery_level": {
"empty": "Leer"
},
"custom_android_id": {
"empty": "Leer"
},
"custom_streaks_expiration_format": {
"empty": "Leer"
},
"preferred_transcription_lang": {
"empty": "Leer"
},
"custom_emoji_font": {
"empty": "Leer"
},
"custom_shared_library": {
"empty": "Leer"
},
"custom_resolution": {
"empty": "Leer"
},
"custom_path_format": {
"empty": "Leer"
},
"custom_video_codec": {
"empty": "Leer"
},
"custom_audio_codec": {
"empty": "Leer"
},
"double_tap_chat_action_custom_emoji": {
"empty": "Leer"
},
"unsaveable_messages": {
"blacklist": "Blacklist-Modus",
"whitelist": "Whitelist-Modus",
"null": "Deaktiviert"
},
"update_check_frequency": {
"daily": "Täglich",
"weekly": "Wöchentlich",
"monthly": "Monatlich"
}
"unstable": " Instabil",
"ban_risk": " Diese Funktion kann zu Sperrungen führen",
"internal_behavior": " Dies kann das interne Verhalten von Snapchat beeinträchtigen"
},
"properties": {
"global": {
"name": "Global",
"description": "Allgemeine Moduleinstellungen und Standards",
"description": "Globale Snapchat-Einstellungen anpassen",
"properties": {
"ui_settings": {
"name": "UI-Einstellungen",
"description": "Passe Feedback und Toast-Verhalten an",
"better_location": {
"name": "Besserer Standort",
"description": "Verbessert den Snapchat-Standort",
"properties": {
"haptic_feedback": {
"name": "Haptisches Feedback",
"description": "Vibriert bei unterstützten Interaktionen"
"spoof_location": {
"name": "Standort fälschen",
"description": "Fälscht deinen Standort auf einen bestimmten Ort"
},
"use_system_toasts": {
"name": "System-Toasts verwenden",
"description": "Zeigt Android-Toasts anstelle von In-App-Overlays an"
"coordinates": {
"name": "Koordinaten",
"description": "Lege die Koordinaten des gefälschten Standorts fest"
},
"walk_radius": {
"name": "Geh-Radius",
"description": "Laufe zufällig innerhalb dieses Radius herum (ft)"
},
"always_update_location": {
"name": "Standort immer aktualisieren",
"description": "Zwinge Snapchat, den Standort zu aktualisieren, auch wenn keine GPS-Daten empfangen werden"
},
"suspend_location_updates": {
"name": "Standort-Updates aussetzen",
"description": "Verhindert, dass dein Standort aktualisiert wird"
},
"spoof_battery_level": {
"name": "Akkustand fälschen",
"description": "Fälscht den Akkustand deines Geräts auf der Karte\nWert muss zwischen 0 und 100 liegen"
},
"spoof_headphones": {
"name": "Kopfhörer fälschen",
"description": "Fälscht den Status des Musikhörens auf der Karte"
},
"show_battery_level": {
"name": "Akkustand anzeigen",
"description": "Zeigt den Akkustand deiner Freunde auf der Karte an"
}
}
},
"update_settings": {
"name": "Update-Einstellungen",
"description": "Steuere automatische Update-Prüfungen",
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Aktiviert Snapchat Plus-Funktionen\nEinige serverseitige Funktionen funktionieren möglicherweise nicht"
},
"media_upload_quality": {
"name": "Medien-Upload-Qualität",
"description": "Überschreibt die Medien-Upload-Qualität",
"properties": {
"auto_update_check": {
"name": "Automatische Update-Prüfung",
"description": "Prüft automatisch auf neue Builds"
"force_video_upload_source_quality": {
"name": "Video-Upload Quellqualität erzwingen",
"description": "Zwingt Snapchat, die Quellqualität beim Hochladen von Videos zu verwenden\nBitte beachte, dass dies möglicherweise keine Metadaten von Medien entfernt"
},
"update_check_frequency": {
"name": "Häufigkeit der Update-Prüfung",
"description": "Wie oft nach Updates gesucht werden soll"
"disable_image_compression": {
"name": "Bildkompression deaktivieren",
"description": "Deaktiviert die Bildkompression beim Hochladen von Medien"
},
"custom_image_upload_format": {
"name": "Benutzerdefiniertes Bild-Upload-Format",
"description": "Legt ein benutzerdefiniertes Bild-Upload-Format fest\nWähle ein verlustfreies Format (wie PNG) für die beste Qualität"
}
}
},
"disable_confirmation_dialogs": {
"name": "Bestätigungsdialoge deaktivieren",
"description": "Bestätigt ausgewählte Aktionen automatisch"
},
"auto_updater": {
"name": "Auto-Updater",
"description": "Prüft automatisch auf neue Updates"
},
"update_settings": {
"name": "Update-Einstellungen",
"description": "Steuere, wie PurrfectSnap nach Updates sucht",
"properties": {
"auto_update_check": {
"name": "Automatische Update-Prüfung"
},
"update_check_frequency": {
"name": "Häufigkeit der Update-Prüfung"
}
}
},
"ui_settings": {
"name": "UI-Einstellungen",
"properties": {
"haptic_feedback": {
"name": "Haptisches Feedback"
}
}
},
"disable_metrics": {
"name": "Metriken deaktivieren",
"description": "Blockiert das Senden spezifischer Analysedaten an Snapchat"
},
"disable_story_sections": {
"name": "Story-Bereiche deaktivieren",
"description": "Entfernt Bereiche von der Storys-Seite\nErfordert möglicherweise eine Aktualisierung, um ordnungsgemäß zu funktionieren"
},
"block_ads": {
"name": "Werbung blockieren",
"description": "Verhindert, dass Werbung angezeigt wird"
},
"disable_custom_tabs": {
"name": "Custom Tabs deaktivieren",
"description": "Öffnet Links in unterstützten Anwendungen statt im Webbrowser"
},
"disable_permission_requests": {
"name": "Berechtigungsanfragen deaktivieren",
"description": "Verhindert, dass Snapchat nach bestimmten Berechtigungen fragt"
},
"disable_memories_snap_feed": {
"name": "Memories-Snap-Feed deaktivieren",
"description": "Verhindert, dass Snapchat aktuelle Memories anzeigt, wenn du in der Kamera nach oben wischst"
},
"spotlight_comments_username": {
"name": "Spotlight-Kommentare Benutzername",
"description": "Zeigt den Benutzernamen des Autors in Spotlight-Kommentaren an"
},
"spotlight_comments_username_icon": {
"name": "Spotlight-Kommentare Benutzername-Icon",
"description": "Wähle, welches Icon neben Benutzernamen in Spotlight-Kommentaren angezeigt wird"
},
"bypass_video_length_restriction": {
"name": "Videolängenbeschränkungen umgehen",
"description": "Single: sendet ein einzelnes Video\nSplit: teilt Videos nach der Bearbeitung"
},
"default_video_playback_rate": {
"name": "Standard-Videowiedergabegeschwindigkeit",
"description": "Legt die Standardgeschwindigkeit für die Wiedergabe von Videos fest\nWert muss zwischen 0.1 und 4.0 liegen"
},
"video_playback_rate_slider": {
"name": "Videowiedergabegeschwindigkeits-Slider",
"description": "Fügt einen Slider im Opera-Kontextmenü hinzu, um die Videowiedergabegeschwindigkeit zu ändern\nHinweis: Änderungen gelten nur für nachfolgende Videos"
},
"disable_google_play_dialogs": {
"name": "Google Play Services-Dialoge deaktivieren",
"description": "Verhindert, dass Dialoge zur Verfügbarkeit von Google Play Services angezeigt werden"
},
"default_volume_controls": {
"name": "Standard-Lautstärkeregler",
"description": "Zwingt Snapchat, die Systemlautstärkeregler zu verwenden"
},
"disable_telecom_framework": {
"name": "Telecom-Framework deaktivieren",
"description": "Verhindert, dass Snapchat das Android Telecom-Framework verwendet\nDies ermöglicht dir, Musik zu hören, während du telefonierst"
},
"hide_active_music": {
"name": "Aktive Musik verbergen",
"description": "Verhindert, dass Snapchat erfährt, dass du Musik hörst\nDies ermöglicht dir, Snaps mit den Lautstärketasten aufzunehmen, während du Musik hörst"
},
"disable_snap_splitting": {
"name": "Snap-Splitting deaktivieren",
"description": "Verhindert, dass Snaps in mehrere Teile aufgeteilt werden\nBilder, die du sendest, werden zu Videos"
}
}
},
@@ -1143,7 +1220,7 @@
},
"stealth_mode_indicator": {
"name": "Stealth-Modus-Indikator",
"description": "Fügt ein \ud83d\udc7b Emoji neben Konversationen im Stealth-Modus hinzu"
"description": "Fügt ein 👻 Emoji neben Konversationen im Stealth-Modus hinzu"
},
"edit_text_override": {
"name": "Textbearbeitung überschreiben",
@@ -1671,164 +1748,6 @@
}
}
},
"global": {
"name": "Global",
"description": "Globale Snapchat-Einstellungen anpassen",
"properties": {
"better_location": {
"name": "Besserer Standort",
"description": "Verbessert den Snapchat-Standort",
"properties": {
"spoof_location": {
"name": "Standort fälschen",
"description": "Fälscht deinen Standort auf einen bestimmten Ort"
},
"coordinates": {
"name": "Koordinaten",
"description": "Lege die Koordinaten des gefälschten Standorts fest"
},
"walk_radius": {
"name": "Geh-Radius",
"description": "Laufe zufällig innerhalb dieses Radius herum (ft)"
},
"always_update_location": {
"name": "Standort immer aktualisieren",
"description": "Zwinge Snapchat, den Standort zu aktualisieren, auch wenn keine GPS-Daten empfangen werden"
},
"suspend_location_updates": {
"name": "Standort-Updates aussetzen",
"description": "Verhindert, dass dein Standort aktualisiert wird"
},
"spoof_battery_level": {
"name": "Akkustand fälschen",
"description": "Fälscht den Akkustand deines Geräts auf der Karte\nWert muss zwischen 0 und 100 liegen"
},
"spoof_headphones": {
"name": "Kopfhörer fälschen",
"description": "Fälscht den Status des Musikhörens auf der Karte"
},
"show_battery_level": {
"name": "Akkustand anzeigen",
"description": "Zeigt den Akkustand deiner Freunde auf der Karte an"
}
}
},
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Aktiviert Snapchat Plus-Funktionen\nEinige serverseitige Funktionen funktionieren möglicherweise nicht"
},
"media_upload_quality": {
"name": "Medien-Upload-Qualität",
"description": "Überschreibt die Medien-Upload-Qualität",
"properties": {
"force_video_upload_source_quality": {
"name": "Video-Upload Quellqualität erzwingen",
"description": "Zwingt Snapchat, die Quellqualität beim Hochladen von Videos zu verwenden\nBitte beachte, dass dies möglicherweise keine Metadaten von Medien entfernt"
},
"disable_image_compression": {
"name": "Bildkompression deaktivieren",
"description": "Deaktiviert die Bildkompression beim Hochladen von Medien"
},
"custom_image_upload_format": {
"name": "Benutzerdefiniertes Bild-Upload-Format",
"description": "Legt ein benutzerdefiniertes Bild-Upload-Format fest\nWähle ein verlustfreies Format (wie PNG) für die beste Qualität"
}
}
},
"disable_confirmation_dialogs": {
"name": "Bestätigungsdialoge deaktivieren",
"description": "Bestätigt ausgewählte Aktionen automatisch"
},
"auto_updater": {
"name": "Auto-Updater",
"description": "Prüft automatisch auf neue Updates"
},
"update_settings": {
"name": "Update-Einstellungen",
"description": "Steuere, wie PurrfectSnap nach Updates sucht",
"properties": {
"auto_update_check": {
"name": "Automatische Update-Prüfung"
},
"update_check_frequency": {
"name": "Häufigkeit der Update-Prüfung"
}
}
},
"ui_settings": {
"name": "UI-Einstellungen",
"properties": {
"haptic_feedback": {
"name": "Haptisches Feedback"
}
}
},
"disable_metrics": {
"name": "Metriken deaktivieren",
"description": "Blockiert das Senden spezifischer Analysedaten an Snapchat"
},
"disable_story_sections": {
"name": "Story-Bereiche deaktivieren",
"description": "Entfernt Bereiche von der Storys-Seite\nErfordert möglicherweise eine Aktualisierung, um ordnungsgemäß zu funktionieren"
},
"block_ads": {
"name": "Werbung blockieren",
"description": "Verhindert, dass Werbung angezeigt wird"
},
"disable_custom_tabs": {
"name": "Custom Tabs deaktivieren",
"description": "Öffnet Links in unterstützten Anwendungen statt im Webbrowser"
},
"disable_permission_requests": {
"name": "Berechtigungsanfragen deaktivieren",
"description": "Verhindert, dass Snapchat nach bestimmten Berechtigungen fragt"
},
"disable_memories_snap_feed": {
"name": "Memories-Snap-Feed deaktivieren",
"description": "Verhindert, dass Snapchat aktuelle Memories anzeigt, wenn du in der Kamera nach oben wischst"
},
"spotlight_comments_username": {
"name": "Spotlight-Kommentare Benutzername",
"description": "Zeigt den Benutzernamen des Autors in Spotlight-Kommentaren an"
},
"spotlight_comments_username_icon": {
"name": "Spotlight-Kommentare Benutzername-Icon",
"description": "Wähle, welches Icon neben Benutzernamen in Spotlight-Kommentaren angezeigt wird"
},
"bypass_video_length_restriction": {
"name": "Videolängenbeschränkungen umgehen",
"description": "Single: sendet ein einzelnes Video\nSplit: teilt Videos nach der Bearbeitung"
},
"default_video_playback_rate": {
"name": "Standard-Videowiedergabegeschwindigkeit",
"description": "Legt die Standardgeschwindigkeit für die Wiedergabe von Videos fest\nWert muss zwischen 0.1 und 4.0 liegen"
},
"video_playback_rate_slider": {
"name": "Videowiedergabegeschwindigkeits-Slider",
"description": "Fügt einen Slider im Opera-Kontextmenü hinzu, um die Videowiedergabegeschwindigkeit zu ändern\nHinweis: Änderungen gelten nur für nachfolgende Videos"
},
"disable_google_play_dialogs": {
"name": "Google Play Services-Dialoge deaktivieren",
"description": "Verhindert, dass Dialoge zur Verfügbarkeit von Google Play Services angezeigt werden"
},
"default_volume_controls": {
"name": "Standard-Lautstärkeregler",
"description": "Zwingt Snapchat, die Systemlautstärkeregler zu verwenden"
},
"disable_telecom_framework": {
"name": "Telecom-Framework deaktivieren",
"description": "Verhindert, dass Snapchat das Android Telecom-Framework verwendet\nDies ermöglicht dir, Musik zu hören, während du telefonierst"
},
"hide_active_music": {
"name": "Aktive Musik verbergen",
"description": "Verhindert, dass Snapchat erfährt, dass du Musik hörst\nDies ermöglicht dir, Snaps mit den Lautstärketasten aufzunehmen, während du Musik hörst"
},
"disable_snap_splitting": {
"name": "Snap-Splitting deaktivieren",
"description": "Verhindert, dass Snaps in mehrere Teile aufgeteilt werden\nBilder, die du sendest, werden zu Videos"
}
}
},
"rules": {
"name": "Regeln",
"description": "Konfiguriere Automatisierungsregeln",
@@ -2110,7 +2029,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "Verschlüsselte Nachrichten-Indikator",
"description": "Fügt ein \ud83d\udd12 Emoji neben verschlüsselten Nachrichten hinzu"
"description": "Fügt ein 🔒 Emoji neben verschlüsselten Nachrichten hinzu"
},
"force_message_encryption": {
"name": "Nachrichtenverschlüsselung erzwingen",
@@ -2190,6 +2109,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "Immer Hell",
"always_dark": "Immer Dunkel",
@@ -2207,20 +2130,20 @@
"null": "Echten Akkustand verwenden"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f Auto-Download",
"auto_save": "\ud83d\udcac Nachrichten automatisch speichern",
"unsaveable_messages": "\u2b07\ufe0f Nicht speicherbare Nachrichten",
"auto_open_snaps": "\ud83d\udcf7 Snaps automatisch öffnen",
"stealth": "\ud83d\udc7b Stealth-Modus",
"auto_reply": "\ud83d\udce8 Automatische Antwort",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f Gesendete Nachrichten automatisch löschen",
"mark_snaps_as_seen": "\ud83d\udc40 Snaps als gesehen markieren",
"mark_stories_as_seen_locally": "\ud83d\udc40 Storys lokal als gesehen markieren",
"conversation_info": "\ud83d\udc64 Konversations-Info",
"e2e_encryption": "\ud83d\udd12 Ende-zu-Ende-Verschlüsselung verwenden",
"message_logger": "\ud83d\udcdd Nachrichten-Logger",
"auto_read": "\u2705 Automatisch lesen",
"hide_typing_indicator": "\ud83d\ude48 Tipp-Indikator verbergen"
"auto_download": "⬇️ Auto-Download",
"auto_save": "💬 Nachrichten automatisch speichern",
"unsaveable_messages": "⬇️ Nicht speicherbare Nachrichten",
"auto_open_snaps": "📷 Snaps automatisch öffnen",
"stealth": "👻 Stealth-Modus",
"auto_reply": "📨 Automatische Antwort",
"auto_delete_sent_messages": "🗑️ Gesendete Nachrichten automatisch löschen",
"mark_snaps_as_seen": "👀 Snaps als gesehen markieren",
"mark_stories_as_seen_locally": "👀 Storys lokal als gesehen markieren",
"conversation_info": "👤 Konversations-Info",
"e2e_encryption": "🔒 Ende-zu-Ende-Verschlüsselung verwenden",
"message_logger": "📝 Nachrichten-Logger",
"auto_read": " Automatisch lesen",
"hide_typing_indicator": "🙈 Tipp-Indikator verbergen"
},
"schedule_scheduled_for": "Geplant für {name} in {time}",
"schedule_sending_in": "Senden in {time}",
@@ -2439,8 +2362,8 @@
},
"spotlight_comments_username_icon": {
"user": "Benutzername-Icon",
"\ud83d\udc64": "Benutzername-Icon",
"[\ud83d\udc64]": "Benutzername-Icon",
"👤": "Benutzername-Icon",
"[👤]": "Benutzername-Icon",
"default": "Benutzername-Icon",
"no_icon": "Kein Icon"
},
@@ -2520,11 +2443,11 @@
"phone_calls": "Telefonanrufe"
},
"message_indicators": {
"encryption_indicator": "Fügt ein \ud83d\udd12 Icon neben Nachrichten hinzu, die nur an dich gesendet wurden",
"encryption_indicator": "Fügt ein 🔒 Icon neben Nachrichten hinzu, die nur an dich gesendet wurden",
"platform_indicator": "Fügt das Plattform-Icon hinzu, von dem ein Medium gesendet wurde (z.B. Android, iOS, Web)",
"location_indicator": "Fügt ein \ud83d\udccd Icon zu Snaps hinzu, wenn sie mit aktiviertem Standort gesendet wurden",
"location_indicator": "Fügt ein 📍 Icon zu Snaps hinzu, wenn sie mit aktiviertem Standort gesendet wurden",
"ovf_editor_indicator": "Zeigt an, ob ein Snap mit dem OVF-Editor gesendet wurde",
"director_mode_indicator": "Fügt ein \u270f\ufe0f Icon zu Snaps hinzu, wenn sie mit dem Director Mode gesendet wurden, der verwendet werden kann, um Galeriebilder als Snaps zu senden"
"director_mode_indicator": "Fügt ein ✏️ Icon zu Snaps hinzu, wenn sie mit dem Director Mode gesendet wurden, der verwendet werden kann, um Galeriebilder als Snaps zu senden"
},
"auto_mark_as_read": {
"conversation_read": "Konversation als gelesen markieren beim Senden einer Nachricht",
@@ -3077,7 +3000,7 @@
"queue_cleared": "Warteschlange geleert und Statistiken zurückgesetzt",
"queue_cleared_title": "Warteschlange geleert",
"queue_cleared_reset": "Warteschlange geleert & zurückgesetzt",
"queue_cleared_feedback": "{count} Snaps aus Warteschlange geleert \u2022 {processed} verarbeitet Zähler zurückgesetzt",
"queue_cleared_feedback": "{count} Snaps aus Warteschlange geleert {processed} verarbeitet Zähler zurückgesetzt",
"queue_cleared_feedback_simple": "{processed} verarbeitet Zähler zurückgesetzt",
"unknown_sender": "Unbekannt",
"unknown_user": "Unbekannter Benutzer",

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 by Eternal",
"version_title": "v{versionName} · by Eternal",
"update_title": "PurrfectSnap Update",
"update_content": "Version {version} is available!",
"update_button": "Download",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "No tasks",
"merge_button": "Merge",
"summary_active": "{active} active \u00b7 {recent} recent",
"summary_idle": "Idle \u00b7 {recent} recent",
"summary_active": "{active} active · {recent} recent",
"summary_idle": "Idle · {recent} recent",
"running_count": "{count} running",
"clear_button_description": "Clear tasks",
"failed_to_open_file": "Failed to open file",
@@ -312,22 +312,22 @@
"remove_selected_tasks_confirm": "Remove {count} tasks?",
"remove_all_tasks_confirm": "Remove all tasks?"
},
"features": {
"disabled": "Disabled",
"export_option": "Export",
"import_option": "Import",
"reset_option": "Reset",
"config_export_success_toast": "Config exported successfully",
"config_import_success_toast": "Config imported successfully",
"config_import_failure_toast": "Failed to import config {error}",
"config_export_failure_toast": "Failed to export config {error}",
"saved_config_snackbar": "Config saved",
"older_required": "This feature requires Snapchat v{version} or older to work correctly",
"newer_required": "This feature requires Snapchat v{version} or newer to work correctly",
"search_button": "Search",
"clear_history": "Clear search history",
"subtitle": "Search and manage features"
},
"features": {
"disabled": "Disabled",
"export_option": "Export",
"import_option": "Import",
"reset_option": "Reset",
"config_export_success_toast": "Config exported successfully",
"config_import_success_toast": "Config imported successfully",
"config_import_failure_toast": "Failed to import config {error}",
"config_export_failure_toast": "Failed to export config {error}",
"saved_config_snackbar": "Config saved",
"older_required": "This feature requires Snapchat v{version} or older to work correctly",
"newer_required": "This feature requires Snapchat v{version} or newer to work correctly",
"search_button": "Search",
"clear_history": "Clear search history",
"subtitle": "Search and manage features"
},
"bypass_status": {
"active": "PurrAura Active",
"inactive": "PurrAura Inactive"
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "Teleport to Friend",
"search_bar": "Search",
"no_friends_map": "No friends on the map",
"no_friends_found": "No friends found"
"no_friends_found": "No friends found",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,166 @@
},
"features": {
"notices": {
"unstable": "\u26a0 Unstable",
"ban_risk": "\u26a0 This feature may cause bans",
"internal_behavior": "\u26a0 This may break Snapchat internal behaviour"
},
"options": {
"empty": "Empty",
"walk_radius": {
"empty": "Empty"
},
"spoof_battery_level": {
"empty": "Empty"
},
"custom_android_id": {
"empty": "Empty"
},
"custom_streaks_expiration_format": {
"empty": "Empty"
},
"preferred_transcription_lang": {
"empty": "Empty"
},
"custom_emoji_font": {
"empty": "Empty"
},
"custom_shared_library": {
"empty": "Empty"
},
"custom_resolution": {
"empty": "Empty"
},
"custom_path_format": {
"empty": "Empty"
},
"custom_video_codec": {
"empty": "Empty"
},
"custom_audio_codec": {
"empty": "Empty"
},
"double_tap_chat_action_custom_emoji": {
"empty": "Empty"
},
"unsaveable_messages": {
"blacklist": "Blacklist mode",
"whitelist": "Whitelist mode",
"null": "Disabled"
},
"update_check_frequency": {
"daily": "Daily",
"weekly": "Weekly",
"monthly": "Monthly"
}
"unstable": " Unstable",
"ban_risk": " This feature may cause bans",
"internal_behavior": " This may break Snapchat internal behaviour"
},
"properties": {
"global": {
"name": "Global",
"description": "General module preferences and defaults",
"description": "Tweak Global Snapchat Settings",
"properties": {
"ui_settings": {
"name": "UI Settings",
"description": "Tune feedback and toast behaviour",
"better_location": {
"name": "Better Location",
"description": "Enhances the Snapchat Location",
"properties": {
"haptic_feedback": {
"name": "Haptic Feedback",
"description": "Vibrate on supported interactions"
"spoof_location": {
"name": "Spoof Location",
"description": "Spoofs your location to a specified one"
},
"use_system_toasts": {
"name": "Use System Toasts",
"description": "Show Android toasts instead of in-app overlays"
"coordinates": {
"name": "Coordinates",
"description": "Set the coordinates of the spoofed location"
},
"walk_radius": {
"name": "Walk Radius",
"description": "Randomly walk around within this radius (ft)"
},
"always_update_location": {
"name": "Always Update Location",
"description": "Force Snapchat to update location even if no GPS data is received"
},
"suspend_location_updates": {
"name": "Suspend Location Updates",
"description": "Prevents your location from being updated"
},
"spoof_battery_level": {
"name": "Spoof Battery Level",
"description": "Spoofs the battery level of your device on map\nValue must be between 0 and 100"
},
"spoof_headphones": {
"name": "Spoof Headphones",
"description": "Spoofs the status of listening to music on map"
},
"show_battery_level": {
"name": "Show Battery Level",
"description": "Shows the battery level of your friends on the map"
}
}
},
"update_settings": {
"name": "Update Settings",
"description": "Control automatic update checks",
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Enables Snapchat Plus features\nSome Server-sided features may not work"
},
"media_upload_quality": {
"name": "Media Upload Quality",
"description": "Overrides the media upload quality",
"properties": {
"auto_update_check": {
"name": "Auto Update Check",
"description": "Check for new builds automatically"
"force_video_upload_source_quality": {
"name": "Force Video Upload Source Quality",
"description": "Forces Snapchat to use the source quality when uploading videos\nPlease note that this may not remove metadata from media"
},
"update_check_frequency": {
"name": "Update Check Frequency",
"description": "How often to check for updates"
"disable_image_compression": {
"name": "Disable Image Compression",
"description": "Disables image compression when uploading media"
},
"custom_image_upload_format": {
"name": "Custom Image Upload Format",
"description": "Sets a custom image upload format\nSelect a lossless format (like PNG) for the best quality"
}
}
},
"disable_confirmation_dialogs": {
"name": "Disable Confirmation Dialogues",
"description": "Automatically confirms selected actions"
},
"auto_updater": {
"name": "Auto Updater",
"description": "Automatically checks for new updates"
},
"update_settings": {
"name": "Update Settings",
"description": "Control how PurrfectSnap checks for updates",
"properties": {
"auto_update_check": {
"name": "Auto Update Check"
},
"update_check_frequency": {
"name": "Update Check Frequency"
}
}
},
"ui_settings": {
"name": "UI Settings",
"properties": {
"haptic_feedback": {
"name": "Haptic Feedback"
}
}
},
"disable_metrics": {
"name": "Disable Metrics",
"description": "Blocks sending specific analytic data to Snapchat"
},
"disable_story_sections": {
"name": "Disable Story Sections",
"description": "Removes sections from the Stories page\nMay require a refresh to work properly"
},
"block_ads": {
"name": "Block Ads",
"description": "Prevents Advertisements from being displayed"
},
"disable_custom_tabs": {
"name": "Disable Custom Tabs",
"description": "Opens links in supported applications rather than in the Web Browser"
},
"disable_permission_requests": {
"name": "Disable Permission Requests",
"description": "Prevents Snapchat from asking for specific permissions"
},
"disable_memories_snap_feed": {
"name": "Disable Memories Snap Feed",
"description": "Prevents Snapchat from showing recent memories when you swipe up in camera"
},
"spotlight_comments_username": {
"name": "Spotlight Comments Username",
"description": "Shows author username in Spotlight comments"
},
"spotlight_comments_username_icon": {
"name": "Spotlight Comments Username Icon",
"description": "Choose which icon is displayed next to usernames in Spotlight comments"
},
"bypass_video_length_restriction": {
"name": "Bypass Video Length Restrictions",
"description": "Single: sends a single video\nSplit: split videos after editing"
},
"default_video_playback_rate": {
"name": "Default Video Playback Rate",
"description": "Sets the default speed for the playback of videos\nValue must be between 0.1 and 4.0"
},
"video_playback_rate_slider": {
"name": "Video Playback Rate Slider",
"description": "Adds a slider in opera context menu to change the video playback rate\nNote: Changes only apply to subsequent videos"
},
"disable_google_play_dialogs": {
"name": "Disable Google Play Services Dialogues",
"description": "Prevent Google Play Services availability dialogues from being shown"
},
"default_volume_controls": {
"name": "Default Volume Controls",
"description": "Forces Snapchat to use system volume controls"
},
"disable_telecom_framework": {
"name": "Disable Telecom Framework",
"description": "Prevents Snapchat from using the Android Telecom framework\nThis allows you to listen to music while on a call"
},
"hide_active_music": {
"name": "Hide Active Music",
"description": "Prevents Snapchat from knowing you're listening to music\nThis will allow you to take snaps using control volume buttons while listening to music"
},
"disable_snap_splitting": {
"name": "Disable Snap Splitting",
"description": "Prevents Snaps from being split into multiple parts\nPictures you send will turn into videos"
}
}
},
@@ -1143,7 +1220,7 @@
},
"stealth_mode_indicator": {
"name": "Stealth Mode Indicator",
"description": "Adds a \ud83d\udc7b emoji next to conversations in stealth mode"
"description": "Adds a 👻 emoji next to conversations in stealth mode"
},
"edit_text_override": {
"name": "Edit Text Override",
@@ -1671,164 +1748,6 @@
}
}
},
"global": {
"name": "Global",
"description": "Tweak Global Snapchat Settings",
"properties": {
"better_location": {
"name": "Better Location",
"description": "Enhances the Snapchat Location",
"properties": {
"spoof_location": {
"name": "Spoof Location",
"description": "Spoofs your location to a specified one"
},
"coordinates": {
"name": "Coordinates",
"description": "Set the coordinates of the spoofed location"
},
"walk_radius": {
"name": "Walk Radius",
"description": "Randomly walk around within this radius (ft)"
},
"always_update_location": {
"name": "Always Update Location",
"description": "Force Snapchat to update location even if no GPS data is received"
},
"suspend_location_updates": {
"name": "Suspend Location Updates",
"description": "Prevents your location from being updated"
},
"spoof_battery_level": {
"name": "Spoof Battery Level",
"description": "Spoofs the battery level of your device on map\nValue must be between 0 and 100"
},
"spoof_headphones": {
"name": "Spoof Headphones",
"description": "Spoofs the status of listening to music on map"
},
"show_battery_level": {
"name": "Show Battery Level",
"description": "Shows the battery level of your friends on the map"
}
}
},
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Enables Snapchat Plus features\nSome Server-sided features may not work"
},
"media_upload_quality": {
"name": "Media Upload Quality",
"description": "Overrides the media upload quality",
"properties": {
"force_video_upload_source_quality": {
"name": "Force Video Upload Source Quality",
"description": "Forces Snapchat to use the source quality when uploading videos\nPlease note that this may not remove metadata from media"
},
"disable_image_compression": {
"name": "Disable Image Compression",
"description": "Disables image compression when uploading media"
},
"custom_image_upload_format": {
"name": "Custom Image Upload Format",
"description": "Sets a custom image upload format\nSelect a lossless format (like PNG) for the best quality"
}
}
},
"disable_confirmation_dialogs": {
"name": "Disable Confirmation Dialogues",
"description": "Automatically confirms selected actions"
},
"auto_updater": {
"name": "Auto Updater",
"description": "Automatically checks for new updates"
},
"update_settings": {
"name": "Update Settings",
"description": "Control how PurrfectSnap checks for updates",
"properties": {
"auto_update_check": {
"name": "Auto Update Check"
},
"update_check_frequency": {
"name": "Update Check Frequency"
}
}
},
"ui_settings": {
"name": "UI Settings",
"properties": {
"haptic_feedback": {
"name": "Haptic Feedback"
}
}
},
"disable_metrics": {
"name": "Disable Metrics",
"description": "Blocks sending specific analytic data to Snapchat"
},
"disable_story_sections": {
"name": "Disable Story Sections",
"description": "Removes sections from the Stories page\nMay require a refresh to work properly"
},
"block_ads": {
"name": "Block Ads",
"description": "Prevents Advertisements from being displayed"
},
"disable_custom_tabs": {
"name": "Disable Custom Tabs",
"description": "Opens links in supported applications rather than in the Web Browser"
},
"disable_permission_requests": {
"name": "Disable Permission Requests",
"description": "Prevents Snapchat from asking for specific permissions"
},
"disable_memories_snap_feed": {
"name": "Disable Memories Snap Feed",
"description": "Prevents Snapchat from showing recent memories when you swipe up in camera"
},
"spotlight_comments_username": {
"name": "Spotlight Comments Username",
"description": "Shows author username in Spotlight comments"
},
"spotlight_comments_username_icon": {
"name": "Spotlight Comments Username Icon",
"description": "Choose which icon is displayed next to usernames in Spotlight comments"
},
"bypass_video_length_restriction": {
"name": "Bypass Video Length Restrictions",
"description": "Single: sends a single video\nSplit: split videos after editing"
},
"default_video_playback_rate": {
"name": "Default Video Playback Rate",
"description": "Sets the default speed for the playback of videos\nValue must be between 0.1 and 4.0"
},
"video_playback_rate_slider": {
"name": "Video Playback Rate Slider",
"description": "Adds a slider in opera context menu to change the video playback rate\nNote: Changes only apply to subsequent videos"
},
"disable_google_play_dialogs": {
"name": "Disable Google Play Services Dialogues",
"description": "Prevent Google Play Services availability dialogues from being shown"
},
"default_volume_controls": {
"name": "Default Volume Controls",
"description": "Forces Snapchat to use system volume controls"
},
"disable_telecom_framework": {
"name": "Disable Telecom Framework",
"description": "Prevents Snapchat from using the Android Telecom framework\nThis allows you to listen to music while on a call"
},
"hide_active_music": {
"name": "Hide Active Music",
"description": "Prevents Snapchat from knowing you're listening to music\nThis will allow you to take snaps using control volume buttons while listening to music"
},
"disable_snap_splitting": {
"name": "Disable Snap Splitting",
"description": "Prevents Snaps from being split into multiple parts\nPictures you send will turn into videos"
}
}
},
"rules": {
"name": "Rules",
"description": "Configure automation rules",
@@ -2110,7 +2029,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "Encrypted Message Indicator",
"description": "Adds a \ud83d\udd12 emoji next to encrypted messages"
"description": "Adds a 🔒 emoji next to encrypted messages"
},
"force_message_encryption": {
"name": "Force Message Encryption",
@@ -2190,6 +2109,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "Always Light",
"always_dark": "Always Dark",
@@ -2207,20 +2130,20 @@
"null": "Use real battery level"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f Auto Download",
"auto_save": "\ud83d\udcac Auto Save Messages",
"unsaveable_messages": "\u2b07\ufe0f Unsaveable Messages",
"auto_open_snaps": "\ud83d\udcf7 Auto Open Snaps",
"stealth": "\ud83d\udc7b Stealth Mode",
"auto_reply": "\ud83d\udce8 Auto Reply",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f Auto Delete Sent Messages",
"mark_snaps_as_seen": "\ud83d\udc40 Mark Snaps as seen",
"mark_stories_as_seen_locally": "\ud83d\udc40 Mark Stories as seen locally",
"conversation_info": "\ud83d\udc64 Conversation Info",
"e2e_encryption": "\ud83d\udd12 Use E2E Encryption",
"message_logger": "\ud83d\udcdd Message Logger",
"auto_read": "\u2705 Auto Read",
"hide_typing_indicator": "\ud83d\ude48 Hide Typing Indicator"
"auto_download": "⬇️ Auto Download",
"auto_save": "💬 Auto Save Messages",
"unsaveable_messages": "⬇️ Unsaveable Messages",
"auto_open_snaps": "📷 Auto Open Snaps",
"stealth": "👻 Stealth Mode",
"auto_reply": "📨 Auto Reply",
"auto_delete_sent_messages": "🗑️ Auto Delete Sent Messages",
"mark_snaps_as_seen": "👀 Mark Snaps as seen",
"mark_stories_as_seen_locally": "👀 Mark Stories as seen locally",
"conversation_info": "👤 Conversation Info",
"e2e_encryption": "🔒 Use E2E Encryption",
"message_logger": "📝 Message Logger",
"auto_read": " Auto Read",
"hide_typing_indicator": "🙈 Hide Typing Indicator"
},
"schedule_scheduled_for": "Scheduled for {name} in {time}",
"schedule_sending_in": "Sending in {time}",
@@ -2323,16 +2246,16 @@
"custom_android_id": {
"null": "Use real Android ID"
},
"add_friend_source_spoof": {
"added_by_username": "By Username",
"added_by_mention": "By Mention",
"added_by_group_chat": "By Group Chat",
"added_by_qr_code": "By QR Code",
"added_by_community": "By Community",
"added_by_quick_add": "By Quick Add (high risk of being banned)",
"added_by_spotlight": "By Spotlight",
"null": "Don't spoof source"
},
"add_friend_source_spoof": {
"added_by_username": "By Username",
"added_by_mention": "By Mention",
"added_by_group_chat": "By Group Chat",
"added_by_qr_code": "By QR Code",
"added_by_community": "By Community",
"added_by_quick_add": "By Quick Add (high risk of being banned)",
"added_by_spotlight": "By Spotlight",
"null": "Don't spoof source"
},
"custom_streaks_expiration_format": {
"null": "System Default"
},
@@ -2438,8 +2361,8 @@
},
"spotlight_comments_username_icon": {
"user": "Username Icon",
"\ud83d\udc64": "Username Icon",
"[\ud83d\udc64]": "Username Icon",
"👤": "Username Icon",
"[👤]": "Username Icon",
"default": "Username Icon",
"no_icon": "No icon"
},
@@ -2519,11 +2442,11 @@
"phone_calls": "Phone Calls"
},
"message_indicators": {
"encryption_indicator": "Adds a \ud83d\udd12 icon next to messages that have been sent only to you",
"encryption_indicator": "Adds a 🔒 icon next to messages that have been sent only to you",
"platform_indicator": "Adds the platform icon from which a media was sent (e.g. Android, iOS, Web)",
"location_indicator": "Adds a \ud83d\udccd icon to snaps when they have been sent with location enabled",
"location_indicator": "Adds a 📍 icon to snaps when they have been sent with location enabled",
"ovf_editor_indicator": "Indicates if a snap has been sent using OVF Editor",
"director_mode_indicator": "Adds a \u270f\ufe0f icon to snaps when they have been sent using Director Mode, which can be used to send gallery images as snaps"
"director_mode_indicator": "Adds a ✏️ icon to snaps when they have been sent using Director Mode, which can be used to send gallery images as snaps"
},
"auto_mark_as_read": {
"conversation_read": "Mark conversation as read when sending a message",
@@ -2747,7 +2670,6 @@
"show_chat_edit_history": "Show Chat Edit History",
"convert_message": "Convert Message"
},
"chat_wallpaper_downloader": {
"download_button": "Download Chat Wallpaper"
},
@@ -3077,7 +2999,7 @@
"queue_cleared": "Queue cleared and statistics reset",
"queue_cleared_title": "Queue cleared",
"queue_cleared_reset": "Queue Cleared & Reset",
"queue_cleared_feedback": "Cleared {count} queued snaps \u2022 Reset {processed} processed count",
"queue_cleared_feedback": "Cleared {count} queued snaps Reset {processed} processed count",
"queue_cleared_feedback_simple": "Reset {processed} processed count",
"unknown_sender": "Unknown",
"unknown_user": "Unknown User",

View File

@@ -442,7 +442,13 @@
"teleport_to_friend_title": "Teleport to Friend",
"search_bar": "Search",
"no_friends_map": "No friends on the map",
"no_friends_found": "No friends found"
"no_friends_found": "No friends found",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates",
"location_search_provider_title": "Location Search Provider",
"google_maps_api_key_title": "Google Maps API Key",
"option_osm": "OpenStreetMap (Free)",
"option_google_maps": "Google Maps"
}
},
"dialogs": {
@@ -830,90 +836,7 @@
"ban_risk": "\u26a0 This feature may cause bans",
"internal_behavior": "\u26a0 This may break Snapchat internal behavior"
},
"options": {
"empty": "Empty",
"walk_radius": {
"empty": "Empty"
},
"spoof_battery_level": {
"empty": "Empty"
},
"custom_android_id": {
"empty": "Empty"
},
"custom_streaks_expiration_format": {
"empty": "Empty"
},
"preferred_transcription_lang": {
"empty": "Empty"
},
"custom_emoji_font": {
"empty": "Empty"
},
"custom_shared_library": {
"empty": "Empty"
},
"custom_resolution": {
"empty": "Empty"
},
"custom_path_format": {
"empty": "Empty"
},
"custom_video_codec": {
"empty": "Empty"
},
"custom_audio_codec": {
"empty": "Empty"
},
"double_tap_chat_action_custom_emoji": {
"empty": "Empty"
},
"unsaveable_messages": {
"blacklist": "Blacklist mode",
"whitelist": "Whitelist mode",
"null": "Disabled"
},
"update_check_frequency": {
"daily": "Daily",
"weekly": "Weekly",
"monthly": "Monthly"
}
},
"properties": {
"global": {
"name": "Global",
"description": "General module preferences and defaults",
"properties": {
"ui_settings": {
"name": "UI Settings",
"description": "Tune feedback and toast behavior",
"properties": {
"haptic_feedback": {
"name": "Haptic Feedback",
"description": "Vibrate on supported interactions"
},
"use_system_toasts": {
"name": "Use System Toasts",
"description": "Show Android toasts instead of in-app overlays"
}
}
},
"update_settings": {
"name": "Update Settings",
"description": "Control automatic update checks",
"properties": {
"auto_update_check": {
"name": "Auto Update Check",
"description": "Check for new builds automatically"
},
"update_check_frequency": {
"name": "Update Check Frequency",
"description": "How often to check for updates"
}
}
}
}
},
"downloader": {
"name": "Downloader",
"description": "Download Snapchat Media",
@@ -1675,6 +1598,34 @@
"name": "Global",
"description": "Tweak Global Snapchat Settings",
"properties": {
"ui_settings": {
"name": "UI Settings",
"description": "Tune feedback and toast behavior",
"properties": {
"haptic_feedback": {
"name": "Haptic Feedback",
"description": "Vibrate on supported interactions"
},
"use_system_toasts": {
"name": "Use System Toasts",
"description": "Show Android toasts instead of in-app overlays"
}
}
},
"update_settings": {
"name": "Update Settings",
"description": "Control automatic update checks",
"properties": {
"auto_update_check": {
"name": "Auto Update Check",
"description": "Check for new builds automatically"
},
"update_check_frequency": {
"name": "Update Check Frequency",
"description": "How often to check for updates"
}
}
},
"better_location": {
"name": "Better Location",
"description": "Enhances the Snapchat Location",
@@ -1683,6 +1634,14 @@
"name": "Spoof Location",
"description": "Spoofs your location to a specified one"
},
"location_search_provider": {
"name": "Location Search Provider",
"description": "Choose the provider for searching locations"
},
"google_maps_api_key": {
"name": "Google Maps API Key",
"description": "Required if using Google Maps provider"
},
"coordinates": {
"name": "Coordinates",
"description": "Set the coordinates of the spoofed location"
@@ -1743,26 +1702,6 @@
"name": "Auto Updater",
"description": "Automatically checks for new updates"
},
"update_settings": {
"name": "Update Settings",
"description": "Control how PurrfectSnap checks for updates",
"properties": {
"auto_update_check": {
"name": "Auto Update Check"
},
"update_check_frequency": {
"name": "Update Check Frequency"
}
}
},
"ui_settings": {
"name": "UI Settings",
"properties": {
"haptic_feedback": {
"name": "Haptic Feedback"
}
}
},
"disable_metrics": {
"name": "Disable Metrics",
"description": "Blocks sending specific analytic data to Snapchat"
@@ -2190,6 +2129,16 @@
}
},
"options": {
"empty": "Empty",
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"unsaveable_messages": {
"blacklist": "Blacklist mode",
"whitelist": "Whitelist mode",
"null": "Disabled"
},
"app_appearance": {
"always_light": "Always Light",
"always_dark": "Always Dark",
@@ -2447,6 +2396,9 @@
"null": "Automatic"
},
"update_check_frequency": {
"daily": "Daily",
"weekly": "Weekly",
"monthly": "Monthly",
"null": "Auto"
},
"snapchat_plus": {

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 por Eternal",
"version_title": "v{versionName} · por Eternal",
"update_title": "Actualización de PurrfectSnap",
"update_content": "¡La versión {version} está disponible!",
"update_button": "Descargar",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "Sin tareas",
"merge_button": "Fusionar",
"summary_active": "{active} activas \u00b7 {recent} recientes",
"summary_idle": "Inactivo \u00b7 {recent} recientes",
"summary_active": "{active} activas · {recent} recientes",
"summary_idle": "Inactivo · {recent} recientes",
"running_count": "{count} ejecutándose",
"clear_button_description": "Limpiar tareas",
"failed_to_open_file": "Error al abrir archivo",
@@ -312,22 +312,22 @@
"remove_selected_tasks_confirm": "¿Eliminar {count} tareas?",
"remove_all_tasks_confirm": "¿Eliminar todas las tareas?"
},
"features": {
"disabled": "Deshabilitado",
"export_option": "Exportar",
"import_option": "Importar",
"reset_option": "Restablecer",
"config_export_success_toast": "Configuración exportada con éxito",
"config_import_success_toast": "Configuración importada con éxito",
"config_import_failure_toast": "Error al importar configuración {error}",
"config_export_failure_toast": "Error al exportar configuración {error}",
"saved_config_snackbar": "Configuración guardada",
"older_required": "Esta función requiere Snapchat v{version} o anterior para funcionar correctamente",
"newer_required": "Esta función requiere Snapchat v{version} o posterior para funcionar correctamente",
"search_button": "Buscar",
"clear_history": "Borrar historial de búsqueda",
"subtitle": "Buscar y gestionar funciones"
},
"features": {
"disabled": "Deshabilitado",
"export_option": "Exportar",
"import_option": "Importar",
"reset_option": "Restablecer",
"config_export_success_toast": "Configuración exportada con éxito",
"config_import_success_toast": "Configuración importada con éxito",
"config_import_failure_toast": "Error al importar configuración {error}",
"config_export_failure_toast": "Error al exportar configuración {error}",
"saved_config_snackbar": "Configuración guardada",
"older_required": "Esta función requiere Snapchat v{version} o anterior para funcionar correctamente",
"newer_required": "Esta función requiere Snapchat v{version} o posterior para funcionar correctamente",
"search_button": "Buscar",
"clear_history": "Borrar historial de búsqueda",
"subtitle": "Buscar y gestionar funciones"
},
"bypass_status": {
"active": "PurrAura Activo",
"inactive": "PurrAura Inactivo"
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "Teletransportarse a Amigo",
"search_bar": "Buscar",
"no_friends_map": "No hay amigos en el mapa",
"no_friends_found": "No se encontraron amigos"
"no_friends_found": "No se encontraron amigos",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,166 @@
},
"features": {
"notices": {
"unstable": "\u26a0 Inestable",
"ban_risk": "\u26a0 Esta función puede causar baneos",
"internal_behavior": "\u26a0 Esto puede romper el comportamiento interno de Snapchat"
},
"options": {
"empty": "Vacío",
"walk_radius": {
"empty": "Vacío"
},
"spoof_battery_level": {
"empty": "Vacío"
},
"custom_android_id": {
"empty": "Vacío"
},
"custom_streaks_expiration_format": {
"empty": "Vacío"
},
"preferred_transcription_lang": {
"empty": "Vacío"
},
"custom_emoji_font": {
"empty": "Vacío"
},
"custom_shared_library": {
"empty": "Vacío"
},
"custom_resolution": {
"empty": "Vacío"
},
"custom_path_format": {
"empty": "Vacío"
},
"custom_video_codec": {
"empty": "Vacío"
},
"custom_audio_codec": {
"empty": "Vacío"
},
"double_tap_chat_action_custom_emoji": {
"empty": "Vacío"
},
"unsaveable_messages": {
"blacklist": "Modo lista negra",
"whitelist": "Modo lista blanca",
"null": "Deshabilitado"
},
"update_check_frequency": {
"daily": "Diariamente",
"weekly": "Semanalmente",
"monthly": "Mensualmente"
}
"unstable": " Inestable",
"ban_risk": " Esta función puede causar baneos",
"internal_behavior": " Esto puede romper el comportamiento interno de Snapchat"
},
"properties": {
"global": {
"name": "Global",
"description": "Preferencias generales del módulo y valores predeterminados",
"description": "Ajustar Configuración Global de Snapchat",
"properties": {
"ui_settings": {
"name": "Configuración de UI",
"description": "Ajustar feedback y comportamiento de toasts",
"better_location": {
"name": "Mejor Ubicación",
"description": "Mejora la Ubicación de Snapchat",
"properties": {
"haptic_feedback": {
"name": "Respuesta Háptica",
"description": "Vibrar en interacciones soportadas"
"spoof_location": {
"name": "Simular Ubicación",
"description": "Simula tu ubicación a una especificada"
},
"use_system_toasts": {
"name": "Usar Toasts del Sistema",
"description": "Mostrar toasts de Android en lugar de superposiciones en la app"
"coordinates": {
"name": "Coordenadas",
"description": "Establece las coordenadas de la ubicación simulada"
},
"walk_radius": {
"name": "Radio de Caminata",
"description": "Caminar aleatoriamente dentro de este radio (pies)"
},
"always_update_location": {
"name": "Siempre Actualizar Ubicación",
"description": "Forzar a Snapchat a actualizar ubicación incluso si no se reciben datos GPS"
},
"suspend_location_updates": {
"name": "Suspender Actualizaciones de Ubicación",
"description": "Evita que tu ubicación sea actualizada"
},
"spoof_battery_level": {
"name": "Simular Nivel de Batería",
"description": "Simula el nivel de batería de tu dispositivo en el mapa\nEl valor debe estar entre 0 y 100"
},
"spoof_headphones": {
"name": "Simular Auriculares",
"description": "Simula el estado de escuchar música en el mapa"
},
"show_battery_level": {
"name": "Mostrar Nivel de Batería",
"description": "Muestra el nivel de batería de tus amigos en el mapa"
}
}
},
"update_settings": {
"name": "Configuración de Actualización",
"description": "Controlar verificaciones automáticas de actualización",
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Habilita funciones de Snapchat Plus\nAlgunas funciones del lado del servidor podrían no funcionar"
},
"media_upload_quality": {
"name": "Calidad de Subida de Medios",
"description": "Anula la calidad de subida de medios",
"properties": {
"auto_update_check": {
"name": "Verificación Automática de Actualización",
"description": "Buscar nuevas compilaciones automáticamente"
"force_video_upload_source_quality": {
"name": "Forzar Calidad de Fuente en Subida de Video",
"description": "Fuerza a Snapchat a usar la calidad de fuente al subir videos\nTen en cuenta que esto podría no eliminar los metadatos de los medios"
},
"update_check_frequency": {
"name": "Frecuencia de Verificación",
"description": "Con qué frecuencia buscar actualizaciones"
"disable_image_compression": {
"name": "Deshabilitar Compresión de Imagen",
"description": "Deshabilita la compresión de imagen al subir medios"
},
"custom_image_upload_format": {
"name": "Formato de Subida de Imagen Personalizado",
"description": "Establece un formato de subida de imagen personalizado\nSelecciona un formato sin pérdida (como PNG) para la mejor calidad"
}
}
},
"disable_confirmation_dialogs": {
"name": "Deshabilitar Diálogos de Confirmación",
"description": "Confirma automáticamente acciones seleccionadas"
},
"auto_updater": {
"name": "Actualizador Automático",
"description": "Busca automáticamente nuevas actualizaciones"
},
"update_settings": {
"name": "Configuración de Actualización",
"description": "Controlar cómo PurrfectSnap busca actualizaciones",
"properties": {
"auto_update_check": {
"name": "Verificación Automática de Actualización"
},
"update_check_frequency": {
"name": "Frecuencia de Verificación"
}
}
},
"ui_settings": {
"name": "Configuración de UI",
"properties": {
"haptic_feedback": {
"name": "Respuesta Háptica"
}
}
},
"disable_metrics": {
"name": "Deshabilitar Métricas",
"description": "Bloquea el envío de datos analíticos específicos a Snapchat"
},
"disable_story_sections": {
"name": "Deshabilitar Secciones de Historias",
"description": "Elimina secciones de la página de Historias\nPuede requerir una actualización para funcionar correctamente"
},
"block_ads": {
"name": "Bloquear Anuncios",
"description": "Evita que se muestren Anuncios"
},
"disable_custom_tabs": {
"name": "Deshabilitar Pestañas Personalizadas",
"description": "Abre enlaces en aplicaciones soportadas en lugar de en el Navegador Web"
},
"disable_permission_requests": {
"name": "Deshabilitar Solicitudes de Permiso",
"description": "Evita que Snapchat pida permisos específicos"
},
"disable_memories_snap_feed": {
"name": "Deshabilitar Feed de Snaps de Recuerdos",
"description": "Evita que Snapchat muestre recuerdos recientes cuando deslizas hacia arriba en la cámara"
},
"spotlight_comments_username": {
"name": "Nombre de Usuario en Comentarios de Spotlight",
"description": "Muestra el nombre de usuario del autor en los comentarios de Spotlight"
},
"spotlight_comments_username_icon": {
"name": "Icono de Nombre de Usuario en Comentarios de Spotlight",
"description": "Elige qué icono se muestra junto a los nombres de usuario en comentarios de Spotlight"
},
"bypass_video_length_restriction": {
"name": "Evitar Restricciones de Duración de Video",
"description": "Single: envía un solo video\nSplit: divide videos después de editar"
},
"default_video_playback_rate": {
"name": "Velocidad de Reproducción de Video Predeterminada",
"description": "Establece la velocidad predeterminada para la reproducción de videos\nEl valor debe estar entre 0.1 y 4.0"
},
"video_playback_rate_slider": {
"name": "Deslizador de Velocidad de Reproducción de Video",
"description": "Añade un deslizador en el menú contextual opera para cambiar la velocidad de reproducción de video\nNota: Los cambios solo aplican a videos subsiguientes"
},
"disable_google_play_dialogs": {
"name": "Deshabilitar Diálogos de Servicios de Google Play",
"description": "Evita que se muestren diálogos de disponibilidad de Servicios de Google Play"
},
"default_volume_controls": {
"name": "Controles de Volumen Predeterminados",
"description": "Fuerza a Snapchat a usar controles de volumen del sistema"
},
"disable_telecom_framework": {
"name": "Deshabilitar Framework de Telecom",
"description": "Evita que Snapchat use el framework de Telecom de Android\nEsto te permite escuchar música mientras estás en una llamada"
},
"hide_active_music": {
"name": "Ocultar Música Activa",
"description": "Evita que Snapchat sepa que estás escuchando música\nEsto te permitirá tomar snaps usando botones de control de volumen mientras escuchas música"
},
"disable_snap_splitting": {
"name": "Deshabilitar División de Snaps",
"description": "Evita que los Snaps se dividan en múltiples partes\nLas fotos que envíes se convertirán en videos"
}
}
},
@@ -1143,7 +1220,7 @@
},
"stealth_mode_indicator": {
"name": "Indicador de Modo Sigilo",
"description": "Añade un emoji \ud83d\udc7b junto a las conversaciones en modo sigilo"
"description": "Añade un emoji 👻 junto a las conversaciones en modo sigilo"
},
"edit_text_override": {
"name": "Anular Edición de Texto",
@@ -1671,164 +1748,6 @@
}
}
},
"global": {
"name": "Global",
"description": "Ajustar Configuración Global de Snapchat",
"properties": {
"better_location": {
"name": "Mejor Ubicación",
"description": "Mejora la Ubicación de Snapchat",
"properties": {
"spoof_location": {
"name": "Simular Ubicación",
"description": "Simula tu ubicación a una especificada"
},
"coordinates": {
"name": "Coordenadas",
"description": "Establece las coordenadas de la ubicación simulada"
},
"walk_radius": {
"name": "Radio de Caminata",
"description": "Caminar aleatoriamente dentro de este radio (pies)"
},
"always_update_location": {
"name": "Siempre Actualizar Ubicación",
"description": "Forzar a Snapchat a actualizar ubicación incluso si no se reciben datos GPS"
},
"suspend_location_updates": {
"name": "Suspender Actualizaciones de Ubicación",
"description": "Evita que tu ubicación sea actualizada"
},
"spoof_battery_level": {
"name": "Simular Nivel de Batería",
"description": "Simula el nivel de batería de tu dispositivo en el mapa\nEl valor debe estar entre 0 y 100"
},
"spoof_headphones": {
"name": "Simular Auriculares",
"description": "Simula el estado de escuchar música en el mapa"
},
"show_battery_level": {
"name": "Mostrar Nivel de Batería",
"description": "Muestra el nivel de batería de tus amigos en el mapa"
}
}
},
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Habilita funciones de Snapchat Plus\nAlgunas funciones del lado del servidor podrían no funcionar"
},
"media_upload_quality": {
"name": "Calidad de Subida de Medios",
"description": "Anula la calidad de subida de medios",
"properties": {
"force_video_upload_source_quality": {
"name": "Forzar Calidad de Fuente en Subida de Video",
"description": "Fuerza a Snapchat a usar la calidad de fuente al subir videos\nTen en cuenta que esto podría no eliminar los metadatos de los medios"
},
"disable_image_compression": {
"name": "Deshabilitar Compresión de Imagen",
"description": "Deshabilita la compresión de imagen al subir medios"
},
"custom_image_upload_format": {
"name": "Formato de Subida de Imagen Personalizado",
"description": "Establece un formato de subida de imagen personalizado\nSelecciona un formato sin pérdida (como PNG) para la mejor calidad"
}
}
},
"disable_confirmation_dialogs": {
"name": "Deshabilitar Diálogos de Confirmación",
"description": "Confirma automáticamente acciones seleccionadas"
},
"auto_updater": {
"name": "Actualizador Automático",
"description": "Busca automáticamente nuevas actualizaciones"
},
"update_settings": {
"name": "Configuración de Actualización",
"description": "Controlar cómo PurrfectSnap busca actualizaciones",
"properties": {
"auto_update_check": {
"name": "Verificación Automática de Actualización"
},
"update_check_frequency": {
"name": "Frecuencia de Verificación"
}
}
},
"ui_settings": {
"name": "Configuración de UI",
"properties": {
"haptic_feedback": {
"name": "Respuesta Háptica"
}
}
},
"disable_metrics": {
"name": "Deshabilitar Métricas",
"description": "Bloquea el envío de datos analíticos específicos a Snapchat"
},
"disable_story_sections": {
"name": "Deshabilitar Secciones de Historias",
"description": "Elimina secciones de la página de Historias\nPuede requerir una actualización para funcionar correctamente"
},
"block_ads": {
"name": "Bloquear Anuncios",
"description": "Evita que se muestren Anuncios"
},
"disable_custom_tabs": {
"name": "Deshabilitar Pestañas Personalizadas",
"description": "Abre enlaces en aplicaciones soportadas en lugar de en el Navegador Web"
},
"disable_permission_requests": {
"name": "Deshabilitar Solicitudes de Permiso",
"description": "Evita que Snapchat pida permisos específicos"
},
"disable_memories_snap_feed": {
"name": "Deshabilitar Feed de Snaps de Recuerdos",
"description": "Evita que Snapchat muestre recuerdos recientes cuando deslizas hacia arriba en la cámara"
},
"spotlight_comments_username": {
"name": "Nombre de Usuario en Comentarios de Spotlight",
"description": "Muestra el nombre de usuario del autor en los comentarios de Spotlight"
},
"spotlight_comments_username_icon": {
"name": "Icono de Nombre de Usuario en Comentarios de Spotlight",
"description": "Elige qué icono se muestra junto a los nombres de usuario en comentarios de Spotlight"
},
"bypass_video_length_restriction": {
"name": "Evitar Restricciones de Duración de Video",
"description": "Single: envía un solo video\nSplit: divide videos después de editar"
},
"default_video_playback_rate": {
"name": "Velocidad de Reproducción de Video Predeterminada",
"description": "Establece la velocidad predeterminada para la reproducción de videos\nEl valor debe estar entre 0.1 y 4.0"
},
"video_playback_rate_slider": {
"name": "Deslizador de Velocidad de Reproducción de Video",
"description": "Añade un deslizador en el menú contextual opera para cambiar la velocidad de reproducción de video\nNota: Los cambios solo aplican a videos subsiguientes"
},
"disable_google_play_dialogs": {
"name": "Deshabilitar Diálogos de Servicios de Google Play",
"description": "Evita que se muestren diálogos de disponibilidad de Servicios de Google Play"
},
"default_volume_controls": {
"name": "Controles de Volumen Predeterminados",
"description": "Fuerza a Snapchat a usar controles de volumen del sistema"
},
"disable_telecom_framework": {
"name": "Deshabilitar Framework de Telecom",
"description": "Evita que Snapchat use el framework de Telecom de Android\nEsto te permite escuchar música mientras estás en una llamada"
},
"hide_active_music": {
"name": "Ocultar Música Activa",
"description": "Evita que Snapchat sepa que estás escuchando música\nEsto te permitirá tomar snaps usando botones de control de volumen mientras escuchas música"
},
"disable_snap_splitting": {
"name": "Deshabilitar División de Snaps",
"description": "Evita que los Snaps se dividan en múltiples partes\nLas fotos que envíes se convertirán en videos"
}
}
},
"rules": {
"name": "Reglas",
"description": "Configurar reglas de automatización",
@@ -2110,7 +2029,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "Indicador de Mensaje Cifrado",
"description": "Añade un emoji \ud83d\udd12 junto a los mensajes cifrados"
"description": "Añade un emoji 🔒 junto a los mensajes cifrados"
},
"force_message_encryption": {
"name": "Forzar Cifrado de Mensaje",
@@ -2190,6 +2109,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "Siempre Claro",
"always_dark": "Siempre Oscuro",
@@ -2207,20 +2130,20 @@
"null": "Usar nivel de batería real"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f Descarga Automática",
"auto_save": "\ud83d\udcac Auto Guardar Mensajes",
"unsaveable_messages": "\u2b07\ufe0f Mensajes No Guardables",
"auto_open_snaps": "\ud83d\udcf7 Auto Abrir Snaps",
"stealth": "\ud83d\udc7b Modo Sigilo",
"auto_reply": "\ud83d\udce8 Respuesta Automática",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f Auto Eliminar Mensajes Enviados",
"mark_snaps_as_seen": "\ud83d\udc40 Marcar Snaps como vistos",
"mark_stories_as_seen_locally": "\ud83d\udc40 Marcar Historias como vistas localmente",
"conversation_info": "\ud83d\udc64 Info de Conversación",
"e2e_encryption": "\ud83d\udd12 Usar Cifrado E2E",
"message_logger": "\ud83d\udcdd Registrador de Mensajes",
"auto_read": "\u2705 Lectura Automática",
"hide_typing_indicator": "\ud83d\ude48 Ocultar Indicador de Escritura"
"auto_download": "⬇️ Descarga Automática",
"auto_save": "💬 Auto Guardar Mensajes",
"unsaveable_messages": "⬇️ Mensajes No Guardables",
"auto_open_snaps": "📷 Auto Abrir Snaps",
"stealth": "👻 Modo Sigilo",
"auto_reply": "📨 Respuesta Automática",
"auto_delete_sent_messages": "🗑️ Auto Eliminar Mensajes Enviados",
"mark_snaps_as_seen": "👀 Marcar Snaps como vistos",
"mark_stories_as_seen_locally": "👀 Marcar Historias como vistas localmente",
"conversation_info": "👤 Info de Conversación",
"e2e_encryption": "🔒 Usar Cifrado E2E",
"message_logger": "📝 Registrador de Mensajes",
"auto_read": " Lectura Automática",
"hide_typing_indicator": "🙈 Ocultar Indicador de Escritura"
},
"schedule_scheduled_for": "Programado para {name} en {time}",
"schedule_sending_in": "Enviando en {time}",
@@ -2323,16 +2246,16 @@
"custom_android_id": {
"null": "Usar ID de Android real"
},
"add_friend_source_spoof": {
"added_by_username": "Por Nombre de Usuario",
"added_by_mention": "Por Mención",
"added_by_group_chat": "Por Chat de Grupo",
"added_by_qr_code": "Por Código QR",
"added_by_community": "Por Comunidad",
"added_by_quick_add": "Por Añadido Rápido (alto riesgo de ser baneado)",
"added_by_spotlight": "Por Spotlight",
"null": "No simular fuente"
},
"add_friend_source_spoof": {
"added_by_username": "Por Nombre de Usuario",
"added_by_mention": "Por Mención",
"added_by_group_chat": "Por Chat de Grupo",
"added_by_qr_code": "Por Código QR",
"added_by_community": "Por Comunidad",
"added_by_quick_add": "Por Añadido Rápido (alto riesgo de ser baneado)",
"added_by_spotlight": "Por Spotlight",
"null": "No simular fuente"
},
"custom_streaks_expiration_format": {
"null": "Predeterminado del Sistema"
},
@@ -2438,8 +2361,8 @@
},
"spotlight_comments_username_icon": {
"user": "Icono de Usuario",
"\ud83d\udc64": "Icono de Usuario",
"[\ud83d\udc64]": "Icono de Usuario",
"👤": "Icono de Usuario",
"[👤]": "Icono de Usuario",
"default": "Icono de Usuario",
"no_icon": "Sin icono"
},
@@ -2519,11 +2442,11 @@
"phone_calls": "Llamadas Telefónicas"
},
"message_indicators": {
"encryption_indicator": "Añade un icono \ud83d\udd12 junto a mensajes que han sido enviados solo a ti",
"encryption_indicator": "Añade un icono 🔒 junto a mensajes que han sido enviados solo a ti",
"platform_indicator": "Añade el icono de plataforma desde la cual se envió un medio (ej. Android, iOS, Web)",
"location_indicator": "Añade un icono \ud83d\udccd a snaps cuando han sido enviados con ubicación habilitada",
"location_indicator": "Añade un icono 📍 a snaps cuando han sido enviados con ubicación habilitada",
"ovf_editor_indicator": "Indica si un snap ha sido enviado usando Editor OVF",
"director_mode_indicator": "Añade un icono \u270f\ufe0f a snaps cuando han sido enviados usando Modo Director, que se puede usar para enviar imágenes de galería como snaps"
"director_mode_indicator": "Añade un icono ✏️ a snaps cuando han sido enviados usando Modo Director, que se puede usar para enviar imágenes de galería como snaps"
},
"auto_mark_as_read": {
"conversation_read": "Marcar conversación como leída al enviar un mensaje",
@@ -2747,7 +2670,6 @@
"show_chat_edit_history": "Mostrar Historial de Edición de Chat",
"convert_message": "Convertir Mensaje"
},
"chat_wallpaper_downloader": {
"download_button": "Descargar Fondo de Chat"
},
@@ -3077,7 +2999,7 @@
"queue_cleared": "Cola limpiada y estadísticas restablecidas",
"queue_cleared_title": "Cola limpiada",
"queue_cleared_reset": "Cola Limpiada y Restablecida",
"queue_cleared_feedback": "Limpiados {count} snaps en cola \u2022 Restablecido conteo de {processed} procesados",
"queue_cleared_feedback": "Limpiados {count} snaps en cola Restablecido conteo de {processed} procesados",
"queue_cleared_feedback_simple": "Restablecido conteo de {processed} procesados",
"unknown_sender": "Desconocido",
"unknown_user": "Usuario Desconocido",

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 by Eternal",
"version_title": "v{versionName} · by Eternal",
"update_title": "PurrfectSnap-päivitys",
"update_content": "Versio {version} on saatavilla!",
"update_button": "Lataa",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "Ei tehtäviä",
"merge_button": "Yhdistä",
"summary_active": "{active} aktiivista \u00b7 {recent} viimeaikaista",
"summary_idle": "Jouten \u00b7 {recent} viimeaikaista",
"summary_active": "{active} aktiivista · {recent} viimeaikaista",
"summary_idle": "Jouten · {recent} viimeaikaista",
"running_count": "{count} käynnissä",
"clear_button_description": "Tyhjennä tehtävät",
"failed_to_open_file": "Tiedoston avaaminen epäonnistui",
@@ -312,22 +312,22 @@
"remove_selected_tasks_confirm": "Poista {count} tehtävää?",
"remove_all_tasks_confirm": "Poista kaikki tehtävät?"
},
"features": {
"disabled": "Pois käytöstä",
"export_option": "Vie",
"import_option": "Tuo",
"reset_option": "Nollaa",
"config_export_success_toast": "Konfiguraatio viety onnistuneesti",
"config_import_success_toast": "Konfiguraatio tuotu onnistuneesti",
"config_import_failure_toast": "Konfiguraation tuonti epäonnistui {error}",
"config_export_failure_toast": "Konfiguraation vienti epäonnistui {error}",
"saved_config_snackbar": "Konfiguraatio tallennettu",
"older_required": "Tämä ominaisuus vaatii Snapchat-version v{version} tai vanhemman toimiakseen oikein",
"newer_required": "Tämä ominaisuus vaatii Snapchat-version v{version} tai uudemman toimiakseen oikein",
"search_button": "Hae",
"clear_history": "Tyhjennä hakuhistoria",
"subtitle": "Hae ja hallitse ominaisuuksia"
},
"features": {
"disabled": "Pois käytöstä",
"export_option": "Vie",
"import_option": "Tuo",
"reset_option": "Nollaa",
"config_export_success_toast": "Konfiguraatio viety onnistuneesti",
"config_import_success_toast": "Konfiguraatio tuotu onnistuneesti",
"config_import_failure_toast": "Konfiguraation tuonti epäonnistui {error}",
"config_export_failure_toast": "Konfiguraation vienti epäonnistui {error}",
"saved_config_snackbar": "Konfiguraatio tallennettu",
"older_required": "Tämä ominaisuus vaatii Snapchat-version v{version} tai vanhemman toimiakseen oikein",
"newer_required": "Tämä ominaisuus vaatii Snapchat-version v{version} tai uudemman toimiakseen oikein",
"search_button": "Hae",
"clear_history": "Tyhjennä hakuhistoria",
"subtitle": "Hae ja hallitse ominaisuuksia"
},
"bypass_status": {
"active": "PurrAura aktiivinen",
"inactive": "PurrAura ei aktiivinen"
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "Teleporttaa kaverin luo",
"search_bar": "Hae",
"no_friends_map": "Ei kavereita kartalla",
"no_friends_found": "Ei kavereita löydetty"
"no_friends_found": "Ei kavereita löydetty",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,166 @@
},
"features": {
"notices": {
"unstable": "\u26a0 Epävakaa",
"ban_risk": "\u26a0 Tämä ominaisuus voi aiheuttaa porttikieltoja",
"internal_behavior": "\u26a0 Tämä voi rikkoa Snapchatin sisäisen toiminnan"
},
"options": {
"empty": "Tyhjä",
"walk_radius": {
"empty": "Tyhjä"
},
"spoof_battery_level": {
"empty": "Tyhjä"
},
"custom_android_id": {
"empty": "Tyhjä"
},
"custom_streaks_expiration_format": {
"empty": "Tyhjä"
},
"preferred_transcription_lang": {
"empty": "Tyhjä"
},
"custom_emoji_font": {
"empty": "Tyhjä"
},
"custom_shared_library": {
"empty": "Tyhjä"
},
"custom_resolution": {
"empty": "Tyhjä"
},
"custom_path_format": {
"empty": "Tyhjä"
},
"custom_video_codec": {
"empty": "Tyhjä"
},
"custom_audio_codec": {
"empty": "Tyhjä"
},
"double_tap_chat_action_custom_emoji": {
"empty": "Tyhjä"
},
"unsaveable_messages": {
"blacklist": "Estolista-tila",
"whitelist": "Sallittu-tila",
"null": "Pois käytöstä"
},
"update_check_frequency": {
"daily": "Päivittäin",
"weekly": "Viikoittain",
"monthly": "Kuukausittain"
}
"unstable": " Epävakaa",
"ban_risk": " Tämä ominaisuus voi aiheuttaa porttikieltoja",
"internal_behavior": " Tämä voi rikkoa Snapchatin sisäisen toiminnan"
},
"properties": {
"global": {
"name": "Globaali",
"description": "Yleiset moduulin asetukset ja oletukset",
"description": "Säädä globaaleja Snapchat-asetuksia",
"properties": {
"ui_settings": {
"name": "Käyttöliittymäasetukset",
"description": "Säädä palautetta ja ilmoitusten käyttäytymistä",
"better_location": {
"name": "Parempi sijainti",
"description": "Parantaa Snapchatin sijaintia",
"properties": {
"haptic_feedback": {
"name": "Haptinen palaute",
"description": "Värise tuetuissa vuorovaikutuksissa"
"spoof_location": {
"name": "Huijaa sijaintia",
"description": "Huijaa sijaintisi määritettyyn paikkaan"
},
"use_system_toasts": {
"name": "Käytä järjestelmän ilmoituksia",
"description": "Näytä Android-ilmoitukset (toasts) sovelluksen sisäisten sijaan"
"coordinates": {
"name": "Koordinaatit",
"description": "Aseta huijatun sijainnin koordinaatit"
},
"walk_radius": {
"name": "Kävelysäde",
"description": "Kävele satunnaisesti tämän säteen sisällä (jalkaa)"
},
"always_update_location": {
"name": "Päivitä sijainti aina",
"description": "Pakota Snapchat päivittämään sijainti, vaikka GPS-tietoja ei vastaanotettaisi"
},
"suspend_location_updates": {
"name": "Keskeytä sijaintipäivitykset",
"description": "Estää sijaintisi päivittymisen"
},
"spoof_battery_level": {
"name": "Huijaa akun tasoa",
"description": "Huijaa laitteesi akun tasoa kartalla\nArvon on oltava välillä 0 ja 100"
},
"spoof_headphones": {
"name": "Huijaa kuulokkeita",
"description": "Huijaa musiikin kuuntelun tilaa kartalla"
},
"show_battery_level": {
"name": "Näytä akun taso",
"description": "Näyttää kavereidesi akun tason kartalla"
}
}
},
"update_settings": {
"name": "Päivitysasetukset",
"description": "Hallitse automaattisia päivitysten tarkistuksia",
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Ottaa käyttöön Snapchat Plus -ominaisuudet\nJotkin palvelinpuolen ominaisuudet eivät ehkä toimi"
},
"media_upload_quality": {
"name": "Median lähetyslaatu",
"description": "Ohittaa median lähetyslaadun",
"properties": {
"auto_update_check": {
"name": "Automaattinen päivitysten tarkistus",
"description": "Tarkista uudet versiot automaattisesti"
"force_video_upload_source_quality": {
"name": "Pakota videon lähetys lähdelaadulla",
"description": "Pakottaa Snapchatin käyttämään lähdelaatua videoita lähetettäessä\nHuomaa, että tämä ei välttämättä poista metatietoja mediasta"
},
"update_check_frequency": {
"name": "Päivitysten tarkistustiheys",
"description": "Kuinka usein päivityksiä tarkistetaan"
"disable_image_compression": {
"name": "Poista kuvanpakkaus käytöstä",
"description": "Poistaa kuvanpakkauksen käytöstä mediaa lähetettäessä"
},
"custom_image_upload_format": {
"name": "Mukautettu kuvan lähetysmuoto",
"description": "Asettaa mukautetun kuvan lähetysmuodon\nValitse häviötön muoto (kuten PNG) parhaan laadun takaamiseksi"
}
}
},
"disable_confirmation_dialogs": {
"name": "Poista vahvistusikkunat käytöstä",
"description": "Vahvistaa valitut toiminnot automaattisesti"
},
"auto_updater": {
"name": "Automaattinen päivittäjä",
"description": "Tarkistaa uudet päivitykset automaattisesti"
},
"update_settings": {
"name": "Päivitysasetukset",
"description": "Hallitse kuinka PurrfectSnap tarkistaa päivitykset",
"properties": {
"auto_update_check": {
"name": "Automaattinen päivitysten tarkistus"
},
"update_check_frequency": {
"name": "Päivitysten tarkistustiheys"
}
}
},
"ui_settings": {
"name": "Käyttöliittymäasetukset",
"properties": {
"haptic_feedback": {
"name": "Haptinen palaute"
}
}
},
"disable_metrics": {
"name": "Poista metriikka käytöstä",
"description": "Estää tiettyjen analyysitietojen lähettämisen Snapchatiin"
},
"disable_story_sections": {
"name": "Poista tarinaosiot käytöstä",
"description": "Poistaa osioita Tarinat-sivulta\nSaattaa vaatia päivityksen toimiakseen kunnolla"
},
"block_ads": {
"name": "Estä mainokset",
"description": "Estää mainosten näyttämisen"
},
"disable_custom_tabs": {
"name": "Poista mukautetut välilehdet käytöstä",
"description": "Avaa linkit tuetuissa sovelluksissa verkkoselaimen sijaan"
},
"disable_permission_requests": {
"name": "Poista lupapyynnöt käytöstä",
"description": "Estää Snapchatia kysymästä tiettyjä lupia"
},
"disable_memories_snap_feed": {
"name": "Poista muistot Snap-syötteestä",
"description": "Estää Snapchatia näyttämästä viimeaikaisia muistoja, kun pyyhkäiset ylös kamerassa"
},
"spotlight_comments_username": {
"name": "Spotlight-kommenttien käyttäjänimi",
"description": "Näyttää kirjoittajan käyttäjänimen Spotlight-kommenteissa"
},
"spotlight_comments_username_icon": {
"name": "Spotlight-kommenttien käyttäjänimikuvake",
"description": "Valitse mikä kuvake näytetään käyttäjänimien vieressä Spotlight-kommenteissa"
},
"bypass_video_length_restriction": {
"name": "Ohita videon pituusrajoitukset",
"description": "Yksittäinen: lähettää yhden videon\nJaettu: jakaa videot muokkauksen jälkeen"
},
"default_video_playback_rate": {
"name": "Oletusvideon toistonopeus",
"description": "Asettaa oletusnopeuden videoiden toistolle\nArvon on oltava välillä 0.1 ja 4.0"
},
"video_playback_rate_slider": {
"name": "Videon toistonopeuden liukusäädin",
"description": "Lisää liukusäätimen Opera-kontekstivalikkoon videon toistonopeuden muuttamiseksi\nHuom: Muutokset koskevat vain seuraavia videoita"
},
"disable_google_play_dialogs": {
"name": "Poista Google Play Palvelut -dialogit",
"description": "Estä Google Play Palvelujen saatavuusdialogien näyttäminen"
},
"default_volume_controls": {
"name": "Oletusäänenvoimakkuuden säätimet",
"description": "Pakottaa Snapchatin käyttämään järjestelmän äänenvoimakkuuden säätimiä"
},
"disable_telecom_framework": {
"name": "Poista Telecom Framework käytöstä",
"description": "Estää Snapchatia käyttämästä Android Telecom -kehystä\nTämä mahdollistaa musiikin kuuntelun puhelun aikana"
},
"hide_active_music": {
"name": "Piilota aktiivinen musiikki",
"description": "Estää Snapchatia tietämästä, että kuuntelet musiikkia\nTämä mahdollistaa Snapien ottamisen äänenvoimakkuuspainikkeilla kuunnellessasi musiikkia"
},
"disable_snap_splitting": {
"name": "Poista Snapien jakaminen käytöstä",
"description": "Estää Snapien jakamisen useaan osaan\nLähettämäsi kuvat muuttuvat videoiksi"
}
}
},
@@ -1143,7 +1220,7 @@
},
"stealth_mode_indicator": {
"name": "Stealth-tilan indikaattori",
"description": "Lisää \ud83d\udc7b -emojin stealth-tilassa olevien keskustelujen viereen"
"description": "Lisää 👻 -emojin stealth-tilassa olevien keskustelujen viereen"
},
"edit_text_override": {
"name": "Tekstin muokkauksen ohitus",
@@ -1671,164 +1748,6 @@
}
}
},
"global": {
"name": "Globaali",
"description": "Säädä globaaleja Snapchat-asetuksia",
"properties": {
"better_location": {
"name": "Parempi sijainti",
"description": "Parantaa Snapchatin sijaintia",
"properties": {
"spoof_location": {
"name": "Huijaa sijaintia",
"description": "Huijaa sijaintisi määritettyyn paikkaan"
},
"coordinates": {
"name": "Koordinaatit",
"description": "Aseta huijatun sijainnin koordinaatit"
},
"walk_radius": {
"name": "Kävelysäde",
"description": "Kävele satunnaisesti tämän säteen sisällä (jalkaa)"
},
"always_update_location": {
"name": "Päivitä sijainti aina",
"description": "Pakota Snapchat päivittämään sijainti, vaikka GPS-tietoja ei vastaanotettaisi"
},
"suspend_location_updates": {
"name": "Keskeytä sijaintipäivitykset",
"description": "Estää sijaintisi päivittymisen"
},
"spoof_battery_level": {
"name": "Huijaa akun tasoa",
"description": "Huijaa laitteesi akun tasoa kartalla\nArvon on oltava välillä 0 ja 100"
},
"spoof_headphones": {
"name": "Huijaa kuulokkeita",
"description": "Huijaa musiikin kuuntelun tilaa kartalla"
},
"show_battery_level": {
"name": "Näytä akun taso",
"description": "Näyttää kavereidesi akun tason kartalla"
}
}
},
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Ottaa käyttöön Snapchat Plus -ominaisuudet\nJotkin palvelinpuolen ominaisuudet eivät ehkä toimi"
},
"media_upload_quality": {
"name": "Median lähetyslaatu",
"description": "Ohittaa median lähetyslaadun",
"properties": {
"force_video_upload_source_quality": {
"name": "Pakota videon lähetys lähdelaadulla",
"description": "Pakottaa Snapchatin käyttämään lähdelaatua videoita lähetettäessä\nHuomaa, että tämä ei välttämättä poista metatietoja mediasta"
},
"disable_image_compression": {
"name": "Poista kuvanpakkaus käytöstä",
"description": "Poistaa kuvanpakkauksen käytöstä mediaa lähetettäessä"
},
"custom_image_upload_format": {
"name": "Mukautettu kuvan lähetysmuoto",
"description": "Asettaa mukautetun kuvan lähetysmuodon\nValitse häviötön muoto (kuten PNG) parhaan laadun takaamiseksi"
}
}
},
"disable_confirmation_dialogs": {
"name": "Poista vahvistusikkunat käytöstä",
"description": "Vahvistaa valitut toiminnot automaattisesti"
},
"auto_updater": {
"name": "Automaattinen päivittäjä",
"description": "Tarkistaa uudet päivitykset automaattisesti"
},
"update_settings": {
"name": "Päivitysasetukset",
"description": "Hallitse kuinka PurrfectSnap tarkistaa päivitykset",
"properties": {
"auto_update_check": {
"name": "Automaattinen päivitysten tarkistus"
},
"update_check_frequency": {
"name": "Päivitysten tarkistustiheys"
}
}
},
"ui_settings": {
"name": "Käyttöliittymäasetukset",
"properties": {
"haptic_feedback": {
"name": "Haptinen palaute"
}
}
},
"disable_metrics": {
"name": "Poista metriikka käytöstä",
"description": "Estää tiettyjen analyysitietojen lähettämisen Snapchatiin"
},
"disable_story_sections": {
"name": "Poista tarinaosiot käytöstä",
"description": "Poistaa osioita Tarinat-sivulta\nSaattaa vaatia päivityksen toimiakseen kunnolla"
},
"block_ads": {
"name": "Estä mainokset",
"description": "Estää mainosten näyttämisen"
},
"disable_custom_tabs": {
"name": "Poista mukautetut välilehdet käytöstä",
"description": "Avaa linkit tuetuissa sovelluksissa verkkoselaimen sijaan"
},
"disable_permission_requests": {
"name": "Poista lupapyynnöt käytöstä",
"description": "Estää Snapchatia kysymästä tiettyjä lupia"
},
"disable_memories_snap_feed": {
"name": "Poista muistot Snap-syötteestä",
"description": "Estää Snapchatia näyttämästä viimeaikaisia muistoja, kun pyyhkäiset ylös kamerassa"
},
"spotlight_comments_username": {
"name": "Spotlight-kommenttien käyttäjänimi",
"description": "Näyttää kirjoittajan käyttäjänimen Spotlight-kommenteissa"
},
"spotlight_comments_username_icon": {
"name": "Spotlight-kommenttien käyttäjänimikuvake",
"description": "Valitse mikä kuvake näytetään käyttäjänimien vieressä Spotlight-kommenteissa"
},
"bypass_video_length_restriction": {
"name": "Ohita videon pituusrajoitukset",
"description": "Yksittäinen: lähettää yhden videon\nJaettu: jakaa videot muokkauksen jälkeen"
},
"default_video_playback_rate": {
"name": "Oletusvideon toistonopeus",
"description": "Asettaa oletusnopeuden videoiden toistolle\nArvon on oltava välillä 0.1 ja 4.0"
},
"video_playback_rate_slider": {
"name": "Videon toistonopeuden liukusäädin",
"description": "Lisää liukusäätimen Opera-kontekstivalikkoon videon toistonopeuden muuttamiseksi\nHuom: Muutokset koskevat vain seuraavia videoita"
},
"disable_google_play_dialogs": {
"name": "Poista Google Play Palvelut -dialogit",
"description": "Estä Google Play Palvelujen saatavuusdialogien näyttäminen"
},
"default_volume_controls": {
"name": "Oletusäänenvoimakkuuden säätimet",
"description": "Pakottaa Snapchatin käyttämään järjestelmän äänenvoimakkuuden säätimiä"
},
"disable_telecom_framework": {
"name": "Poista Telecom Framework käytöstä",
"description": "Estää Snapchatia käyttämästä Android Telecom -kehystä\nTämä mahdollistaa musiikin kuuntelun puhelun aikana"
},
"hide_active_music": {
"name": "Piilota aktiivinen musiikki",
"description": "Estää Snapchatia tietämästä, että kuuntelet musiikkia\nTämä mahdollistaa Snapien ottamisen äänenvoimakkuuspainikkeilla kuunnellessasi musiikkia"
},
"disable_snap_splitting": {
"name": "Poista Snapien jakaminen käytöstä",
"description": "Estää Snapien jakamisen useaan osaan\nLähettämäsi kuvat muuttuvat videoiksi"
}
}
},
"rules": {
"name": "Säännöt",
"description": "Määritä automaatiosäännöt",
@@ -2110,7 +2029,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "Salatun viestin indikaattori",
"description": "Lisää \ud83d\udd12 -emojin salattujen viestien viereen"
"description": "Lisää 🔒 -emojin salattujen viestien viereen"
},
"force_message_encryption": {
"name": "Pakota viestin salaus",
@@ -2190,6 +2109,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "Aina vaalea",
"always_dark": "Aina tumma",
@@ -2207,20 +2130,20 @@
"null": "Käytä todellista akun tasoa"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f Automaattinen lataus",
"auto_save": "\ud83d\udcac Tallenna viestit automaattisesti",
"unsaveable_messages": "\u2b07\ufe0f Ei-tallennettavat viestit",
"auto_open_snaps": "\ud83d\udcf7 Avaa Snapit automaattisesti",
"stealth": "\ud83d\udc7b Stealth-tila",
"auto_reply": "\ud83d\udce8 Automaattivastaus",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f Poista lähetetyt viestit automaattisesti",
"mark_snaps_as_seen": "\ud83d\udc40 Merkitse Snapit nähdyiksi",
"mark_stories_as_seen_locally": "\ud83d\udc40 Merkitse Tarinat nähdyiksi paikallisesti",
"conversation_info": "\ud83d\udc64 Keskustelun tiedot",
"e2e_encryption": "\ud83d\udd12 Käytä E2E-salausta",
"message_logger": "\ud83d\udcdd Viestiloki",
"auto_read": "\u2705 Automaattinen luku",
"hide_typing_indicator": "\ud83d\ude48 Piilota kirjoitusindikaattori"
"auto_download": "⬇️ Automaattinen lataus",
"auto_save": "💬 Tallenna viestit automaattisesti",
"unsaveable_messages": "⬇️ Ei-tallennettavat viestit",
"auto_open_snaps": "📷 Avaa Snapit automaattisesti",
"stealth": "👻 Stealth-tila",
"auto_reply": "📨 Automaattivastaus",
"auto_delete_sent_messages": "🗑️ Poista lähetetyt viestit automaattisesti",
"mark_snaps_as_seen": "👀 Merkitse Snapit nähdyiksi",
"mark_stories_as_seen_locally": "👀 Merkitse Tarinat nähdyiksi paikallisesti",
"conversation_info": "👤 Keskustelun tiedot",
"e2e_encryption": "🔒 Käytä E2E-salausta",
"message_logger": "📝 Viestiloki",
"auto_read": " Automaattinen luku",
"hide_typing_indicator": "🙈 Piilota kirjoitusindikaattori"
},
"schedule_scheduled_for": "Ajastettu käyttäjälle {name} ajassa {time}",
"schedule_sending_in": "Lähetetään ajassa {time}",
@@ -2323,16 +2246,16 @@
"custom_android_id": {
"null": "Käytä todellista Android ID:tä"
},
"add_friend_source_spoof": {
"added_by_username": "Käyttäjänimellä",
"added_by_mention": "Maininnalla",
"added_by_group_chat": "Ryhmäkeskustelusta",
"added_by_qr_code": "QR-koodilla",
"added_by_community": "Yhteisöstä",
"added_by_quick_add": "Pikalisäyksellä (korkea porttikieltoriski)",
"added_by_spotlight": "Spotlightista",
"null": "Älä huijaa lähdettä"
},
"add_friend_source_spoof": {
"added_by_username": "Käyttäjänimellä",
"added_by_mention": "Maininnalla",
"added_by_group_chat": "Ryhmäkeskustelusta",
"added_by_qr_code": "QR-koodilla",
"added_by_community": "Yhteisöstä",
"added_by_quick_add": "Pikalisäyksellä (korkea porttikieltoriski)",
"added_by_spotlight": "Spotlightista",
"null": "Älä huijaa lähdettä"
},
"custom_streaks_expiration_format": {
"null": "Järjestelmän oletus"
},
@@ -2438,8 +2361,8 @@
},
"spotlight_comments_username_icon": {
"user": "Käyttäjänimikuvake",
"\ud83d\udc64": "Käyttäjänimikuvake",
"[\ud83d\udc64]": "Käyttäjänimikuvake",
"👤": "Käyttäjänimikuvake",
"[👤]": "Käyttäjänimikuvake",
"default": "Käyttäjänimikuvake",
"no_icon": "Ei kuvaketta"
},
@@ -2519,11 +2442,11 @@
"phone_calls": "Puhelut"
},
"message_indicators": {
"encryption_indicator": "Lisää \ud83d\udd12 -kuvakkeen viestien viereen, jotka on lähetetty vain sinulle",
"encryption_indicator": "Lisää 🔒 -kuvakkeen viestien viereen, jotka on lähetetty vain sinulle",
"platform_indicator": "Lisää alustan kuvakkeen, josta media lähetettiin (esim. Android, iOS, Web)",
"location_indicator": "Lisää \ud83d\udccd -kuvakkeen snapeihin, kun ne on lähetetty sijainnin ollessa päällä",
"location_indicator": "Lisää 📍 -kuvakkeen snapeihin, kun ne on lähetetty sijainnin ollessa päällä",
"ovf_editor_indicator": "Osoittaa, jos snap on lähetetty OVF Editorilla",
"director_mode_indicator": "Lisää \u270f\ufe0f -kuvakkeen snapeihin, kun ne on lähetetty Director Mode -tilassa, jota voidaan käyttää galleriakuvien lähettämiseen snapeina"
"director_mode_indicator": "Lisää ✏️ -kuvakkeen snapeihin, kun ne on lähetetty Director Mode -tilassa, jota voidaan käyttää galleriakuvien lähettämiseen snapeina"
},
"auto_mark_as_read": {
"conversation_read": "Merkitse keskustelu luetuksi viestiä lähetettäessä",
@@ -2747,7 +2670,6 @@
"show_chat_edit_history": "Näytä chatin muokkaushistoria",
"convert_message": "Muunna viesti"
},
"chat_wallpaper_downloader": {
"download_button": "Lataa chat-taustakuva"
},
@@ -3077,7 +2999,7 @@
"queue_cleared": "Jono tyhjennetty ja tilastot nollattu",
"queue_cleared_title": "Jono tyhjennetty",
"queue_cleared_reset": "Jono tyhjennetty & nollattu",
"queue_cleared_feedback": "Tyhjennetty {count} jonossa olevaa snappia \u2022 Nollattu {processed} käsiteltyä",
"queue_cleared_feedback": "Tyhjennetty {count} jonossa olevaa snappia Nollattu {processed} käsiteltyä",
"queue_cleared_feedback_simple": "Nollattu {processed} käsiteltyä",
"unknown_sender": "Tuntematon",
"unknown_user": "Tuntematon käyttäjä",

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 par Eternal",
"version_title": "v{versionName} · par Eternal",
"update_title": "Mise à jour PurrfectSnap",
"update_content": "La version {version} est disponible !",
"update_button": "Télécharger",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "Aucune tâche",
"merge_button": "Fusionner",
"summary_active": "{active} active(s) \u00b7 {recent} récente(s)",
"summary_idle": "Inactif \u00b7 {recent} récente(s)",
"summary_active": "{active} active(s) · {recent} récente(s)",
"summary_idle": "Inactif · {recent} récente(s)",
"running_count": "{count} en cours",
"clear_button_description": "Effacer les tâches",
"failed_to_open_file": "Échec de l'ouverture du fichier",
@@ -312,22 +312,22 @@
"remove_selected_tasks_confirm": "Supprimer {count} tâches ?",
"remove_all_tasks_confirm": "Supprimer toutes les tâches ?"
},
"features": {
"disabled": "Désactivé",
"export_option": "Exporter",
"import_option": "Importer",
"reset_option": "Réinitialiser",
"config_export_success_toast": "Configuration exportée avec succès",
"config_import_success_toast": "Configuration importée avec succès",
"config_import_failure_toast": "Échec de l'importation de la configuration {error}",
"config_export_failure_toast": "Échec de l'exportation de la configuration {error}",
"saved_config_snackbar": "Configuration enregistrée",
"older_required": "Cette fonctionnalité nécessite Snapchat v{version} ou plus ancien pour fonctionner correctement",
"newer_required": "Cette fonctionnalité nécessite Snapchat v{version} ou plus récent pour fonctionner correctement",
"search_button": "Rechercher",
"clear_history": "Effacer l'historique de recherche",
"subtitle": "Rechercher et gérer les fonctionnalités"
},
"features": {
"disabled": "Désactivé",
"export_option": "Exporter",
"import_option": "Importer",
"reset_option": "Réinitialiser",
"config_export_success_toast": "Configuration exportée avec succès",
"config_import_success_toast": "Configuration importée avec succès",
"config_import_failure_toast": "Échec de l'importation de la configuration {error}",
"config_export_failure_toast": "Échec de l'exportation de la configuration {error}",
"saved_config_snackbar": "Configuration enregistrée",
"older_required": "Cette fonctionnalité nécessite Snapchat v{version} ou plus ancien pour fonctionner correctement",
"newer_required": "Cette fonctionnalité nécessite Snapchat v{version} ou plus récent pour fonctionner correctement",
"search_button": "Rechercher",
"clear_history": "Effacer l'historique de recherche",
"subtitle": "Rechercher et gérer les fonctionnalités"
},
"bypass_status": {
"active": "PurrAura Actif",
"inactive": "PurrAura Inactif"
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "Se téléporter à un ami",
"search_bar": "Rechercher",
"no_friends_map": "Aucun ami sur la carte",
"no_friends_found": "Aucun ami trouvé"
"no_friends_found": "Aucun ami trouvé",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,166 @@
},
"features": {
"notices": {
"unstable": "\u26a0 Instable",
"ban_risk": "\u26a0 Cette fonctionnalité peut causer des bannissements",
"internal_behavior": "\u26a0 Ceci peut casser le comportement interne de Snapchat"
},
"options": {
"empty": "Vide",
"walk_radius": {
"empty": "Vide"
},
"spoof_battery_level": {
"empty": "Vide"
},
"custom_android_id": {
"empty": "Vide"
},
"custom_streaks_expiration_format": {
"empty": "Vide"
},
"preferred_transcription_lang": {
"empty": "Vide"
},
"custom_emoji_font": {
"empty": "Vide"
},
"custom_shared_library": {
"empty": "Vide"
},
"custom_resolution": {
"empty": "Vide"
},
"custom_path_format": {
"empty": "Vide"
},
"custom_video_codec": {
"empty": "Vide"
},
"custom_audio_codec": {
"empty": "Vide"
},
"double_tap_chat_action_custom_emoji": {
"empty": "Vide"
},
"unsaveable_messages": {
"blacklist": "Mode liste noire",
"whitelist": "Mode liste blanche",
"null": "Désactivé"
},
"update_check_frequency": {
"daily": "Quotidien",
"weekly": "Hebdomadaire",
"monthly": "Mensuel"
}
"unstable": " Instable",
"ban_risk": " Cette fonctionnalité peut causer des bannissements",
"internal_behavior": " Ceci peut casser le comportement interne de Snapchat"
},
"properties": {
"global": {
"name": "Global",
"description": "Préférences générales du module et valeurs par défaut",
"description": "Ajuster les paramètres globaux de Snapchat",
"properties": {
"ui_settings": {
"name": "Paramètres de l'interface",
"description": "Régler le retour et le comportement des toasts",
"better_location": {
"name": "Meilleure localisation",
"description": "Améliore la localisation Snapchat",
"properties": {
"haptic_feedback": {
"name": "Retour haptique",
"description": "Vibrer sur les interactions supportées"
"spoof_location": {
"name": "Simuler la localisation",
"description": "Simule votre localisation à un endroit spécifié"
},
"use_system_toasts": {
"name": "Utiliser les Toasts système",
"description": "Afficher les toasts Android au lieu des superpositions dans l'appli"
"coordinates": {
"name": "Coordonnées",
"description": "Définir les coordonnées de la localisation simulée"
},
"walk_radius": {
"name": "Rayon de marche",
"description": "Marcher aléatoirement dans ce rayon (ft)"
},
"always_update_location": {
"name": "Toujours mettre à jour la localisation",
"description": "Forcer Snapchat à mettre à jour la localisation même si aucune donnée GPS n'est reçue"
},
"suspend_location_updates": {
"name": "Suspendre les mises à jour de localisation",
"description": "Empêche votre localisation d'être mise à jour"
},
"spoof_battery_level": {
"name": "Simuler le niveau de batterie",
"description": "Simule le niveau de batterie de votre appareil sur la carte\nLa valeur doit être entre 0 et 100"
},
"spoof_headphones": {
"name": "Simuler des écouteurs",
"description": "Simule le statut d'écoute de musique sur la carte"
},
"show_battery_level": {
"name": "Afficher le niveau de batterie",
"description": "Affiche le niveau de batterie de vos amis sur la carte"
}
}
},
"update_settings": {
"name": "Paramètres de mise à jour",
"description": "Contrôler les vérifications automatiques de mise à jour",
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Active les fonctionnalités Snapchat Plus\nCertaines fonctionnalités côté serveur peuvent ne pas fonctionner"
},
"media_upload_quality": {
"name": "Qualité d'envoi média",
"description": "Remplace la qualité d'envoi des médias",
"properties": {
"auto_update_check": {
"name": "Vérification auto des mises à jour",
"description": "Vérifier les nouvelles versions automatiquement"
"force_video_upload_source_quality": {
"name": "Forcer la qualité source d'envoi vidéo",
"description": "Force Snapchat à utiliser la qualité source lors de l'envoi de vidéos\nVeuillez noter que cela pourrait ne pas retirer les métadonnées des médias"
},
"update_check_frequency": {
"name": "Fréquence de vérification",
"description": "À quelle fréquence vérifier les mises à jour"
"disable_image_compression": {
"name": "Désactiver la compression d'image",
"description": "Désactive la compression d'image lors de l'envoi de médias"
},
"custom_image_upload_format": {
"name": "Format d'envoi d'image personnalisé",
"description": "Définit un format d'envoi d'image personnalisé\nSélectionnez un format sans perte (comme PNG) pour la meilleure qualité"
}
}
},
"disable_confirmation_dialogs": {
"name": "Désactiver les dialogues de confirmation",
"description": "Confirme automatiquement les actions sélectionnées"
},
"auto_updater": {
"name": "Mise à jour auto",
"description": "Vérifie automatiquement les nouvelles mises à jour"
},
"update_settings": {
"name": "Paramètres de mise à jour",
"description": "Contrôler comment PurrfectSnap vérifie les mises à jour",
"properties": {
"auto_update_check": {
"name": "Vérification auto des mises à jour"
},
"update_check_frequency": {
"name": "Fréquence de vérification"
}
}
},
"ui_settings": {
"name": "Paramètres de l'interface",
"properties": {
"haptic_feedback": {
"name": "Retour haptique"
}
}
},
"disable_metrics": {
"name": "Désactiver les métriques",
"description": "Bloque l'envoi de données analytiques spécifiques à Snapchat"
},
"disable_story_sections": {
"name": "Désactiver les sections de Story",
"description": "Supprime des sections de la page Stories\nPeut nécessiter une actualisation pour fonctionner correctement"
},
"block_ads": {
"name": "Bloquer les pubs",
"description": "Empêche les publicités d'être affichées"
},
"disable_custom_tabs": {
"name": "Désactiver les onglets personnalisés",
"description": "Ouvre les liens dans les applications supportées plutôt que dans le navigateur Web"
},
"disable_permission_requests": {
"name": "Désactiver les demandes de permission",
"description": "Empêche Snapchat de demander des permissions spécifiques"
},
"disable_memories_snap_feed": {
"name": "Désactiver le flux de snaps memories",
"description": "Empêche Snapchat de montrer les memories récents quand vous swipez vers le haut dans la caméra"
},
"spotlight_comments_username": {
"name": "Nom d'utilisateur commentaires Spotlight",
"description": "Affiche le nom d'utilisateur de l'auteur dans les commentaires Spotlight"
},
"spotlight_comments_username_icon": {
"name": "Icône nom d'utilisateur commentaires Spotlight",
"description": "Choisir quelle icône est affichée à côté des noms d'utilisateur dans les commentaires Spotlight"
},
"bypass_video_length_restriction": {
"name": "Contourner les restrictions de longueur vidéo",
"description": "Simple : envoie une seule vidéo\nScindé : scinde les vidéos après édition"
},
"default_video_playback_rate": {
"name": "Vitesse de lecture vidéo par défaut",
"description": "Définit la vitesse par défaut pour la lecture des vidéos\nLa valeur doit être entre 0.1 et 4.0"
},
"video_playback_rate_slider": {
"name": "Curseur de vitesse de lecture vidéo",
"description": "Ajoute un curseur dans le menu contextuel opera pour changer la vitesse de lecture vidéo\nNote : Les changements s'appliquent seulement aux vidéos suivantes"
},
"disable_google_play_dialogs": {
"name": "Désactiver les dialogues Services Google Play",
"description": "Empêche les dialogues de disponibilité des Services Google Play d'être affichés"
},
"default_volume_controls": {
"name": "Contrôles de volume par défaut",
"description": "Force Snapchat à utiliser les contrôles de volume du système"
},
"disable_telecom_framework": {
"name": "Désactiver le framework Telecom",
"description": "Empêche Snapchat d'utiliser le framework Telecom Android\nCela vous permet d'écouter de la musique pendant un appel"
},
"hide_active_music": {
"name": "Masquer la musique active",
"description": "Empêche Snapchat de savoir que vous écoutez de la musique\nCela vous permettra de prendre des snaps en utilisant les boutons de volume tout en écoutant de la musique"
},
"disable_snap_splitting": {
"name": "Désactiver le découpage de Snap",
"description": "Empêche les Snaps d'être divisés en plusieurs parties\nLes photos que vous envoyez se transformeront en vidéos"
}
}
},
@@ -1143,7 +1220,7 @@
},
"stealth_mode_indicator": {
"name": "Indicateur de Mode Furtif",
"description": "Ajoute un emoji \ud83d\udc7b à côté des conversations en mode furtif"
"description": "Ajoute un emoji 👻 à côté des conversations en mode furtif"
},
"edit_text_override": {
"name": "Remplacement de l'édition de texte",
@@ -1671,164 +1748,6 @@
}
}
},
"global": {
"name": "Global",
"description": "Ajuster les paramètres globaux de Snapchat",
"properties": {
"better_location": {
"name": "Meilleure localisation",
"description": "Améliore la localisation Snapchat",
"properties": {
"spoof_location": {
"name": "Simuler la localisation",
"description": "Simule votre localisation à un endroit spécifié"
},
"coordinates": {
"name": "Coordonnées",
"description": "Définir les coordonnées de la localisation simulée"
},
"walk_radius": {
"name": "Rayon de marche",
"description": "Marcher aléatoirement dans ce rayon (ft)"
},
"always_update_location": {
"name": "Toujours mettre à jour la localisation",
"description": "Forcer Snapchat à mettre à jour la localisation même si aucune donnée GPS n'est reçue"
},
"suspend_location_updates": {
"name": "Suspendre les mises à jour de localisation",
"description": "Empêche votre localisation d'être mise à jour"
},
"spoof_battery_level": {
"name": "Simuler le niveau de batterie",
"description": "Simule le niveau de batterie de votre appareil sur la carte\nLa valeur doit être entre 0 et 100"
},
"spoof_headphones": {
"name": "Simuler des écouteurs",
"description": "Simule le statut d'écoute de musique sur la carte"
},
"show_battery_level": {
"name": "Afficher le niveau de batterie",
"description": "Affiche le niveau de batterie de vos amis sur la carte"
}
}
},
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Active les fonctionnalités Snapchat Plus\nCertaines fonctionnalités côté serveur peuvent ne pas fonctionner"
},
"media_upload_quality": {
"name": "Qualité d'envoi média",
"description": "Remplace la qualité d'envoi des médias",
"properties": {
"force_video_upload_source_quality": {
"name": "Forcer la qualité source d'envoi vidéo",
"description": "Force Snapchat à utiliser la qualité source lors de l'envoi de vidéos\nVeuillez noter que cela pourrait ne pas retirer les métadonnées des médias"
},
"disable_image_compression": {
"name": "Désactiver la compression d'image",
"description": "Désactive la compression d'image lors de l'envoi de médias"
},
"custom_image_upload_format": {
"name": "Format d'envoi d'image personnalisé",
"description": "Définit un format d'envoi d'image personnalisé\nSélectionnez un format sans perte (comme PNG) pour la meilleure qualité"
}
}
},
"disable_confirmation_dialogs": {
"name": "Désactiver les dialogues de confirmation",
"description": "Confirme automatiquement les actions sélectionnées"
},
"auto_updater": {
"name": "Mise à jour auto",
"description": "Vérifie automatiquement les nouvelles mises à jour"
},
"update_settings": {
"name": "Paramètres de mise à jour",
"description": "Contrôler comment PurrfectSnap vérifie les mises à jour",
"properties": {
"auto_update_check": {
"name": "Vérification auto des mises à jour"
},
"update_check_frequency": {
"name": "Fréquence de vérification"
}
}
},
"ui_settings": {
"name": "Paramètres de l'interface",
"properties": {
"haptic_feedback": {
"name": "Retour haptique"
}
}
},
"disable_metrics": {
"name": "Désactiver les métriques",
"description": "Bloque l'envoi de données analytiques spécifiques à Snapchat"
},
"disable_story_sections": {
"name": "Désactiver les sections de Story",
"description": "Supprime des sections de la page Stories\nPeut nécessiter une actualisation pour fonctionner correctement"
},
"block_ads": {
"name": "Bloquer les pubs",
"description": "Empêche les publicités d'être affichées"
},
"disable_custom_tabs": {
"name": "Désactiver les onglets personnalisés",
"description": "Ouvre les liens dans les applications supportées plutôt que dans le navigateur Web"
},
"disable_permission_requests": {
"name": "Désactiver les demandes de permission",
"description": "Empêche Snapchat de demander des permissions spécifiques"
},
"disable_memories_snap_feed": {
"name": "Désactiver le flux de snaps memories",
"description": "Empêche Snapchat de montrer les memories récents quand vous swipez vers le haut dans la caméra"
},
"spotlight_comments_username": {
"name": "Nom d'utilisateur commentaires Spotlight",
"description": "Affiche le nom d'utilisateur de l'auteur dans les commentaires Spotlight"
},
"spotlight_comments_username_icon": {
"name": "Icône nom d'utilisateur commentaires Spotlight",
"description": "Choisir quelle icône est affichée à côté des noms d'utilisateur dans les commentaires Spotlight"
},
"bypass_video_length_restriction": {
"name": "Contourner les restrictions de longueur vidéo",
"description": "Simple : envoie une seule vidéo\nScindé : scinde les vidéos après édition"
},
"default_video_playback_rate": {
"name": "Vitesse de lecture vidéo par défaut",
"description": "Définit la vitesse par défaut pour la lecture des vidéos\nLa valeur doit être entre 0.1 et 4.0"
},
"video_playback_rate_slider": {
"name": "Curseur de vitesse de lecture vidéo",
"description": "Ajoute un curseur dans le menu contextuel opera pour changer la vitesse de lecture vidéo\nNote : Les changements s'appliquent seulement aux vidéos suivantes"
},
"disable_google_play_dialogs": {
"name": "Désactiver les dialogues Services Google Play",
"description": "Empêche les dialogues de disponibilité des Services Google Play d'être affichés"
},
"default_volume_controls": {
"name": "Contrôles de volume par défaut",
"description": "Force Snapchat à utiliser les contrôles de volume du système"
},
"disable_telecom_framework": {
"name": "Désactiver le framework Telecom",
"description": "Empêche Snapchat d'utiliser le framework Telecom Android\nCela vous permet d'écouter de la musique pendant un appel"
},
"hide_active_music": {
"name": "Masquer la musique active",
"description": "Empêche Snapchat de savoir que vous écoutez de la musique\nCela vous permettra de prendre des snaps en utilisant les boutons de volume tout en écoutant de la musique"
},
"disable_snap_splitting": {
"name": "Désactiver le découpage de Snap",
"description": "Empêche les Snaps d'être divisés en plusieurs parties\nLes photos que vous envoyez se transformeront en vidéos"
}
}
},
"rules": {
"name": "Règles",
"description": "Configurer les règles d'automatisation",
@@ -2110,7 +2029,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "Indicateur de message chiffré",
"description": "Ajoute un emoji \ud83d\udd12 à côté des messages chiffrés"
"description": "Ajoute un emoji 🔒 à côté des messages chiffrés"
},
"force_message_encryption": {
"name": "Forcer le chiffrement de message",
@@ -2190,6 +2109,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "Toujours clair",
"always_dark": "Toujours sombre",
@@ -2207,20 +2130,20 @@
"null": "Utiliser le niveau de batterie réel"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f Téléchargement auto",
"auto_save": "\ud83d\udcac Sauvegarde auto messages",
"unsaveable_messages": "\u2b07\ufe0f Messages insauvegardables",
"auto_open_snaps": "\ud83d\udcf7 Ouverture auto Snaps",
"stealth": "\ud83d\udc7b Mode Furtif",
"auto_reply": "\ud83d\udce8 Réponse auto",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f Suppression auto messages envoyés",
"mark_snaps_as_seen": "\ud83d\udc40 Marquer Snaps comme vus",
"mark_stories_as_seen_locally": "\ud83d\udc40 Marquer Stories comme vues localement",
"conversation_info": "\ud83d\udc64 Infos conversation",
"e2e_encryption": "\ud83d\udd12 Utiliser chiffrement E2E",
"message_logger": "\ud83d\udcdd Logger de messages",
"auto_read": "\u2705 Lecture auto",
"hide_typing_indicator": "\ud83d\ude48 Masquer indicateur de saisie"
"auto_download": "⬇️ Téléchargement auto",
"auto_save": "💬 Sauvegarde auto messages",
"unsaveable_messages": "⬇️ Messages insauvegardables",
"auto_open_snaps": "📷 Ouverture auto Snaps",
"stealth": "👻 Mode Furtif",
"auto_reply": "📨 Réponse auto",
"auto_delete_sent_messages": "🗑️ Suppression auto messages envoyés",
"mark_snaps_as_seen": "👀 Marquer Snaps comme vus",
"mark_stories_as_seen_locally": "👀 Marquer Stories comme vues localement",
"conversation_info": "👤 Infos conversation",
"e2e_encryption": "🔒 Utiliser chiffrement E2E",
"message_logger": "📝 Logger de messages",
"auto_read": " Lecture auto",
"hide_typing_indicator": "🙈 Masquer indicateur de saisie"
},
"schedule_scheduled_for": "Programmé pour {name} dans {time}",
"schedule_sending_in": "Envoi dans {time}",
@@ -2323,16 +2246,16 @@
"custom_android_id": {
"null": "Utiliser le vrai Android ID"
},
"add_friend_source_spoof": {
"added_by_username": "Par nom d'utilisateur",
"added_by_mention": "Par mention",
"added_by_group_chat": "Par groupe de chat",
"added_by_qr_code": "Par QR Code",
"added_by_community": "Par communauté",
"added_by_quick_add": "Par Ajout Rapide (haut risque de bannissement)",
"added_by_spotlight": "Par Spotlight",
"null": "Ne pas simuler la source"
},
"add_friend_source_spoof": {
"added_by_username": "Par nom d'utilisateur",
"added_by_mention": "Par mention",
"added_by_group_chat": "Par groupe de chat",
"added_by_qr_code": "Par QR Code",
"added_by_community": "Par communauté",
"added_by_quick_add": "Par Ajout Rapide (haut risque de bannissement)",
"added_by_spotlight": "Par Spotlight",
"null": "Ne pas simuler la source"
},
"custom_streaks_expiration_format": {
"null": "Défaut système"
},
@@ -2438,8 +2361,8 @@
},
"spotlight_comments_username_icon": {
"user": "Icône utilisateur",
"\ud83d\udc64": "Icône utilisateur",
"[\ud83d\udc64]": "Icône utilisateur",
"👤": "Icône utilisateur",
"[👤]": "Icône utilisateur",
"default": "Icône utilisateur",
"no_icon": "Pas d'icône"
},
@@ -2519,11 +2442,11 @@
"phone_calls": "Appels téléphoniques"
},
"message_indicators": {
"encryption_indicator": "Ajoute une icône \ud83d\udd12 à côté des messages qui ont été envoyés uniquement à vous",
"encryption_indicator": "Ajoute une icône 🔒 à côté des messages qui ont été envoyés uniquement à vous",
"platform_indicator": "Ajoute l'icône de la plateforme depuis laquelle un média a été envoyé (ex: Android, iOS, Web)",
"location_indicator": "Ajoute une icône \ud83d\udccd aux snaps quand ils ont été envoyés avec la localisation activée",
"location_indicator": "Ajoute une icône 📍 aux snaps quand ils ont été envoyés avec la localisation activée",
"ovf_editor_indicator": "Indique si un snap a été envoyé en utilisant l'Éditeur OVF",
"director_mode_indicator": "Ajoute une icône \u270f\ufe0f aux snaps quand ils ont été envoyés en utilisant le Mode Réalisateur, qui peut être utilisé pour envoyer des images de la galerie comme snaps"
"director_mode_indicator": "Ajoute une icône ✏️ aux snaps quand ils ont été envoyés en utilisant le Mode Réalisateur, qui peut être utilisé pour envoyer des images de la galerie comme snaps"
},
"auto_mark_as_read": {
"conversation_read": "Marquer la conversation comme lue lors de l'envoi d'un message",
@@ -2747,7 +2670,6 @@
"show_chat_edit_history": "Afficher Historique Modifs Chat",
"convert_message": "Convertir Message"
},
"chat_wallpaper_downloader": {
"download_button": "Télécharger Fond d'écran Chat"
},
@@ -3077,7 +2999,7 @@
"queue_cleared": "File effacée et statistiques réinitialisées",
"queue_cleared_title": "File effacée",
"queue_cleared_reset": "File Effacée & Réinitialisée",
"queue_cleared_feedback": "Effacé {count} snaps en file \u2022 Réinitialisé {processed} compteur traité",
"queue_cleared_feedback": "Effacé {count} snaps en file Réinitialisé {processed} compteur traité",
"queue_cleared_feedback_simple": "Réinitialisé {processed} compteur traité",
"unknown_sender": "Inconnu",
"unknown_user": "Utilisateur Inconnu",

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 Eternal द्वारा",
"version_title": "v{versionName} · Eternal द्वारा",
"update_title": "PurrfectSnap अपडेट",
"update_content": "संस्करण {version} उपलब्ध है!",
"update_button": "डाउनलोड",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "कोई कार्य नहीं",
"merge_button": "मर्ज करें",
"summary_active": "{active} सक्रिय \u00b7 {recent} हाल ही में",
"summary_idle": "निष्क्रिय \u00b7 {recent} हाल ही में",
"summary_active": "{active} सक्रिय · {recent} हाल ही में",
"summary_idle": "निष्क्रिय · {recent} हाल ही में",
"running_count": "{count} चल रहे हैं",
"clear_button_description": "कार्य साफ़ करें",
"failed_to_open_file": "फ़ाइल खोलने में विफल",
@@ -312,22 +312,22 @@
"remove_selected_tasks_confirm": "{count} कार्यों को हटाएँ?",
"remove_all_tasks_confirm": "सभी कार्यों को हटाएँ?"
},
"features": {
"disabled": "अक्षम (Disabled)",
"export_option": "एक्सपोर्ट",
"import_option": "इम्पोर्ट",
"reset_option": "रीसेट",
"config_export_success_toast": "कॉन्फ़िगरेशन सफलतापूर्वक एक्सपोर्ट किया गया",
"config_import_success_toast": "कॉन्फ़िगरेशन सफलतापूर्वक इम्पोर्ट किया गया",
"config_import_failure_toast": "कॉन्फ़िगरेशन इम्पोर्ट करने में विफल {error}",
"config_export_failure_toast": "कॉन्फ़िगरेशन एक्सपोर्ट करने में विफल {error}",
"saved_config_snackbar": "कॉन्फ़िगरेशन सहेजा गया",
"older_required": "इस फीचर को सही ढंग से काम करने के लिए स्नैपचैट v{version} या पुराने की आवश्यकता है",
"newer_required": "इस फीचर को सही ढंग से काम करने के लिए स्नैपचैट v{version} या नए की आवश्यकता है",
"search_button": "खोजें",
"clear_history": "खोज इतिहास साफ़ करें",
"subtitle": "फीचर्स खोजें और प्रबंधित करें"
},
"features": {
"disabled": "अक्षम (Disabled)",
"export_option": "एक्सपोर्ट",
"import_option": "इम्पोर्ट",
"reset_option": "रीसेट",
"config_export_success_toast": "कॉन्फ़िगरेशन सफलतापूर्वक एक्सपोर्ट किया गया",
"config_import_success_toast": "कॉन्फ़िगरेशन सफलतापूर्वक इम्पोर्ट किया गया",
"config_import_failure_toast": "कॉन्फ़िगरेशन इम्पोर्ट करने में विफल {error}",
"config_export_failure_toast": "कॉन्फ़िगरेशन एक्सपोर्ट करने में विफल {error}",
"saved_config_snackbar": "कॉन्फ़िगरेशन सहेजा गया",
"older_required": "इस फीचर को सही ढंग से काम करने के लिए स्नैपचैट v{version} या पुराने की आवश्यकता है",
"newer_required": "इस फीचर को सही ढंग से काम करने के लिए स्नैपचैट v{version} या नए की आवश्यकता है",
"search_button": "खोजें",
"clear_history": "खोज इतिहास साफ़ करें",
"subtitle": "फीचर्स खोजें और प्रबंधित करें"
},
"bypass_status": {
"active": "PurrAura सक्रिय",
"inactive": "PurrAura निष्क्रिय"
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "मित्र के पास टेलीपोर्ट करें",
"search_bar": "खोजें",
"no_friends_map": "मानचित्र पर कोई मित्र नहीं",
"no_friends_found": "कोई मित्र नहीं मिला"
"no_friends_found": "कोई मित्र नहीं मिला",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,166 @@
},
"features": {
"notices": {
"unstable": "\u26a0 अस्थिर (Unstable)",
"ban_risk": "\u26a0 इस फीचर से प्रतिबंध (Ban) लग सकता है",
"internal_behavior": "\u26a0 यह स्नैपचैट के आंतरिक व्यवहार को तोड़ सकता है"
},
"options": {
"empty": "खाली",
"walk_radius": {
"empty": "खाली"
},
"spoof_battery_level": {
"empty": "खाली"
},
"custom_android_id": {
"empty": "खाली"
},
"custom_streaks_expiration_format": {
"empty": "खाली"
},
"preferred_transcription_lang": {
"empty": "खाली"
},
"custom_emoji_font": {
"empty": "खाली"
},
"custom_shared_library": {
"empty": "खाली"
},
"custom_resolution": {
"empty": "खाली"
},
"custom_path_format": {
"empty": "खाली"
},
"custom_video_codec": {
"empty": "खाली"
},
"custom_audio_codec": {
"empty": "खाली"
},
"double_tap_chat_action_custom_emoji": {
"empty": "खाली"
},
"unsaveable_messages": {
"blacklist": "ब्लैकलिस्ट मोड",
"whitelist": "व्हाइटलिस्ट मोड",
"null": "अक्षम (Disabled)"
},
"update_check_frequency": {
"daily": "दैनिक",
"weekly": "साप्ताहिक",
"monthly": "मासिक"
}
"unstable": " अस्थिर (Unstable)",
"ban_risk": " इस फीचर से प्रतिबंध (Ban) लग सकता है",
"internal_behavior": " यह स्नैपचैट के आंतरिक व्यवहार को तोड़ सकता है"
},
"properties": {
"global": {
"name": "वैश्विक (Global)",
"description": "सामान्य मॉड्यूल प्राथमिकताएं और डिफ़ॉल्ट",
"description": "वैश्विक स्नैपचैट सेटिंग्स को ट्वीक करें",
"properties": {
"ui_settings": {
"name": "यूआई सेटिंग्स",
"description": "फीडबैक और टोस्ट व्यवहार को ट्यून करें",
"better_location": {
"name": "बेहतर लोकेशन",
"description": "स्नैपचैट लोकेशन को बढ़ाता है",
"properties": {
"haptic_feedback": {
"name": "हैप्टिक फीडबैक",
"description": "समर्थित इंटरैक्शन पर वाइब्रेट करें"
"spoof_location": {
"name": "स्पूफ लोकेशन",
"description": "आपकी लोकेशन को एक निर्दिष्ट स्थान पर स्पूफ करता है"
},
"use_system_toasts": {
"name": "सिस्टम टोस्ट का उपयोग करें",
"description": "इन-ऐप ओवरले के बजाय एंड्रॉइड टोस्ट दिखाएं"
"coordinates": {
"name": "निर्देशांक",
"description": "स्पूफ लोकेशन के निर्देशांक सेट करें"
},
"walk_radius": {
"name": "वॉक रेडियस",
"description": "इस दायरे (ft) के भीतर यादृच्छिक रूप से चलें"
},
"always_update_location": {
"name": "हमेशा लोकेशन अपडेट करें",
"description": "जीपीएस डेटा प्राप्त न होने पर भी स्नैपचैट को लोकेशन अपडेट करने के लिए बाध्य करें"
},
"suspend_location_updates": {
"name": "लोकेशन अपडेट निलंबित करें",
"description": "आपकी लोकेशन को अपडेट होने से रोकता है"
},
"spoof_battery_level": {
"name": "स्पूफ बैटरी लेवल",
"description": "मानचित्र पर आपके डिवाइस के बैटरी स्तर को स्पूफ करता है\nमान 0 और 100 के बीच होना चाहिए"
},
"spoof_headphones": {
"name": "स्पूफ हेडफ़ोन",
"description": "मानचित्र पर संगीत सुनने की स्थिति को स्पूफ करता है"
},
"show_battery_level": {
"name": "बैटरी लेवल दिखाएं",
"description": "मानचित्र पर आपके दोस्तों का बैटरी स्तर दिखाता है"
}
}
},
"update_settings": {
"name": "अपडेट सेटिंग्स",
"description": "स्वचालित अपडेट चेक को नियंत्रित करें",
"snapchat_plus": {
"name": "स्नैपचैट प्लस",
"description": "स्नैपचैट प्लस सुविधाओं को इनेबल करता है\nकुछ सर्वर-साइड सुविधाएं काम नहीं कर सकती हैं"
},
"media_upload_quality": {
"name": "मीडिया अपलोड गुणवत्ता",
"description": "मीडिया अपलोड गुणवत्ता को ओवरराइड करता है",
"properties": {
"auto_update_check": {
"name": "ऑटो अपडेट चेक",
"description": "स्वचालित रूप से नए बिल्ड की जांच करें"
"force_video_upload_source_quality": {
"name": "वीडियो अपलोड स्रोत गुणवत्ता बाध्य करें",
"description": "वीडियो अपलोड करते समय स्नैपचैट को स्रोत गुणवत्ता का उपयोग करने के लिए बाध्य करता है\nकृपया ध्यान दें कि यह मीडिया से मेटाडेटा नहीं हटा सकता है"
},
"update_check_frequency": {
"name": "अपडेट चेक आवृत्ति",
"description": "अपडेट के लिए कितनी बार जांच करें"
"disable_image_compression": {
"name": "छवि संपीड़न (Compression) डिसेबल करें",
"description": "मीडिया अपलोड करते समय छवि संपीड़न को डिसेबल करता है"
},
"custom_image_upload_format": {
"name": "कस्टम छवि अपलोड प्रारूप",
"description": "एक कस्टम छवि अपलोड प्रारूप सेट करता है\nसर्वोत्तम गुणवत्ता के लिए दोषरहित (lossless) प्रारूप (जैसे PNG) चुनें"
}
}
},
"disable_confirmation_dialogs": {
"name": "पुष्टिकरण संवाद डिसेबल करें",
"description": "चयनित क्रियाओं की स्वचालित रूप से पुष्टि करता है"
},
"auto_updater": {
"name": "ऑटो अपडेटर",
"description": "स्वचालित रूप से नए अपडेट की जांच करता है"
},
"update_settings": {
"name": "अपडेट सेटिंग्स",
"description": "नियंत्रित करें कि PurrfectSnap अपडेट की जांच कैसे करता है",
"properties": {
"auto_update_check": {
"name": "ऑटो अपडेट चेक"
},
"update_check_frequency": {
"name": "अपडेट चेक आवृत्ति"
}
}
},
"ui_settings": {
"name": "यूआई सेटिंग्स",
"properties": {
"haptic_feedback": {
"name": "हैप्टिक फीडबैक"
}
}
},
"disable_metrics": {
"name": "मेट्रिक्स डिसेबल करें",
"description": "विशिष्ट एनालिटिक डेटा को स्नैपचैट को भेजने से रोकता है"
},
"disable_story_sections": {
"name": "स्टोरी अनुभाग डिसेबल करें",
"description": "स्टोरीज पेज से अनुभाग हटाता है\nठीक से काम करने के लिए रिफ्रेश की आवश्यकता हो सकती है"
},
"block_ads": {
"name": "विज्ञापन ब्लॉक करें",
"description": "विज्ञापनों को प्रदर्शित होने से रोकता है"
},
"disable_custom_tabs": {
"name": "कस्टम टैब डिसेबल करें",
"description": "वेब ब्राउज़र के बजाय समर्थित अनुप्रयोगों में लिंक खोलता है"
},
"disable_permission_requests": {
"name": "अनुमति अनुरोध डिसेबल करें",
"description": "स्नैपचैट को विशिष्ट अनुमतियां मांगने से रोकता है"
},
"disable_memories_snap_feed": {
"name": "मेमोरीज स्नैप फ़ीड डिसेबल करें",
"description": "कैमरा में ऊपर स्वाइप करने पर स्नैपचैट को हाल की यादें (memories) दिखाने से रोकता है"
},
"spotlight_comments_username": {
"name": "स्पॉटलाइट टिप्पणियाँ उपयोगकर्ता नाम",
"description": "स्पॉटलाइट टिप्पणियों में लेखक का उपयोगकर्ता नाम दिखाता है"
},
"spotlight_comments_username_icon": {
"name": "स्पॉटलाइट टिप्पणियाँ उपयोगकर्ता नाम आइकन",
"description": "चुनें कि स्पॉटलाइट टिप्पणियों में उपयोगकर्ता नाम के आगे कौन सा आइकन प्रदर्शित किया जाए"
},
"bypass_video_length_restriction": {
"name": "वीडियो लंबाई प्रतिबंध बाईपास करें",
"description": "Single: एक एकल वीडियो भेजता है\nSplit: संपादन के बाद वीडियो विभाजित करता है"
},
"default_video_playback_rate": {
"name": "डिफ़ॉल्ट वीडियो प्लेबैक दर",
"description": "वीडियो के प्लेबैक के लिए डिफ़ॉल्ट गति सेट करता है\nमान 0.1 और 4.0 के बीच होना चाहिए"
},
"video_playback_rate_slider": {
"name": "वीडियो प्लेबैक दर स्लाइडर",
"description": "वीडियो प्लेबैक दर बदलने के लिए ओपेरा संदर्भ मेनू में एक स्लाइडर जोड़ता है\nनोट: परिवर्तन केवल बाद के वीडियो पर लागू होते हैं"
},
"disable_google_play_dialogs": {
"name": "Google Play Services संवाद डिसेबल करें",
"description": "Google Play Services उपलब्धता संवादों को दिखाए जाने से रोकें"
},
"default_volume_controls": {
"name": "डिफ़ॉल्ट वॉल्यूम नियंत्रण",
"description": "स्नैपचैट को सिस्टम वॉल्यूम नियंत्रण का उपयोग करने के लिए बाध्य करता है"
},
"disable_telecom_framework": {
"name": "टेलीकॉम फ्रेमवर्क डिसेबल करें",
"description": "स्नैपचैट को एंड्रॉइड टेलीकॉम फ्रेमवर्क का उपयोग करने से रोकता है\nयह आपको कॉल पर रहते हुए संगीत सुनने की अनुमति देता है"
},
"hide_active_music": {
"name": "सक्रिय संगीत छिपाएं",
"description": "स्नैपचैट को यह जानने से रोकता है कि आप संगीत सुन रहे हैं\nयह आपको संगीत सुनते समय वॉल्यूम बटन को नियंत्रित करके स्नैप लेने की अनुमति देगा"
},
"disable_snap_splitting": {
"name": "स्नैप विभाजन डिसेबल करें",
"description": "स्नैप्स को कई भागों में विभाजित होने से रोकता है\nजो तस्वीरें आप भेजेंगे वे वीडियो में बदल जाएंगी"
}
}
},
@@ -1143,7 +1220,7 @@
},
"stealth_mode_indicator": {
"name": "स्टेल्थ मोड संकेतक",
"description": "स्टेल्थ मोड में वार्तालापों के बगल में एक \ud83d\udc7b इमोजी जोड़ता है"
"description": "स्टेल्थ मोड में वार्तालापों के बगल में एक 👻 इमोजी जोड़ता है"
},
"edit_text_override": {
"name": "एडिट टेक्स्ट ओवरराइड",
@@ -1671,164 +1748,6 @@
}
}
},
"global": {
"name": "वैश्विक (Global)",
"description": "वैश्विक स्नैपचैट सेटिंग्स को ट्वीक करें",
"properties": {
"better_location": {
"name": "बेहतर लोकेशन",
"description": "स्नैपचैट लोकेशन को बढ़ाता है",
"properties": {
"spoof_location": {
"name": "स्पूफ लोकेशन",
"description": "आपकी लोकेशन को एक निर्दिष्ट स्थान पर स्पूफ करता है"
},
"coordinates": {
"name": "निर्देशांक",
"description": "स्पूफ लोकेशन के निर्देशांक सेट करें"
},
"walk_radius": {
"name": "वॉक रेडियस",
"description": "इस दायरे (ft) के भीतर यादृच्छिक रूप से चलें"
},
"always_update_location": {
"name": "हमेशा लोकेशन अपडेट करें",
"description": "जीपीएस डेटा प्राप्त न होने पर भी स्नैपचैट को लोकेशन अपडेट करने के लिए बाध्य करें"
},
"suspend_location_updates": {
"name": "लोकेशन अपडेट निलंबित करें",
"description": "आपकी लोकेशन को अपडेट होने से रोकता है"
},
"spoof_battery_level": {
"name": "स्पूफ बैटरी लेवल",
"description": "मानचित्र पर आपके डिवाइस के बैटरी स्तर को स्पूफ करता है\nमान 0 और 100 के बीच होना चाहिए"
},
"spoof_headphones": {
"name": "स्पूफ हेडफ़ोन",
"description": "मानचित्र पर संगीत सुनने की स्थिति को स्पूफ करता है"
},
"show_battery_level": {
"name": "बैटरी लेवल दिखाएं",
"description": "मानचित्र पर आपके दोस्तों का बैटरी स्तर दिखाता है"
}
}
},
"snapchat_plus": {
"name": "स्नैपचैट प्लस",
"description": "स्नैपचैट प्लस सुविधाओं को इनेबल करता है\nकुछ सर्वर-साइड सुविधाएं काम नहीं कर सकती हैं"
},
"media_upload_quality": {
"name": "मीडिया अपलोड गुणवत्ता",
"description": "मीडिया अपलोड गुणवत्ता को ओवरराइड करता है",
"properties": {
"force_video_upload_source_quality": {
"name": "वीडियो अपलोड स्रोत गुणवत्ता बाध्य करें",
"description": "वीडियो अपलोड करते समय स्नैपचैट को स्रोत गुणवत्ता का उपयोग करने के लिए बाध्य करता है\nकृपया ध्यान दें कि यह मीडिया से मेटाडेटा नहीं हटा सकता है"
},
"disable_image_compression": {
"name": "छवि संपीड़न (Compression) डिसेबल करें",
"description": "मीडिया अपलोड करते समय छवि संपीड़न को डिसेबल करता है"
},
"custom_image_upload_format": {
"name": "कस्टम छवि अपलोड प्रारूप",
"description": "एक कस्टम छवि अपलोड प्रारूप सेट करता है\nसर्वोत्तम गुणवत्ता के लिए दोषरहित (lossless) प्रारूप (जैसे PNG) चुनें"
}
}
},
"disable_confirmation_dialogs": {
"name": "पुष्टिकरण संवाद डिसेबल करें",
"description": "चयनित क्रियाओं की स्वचालित रूप से पुष्टि करता है"
},
"auto_updater": {
"name": "ऑटो अपडेटर",
"description": "स्वचालित रूप से नए अपडेट की जांच करता है"
},
"update_settings": {
"name": "अपडेट सेटिंग्स",
"description": "नियंत्रित करें कि PurrfectSnap अपडेट की जांच कैसे करता है",
"properties": {
"auto_update_check": {
"name": "ऑटो अपडेट चेक"
},
"update_check_frequency": {
"name": "अपडेट चेक आवृत्ति"
}
}
},
"ui_settings": {
"name": "यूआई सेटिंग्स",
"properties": {
"haptic_feedback": {
"name": "हैप्टिक फीडबैक"
}
}
},
"disable_metrics": {
"name": "मेट्रिक्स डिसेबल करें",
"description": "विशिष्ट एनालिटिक डेटा को स्नैपचैट को भेजने से रोकता है"
},
"disable_story_sections": {
"name": "स्टोरी अनुभाग डिसेबल करें",
"description": "स्टोरीज पेज से अनुभाग हटाता है\nठीक से काम करने के लिए रिफ्रेश की आवश्यकता हो सकती है"
},
"block_ads": {
"name": "विज्ञापन ब्लॉक करें",
"description": "विज्ञापनों को प्रदर्शित होने से रोकता है"
},
"disable_custom_tabs": {
"name": "कस्टम टैब डिसेबल करें",
"description": "वेब ब्राउज़र के बजाय समर्थित अनुप्रयोगों में लिंक खोलता है"
},
"disable_permission_requests": {
"name": "अनुमति अनुरोध डिसेबल करें",
"description": "स्नैपचैट को विशिष्ट अनुमतियां मांगने से रोकता है"
},
"disable_memories_snap_feed": {
"name": "मेमोरीज स्नैप फ़ीड डिसेबल करें",
"description": "कैमरा में ऊपर स्वाइप करने पर स्नैपचैट को हाल की यादें (memories) दिखाने से रोकता है"
},
"spotlight_comments_username": {
"name": "स्पॉटलाइट टिप्पणियाँ उपयोगकर्ता नाम",
"description": "स्पॉटलाइट टिप्पणियों में लेखक का उपयोगकर्ता नाम दिखाता है"
},
"spotlight_comments_username_icon": {
"name": "स्पॉटलाइट टिप्पणियाँ उपयोगकर्ता नाम आइकन",
"description": "चुनें कि स्पॉटलाइट टिप्पणियों में उपयोगकर्ता नाम के आगे कौन सा आइकन प्रदर्शित किया जाए"
},
"bypass_video_length_restriction": {
"name": "वीडियो लंबाई प्रतिबंध बाईपास करें",
"description": "Single: एक एकल वीडियो भेजता है\nSplit: संपादन के बाद वीडियो विभाजित करता है"
},
"default_video_playback_rate": {
"name": "डिफ़ॉल्ट वीडियो प्लेबैक दर",
"description": "वीडियो के प्लेबैक के लिए डिफ़ॉल्ट गति सेट करता है\nमान 0.1 और 4.0 के बीच होना चाहिए"
},
"video_playback_rate_slider": {
"name": "वीडियो प्लेबैक दर स्लाइडर",
"description": "वीडियो प्लेबैक दर बदलने के लिए ओपेरा संदर्भ मेनू में एक स्लाइडर जोड़ता है\nनोट: परिवर्तन केवल बाद के वीडियो पर लागू होते हैं"
},
"disable_google_play_dialogs": {
"name": "Google Play Services संवाद डिसेबल करें",
"description": "Google Play Services उपलब्धता संवादों को दिखाए जाने से रोकें"
},
"default_volume_controls": {
"name": "डिफ़ॉल्ट वॉल्यूम नियंत्रण",
"description": "स्नैपचैट को सिस्टम वॉल्यूम नियंत्रण का उपयोग करने के लिए बाध्य करता है"
},
"disable_telecom_framework": {
"name": "टेलीकॉम फ्रेमवर्क डिसेबल करें",
"description": "स्नैपचैट को एंड्रॉइड टेलीकॉम फ्रेमवर्क का उपयोग करने से रोकता है\nयह आपको कॉल पर रहते हुए संगीत सुनने की अनुमति देता है"
},
"hide_active_music": {
"name": "सक्रिय संगीत छिपाएं",
"description": "स्नैपचैट को यह जानने से रोकता है कि आप संगीत सुन रहे हैं\nयह आपको संगीत सुनते समय वॉल्यूम बटन को नियंत्रित करके स्नैप लेने की अनुमति देगा"
},
"disable_snap_splitting": {
"name": "स्नैप विभाजन डिसेबल करें",
"description": "स्नैप्स को कई भागों में विभाजित होने से रोकता है\nजो तस्वीरें आप भेजेंगे वे वीडियो में बदल जाएंगी"
}
}
},
"rules": {
"name": "नियम",
"description": "स्वचालन नियम कॉन्फ़िगर करें",
@@ -2110,7 +2029,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "एन्क्रिप्टेड संदेश संकेतक",
"description": "एन्क्रिप्टेड संदेशों के बगल में एक \ud83d\udd12 इमोजी जोड़ता है"
"description": "एन्क्रिप्टेड संदेशों के बगल में एक 🔒 इमोजी जोड़ता है"
},
"force_message_encryption": {
"name": "संदेश एन्क्रिप्शन बाध्य करें",
@@ -2190,6 +2109,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "हमेशा लाइट",
"always_dark": "हमेशा डार्क",
@@ -2207,20 +2130,20 @@
"null": "वास्तविक बैटरी स्तर का उपयोग करें"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f ऑटो डाउनलोड",
"auto_save": "\ud83d\udcac ऑटो सेव मैसेज",
"unsaveable_messages": "\u2b07\ufe0f न सहेजने योग्य संदेश",
"auto_open_snaps": "\ud83d\udcf7 ऑटो ओपन स्नैप्स",
"stealth": "\ud83d\udc7b स्टेल्थ मोड",
"auto_reply": "\ud83d\udce8 ऑटो रिप्लाई",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f भेजे गए संदेशों को ऑटो डिलीट करें",
"mark_snaps_as_seen": "\ud83d\udc40 स्नैप्स को 'देखा गया' चिह्नित करें",
"mark_stories_as_seen_locally": "\ud83d\udc40 स्टोरीज को स्थानीय रूप से 'देखा गया' चिह्नित करें",
"conversation_info": "\ud83d\udc64 वार्तालाप जानकारी",
"e2e_encryption": "\ud83d\udd12 E2E एन्क्रिप्शन का उपयोग करें",
"message_logger": "\ud83d\udcdd मैसेज लॉगर",
"auto_read": "\u2705 ऑटो रीड",
"hide_typing_indicator": "\ud83d\ude48 टाइपिंग संकेतक छिपाएं"
"auto_download": "⬇️ ऑटो डाउनलोड",
"auto_save": "💬 ऑटो सेव मैसेज",
"unsaveable_messages": "⬇️ न सहेजने योग्य संदेश",
"auto_open_snaps": "📷 ऑटो ओपन स्नैप्स",
"stealth": "👻 स्टेल्थ मोड",
"auto_reply": "📨 ऑटो रिप्लाई",
"auto_delete_sent_messages": "🗑️ भेजे गए संदेशों को ऑटो डिलीट करें",
"mark_snaps_as_seen": "👀 स्नैप्स को 'देखा गया' चिह्नित करें",
"mark_stories_as_seen_locally": "👀 स्टोरीज को स्थानीय रूप से 'देखा गया' चिह्नित करें",
"conversation_info": "👤 वार्तालाप जानकारी",
"e2e_encryption": "🔒 E2E एन्क्रिप्शन का उपयोग करें",
"message_logger": "📝 मैसेज लॉगर",
"auto_read": " ऑटो रीड",
"hide_typing_indicator": "🙈 टाइपिंग संकेतक छिपाएं"
},
"schedule_scheduled_for": "{name} के लिए {time} में निर्धारित है",
"schedule_sending_in": "{time} में भेज रहा है",
@@ -2323,16 +2246,16 @@
"custom_android_id": {
"null": "वास्तविक Android ID का उपयोग करें"
},
"add_friend_source_spoof": {
"added_by_username": "उपयोगकर्ता नाम द्वारा",
"added_by_mention": "उल्लेख द्वारा",
"added_by_group_chat": "समूह चैट द्वारा",
"added_by_qr_code": "QR कोड द्वारा",
"added_by_community": "समुदाय द्वारा",
"added_by_quick_add": "क्विक ऐड द्वारा (प्रतिबंधित होने का उच्च जोखिम)",
"added_by_spotlight": "स्पॉटलाइट द्वारा",
"null": "स्रोत स्पूफ न करें"
},
"add_friend_source_spoof": {
"added_by_username": "उपयोगकर्ता नाम द्वारा",
"added_by_mention": "उल्लेख द्वारा",
"added_by_group_chat": "समूह चैट द्वारा",
"added_by_qr_code": "QR कोड द्वारा",
"added_by_community": "समुदाय द्वारा",
"added_by_quick_add": "क्विक ऐड द्वारा (प्रतिबंधित होने का उच्च जोखिम)",
"added_by_spotlight": "स्पॉटलाइट द्वारा",
"null": "स्रोत स्पूफ न करें"
},
"custom_streaks_expiration_format": {
"null": "सिस्टम डिफ़ॉल्ट"
},
@@ -2439,8 +2362,8 @@
},
"spotlight_comments_username_icon": {
"user": "उपयोगकर्ता नाम आइकन",
"\ud83d\udc64": "उपयोगकर्ता नाम आइकन",
"[\ud83d\udc64]": "उपयोगकर्ता नाम आइकन",
"👤": "उपयोगकर्ता नाम आइकन",
"[👤]": "उपयोगकर्ता नाम आइकन",
"default": "उपयोगकर्ता नाम आइकन",
"no_icon": "कोई आइकन नहीं"
},
@@ -2520,11 +2443,11 @@
"phone_calls": "फोन कॉल"
},
"message_indicators": {
"encryption_indicator": "उन संदेशों के बगल में एक \ud83d\udd12 आइकन जोड़ता है जो केवल आपको भेजे गए हैं",
"encryption_indicator": "उन संदेशों के बगल में एक 🔒 आइकन जोड़ता है जो केवल आपको भेजे गए हैं",
"platform_indicator": "उस प्लेटफ़ॉर्म का आइकन जोड़ता है जिससे मीडिया भेजा गया था (जैसे Android, iOS, Web)",
"location_indicator": "स्नैप्स के बगल में एक \ud83d\udccd आइकन जोड़ता है जब उन्हें लोकेशन इनेबल के साथ भेजा गया हो",
"location_indicator": "स्नैप्स के बगल में एक 📍 आइकन जोड़ता है जब उन्हें लोकेशन इनेबल के साथ भेजा गया हो",
"ovf_editor_indicator": "इंगित करता है कि क्या स्नैप OVF संपादक का उपयोग करके भेजा गया है",
"director_mode_indicator": "स्नैप्स के बगल में एक \u270f\ufe0f आइकन जोड़ता है जब उन्हें डायरेक्टर मोड का उपयोग करके भेजा गया हो, जिसका उपयोग गैलरी छवियों को स्नैप के रूप में भेजने के लिए किया जा सकता है"
"director_mode_indicator": "स्नैप्स के बगल में एक ✏️ आइकन जोड़ता है जब उन्हें डायरेक्टर मोड का उपयोग करके भेजा गया हो, जिसका उपयोग गैलरी छवियों को स्नैप के रूप में भेजने के लिए किया जा सकता है"
},
"auto_mark_as_read": {
"conversation_read": "संदेश भेजते समय वार्तालाप को 'पढ़ा गया' के रूप में चिह्नित करें",
@@ -2748,7 +2671,6 @@
"show_chat_edit_history": "चैट संपादन इतिहास दिखाएं",
"convert_message": "संदेश परिवर्तित करें"
},
"chat_wallpaper_downloader": {
"download_button": "चैट वॉलपेपर डाउनलोड करें"
},
@@ -3078,7 +3000,7 @@
"queue_cleared": "कतार साफ़ की गई और आंकड़े रीसेट किए गए",
"queue_cleared_title": "कतार साफ़ की गई",
"queue_cleared_reset": "कतार साफ़ और रीसेट",
"queue_cleared_feedback": "{count} कतारबद्ध स्नैप साफ़ किए \u2022 {processed} संसाधित गिनती रीसेट की",
"queue_cleared_feedback": "{count} कतारबद्ध स्नैप साफ़ किए {processed} संसाधित गिनती रीसेट की",
"queue_cleared_feedback_simple": "{processed} संसाधित गिनती रीसेट की",
"unknown_sender": "अज्ञात",
"unknown_user": "अज्ञात उपयोगकर्ता",

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 készítette: Eternal",
"version_title": "v{versionName} · készítette: Eternal",
"update_title": "PurrfectSnap Frissítés",
"update_content": "A(z) {version} verzió elérhető!",
"update_button": "Letöltés",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "Nincsenek feladatok",
"merge_button": "Összevonás",
"summary_active": "{active} aktív \u00b7 {recent} legutóbbi",
"summary_idle": "Tétlen \u00b7 {recent} legutóbbi",
"summary_active": "{active} aktív · {recent} legutóbbi",
"summary_idle": "Tétlen · {recent} legutóbbi",
"running_count": "{count} fut",
"clear_button_description": "Feladatok törlése",
"failed_to_open_file": "Fájl megnyitása sikertelen",
@@ -312,22 +312,22 @@
"remove_selected_tasks_confirm": "{count} feladat eltávolítása?",
"remove_all_tasks_confirm": "Összes feladat eltávolítása?"
},
"features": {
"disabled": "Letiltva",
"export_option": "Exportálás",
"import_option": "Importálás",
"reset_option": "Visszaállítás",
"config_export_success_toast": "Konfiguráció exportálása sikeres",
"config_import_success_toast": "Konfiguráció importálása sikeres",
"config_import_failure_toast": "Konfiguráció importálása sikertelen: {error}",
"config_export_failure_toast": "Konfiguráció exportálása sikertelen: {error}",
"saved_config_snackbar": "Konfiguráció mentve",
"older_required": "Ennek a funkciónak a helyes működéséhez Snapchat v{version} vagy régebbi verzió szükséges",
"newer_required": "Ennek a funkciónak a helyes működéséhez Snapchat v{version} vagy újabb verzió szükséges",
"search_button": "Keresés",
"clear_history": "Keresési előzmények törlése",
"subtitle": "Funkciók keresése és kezelése"
},
"features": {
"disabled": "Letiltva",
"export_option": "Exportálás",
"import_option": "Importálás",
"reset_option": "Visszaállítás",
"config_export_success_toast": "Konfiguráció exportálása sikeres",
"config_import_success_toast": "Konfiguráció importálása sikeres",
"config_import_failure_toast": "Konfiguráció importálása sikertelen: {error}",
"config_export_failure_toast": "Konfiguráció exportálása sikertelen: {error}",
"saved_config_snackbar": "Konfiguráció mentve",
"older_required": "Ennek a funkciónak a helyes működéséhez Snapchat v{version} vagy régebbi verzió szükséges",
"newer_required": "Ennek a funkciónak a helyes működéséhez Snapchat v{version} vagy újabb verzió szükséges",
"search_button": "Keresés",
"clear_history": "Keresési előzmények törlése",
"subtitle": "Funkciók keresése és kezelése"
},
"bypass_status": {
"active": "PurrAura Aktív",
"inactive": "PurrAura Inaktív"
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "Teleportálás baráthoz",
"search_bar": "Keresés",
"no_friends_map": "Nincsenek barátok a térképen",
"no_friends_found": "Nem található barát"
"no_friends_found": "Nem található barát",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,166 @@
},
"features": {
"notices": {
"unstable": "\u26a0 Instabil",
"ban_risk": "\u26a0 Ez a funkció kitiltást okozhat",
"internal_behavior": "\u26a0 Ez megtörheti a Snapchat belső működését"
},
"options": {
"empty": "Üres",
"walk_radius": {
"empty": "Üres"
},
"spoof_battery_level": {
"empty": "Üres"
},
"custom_android_id": {
"empty": "Üres"
},
"custom_streaks_expiration_format": {
"empty": "Üres"
},
"preferred_transcription_lang": {
"empty": "Üres"
},
"custom_emoji_font": {
"empty": "Üres"
},
"custom_shared_library": {
"empty": "Üres"
},
"custom_resolution": {
"empty": "Üres"
},
"custom_path_format": {
"empty": "Üres"
},
"custom_video_codec": {
"empty": "Üres"
},
"custom_audio_codec": {
"empty": "Üres"
},
"double_tap_chat_action_custom_emoji": {
"empty": "Üres"
},
"unsaveable_messages": {
"blacklist": "Tiltólista mód",
"whitelist": "Engedélyezési lista mód",
"null": "Letiltva"
},
"update_check_frequency": {
"daily": "Naponta",
"weekly": "Hetente",
"monthly": "Havonta"
}
"unstable": " Instabil",
"ban_risk": " Ez a funkció kitiltást okozhat",
"internal_behavior": " Ez megtörheti a Snapchat belső működését"
},
"properties": {
"global": {
"name": "Globális",
"description": "Általános modul beállítások és alapértelmezések",
"description": "Globális Snapchat beállítások finomhangolása",
"properties": {
"ui_settings": {
"name": "Felület beállításai",
"description": "Visszajelzések és üzenetek hangolása",
"better_location": {
"name": "Jobb Helymeghatározás",
"description": "Javítja a Snapchat Helymeghatározását",
"properties": {
"haptic_feedback": {
"name": "Haptikus visszajelzés",
"description": "Rezgés a támogatott interakcióknál"
"spoof_location": {
"name": "Helyszín hamisítása",
"description": "Egy adott helyre hamisítja a tartózkodási helyedet"
},
"use_system_toasts": {
"name": "Rendszerüzenetek használata",
"description": "Androidos rendszerüzenetek (toast) megjelenítése az alkalmazáson belüli fedvények helyett"
"coordinates": {
"name": "Koordináták",
"description": "Állítsd be a hamisított hely koordinátáit"
},
"walk_radius": {
"name": "Séta sugár",
"description": "Véletlenszerű séta ezen a sugáron belül (láb)"
},
"always_update_location": {
"name": "Helyszín mindig frissítése",
"description": "Kényszeríti a Snapchatet a helyszín frissítésére még akkor is, ha nincs GPS adat"
},
"suspend_location_updates": {
"name": "Helyfrissítések felfüggesztése",
"description": "Megakadályozza a helyzeted frissítését"
},
"spoof_battery_level": {
"name": "Akkumulátorszint hamisítása",
"description": "Meghamisítja az eszközöd akkumulátorszintjét a térképen\nAz értéknek 0 és 100 között kell lennie"
},
"spoof_headphones": {
"name": "Fejhallgató hamisítása",
"description": "Meghamisítja a zenehallgatás állapotát a térképen"
},
"show_battery_level": {
"name": "Akkumulátorszint mutatása",
"description": "Mutatja a barátaid akkumulátorszintjét a térképen"
}
}
},
"update_settings": {
"name": "Frissítési beállítások",
"description": "Automatikus frissítés-ellenőrzés vezérlése",
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Engedélyezi a Snapchat Plus funkciókat\nNéhány szerveroldali funkció nem feltétlenül működik"
},
"media_upload_quality": {
"name": "Média feltöltési minőség",
"description": "Felülbírálja a média feltöltési minőségét",
"properties": {
"auto_update_check": {
"name": "Automatikus frissítés keresés",
"description": "Automatikusan keresi az új buildeket"
"force_video_upload_source_quality": {
"name": "Videó feltöltés forrásminőség kényszerítése",
"description": "Kényszeríti a Snapchatet a forrásminőség használatára videók feltöltésekor\nKérlek vedd figyelembe, hogy ez nem feltétlenül távolítja el a metaadatokat a médiából"
},
"update_check_frequency": {
"name": "Frissítés gyakorisága",
"description": "Milyen gyakran keressen frissítéseket"
"disable_image_compression": {
"name": "Képtömörítés letiltása",
"description": "Letiltja a képtömörítést média feltöltésekor"
},
"custom_image_upload_format": {
"name": "Egyéni képfeltöltési formátum",
"description": "Beállít egy egyéni képfeltöltési formátumot\nVálassz veszteségmentes formátumot (mint a PNG) a legjobb minőséghez"
}
}
},
"disable_confirmation_dialogs": {
"name": "Megerősítő ablakok letiltása",
"description": "Automatikusan megerősíti a kiválasztott műveleteket"
},
"auto_updater": {
"name": "Automatikus frissítő",
"description": "Automatikusan keresi az új frissítéseket"
},
"update_settings": {
"name": "Frissítési beállítások",
"description": "A PurrfectSnap frissítés-ellenőrzésének vezérlése",
"properties": {
"auto_update_check": {
"name": "Automatikus frissítés keresés"
},
"update_check_frequency": {
"name": "Frissítés gyakorisága"
}
}
},
"ui_settings": {
"name": "Felület beállításai",
"properties": {
"haptic_feedback": {
"name": "Haptikus visszajelzés"
}
}
},
"disable_metrics": {
"name": "Metrikák letiltása",
"description": "Blokkolja bizonyos analitikai adatok küldését a Snapchatnek"
},
"disable_story_sections": {
"name": "Sztori szekciók letiltása",
"description": "Eltávolít szekciókat a Sztorik oldalról\nLehetséges, hogy frissítés szükséges a megfelelő működéshez"
},
"block_ads": {
"name": "Hirdetések blokkolása",
"description": "Megakadályozza a hirdetések megjelenítését"
},
"disable_custom_tabs": {
"name": "Egyéni lapok letiltása",
"description": "A linkeket a támogatott alkalmazásokban nyitja meg a Web Böngésző helyett"
},
"disable_permission_requests": {
"name": "Engedélykérések letiltása",
"description": "Megakadályozza, hogy a Snapchat specifikus engedélyeket kérjen"
},
"disable_memories_snap_feed": {
"name": "Emlékek snap feed letiltása",
"description": "Megakadályozza, hogy a Snapchat megjelenítse a legutóbbi emlékeket, amikor felfelé húzol a kamerában"
},
"spotlight_comments_username": {
"name": "Spotlight kommentek felhasználónév",
"description": "Megjeleníti a szerző felhasználónevét a Spotlight kommentekben"
},
"spotlight_comments_username_icon": {
"name": "Spotlight kommentek felhasználónév ikon",
"description": "Válaszd ki, melyik ikon jelenjen meg a felhasználónevek mellett a Spotlight kommentekben"
},
"bypass_video_length_restriction": {
"name": "Videó hossz korlátozások megkerülése",
"description": "Single: egyetlen videót küld\nSplit: szerkesztés után szétvágja a videókat"
},
"default_video_playback_rate": {
"name": "Alapértelmezett videó lejátszási sebesség",
"description": "Beállítja a videók lejátszásának alapértelmezett sebességét\nAz értéknek 0.1 és 4.0 között kell lennie"
},
"video_playback_rate_slider": {
"name": "Videó lejátszási sebesség csúszka",
"description": "Hozzáad egy csúszkát az opera helyi menühöz a videó lejátszási sebességének módosítására\nMegjegyzés: A változtatások csak a következő videókra vonatkoznak"
},
"disable_google_play_dialogs": {
"name": "Google Play Szolgáltatások ablakok letiltása",
"description": "Megakadályozza a Google Play Szolgáltatások elérhetőségére vonatkozó ablakok megjelenését"
},
"default_volume_controls": {
"name": "Alapértelmezett hangerőszabályzók",
"description": "Kényszeríti a Snapchatet a rendszer hangerőszabályzóinak használatára"
},
"disable_telecom_framework": {
"name": "Telecom Framework letiltása",
"description": "Megakadályozza, hogy a Snapchat az Android Telecom keretrendszert használja\nEz lehetővé teszi, hogy zenét hallgass hívás közben"
},
"hide_active_music": {
"name": "Aktív zene elrejtése",
"description": "Megakadályozza, hogy a Snapchat megtudja, hogy zenét hallgatsz\nEz lehetővé teszi, hogy snapeket készíts a hangerőgombok használatával zenehallgatás közben"
},
"disable_snap_splitting": {
"name": "Snap darabolás letiltása",
"description": "Megakadályozza, hogy a Snapek több részre legyenek osztva\nAz elküldött képek videóvá alakulnak"
}
}
},
@@ -1143,7 +1220,7 @@
},
"stealth_mode_indicator": {
"name": "Lopakodó mód jelző",
"description": "Hozzáad egy \ud83d\udc7b emojit a Lopakodó módban lévő beszélgetések mellé"
"description": "Hozzáad egy 👻 emojit a Lopakodó módban lévő beszélgetések mellé"
},
"edit_text_override": {
"name": "Szövegszerkesztés felülbírálása",
@@ -1671,164 +1748,6 @@
}
}
},
"global": {
"name": "Globális",
"description": "Globális Snapchat beállítások finomhangolása",
"properties": {
"better_location": {
"name": "Jobb Helymeghatározás",
"description": "Javítja a Snapchat Helymeghatározását",
"properties": {
"spoof_location": {
"name": "Helyszín hamisítása",
"description": "Egy adott helyre hamisítja a tartózkodási helyedet"
},
"coordinates": {
"name": "Koordináták",
"description": "Állítsd be a hamisított hely koordinátáit"
},
"walk_radius": {
"name": "Séta sugár",
"description": "Véletlenszerű séta ezen a sugáron belül (láb)"
},
"always_update_location": {
"name": "Helyszín mindig frissítése",
"description": "Kényszeríti a Snapchatet a helyszín frissítésére még akkor is, ha nincs GPS adat"
},
"suspend_location_updates": {
"name": "Helyfrissítések felfüggesztése",
"description": "Megakadályozza a helyzeted frissítését"
},
"spoof_battery_level": {
"name": "Akkumulátorszint hamisítása",
"description": "Meghamisítja az eszközöd akkumulátorszintjét a térképen\nAz értéknek 0 és 100 között kell lennie"
},
"spoof_headphones": {
"name": "Fejhallgató hamisítása",
"description": "Meghamisítja a zenehallgatás állapotát a térképen"
},
"show_battery_level": {
"name": "Akkumulátorszint mutatása",
"description": "Mutatja a barátaid akkumulátorszintjét a térképen"
}
}
},
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Engedélyezi a Snapchat Plus funkciókat\nNéhány szerveroldali funkció nem feltétlenül működik"
},
"media_upload_quality": {
"name": "Média feltöltési minőség",
"description": "Felülbírálja a média feltöltési minőségét",
"properties": {
"force_video_upload_source_quality": {
"name": "Videó feltöltés forrásminőség kényszerítése",
"description": "Kényszeríti a Snapchatet a forrásminőség használatára videók feltöltésekor\nKérlek vedd figyelembe, hogy ez nem feltétlenül távolítja el a metaadatokat a médiából"
},
"disable_image_compression": {
"name": "Képtömörítés letiltása",
"description": "Letiltja a képtömörítést média feltöltésekor"
},
"custom_image_upload_format": {
"name": "Egyéni képfeltöltési formátum",
"description": "Beállít egy egyéni képfeltöltési formátumot\nVálassz veszteségmentes formátumot (mint a PNG) a legjobb minőséghez"
}
}
},
"disable_confirmation_dialogs": {
"name": "Megerősítő ablakok letiltása",
"description": "Automatikusan megerősíti a kiválasztott műveleteket"
},
"auto_updater": {
"name": "Automatikus frissítő",
"description": "Automatikusan keresi az új frissítéseket"
},
"update_settings": {
"name": "Frissítési beállítások",
"description": "A PurrfectSnap frissítés-ellenőrzésének vezérlése",
"properties": {
"auto_update_check": {
"name": "Automatikus frissítés keresés"
},
"update_check_frequency": {
"name": "Frissítés gyakorisága"
}
}
},
"ui_settings": {
"name": "Felület beállításai",
"properties": {
"haptic_feedback": {
"name": "Haptikus visszajelzés"
}
}
},
"disable_metrics": {
"name": "Metrikák letiltása",
"description": "Blokkolja bizonyos analitikai adatok küldését a Snapchatnek"
},
"disable_story_sections": {
"name": "Sztori szekciók letiltása",
"description": "Eltávolít szekciókat a Sztorik oldalról\nLehetséges, hogy frissítés szükséges a megfelelő működéshez"
},
"block_ads": {
"name": "Hirdetések blokkolása",
"description": "Megakadályozza a hirdetések megjelenítését"
},
"disable_custom_tabs": {
"name": "Egyéni lapok letiltása",
"description": "A linkeket a támogatott alkalmazásokban nyitja meg a Web Böngésző helyett"
},
"disable_permission_requests": {
"name": "Engedélykérések letiltása",
"description": "Megakadályozza, hogy a Snapchat specifikus engedélyeket kérjen"
},
"disable_memories_snap_feed": {
"name": "Emlékek snap feed letiltása",
"description": "Megakadályozza, hogy a Snapchat megjelenítse a legutóbbi emlékeket, amikor felfelé húzol a kamerában"
},
"spotlight_comments_username": {
"name": "Spotlight kommentek felhasználónév",
"description": "Megjeleníti a szerző felhasználónevét a Spotlight kommentekben"
},
"spotlight_comments_username_icon": {
"name": "Spotlight kommentek felhasználónév ikon",
"description": "Válaszd ki, melyik ikon jelenjen meg a felhasználónevek mellett a Spotlight kommentekben"
},
"bypass_video_length_restriction": {
"name": "Videó hossz korlátozások megkerülése",
"description": "Single: egyetlen videót küld\nSplit: szerkesztés után szétvágja a videókat"
},
"default_video_playback_rate": {
"name": "Alapértelmezett videó lejátszási sebesség",
"description": "Beállítja a videók lejátszásának alapértelmezett sebességét\nAz értéknek 0.1 és 4.0 között kell lennie"
},
"video_playback_rate_slider": {
"name": "Videó lejátszási sebesség csúszka",
"description": "Hozzáad egy csúszkát az opera helyi menühöz a videó lejátszási sebességének módosítására\nMegjegyzés: A változtatások csak a következő videókra vonatkoznak"
},
"disable_google_play_dialogs": {
"name": "Google Play Szolgáltatások ablakok letiltása",
"description": "Megakadályozza a Google Play Szolgáltatások elérhetőségére vonatkozó ablakok megjelenését"
},
"default_volume_controls": {
"name": "Alapértelmezett hangerőszabályzók",
"description": "Kényszeríti a Snapchatet a rendszer hangerőszabályzóinak használatára"
},
"disable_telecom_framework": {
"name": "Telecom Framework letiltása",
"description": "Megakadályozza, hogy a Snapchat az Android Telecom keretrendszert használja\nEz lehetővé teszi, hogy zenét hallgass hívás közben"
},
"hide_active_music": {
"name": "Aktív zene elrejtése",
"description": "Megakadályozza, hogy a Snapchat megtudja, hogy zenét hallgatsz\nEz lehetővé teszi, hogy snapeket készíts a hangerőgombok használatával zenehallgatás közben"
},
"disable_snap_splitting": {
"name": "Snap darabolás letiltása",
"description": "Megakadályozza, hogy a Snapek több részre legyenek osztva\nAz elküldött képek videóvá alakulnak"
}
}
},
"rules": {
"name": "Szabályok",
"description": "Automatizálási szabályok konfigurálása",
@@ -2110,7 +2029,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "Titkosított üzenet jelző",
"description": "Hozzáad egy \ud83d\udd12 emojit a titkosított üzenetek mellé"
"description": "Hozzáad egy 🔒 emojit a titkosított üzenetek mellé"
},
"force_message_encryption": {
"name": "Üzenettitkosítás kényszerítése",
@@ -2190,6 +2109,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "Mindig világos",
"always_dark": "Mindig sötét",
@@ -2207,20 +2130,20 @@
"null": "Valós akkumulátorszint használata"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f Automatikus letöltés",
"auto_save": "\ud83d\udcac Üzenetek automatikus mentése",
"unsaveable_messages": "\u2b07\ufe0f Menthetetlen üzenetek",
"auto_open_snaps": "\ud83d\udcf7 Snapek automatikus megnyitása",
"stealth": "\ud83d\udc7b Lopakodó mód",
"auto_reply": "\ud83d\udce8 Automatikus válasz",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f Elküldött üzenetek automatikus törlése",
"mark_snaps_as_seen": "\ud83d\udc40 Snapek látottnak jelölése",
"mark_stories_as_seen_locally": "\ud83d\udc40 Sztorik látottnak jelölése helyileg",
"conversation_info": "\ud83d\udc64 Beszélgetés infó",
"e2e_encryption": "\ud83d\udd12 E2E Titkosítás használata",
"message_logger": "\ud83d\udcdd Üzenetnaplózó",
"auto_read": "\u2705 Automatikus olvasott",
"hide_typing_indicator": "\ud83d\ude48 Gépelésjelző elrejtése"
"auto_download": "⬇️ Automatikus letöltés",
"auto_save": "💬 Üzenetek automatikus mentése",
"unsaveable_messages": "⬇️ Menthetetlen üzenetek",
"auto_open_snaps": "📷 Snapek automatikus megnyitása",
"stealth": "👻 Lopakodó mód",
"auto_reply": "📨 Automatikus válasz",
"auto_delete_sent_messages": "🗑️ Elküldött üzenetek automatikus törlése",
"mark_snaps_as_seen": "👀 Snapek látottnak jelölése",
"mark_stories_as_seen_locally": "👀 Sztorik látottnak jelölése helyileg",
"conversation_info": "👤 Beszélgetés infó",
"e2e_encryption": "🔒 E2E Titkosítás használata",
"message_logger": "📝 Üzenetnaplózó",
"auto_read": " Automatikus olvasott",
"hide_typing_indicator": "🙈 Gépelésjelző elrejtése"
},
"schedule_scheduled_for": "Időzítve {name} számára ekkorra: {time}",
"schedule_sending_in": "Küldés ekkor: {time}",
@@ -2323,16 +2246,16 @@
"custom_android_id": {
"null": "Valós Android ID használata"
},
"add_friend_source_spoof": {
"added_by_username": "Felhasználónév alapján",
"added_by_mention": "Említés alapján",
"added_by_group_chat": "Csoportos chat által",
"added_by_qr_code": "QR kód által",
"added_by_community": "Közösség által",
"added_by_quick_add": "Gyors hozzáadással (nagy a kitiltás kockázata)",
"added_by_spotlight": "Spotlight által",
"null": "Ne hamisítsa a forrást"
},
"add_friend_source_spoof": {
"added_by_username": "Felhasználónév alapján",
"added_by_mention": "Említés alapján",
"added_by_group_chat": "Csoportos chat által",
"added_by_qr_code": "QR kód által",
"added_by_community": "Közösség által",
"added_by_quick_add": "Gyors hozzáadással (nagy a kitiltás kockázata)",
"added_by_spotlight": "Spotlight által",
"null": "Ne hamisítsa a forrást"
},
"custom_streaks_expiration_format": {
"null": "Rendszer alapértelmezett"
},
@@ -2439,8 +2362,8 @@
},
"spotlight_comments_username_icon": {
"user": "Felhasználónév ikon",
"\ud83d\udc64": "Felhasználónév ikon",
"[\ud83d\udc64]": "Felhasználónév ikon",
"👤": "Felhasználónév ikon",
"[👤]": "Felhasználónév ikon",
"default": "Felhasználónév ikon",
"no_icon": "Nincs ikon"
},
@@ -2520,11 +2443,11 @@
"phone_calls": "Telefonhívások"
},
"message_indicators": {
"encryption_indicator": "Hozzáad egy \ud83d\udd12 ikont azokhoz az üzenetekhez, amelyeket csak neked küldtek",
"encryption_indicator": "Hozzáad egy 🔒 ikont azokhoz az üzenetekhez, amelyeket csak neked küldtek",
"platform_indicator": "Hozzáadja a platform ikonját, ahonnan a médiát küldték (pl. Android, iOS, Web)",
"location_indicator": "Hozzáad egy \ud83d\udccd ikont a snapekhez, ha azokat bekapcsolt helymeghatározással küldték",
"location_indicator": "Hozzáad egy 📍 ikont a snapekhez, ha azokat bekapcsolt helymeghatározással küldték",
"ovf_editor_indicator": "Jelzi, ha egy snapet az OVF szerkesztővel küldtek",
"director_mode_indicator": "Hozzáad egy \u270f\ufe0f ikont a snapekhez, ha azokat Director Mode-dal küldték, ami lehetővé teszi galéria képek snapként való küldését"
"director_mode_indicator": "Hozzáad egy ✏️ ikont a snapekhez, ha azokat Director Mode-dal küldték, ami lehetővé teszi galéria képek snapként való küldését"
},
"auto_mark_as_read": {
"conversation_read": "Beszélgetés olvasottnak jelölése üzenet küldésekor",
@@ -2748,7 +2671,6 @@
"show_chat_edit_history": "Chat szerkesztési előzmények mutatása",
"convert_message": "Üzenet konvertálása"
},
"chat_wallpaper_downloader": {
"download_button": "Chat háttérkép letöltése"
},
@@ -3078,7 +3000,7 @@
"queue_cleared": "Sor törölve és statisztika visszaállítva",
"queue_cleared_title": "Sor törölve",
"queue_cleared_reset": "Sor törölve és visszaállítva",
"queue_cleared_feedback": "{count} várakozó snap törölve \u2022 {processed} feldolgozott számláló visszaállítva",
"queue_cleared_feedback": "{count} várakozó snap törölve {processed} feldolgozott számláló visszaállítva",
"queue_cleared_feedback_simple": "{processed} feldolgozott számláló visszaállítva",
"unknown_sender": "Ismeretlen",
"unknown_user": "Ismeretlen felhasználó",

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 oleh Eternal",
"version_title": "v{versionName} · oleh Eternal",
"update_title": "Pembaruan PurrfectSnap",
"update_content": "Versi {version} tersedia!",
"update_button": "Unduh",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "Tidak ada tugas",
"merge_button": "Gabung",
"summary_active": "{active} aktif \u00b7 {recent} baru",
"summary_idle": "Idle \u00b7 {recent} baru",
"summary_active": "{active} aktif · {recent} baru",
"summary_idle": "Idle · {recent} baru",
"running_count": "{count} berjalan",
"clear_button_description": "Bersihkan tugas",
"failed_to_open_file": "Gagal membuka file",
@@ -312,22 +312,22 @@
"remove_selected_tasks_confirm": "Hapus {count} tugas?",
"remove_all_tasks_confirm": "Hapus semua tugas?"
},
"features": {
"disabled": "Dinonaktifkan",
"export_option": "Ekspor",
"import_option": "Impor",
"reset_option": "Reset",
"config_export_success_toast": "Konfigurasi berhasil diekspor",
"config_import_success_toast": "Konfigurasi berhasil diimpor",
"config_import_failure_toast": "Gagal mengimpor konfigurasi {error}",
"config_export_failure_toast": "Gagal mengekspor konfigurasi {error}",
"saved_config_snackbar": "Konfigurasi disimpan",
"older_required": "Fitur ini memerlukan Snapchat v{version} atau lebih lama agar berfungsi dengan benar",
"newer_required": "Fitur ini memerlukan Snapchat v{version} atau lebih baru agar berfungsi dengan benar",
"search_button": "Cari",
"clear_history": "Hapus riwayat pencarian",
"subtitle": "Cari dan kelola fitur"
},
"features": {
"disabled": "Dinonaktifkan",
"export_option": "Ekspor",
"import_option": "Impor",
"reset_option": "Reset",
"config_export_success_toast": "Konfigurasi berhasil diekspor",
"config_import_success_toast": "Konfigurasi berhasil diimpor",
"config_import_failure_toast": "Gagal mengimpor konfigurasi {error}",
"config_export_failure_toast": "Gagal mengekspor konfigurasi {error}",
"saved_config_snackbar": "Konfigurasi disimpan",
"older_required": "Fitur ini memerlukan Snapchat v{version} atau lebih lama agar berfungsi dengan benar",
"newer_required": "Fitur ini memerlukan Snapchat v{version} atau lebih baru agar berfungsi dengan benar",
"search_button": "Cari",
"clear_history": "Hapus riwayat pencarian",
"subtitle": "Cari dan kelola fitur"
},
"bypass_status": {
"active": "PurrAura Aktif",
"inactive": "PurrAura Tidak Aktif"
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "Teleportasi ke Teman",
"search_bar": "Cari",
"no_friends_map": "Tidak ada teman di peta",
"no_friends_found": "Teman tidak ditemukan"
"no_friends_found": "Teman tidak ditemukan",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,166 @@
},
"features": {
"notices": {
"unstable": "\u26a0 Tidak Stabil",
"ban_risk": "\u26a0 Fitur ini dapat menyebabkan pemblokiran (ban)",
"internal_behavior": "\u26a0 Ini dapat merusak perilaku internal Snapchat"
},
"options": {
"empty": "Kosong",
"walk_radius": {
"empty": "Kosong"
},
"spoof_battery_level": {
"empty": "Kosong"
},
"custom_android_id": {
"empty": "Kosong"
},
"custom_streaks_expiration_format": {
"empty": "Kosong"
},
"preferred_transcription_lang": {
"empty": "Kosong"
},
"custom_emoji_font": {
"empty": "Kosong"
},
"custom_shared_library": {
"empty": "Kosong"
},
"custom_resolution": {
"empty": "Kosong"
},
"custom_path_format": {
"empty": "Kosong"
},
"custom_video_codec": {
"empty": "Kosong"
},
"custom_audio_codec": {
"empty": "Kosong"
},
"double_tap_chat_action_custom_emoji": {
"empty": "Kosong"
},
"unsaveable_messages": {
"blacklist": "Mode daftar hitam",
"whitelist": "Mode daftar putih",
"null": "Dinonaktifkan"
},
"update_check_frequency": {
"daily": "Harian",
"weekly": "Mingguan",
"monthly": "Bulanan"
}
"unstable": " Tidak Stabil",
"ban_risk": " Fitur ini dapat menyebabkan pemblokiran (ban)",
"internal_behavior": " Ini dapat merusak perilaku internal Snapchat"
},
"properties": {
"global": {
"name": "Global",
"description": "Preferensi dan default modul umum",
"description": "Tweak Pengaturan Global Snapchat",
"properties": {
"ui_settings": {
"name": "Pengaturan UI",
"description": "Atur umpan balik dan perilaku toast",
"better_location": {
"name": "Lokasi Lebih Baik",
"description": "Meningkatkan Lokasi Snapchat",
"properties": {
"haptic_feedback": {
"name": "Umpan Balik Haptic",
"description": "Bergetar pada interaksi yang didukung"
"spoof_location": {
"name": "Palsukan Lokasi",
"description": "Memalsukan lokasi Anda ke lokasi tertentu"
},
"use_system_toasts": {
"name": "Gunakan Toast Sistem",
"description": "Tampilkan toast Android alih-alih overlay dalam aplikasi"
"coordinates": {
"name": "Koordinat",
"description": "Atur koordinat lokasi palsu"
},
"walk_radius": {
"name": "Radius Jalan",
"description": "Berjalan secara acak di dalam radius ini (ft)"
},
"always_update_location": {
"name": "Selalu Perbarui Lokasi",
"description": "Paksa Snapchat memperbarui lokasi meskipun tidak ada data GPS yang diterima"
},
"suspend_location_updates": {
"name": "Tangguhkan Pembaruan Lokasi",
"description": "Mencegah lokasi Anda diperbarui"
},
"spoof_battery_level": {
"name": "Palsukan Tingkat Baterai",
"description": "Memalsukan tingkat baterai perangkat Anda di peta\nNilai harus antara 0 dan 100"
},
"spoof_headphones": {
"name": "Palsukan Headphone",
"description": "Memalsukan status mendengarkan musik di peta"
},
"show_battery_level": {
"name": "Tampilkan Tingkat Baterai",
"description": "Menampilkan tingkat baterai teman Anda di peta"
}
}
},
"update_settings": {
"name": "Pengaturan Pembaruan",
"description": "Kontrol pemeriksaan pembaruan otomatis",
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Mengaktifkan fitur Snapchat Plus\nBeberapa fitur sisi-Server mungkin tidak berfungsi"
},
"media_upload_quality": {
"name": "Kualitas Unggah Media",
"description": "Mengganti kualitas unggah media",
"properties": {
"auto_update_check": {
"name": "Cek Pembaruan Otomatis",
"description": "Periksa build baru secara otomatis"
"force_video_upload_source_quality": {
"name": "Paksa Kualitas Sumber Unggah Video",
"description": "Memaksa Snapchat menggunakan kualitas sumber saat mengunggah video\nHarap diperhatikan bahwa ini mungkin tidak menghapus metadata dari media"
},
"update_check_frequency": {
"name": "Frekuensi Cek Pembaruan",
"description": "Seberapa sering memeriksa pembaruan"
"disable_image_compression": {
"name": "Nonaktifkan Kompresi Gambar",
"description": "Menonaktifkan kompresi gambar saat mengunggah media"
},
"custom_image_upload_format": {
"name": "Format Unggah Gambar Kustom",
"description": "Mengatur format unggah gambar kustom\nPilih format lossless (seperti PNG) untuk kualitas terbaik"
}
}
},
"disable_confirmation_dialogs": {
"name": "Nonaktifkan Dialog Konfirmasi",
"description": "Secara otomatis mengonfirmasi tindakan yang dipilih"
},
"auto_updater": {
"name": "Pembaruan Otomatis",
"description": "Secara otomatis memeriksa pembaruan baru"
},
"update_settings": {
"name": "Pengaturan Pembaruan",
"description": "Kontrol bagaimana PurrfectSnap memeriksa pembaruan",
"properties": {
"auto_update_check": {
"name": "Cek Pembaruan Otomatis"
},
"update_check_frequency": {
"name": "Frekuensi Cek Pembaruan"
}
}
},
"ui_settings": {
"name": "Pengaturan UI",
"properties": {
"haptic_feedback": {
"name": "Umpan Balik Haptic"
}
}
},
"disable_metrics": {
"name": "Nonaktifkan Metrik",
"description": "Memblokir pengiriman data analitik tertentu ke Snapchat"
},
"disable_story_sections": {
"name": "Nonaktifkan Bagian Cerita",
"description": "Menghapus bagian dari halaman Cerita\nMungkin memerlukan penyegaran agar berfungsi dengan benar"
},
"block_ads": {
"name": "Blokir Iklan",
"description": "Mencegah Iklan ditampilkan"
},
"disable_custom_tabs": {
"name": "Nonaktifkan Tab Kustom",
"description": "Membuka tautan di aplikasi yang didukung alih-alih di Browser Web"
},
"disable_permission_requests": {
"name": "Nonaktifkan Permintaan Izin",
"description": "Mencegah Snapchat meminta izin tertentu"
},
"disable_memories_snap_feed": {
"name": "Nonaktifkan Umpan Snap Kenangan",
"description": "Mencegah Snapchat menampilkan kenangan terbaru saat Anda menggeser ke atas di kamera"
},
"spotlight_comments_username": {
"name": "Nama Pengguna Komentar Spotlight",
"description": "Menampilkan nama pengguna penulis di komentar Spotlight"
},
"spotlight_comments_username_icon": {
"name": "Ikon Nama Pengguna Komentar Spotlight",
"description": "Pilih ikon mana yang ditampilkan di sebelah nama pengguna dalam komentar Spotlight"
},
"bypass_video_length_restriction": {
"name": "Bypass Pembatasan Panjang Video",
"description": "Tunggal: mengirim satu video\nTerpisah: memisahkan video setelah diedit"
},
"default_video_playback_rate": {
"name": "Kecepatan Pemutaran Video Default",
"description": "Mengatur kecepatan default untuk pemutaran video\nNilai harus antara 0.1 dan 4.0"
},
"video_playback_rate_slider": {
"name": "Slider Kecepatan Pemutaran Video",
"description": "Menambahkan slider di menu konteks opera untuk mengubah kecepatan pemutaran video\nCatatan: Perubahan hanya berlaku untuk video berikutnya"
},
"disable_google_play_dialogs": {
"name": "Nonaktifkan Dialog Layanan Google Play",
"description": "Mencegah dialog ketersediaan Layanan Google Play ditampilkan"
},
"default_volume_controls": {
"name": "Kontrol Volume Default",
"description": "Memaksa Snapchat menggunakan kontrol volume sistem"
},
"disable_telecom_framework": {
"name": "Nonaktifkan Kerangka Kerja Telekomunikasi",
"description": "Mencegah Snapchat menggunakan kerangka kerja Telekomunikasi Android\nIni memungkinkan Anda mendengarkan musik saat sedang menelepon"
},
"hide_active_music": {
"name": "Sembunyikan Musik Aktif",
"description": "Mencegah Snapchat mengetahui Anda sedang mendengarkan musik\nIni akan memungkinkan Anda mengambil snap menggunakan tombol kontrol volume sambil mendengarkan musik"
},
"disable_snap_splitting": {
"name": "Nonaktifkan Pemisahan Snap",
"description": "Mencegah Snap dipisahkan menjadi beberapa bagian\nGambar yang Anda kirim akan berubah menjadi video"
}
}
},
@@ -1143,7 +1220,7 @@
},
"stealth_mode_indicator": {
"name": "Indikator Mode Siluman",
"description": "Menambahkan emoji \ud83d\udc7b di sebelah percakapan dalam mode siluman"
"description": "Menambahkan emoji 👻 di sebelah percakapan dalam mode siluman"
},
"edit_text_override": {
"name": "Override Teks Edit",
@@ -1671,164 +1748,6 @@
}
}
},
"global": {
"name": "Global",
"description": "Tweak Pengaturan Global Snapchat",
"properties": {
"better_location": {
"name": "Lokasi Lebih Baik",
"description": "Meningkatkan Lokasi Snapchat",
"properties": {
"spoof_location": {
"name": "Palsukan Lokasi",
"description": "Memalsukan lokasi Anda ke lokasi tertentu"
},
"coordinates": {
"name": "Koordinat",
"description": "Atur koordinat lokasi palsu"
},
"walk_radius": {
"name": "Radius Jalan",
"description": "Berjalan secara acak di dalam radius ini (ft)"
},
"always_update_location": {
"name": "Selalu Perbarui Lokasi",
"description": "Paksa Snapchat memperbarui lokasi meskipun tidak ada data GPS yang diterima"
},
"suspend_location_updates": {
"name": "Tangguhkan Pembaruan Lokasi",
"description": "Mencegah lokasi Anda diperbarui"
},
"spoof_battery_level": {
"name": "Palsukan Tingkat Baterai",
"description": "Memalsukan tingkat baterai perangkat Anda di peta\nNilai harus antara 0 dan 100"
},
"spoof_headphones": {
"name": "Palsukan Headphone",
"description": "Memalsukan status mendengarkan musik di peta"
},
"show_battery_level": {
"name": "Tampilkan Tingkat Baterai",
"description": "Menampilkan tingkat baterai teman Anda di peta"
}
}
},
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Mengaktifkan fitur Snapchat Plus\nBeberapa fitur sisi-Server mungkin tidak berfungsi"
},
"media_upload_quality": {
"name": "Kualitas Unggah Media",
"description": "Mengganti kualitas unggah media",
"properties": {
"force_video_upload_source_quality": {
"name": "Paksa Kualitas Sumber Unggah Video",
"description": "Memaksa Snapchat menggunakan kualitas sumber saat mengunggah video\nHarap diperhatikan bahwa ini mungkin tidak menghapus metadata dari media"
},
"disable_image_compression": {
"name": "Nonaktifkan Kompresi Gambar",
"description": "Menonaktifkan kompresi gambar saat mengunggah media"
},
"custom_image_upload_format": {
"name": "Format Unggah Gambar Kustom",
"description": "Mengatur format unggah gambar kustom\nPilih format lossless (seperti PNG) untuk kualitas terbaik"
}
}
},
"disable_confirmation_dialogs": {
"name": "Nonaktifkan Dialog Konfirmasi",
"description": "Secara otomatis mengonfirmasi tindakan yang dipilih"
},
"auto_updater": {
"name": "Pembaruan Otomatis",
"description": "Secara otomatis memeriksa pembaruan baru"
},
"update_settings": {
"name": "Pengaturan Pembaruan",
"description": "Kontrol bagaimana PurrfectSnap memeriksa pembaruan",
"properties": {
"auto_update_check": {
"name": "Cek Pembaruan Otomatis"
},
"update_check_frequency": {
"name": "Frekuensi Cek Pembaruan"
}
}
},
"ui_settings": {
"name": "Pengaturan UI",
"properties": {
"haptic_feedback": {
"name": "Umpan Balik Haptic"
}
}
},
"disable_metrics": {
"name": "Nonaktifkan Metrik",
"description": "Memblokir pengiriman data analitik tertentu ke Snapchat"
},
"disable_story_sections": {
"name": "Nonaktifkan Bagian Cerita",
"description": "Menghapus bagian dari halaman Cerita\nMungkin memerlukan penyegaran agar berfungsi dengan benar"
},
"block_ads": {
"name": "Blokir Iklan",
"description": "Mencegah Iklan ditampilkan"
},
"disable_custom_tabs": {
"name": "Nonaktifkan Tab Kustom",
"description": "Membuka tautan di aplikasi yang didukung alih-alih di Browser Web"
},
"disable_permission_requests": {
"name": "Nonaktifkan Permintaan Izin",
"description": "Mencegah Snapchat meminta izin tertentu"
},
"disable_memories_snap_feed": {
"name": "Nonaktifkan Umpan Snap Kenangan",
"description": "Mencegah Snapchat menampilkan kenangan terbaru saat Anda menggeser ke atas di kamera"
},
"spotlight_comments_username": {
"name": "Nama Pengguna Komentar Spotlight",
"description": "Menampilkan nama pengguna penulis di komentar Spotlight"
},
"spotlight_comments_username_icon": {
"name": "Ikon Nama Pengguna Komentar Spotlight",
"description": "Pilih ikon mana yang ditampilkan di sebelah nama pengguna dalam komentar Spotlight"
},
"bypass_video_length_restriction": {
"name": "Bypass Pembatasan Panjang Video",
"description": "Tunggal: mengirim satu video\nTerpisah: memisahkan video setelah diedit"
},
"default_video_playback_rate": {
"name": "Kecepatan Pemutaran Video Default",
"description": "Mengatur kecepatan default untuk pemutaran video\nNilai harus antara 0.1 dan 4.0"
},
"video_playback_rate_slider": {
"name": "Slider Kecepatan Pemutaran Video",
"description": "Menambahkan slider di menu konteks opera untuk mengubah kecepatan pemutaran video\nCatatan: Perubahan hanya berlaku untuk video berikutnya"
},
"disable_google_play_dialogs": {
"name": "Nonaktifkan Dialog Layanan Google Play",
"description": "Mencegah dialog ketersediaan Layanan Google Play ditampilkan"
},
"default_volume_controls": {
"name": "Kontrol Volume Default",
"description": "Memaksa Snapchat menggunakan kontrol volume sistem"
},
"disable_telecom_framework": {
"name": "Nonaktifkan Kerangka Kerja Telekomunikasi",
"description": "Mencegah Snapchat menggunakan kerangka kerja Telekomunikasi Android\nIni memungkinkan Anda mendengarkan musik saat sedang menelepon"
},
"hide_active_music": {
"name": "Sembunyikan Musik Aktif",
"description": "Mencegah Snapchat mengetahui Anda sedang mendengarkan musik\nIni akan memungkinkan Anda mengambil snap menggunakan tombol kontrol volume sambil mendengarkan musik"
},
"disable_snap_splitting": {
"name": "Nonaktifkan Pemisahan Snap",
"description": "Mencegah Snap dipisahkan menjadi beberapa bagian\nGambar yang Anda kirim akan berubah menjadi video"
}
}
},
"rules": {
"name": "Aturan",
"description": "Konfigurasikan aturan otomatisasi",
@@ -2110,7 +2029,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "Indikator Pesan Terenkripsi",
"description": "Menambahkan emoji \ud83d\udd12 di sebelah pesan terenkripsi"
"description": "Menambahkan emoji 🔒 di sebelah pesan terenkripsi"
},
"force_message_encryption": {
"name": "Paksa Enkripsi Pesan",
@@ -2190,6 +2109,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "Selalu Terang",
"always_dark": "Selalu Gelap",
@@ -2207,20 +2130,20 @@
"null": "Gunakan tingkat baterai nyata"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f Unduh Otomatis",
"auto_save": "\ud83d\udcac Simpan Pesan Otomatis",
"unsaveable_messages": "\u2b07\ufe0f Pesan Tak Dapat Disimpan",
"auto_open_snaps": "\ud83d\udcf7 Buka Snap Otomatis",
"stealth": "\ud83d\udc7b Mode Siluman",
"auto_reply": "\ud83d\udce8 Balas Otomatis",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f Hapus Pesan Terkirim Otomatis",
"mark_snaps_as_seen": "\ud83d\udc40 Tandai Snap sebagai dilihat",
"mark_stories_as_seen_locally": "\ud83d\udc40 Tandai Cerita sebagai dilihat secara lokal",
"conversation_info": "\ud83d\udc64 Info Percakapan",
"e2e_encryption": "\ud83d\udd12 Gunakan Enkripsi E2E",
"message_logger": "\ud83d\udcdd Pencatat Pesan",
"auto_read": "\u2705 Baca Otomatis",
"hide_typing_indicator": "\ud83d\ude48 Sembunyikan Indikator Mengetik"
"auto_download": "⬇️ Unduh Otomatis",
"auto_save": "💬 Simpan Pesan Otomatis",
"unsaveable_messages": "⬇️ Pesan Tak Dapat Disimpan",
"auto_open_snaps": "📷 Buka Snap Otomatis",
"stealth": "👻 Mode Siluman",
"auto_reply": "📨 Balas Otomatis",
"auto_delete_sent_messages": "🗑️ Hapus Pesan Terkirim Otomatis",
"mark_snaps_as_seen": "👀 Tandai Snap sebagai dilihat",
"mark_stories_as_seen_locally": "👀 Tandai Cerita sebagai dilihat secara lokal",
"conversation_info": "👤 Info Percakapan",
"e2e_encryption": "🔒 Gunakan Enkripsi E2E",
"message_logger": "📝 Pencatat Pesan",
"auto_read": " Baca Otomatis",
"hide_typing_indicator": "🙈 Sembunyikan Indikator Mengetik"
},
"schedule_scheduled_for": "Dijadwalkan untuk {name} dalam {time}",
"schedule_sending_in": "Mengirim dalam {time}",
@@ -2323,16 +2246,16 @@
"custom_android_id": {
"null": "Gunakan ID Android asli"
},
"add_friend_source_spoof": {
"added_by_username": "Berdasarkan Nama Pengguna",
"added_by_mention": "Berdasarkan Sebutan (Mention)",
"added_by_group_chat": "Berdasarkan Obrolan Grup",
"added_by_qr_code": "Berdasarkan Kode QR",
"added_by_community": "Berdasarkan Komunitas",
"added_by_quick_add": "Berdasarkan Tambah Cepat (risiko tinggi diblokir)",
"added_by_spotlight": "Berdasarkan Spotlight",
"null": "Jangan palsukan sumber"
},
"add_friend_source_spoof": {
"added_by_username": "Berdasarkan Nama Pengguna",
"added_by_mention": "Berdasarkan Sebutan (Mention)",
"added_by_group_chat": "Berdasarkan Obrolan Grup",
"added_by_qr_code": "Berdasarkan Kode QR",
"added_by_community": "Berdasarkan Komunitas",
"added_by_quick_add": "Berdasarkan Tambah Cepat (risiko tinggi diblokir)",
"added_by_spotlight": "Berdasarkan Spotlight",
"null": "Jangan palsukan sumber"
},
"custom_streaks_expiration_format": {
"null": "Default Sistem"
},
@@ -2439,8 +2362,8 @@
},
"spotlight_comments_username_icon": {
"user": "Ikon Nama Pengguna",
"\ud83d\udc64": "Ikon Nama Pengguna",
"[\ud83d\udc64]": "Ikon Nama Pengguna",
"👤": "Ikon Nama Pengguna",
"[👤]": "Ikon Nama Pengguna",
"default": "Ikon Nama Pengguna",
"no_icon": "Tidak ada ikon"
},
@@ -2520,11 +2443,11 @@
"phone_calls": "Panggilan Telepon"
},
"message_indicators": {
"encryption_indicator": "Menambahkan ikon \ud83d\udd12 di sebelah pesan yang dikirim hanya kepada Anda",
"encryption_indicator": "Menambahkan ikon 🔒 di sebelah pesan yang dikirim hanya kepada Anda",
"platform_indicator": "Menambahkan ikon platform tempat media dikirim (mis. Android, iOS, Web)",
"location_indicator": "Menambahkan ikon \ud83d\udccd ke snap jika dikirim dengan lokasi diaktifkan",
"location_indicator": "Menambahkan ikon 📍 ke snap jika dikirim dengan lokasi diaktifkan",
"ovf_editor_indicator": "Menunjukkan jika snap dikirim menggunakan OVF Editor",
"director_mode_indicator": "Menambahkan ikon \u270f\ufe0f ke snap jika dikirim menggunakan Mode Sutradara, yang dapat digunakan untuk mengirim gambar galeri sebagai snap"
"director_mode_indicator": "Menambahkan ikon ✏️ ke snap jika dikirim menggunakan Mode Sutradara, yang dapat digunakan untuk mengirim gambar galeri sebagai snap"
},
"auto_mark_as_read": {
"conversation_read": "Tandai percakapan sebagai dibaca saat mengirim pesan",
@@ -2748,7 +2671,6 @@
"show_chat_edit_history": "Tampilkan Riwayat Edit Obrolan",
"convert_message": "Konversi Pesan"
},
"chat_wallpaper_downloader": {
"download_button": "Unduh Wallpaper Obrolan"
},
@@ -3078,7 +3000,7 @@
"queue_cleared": "Antrian dibersihkan dan statistik direset",
"queue_cleared_title": "Antrian dibersihkan",
"queue_cleared_reset": "Antrian Dibersihkan & Direset",
"queue_cleared_feedback": "Dibersihkan {count} snap antri \u2022 Reset {processed} jumlah diproses",
"queue_cleared_feedback": "Dibersihkan {count} snap antri Reset {processed} jumlah diproses",
"queue_cleared_feedback_simple": "Reset {processed} jumlah diproses",
"unknown_sender": "Tidak Diketahui",
"unknown_user": "Pengguna Tidak Diketahui",

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 di Eternal",
"version_title": "v{versionName} · di Eternal",
"update_title": "Aggiornamento PurrfectSnap",
"update_content": "La versione {version} è disponibile!",
"update_button": "Scarica",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "Nessuna attività",
"merge_button": "Unisci",
"summary_active": "{active} attivi \u00b7 {recent} recenti",
"summary_idle": "Inattivo \u00b7 {recent} recenti",
"summary_active": "{active} attivi · {recent} recenti",
"summary_idle": "Inattivo · {recent} recenti",
"running_count": "{count} in esecuzione",
"clear_button_description": "Cancella attività",
"failed_to_open_file": "Impossibile aprire il file",
@@ -312,22 +312,22 @@
"remove_selected_tasks_confirm": "Rimuovere {count} attività?",
"remove_all_tasks_confirm": "Rimuovere tutte le attività?"
},
"features": {
"disabled": "Disabilitato",
"export_option": "Esporta",
"import_option": "Importa",
"reset_option": "Reimposta",
"config_export_success_toast": "Configurazione esportata con successo",
"config_import_success_toast": "Configurazione importata con successo",
"config_import_failure_toast": "Importazione configurazione fallita {error}",
"config_export_failure_toast": "Esportazione configurazione fallita {error}",
"saved_config_snackbar": "Configurazione salvata",
"older_required": "Questa funzionalità richiede Snapchat v{version} o precedente per funzionare correttamente",
"newer_required": "Questa funzionalità richiede Snapchat v{version} o successiva per funzionare correttamente",
"search_button": "Cerca",
"clear_history": "Cancella cronologia ricerche",
"subtitle": "Cerca e gestisci funzionalità"
},
"features": {
"disabled": "Disabilitato",
"export_option": "Esporta",
"import_option": "Importa",
"reset_option": "Reimposta",
"config_export_success_toast": "Configurazione esportata con successo",
"config_import_success_toast": "Configurazione importata con successo",
"config_import_failure_toast": "Importazione configurazione fallita {error}",
"config_export_failure_toast": "Esportazione configurazione fallita {error}",
"saved_config_snackbar": "Configurazione salvata",
"older_required": "Questa funzionalità richiede Snapchat v{version} o precedente per funzionare correttamente",
"newer_required": "Questa funzionalità richiede Snapchat v{version} o successiva per funzionare correttamente",
"search_button": "Cerca",
"clear_history": "Cancella cronologia ricerche",
"subtitle": "Cerca e gestisci funzionalità"
},
"bypass_status": {
"active": "PurrAura Attivo",
"inactive": "PurrAura Inattivo"
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "Teletrasporto da Amico",
"search_bar": "Cerca",
"no_friends_map": "Nessun amico sulla mappa",
"no_friends_found": "Nessun amico trovato"
"no_friends_found": "Nessun amico trovato",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,166 @@
},
"features": {
"notices": {
"unstable": "\u26a0 Instabile",
"ban_risk": "\u26a0 Questa funzionalità può causare ban",
"internal_behavior": "\u26a0 Questo potrebbe interrompere il comportamento interno di Snapchat"
},
"options": {
"empty": "Vuoto",
"walk_radius": {
"empty": "Vuoto"
},
"spoof_battery_level": {
"empty": "Vuoto"
},
"custom_android_id": {
"empty": "Vuoto"
},
"custom_streaks_expiration_format": {
"empty": "Vuoto"
},
"preferred_transcription_lang": {
"empty": "Vuoto"
},
"custom_emoji_font": {
"empty": "Vuoto"
},
"custom_shared_library": {
"empty": "Vuoto"
},
"custom_resolution": {
"empty": "Vuoto"
},
"custom_path_format": {
"empty": "Vuoto"
},
"custom_video_codec": {
"empty": "Vuoto"
},
"custom_audio_codec": {
"empty": "Vuoto"
},
"double_tap_chat_action_custom_emoji": {
"empty": "Vuoto"
},
"unsaveable_messages": {
"blacklist": "Modalità Blacklist",
"whitelist": "Modalità Whitelist",
"null": "Disabilitato"
},
"update_check_frequency": {
"daily": "Giornaliero",
"weekly": "Settimanale",
"monthly": "Mensile"
}
"unstable": " Instabile",
"ban_risk": " Questa funzionalità può causare ban",
"internal_behavior": " Questo potrebbe interrompere il comportamento interno di Snapchat"
},
"properties": {
"global": {
"name": "Globale",
"description": "Preferenze e impostazioni predefinite del modulo generale",
"description": "Modifica Impostazioni Globali Snapchat",
"properties": {
"ui_settings": {
"name": "Impostazioni UI",
"description": "Regola feedback e comportamento dei toast",
"better_location": {
"name": "Posizione Migliorata",
"description": "Migliora la Posizione Snapchat",
"properties": {
"haptic_feedback": {
"name": "Feedback Aptico",
"description": "Vibra su interazioni supportate"
"spoof_location": {
"name": "Falsifica Posizione",
"description": "Falsifica la tua posizione su una specificata"
},
"use_system_toasts": {
"name": "Usa Toast di Sistema",
"description": "Mostra toast Android invece di sovrapposizioni in-app"
"coordinates": {
"name": "Coordinate",
"description": "Imposta le coordinate della posizione falsificata"
},
"walk_radius": {
"name": "Raggio Camminata",
"description": "Cammina casualmente entro questo raggio (ft)"
},
"always_update_location": {
"name": "Aggiorna Sempre Posizione",
"description": "Forza Snapchat ad aggiornare la posizione anche se non vengono ricevuti dati GPS"
},
"suspend_location_updates": {
"name": "Sospendi Aggiornamenti Posizione",
"description": "Impedisce l'aggiornamento della tua posizione"
},
"spoof_battery_level": {
"name": "Falsifica Livello Batteria",
"description": "Falsifica il livello della batteria del tuo dispositivo sulla mappa\nIl valore deve essere tra 0 e 100"
},
"spoof_headphones": {
"name": "Falsifica Cuffie",
"description": "Falsifica lo stato di ascolto musica sulla mappa"
},
"show_battery_level": {
"name": "Mostra Livello Batteria",
"description": "Mostra il livello della batteria dei tuoi amici sulla mappa"
}
}
},
"update_settings": {
"name": "Impostazioni Aggiornamento",
"description": "Controlla verifiche aggiornamenti automatici",
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Abilita le funzionalità Snapchat Plus\nAlcune funzionalità lato server potrebbero non funzionare"
},
"media_upload_quality": {
"name": "Qualità Caricamento Media",
"description": "Sovrascrive la qualità di caricamento media",
"properties": {
"auto_update_check": {
"name": "Controllo Aggiornamenti Automatico",
"description": "Controlla nuove build automaticamente"
"force_video_upload_source_quality": {
"name": "Forza Qualità Sorgente Caricamento Video",
"description": "Forza Snapchat a usare la qualità sorgente quando carica video\nNota che questo potrebbe non rimuovere i metadati dai media"
},
"update_check_frequency": {
"name": "Frequenza Controllo Aggiornamenti",
"description": "Quanto spesso controllare gli aggiornamenti"
"disable_image_compression": {
"name": "Disabilita Compressione Immagine",
"description": "Disabilita la compressione dell'immagine quando carichi media"
},
"custom_image_upload_format": {
"name": "Formato Caricamento Immagine Personalizzato",
"description": "Imposta un formato di caricamento immagine personalizzato\nSeleziona un formato senza perdita (come PNG) per la migliore qualità"
}
}
},
"disable_confirmation_dialogs": {
"name": "Disabilita Finestre di Conferma",
"description": "Conferma automaticamente le azioni selezionate"
},
"auto_updater": {
"name": "Aggiornamento Automatico",
"description": "Controlla automaticamente nuovi aggiornamenti"
},
"update_settings": {
"name": "Impostazioni Aggiornamento",
"description": "Controlla come PurrfectSnap verifica gli aggiornamenti",
"properties": {
"auto_update_check": {
"name": "Controllo Aggiornamenti Automatico"
},
"update_check_frequency": {
"name": "Frequenza Controllo Aggiornamenti"
}
}
},
"ui_settings": {
"name": "Impostazioni UI",
"properties": {
"haptic_feedback": {
"name": "Feedback Aptico"
}
}
},
"disable_metrics": {
"name": "Disabilita Metriche",
"description": "Blocca l'invio di specifici dati analitici a Snapchat"
},
"disable_story_sections": {
"name": "Disabilita Sezioni Storia",
"description": "Rimuove sezioni dalla pagina Storie\nPotrebbe richiedere un aggiornamento per funzionare correttamente"
},
"block_ads": {
"name": "Blocca Pubblicità",
"description": "Impedisce la visualizzazione delle Pubblicità"
},
"disable_custom_tabs": {
"name": "Disabilita Schede Personalizzate",
"description": "Apre i link in applicazioni supportate invece che nel Browser Web"
},
"disable_permission_requests": {
"name": "Disabilita Richieste Permessi",
"description": "Impedisce a Snapchat di chiedere permessi specifici"
},
"disable_memories_snap_feed": {
"name": "Disabilita Feed Snap Ricordi",
"description": "Impedisce a Snapchat di mostrare ricordi recenti quando fai swipe verso l'alto nella fotocamera"
},
"spotlight_comments_username": {
"name": "Username Commenti Spotlight",
"description": "Mostra lo username dell'autore nei commenti Spotlight"
},
"spotlight_comments_username_icon": {
"name": "Icona Username Commenti Spotlight",
"description": "Scegli quale icona viene visualizzata accanto agli username nei commenti Spotlight"
},
"bypass_video_length_restriction": {
"name": "Bypass Restrizioni Lunghezza Video",
"description": "Singolo: invia un singolo video\nDiviso: divide i video dopo la modifica"
},
"default_video_playback_rate": {
"name": "Velocità Riproduzione Video Predefinita",
"description": "Imposta la velocità predefinita per la riproduzione dei video\nIl valore deve essere tra 0.1 e 4.0"
},
"video_playback_rate_slider": {
"name": "Cursore Velocità Riproduzione Video",
"description": "Aggiunge un cursore nel menu contestuale opera per cambiare la velocità di riproduzione video\nNota: Le modifiche si applicano solo ai video successivi"
},
"disable_google_play_dialogs": {
"name": "Disabilita Dialoghi Google Play Services",
"description": "Impedisce che vengano mostrati i dialoghi di disponibilità di Google Play Services"
},
"default_volume_controls": {
"name": "Controlli Volume Predefiniti",
"description": "Forza Snapchat a usare i controlli volume di sistema"
},
"disable_telecom_framework": {
"name": "Disabilita Framework Telecom",
"description": "Impedisce a Snapchat di usare il framework Telecom di Android\nQuesto ti permette di ascoltare musica mentre sei in chiamata"
},
"hide_active_music": {
"name": "Nascondi Musica Attiva",
"description": "Impedisce a Snapchat di sapere che stai ascoltando musica\nQuesto ti permetterà di fare snap usando i pulsanti volume mentre ascolti musica"
},
"disable_snap_splitting": {
"name": "Disabilita Divisione Snap",
"description": "Impedisce che gli Snap vengano divisi in più parti\nLe foto che invii si trasformeranno in video"
}
}
},
@@ -1143,7 +1220,7 @@
},
"stealth_mode_indicator": {
"name": "Indicatore Modalità Stealth",
"description": "Aggiunge un'emoji \ud83d\udc7b accanto alle conversazioni in modalità stealth"
"description": "Aggiunge un'emoji 👻 accanto alle conversazioni in modalità stealth"
},
"edit_text_override": {
"name": "Override Modifica Testo",
@@ -1671,164 +1748,6 @@
}
}
},
"global": {
"name": "Globale",
"description": "Modifica Impostazioni Globali Snapchat",
"properties": {
"better_location": {
"name": "Posizione Migliorata",
"description": "Migliora la Posizione Snapchat",
"properties": {
"spoof_location": {
"name": "Falsifica Posizione",
"description": "Falsifica la tua posizione su una specificata"
},
"coordinates": {
"name": "Coordinate",
"description": "Imposta le coordinate della posizione falsificata"
},
"walk_radius": {
"name": "Raggio Camminata",
"description": "Cammina casualmente entro questo raggio (ft)"
},
"always_update_location": {
"name": "Aggiorna Sempre Posizione",
"description": "Forza Snapchat ad aggiornare la posizione anche se non vengono ricevuti dati GPS"
},
"suspend_location_updates": {
"name": "Sospendi Aggiornamenti Posizione",
"description": "Impedisce l'aggiornamento della tua posizione"
},
"spoof_battery_level": {
"name": "Falsifica Livello Batteria",
"description": "Falsifica il livello della batteria del tuo dispositivo sulla mappa\nIl valore deve essere tra 0 e 100"
},
"spoof_headphones": {
"name": "Falsifica Cuffie",
"description": "Falsifica lo stato di ascolto musica sulla mappa"
},
"show_battery_level": {
"name": "Mostra Livello Batteria",
"description": "Mostra il livello della batteria dei tuoi amici sulla mappa"
}
}
},
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Abilita le funzionalità Snapchat Plus\nAlcune funzionalità lato server potrebbero non funzionare"
},
"media_upload_quality": {
"name": "Qualità Caricamento Media",
"description": "Sovrascrive la qualità di caricamento media",
"properties": {
"force_video_upload_source_quality": {
"name": "Forza Qualità Sorgente Caricamento Video",
"description": "Forza Snapchat a usare la qualità sorgente quando carica video\nNota che questo potrebbe non rimuovere i metadati dai media"
},
"disable_image_compression": {
"name": "Disabilita Compressione Immagine",
"description": "Disabilita la compressione dell'immagine quando carichi media"
},
"custom_image_upload_format": {
"name": "Formato Caricamento Immagine Personalizzato",
"description": "Imposta un formato di caricamento immagine personalizzato\nSeleziona un formato senza perdita (come PNG) per la migliore qualità"
}
}
},
"disable_confirmation_dialogs": {
"name": "Disabilita Finestre di Conferma",
"description": "Conferma automaticamente le azioni selezionate"
},
"auto_updater": {
"name": "Aggiornamento Automatico",
"description": "Controlla automaticamente nuovi aggiornamenti"
},
"update_settings": {
"name": "Impostazioni Aggiornamento",
"description": "Controlla come PurrfectSnap verifica gli aggiornamenti",
"properties": {
"auto_update_check": {
"name": "Controllo Aggiornamenti Automatico"
},
"update_check_frequency": {
"name": "Frequenza Controllo Aggiornamenti"
}
}
},
"ui_settings": {
"name": "Impostazioni UI",
"properties": {
"haptic_feedback": {
"name": "Feedback Aptico"
}
}
},
"disable_metrics": {
"name": "Disabilita Metriche",
"description": "Blocca l'invio di specifici dati analitici a Snapchat"
},
"disable_story_sections": {
"name": "Disabilita Sezioni Storia",
"description": "Rimuove sezioni dalla pagina Storie\nPotrebbe richiedere un aggiornamento per funzionare correttamente"
},
"block_ads": {
"name": "Blocca Pubblicità",
"description": "Impedisce la visualizzazione delle Pubblicità"
},
"disable_custom_tabs": {
"name": "Disabilita Schede Personalizzate",
"description": "Apre i link in applicazioni supportate invece che nel Browser Web"
},
"disable_permission_requests": {
"name": "Disabilita Richieste Permessi",
"description": "Impedisce a Snapchat di chiedere permessi specifici"
},
"disable_memories_snap_feed": {
"name": "Disabilita Feed Snap Ricordi",
"description": "Impedisce a Snapchat di mostrare ricordi recenti quando fai swipe verso l'alto nella fotocamera"
},
"spotlight_comments_username": {
"name": "Username Commenti Spotlight",
"description": "Mostra lo username dell'autore nei commenti Spotlight"
},
"spotlight_comments_username_icon": {
"name": "Icona Username Commenti Spotlight",
"description": "Scegli quale icona viene visualizzata accanto agli username nei commenti Spotlight"
},
"bypass_video_length_restriction": {
"name": "Bypass Restrizioni Lunghezza Video",
"description": "Singolo: invia un singolo video\nDiviso: divide i video dopo la modifica"
},
"default_video_playback_rate": {
"name": "Velocità Riproduzione Video Predefinita",
"description": "Imposta la velocità predefinita per la riproduzione dei video\nIl valore deve essere tra 0.1 e 4.0"
},
"video_playback_rate_slider": {
"name": "Cursore Velocità Riproduzione Video",
"description": "Aggiunge un cursore nel menu contestuale opera per cambiare la velocità di riproduzione video\nNota: Le modifiche si applicano solo ai video successivi"
},
"disable_google_play_dialogs": {
"name": "Disabilita Dialoghi Google Play Services",
"description": "Impedisce che vengano mostrati i dialoghi di disponibilità di Google Play Services"
},
"default_volume_controls": {
"name": "Controlli Volume Predefiniti",
"description": "Forza Snapchat a usare i controlli volume di sistema"
},
"disable_telecom_framework": {
"name": "Disabilita Framework Telecom",
"description": "Impedisce a Snapchat di usare il framework Telecom di Android\nQuesto ti permette di ascoltare musica mentre sei in chiamata"
},
"hide_active_music": {
"name": "Nascondi Musica Attiva",
"description": "Impedisce a Snapchat di sapere che stai ascoltando musica\nQuesto ti permetterà di fare snap usando i pulsanti volume mentre ascolti musica"
},
"disable_snap_splitting": {
"name": "Disabilita Divisione Snap",
"description": "Impedisce che gli Snap vengano divisi in più parti\nLe foto che invii si trasformeranno in video"
}
}
},
"rules": {
"name": "Regole",
"description": "Configura regole di automazione",
@@ -2110,7 +2029,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "Indicatore Messaggio Crittografato",
"description": "Aggiunge un'emoji \ud83d\udd12 accanto ai messaggi crittografati"
"description": "Aggiunge un'emoji 🔒 accanto ai messaggi crittografati"
},
"force_message_encryption": {
"name": "Forza Crittografia Messaggio",
@@ -2190,6 +2109,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "Sempre Chiaro",
"always_dark": "Sempre Scuro",
@@ -2207,20 +2130,20 @@
"null": "Usa livello batteria reale"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f Download Automatico",
"auto_save": "\ud83d\udcac Salvataggio Automatico Messaggi",
"unsaveable_messages": "\u2b07\ufe0f Messaggi Non Salvabili",
"auto_open_snaps": "\ud83d\udcf7 Apertura Automatica Snap",
"stealth": "\ud83d\udc7b Modalità Stealth",
"auto_reply": "\ud83d\udce8 Risposta Automatica",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f Eliminazione Automatica Messaggi Inviati",
"mark_snaps_as_seen": "\ud83d\udc40 Segna Snap come visti",
"mark_stories_as_seen_locally": "\ud83d\udc40 Segna Storie come viste localmente",
"conversation_info": "\ud83d\udc64 Info Conversazione",
"e2e_encryption": "\ud83d\udd12 Usa Crittografia E2E",
"message_logger": "\ud83d\udcdd Logger Messaggi",
"auto_read": "\u2705 Lettura Automatica",
"hide_typing_indicator": "\ud83d\ude48 Nascondi Indicatore Digitazione"
"auto_download": "⬇️ Download Automatico",
"auto_save": "💬 Salvataggio Automatico Messaggi",
"unsaveable_messages": "⬇️ Messaggi Non Salvabili",
"auto_open_snaps": "📷 Apertura Automatica Snap",
"stealth": "👻 Modalità Stealth",
"auto_reply": "📨 Risposta Automatica",
"auto_delete_sent_messages": "🗑️ Eliminazione Automatica Messaggi Inviati",
"mark_snaps_as_seen": "👀 Segna Snap come visti",
"mark_stories_as_seen_locally": "👀 Segna Storie come viste localmente",
"conversation_info": "👤 Info Conversazione",
"e2e_encryption": "🔒 Usa Crittografia E2E",
"message_logger": "📝 Logger Messaggi",
"auto_read": " Lettura Automatica",
"hide_typing_indicator": "🙈 Nascondi Indicatore Digitazione"
},
"schedule_scheduled_for": "Programmato per {name} tra {time}",
"schedule_sending_in": "Invio tra {time}",
@@ -2323,16 +2246,16 @@
"custom_android_id": {
"null": "Usa ID Android reale"
},
"add_friend_source_spoof": {
"added_by_username": "Tramite Username",
"added_by_mention": "Tramite Menzione",
"added_by_group_chat": "Tramite Chat di Gruppo",
"added_by_qr_code": "Tramite Codice QR",
"added_by_community": "Tramite Community",
"added_by_quick_add": "Tramite Aggiunta Rapida (alto rischio di ban)",
"added_by_spotlight": "Tramite Spotlight",
"null": "Non falsificare fonte"
},
"add_friend_source_spoof": {
"added_by_username": "Tramite Username",
"added_by_mention": "Tramite Menzione",
"added_by_group_chat": "Tramite Chat di Gruppo",
"added_by_qr_code": "Tramite Codice QR",
"added_by_community": "Tramite Community",
"added_by_quick_add": "Tramite Aggiunta Rapida (alto rischio di ban)",
"added_by_spotlight": "Tramite Spotlight",
"null": "Non falsificare fonte"
},
"custom_streaks_expiration_format": {
"null": "Predefinito di Sistema"
},
@@ -2438,8 +2361,8 @@
},
"spotlight_comments_username_icon": {
"user": "Icona Username",
"\ud83d\udc64": "Icona Username",
"[\ud83d\udc64]": "Icona Username",
"👤": "Icona Username",
"[👤]": "Icona Username",
"default": "Icona Username",
"no_icon": "Nessuna icona"
},
@@ -2519,11 +2442,11 @@
"phone_calls": "Chiamate Telefoniche"
},
"message_indicators": {
"encryption_indicator": "Aggiunge un'icona \ud83d\udd12 accanto ai messaggi che sono stati inviati solo a te",
"encryption_indicator": "Aggiunge un'icona 🔒 accanto ai messaggi che sono stati inviati solo a te",
"platform_indicator": "Aggiunge l'icona della piattaforma da cui è stato inviato un media (es. Android, iOS, Web)",
"location_indicator": "Aggiunge un'icona \ud83d\udccd agli snap quando sono stati inviati con la posizione abilitata",
"location_indicator": "Aggiunge un'icona 📍 agli snap quando sono stati inviati con la posizione abilitata",
"ovf_editor_indicator": "Indica se uno snap è stato inviato usando OVF Editor",
"director_mode_indicator": "Aggiunge un'icona \u270f\ufe0f agli snap quando sono stati inviati usando Director Mode, che può essere usato per inviare immagini della galleria come snap"
"director_mode_indicator": "Aggiunge un'icona ✏️ agli snap quando sono stati inviati usando Director Mode, che può essere usato per inviare immagini della galleria come snap"
},
"auto_mark_as_read": {
"conversation_read": "Segna conversazione come letta quando invii un messaggio",
@@ -2747,7 +2670,6 @@
"show_chat_edit_history": "Mostra Cronologia Modifiche Chat",
"convert_message": "Converti Messaggio"
},
"chat_wallpaper_downloader": {
"download_button": "Scarica Sfondo Chat"
},
@@ -3077,7 +2999,7 @@
"queue_cleared": "Coda pulita e statistiche reimpostate",
"queue_cleared_title": "Coda pulita",
"queue_cleared_reset": "Coda Pulita & Reimpostata",
"queue_cleared_feedback": "Puliti {count} snap in coda \u2022 Reimpostato conteggio elaborati {processed}",
"queue_cleared_feedback": "Puliti {count} snap in coda Reimpostato conteggio elaborati {processed}",
"queue_cleared_feedback_simple": "Reimpostato conteggio elaborati {processed}",
"unknown_sender": "Sconosciuto",
"unknown_user": "Utente Sconosciuto",

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 by Eternal",
"version_title": "v{versionName} · by Eternal",
"update_title": "PurrfectSnap アップデート",
"update_content": "バージョン {version} が利用可能です!",
"update_button": "ダウンロード",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "タスクなし",
"merge_button": "結合",
"summary_active": "{active} 件がアクティブ \u00b7 {recent} 件が最近",
"summary_idle": "待機中 \u00b7 {recent} 件が最近",
"summary_active": "{active} 件がアクティブ · {recent} 件が最近",
"summary_idle": "待機中 · {recent} 件が最近",
"running_count": "{count} 件実行中",
"clear_button_description": "タスクを消去",
"failed_to_open_file": "ファイルを開けませんでした",
@@ -312,22 +312,22 @@
"remove_selected_tasks_confirm": "{count} 件のタスクを削除しますか?",
"remove_all_tasks_confirm": "すべてのタスクを削除しますか?"
},
"features": {
"disabled": "無効",
"export_option": "エクスポート",
"import_option": "インポート",
"reset_option": "リセット",
"config_export_success_toast": "設定が正常にエクスポートされました",
"config_import_success_toast": "設定が正常にインポートされました",
"config_import_failure_toast": "設定のインポートに失敗しました {error}",
"config_export_failure_toast": "設定のエクスポートに失敗しました {error}",
"saved_config_snackbar": "設定が保存されました",
"older_required": "この機能が正しく動作するにはSnapchat v{version}以前が必要です",
"newer_required": "この機能が正しく動作するにはSnapchat v{version}以降が必要です",
"search_button": "検索",
"clear_history": "検索履歴を消去",
"subtitle": "機能の検索と管理"
},
"features": {
"disabled": "無効",
"export_option": "エクスポート",
"import_option": "インポート",
"reset_option": "リセット",
"config_export_success_toast": "設定が正常にエクスポートされました",
"config_import_success_toast": "設定が正常にインポートされました",
"config_import_failure_toast": "設定のインポートに失敗しました {error}",
"config_export_failure_toast": "設定のエクスポートに失敗しました {error}",
"saved_config_snackbar": "設定が保存されました",
"older_required": "この機能が正しく動作するにはSnapchat v{version}以前が必要です",
"newer_required": "この機能が正しく動作するにはSnapchat v{version}以降が必要です",
"search_button": "検索",
"clear_history": "検索履歴を消去",
"subtitle": "機能の検索と管理"
},
"bypass_status": {
"active": "PurrAura 有効",
"inactive": "PurrAura 無効"
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "フレンドの場所へテレポート",
"search_bar": "検索",
"no_friends_map": "マップ上にフレンドがいません",
"no_friends_found": "フレンドが見つかりません"
"no_friends_found": "フレンドが見つかりません",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,166 @@
},
"features": {
"notices": {
"unstable": "\u26a0 不安定",
"ban_risk": "\u26a0 この機能はBANの原因になる可能性があります",
"internal_behavior": "\u26a0 これはSnapchatの内部動作を壊す可能性があります"
},
"options": {
"empty": "空",
"walk_radius": {
"empty": "空"
},
"spoof_battery_level": {
"empty": "空"
},
"custom_android_id": {
"empty": "空"
},
"custom_streaks_expiration_format": {
"empty": "空"
},
"preferred_transcription_lang": {
"empty": "空"
},
"custom_emoji_font": {
"empty": "空"
},
"custom_shared_library": {
"empty": "空"
},
"custom_resolution": {
"empty": "空"
},
"custom_path_format": {
"empty": "空"
},
"custom_video_codec": {
"empty": "空"
},
"custom_audio_codec": {
"empty": "空"
},
"double_tap_chat_action_custom_emoji": {
"empty": "空"
},
"unsaveable_messages": {
"blacklist": "ブラックリストモード",
"whitelist": "ホワイトリストモード",
"null": "無効"
},
"update_check_frequency": {
"daily": "毎日",
"weekly": "毎週",
"monthly": "毎月"
}
"unstable": " 不安定",
"ban_risk": " この機能はBANの原因になる可能性があります",
"internal_behavior": " これはSnapchatの内部動作を壊す可能性があります"
},
"properties": {
"global": {
"name": "グローバル",
"description": "一般的なモジュールの設定とデフォルト",
"description": "グローバルなSnapchat設定を調整",
"properties": {
"ui_settings": {
"name": "UI設定",
"description": "フィードバックとトーストの動作を調整",
"better_location": {
"name": "位置情報の改善",
"description": "Snapchatの位置情報を強化します",
"properties": {
"haptic_feedback": {
"name": "触覚フィードバック",
"description": "サポートされている操作で振動させる"
"spoof_location": {
"name": "位置情報偽装",
"description": "位置情報を指定したものに偽装します"
},
"use_system_toasts": {
"name": "システムトーストを使用",
"description": "アプリ内オーバーレイの代わりにAndroidのトーストを表示する"
"coordinates": {
"name": "座標",
"description": "偽装場所の座標を設定します"
},
"walk_radius": {
"name": "歩行半径",
"description": "この半径内(フィート)をランダムに歩き回ります"
},
"always_update_location": {
"name": "常に位置情報を更新",
"description": "GPSデータが受信されない場合でもSnapchatに位置情報の更新を強制します"
},
"suspend_location_updates": {
"name": "位置情報の更新を一時停止",
"description": "位置情報が更新されるのを防ぎます"
},
"spoof_battery_level": {
"name": "バッテリーレベルの偽装",
"description": "マップ上のデバイスのバッテリーレベルを偽装します\n値は0から100の間でなければなりません"
},
"spoof_headphones": {
"name": "ヘッドフォンの偽装",
"description": "マップ上の音楽を聴いている状態を偽装します"
},
"show_battery_level": {
"name": "バッテリーレベルを表示",
"description": "マップ上にフレンドのバッテリーレベルを表示します"
}
}
},
"update_settings": {
"name": "アップデート設定",
"description": "自動アップデートチェックを制御",
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Snapchat Plusの機能を有効にします\n一部のサーバーサイド機能は動作しない場合があります"
},
"media_upload_quality": {
"name": "メディアアップロード品質",
"description": "メディアのアップロード品質を上書きします",
"properties": {
"auto_update_check": {
"name": "自動アップデート確認",
"description": "新しいビルドを自動的に確認する"
"force_video_upload_source_quality": {
"name": "ビデオアップロード時にソース品質を強制",
"description": "ビデオをアップロードする際にSnapchatにソース品質の使用を強制します\nこれによりメディアからメタデータが削除されない場合があります"
},
"update_check_frequency": {
"name": "アップデート確認頻度",
"description": "アップデートを確認する頻度"
"disable_image_compression": {
"name": "画像圧縮を無効化",
"description": "メディアアップロード時の画像圧縮を無効にします"
},
"custom_image_upload_format": {
"name": "カスタム画像アップロード形式",
"description": "カスタム画像アップロード形式を設定します\n最高品質を得るにはロスレス形式PNGなどを選択してください"
}
}
},
"disable_confirmation_dialogs": {
"name": "確認ダイアログの無効化",
"description": "選択したアクションを自動的に確認します"
},
"auto_updater": {
"name": "自動アップデーター",
"description": "新しいアップデートを自動的に確認します"
},
"update_settings": {
"name": "アップデート設定",
"description": "PurrfectSnapのアップデート確認方法を制御",
"properties": {
"auto_update_check": {
"name": "自動アップデート確認"
},
"update_check_frequency": {
"name": "アップデート確認頻度"
}
}
},
"ui_settings": {
"name": "UI設定",
"properties": {
"haptic_feedback": {
"name": "触覚フィードバック"
}
}
},
"disable_metrics": {
"name": "メトリクスの無効化",
"description": "特定の分析データのSnapchatへの送信をブロックします"
},
"disable_story_sections": {
"name": "ストーリーセクションの無効化",
"description": "ストーリーページからセクションを削除します\n正しく動作させるにはリフレッシュが必要な場合があります"
},
"block_ads": {
"name": "広告ブロック",
"description": "広告が表示されるのを防ぎます"
},
"disable_custom_tabs": {
"name": "カスタムタブの無効化",
"description": "ウェブブラウザではなくサポートされているアプリケーションでリンクを開きます"
},
"disable_permission_requests": {
"name": "権限リクエストの無効化",
"description": "Snapchatが特定の権限を要求するのを防ぎます"
},
"disable_memories_snap_feed": {
"name": "思い出スナップフィードの無効化",
"description": "カメラで上にスワイプしたときに最近の思い出が表示されるのを防ぎます"
},
"spotlight_comments_username": {
"name": "スポットライトコメントのユーザー名",
"description": "スポットライトのコメントに作成者のユーザー名を表示します"
},
"spotlight_comments_username_icon": {
"name": "スポットライトコメントのユーザー名アイコン",
"description": "スポットライトコメントのユーザー名の横に表示するアイコンを選択します"
},
"bypass_video_length_restriction": {
"name": "動画の長さ制限の回避",
"description": "シングル: 単一の動画を送信します\n分割: 編集後に動画を分割します"
},
"default_video_playback_rate": {
"name": "デフォルト動画再生速度",
"description": "動画再生のデフォルト速度を設定します\n値は0.1から4.0の間でなければなりません"
},
"video_playback_rate_slider": {
"name": "動画再生速度スライダー",
"description": "Operaコンテキストメニューに動画再生速度を変更するスライダーを追加します\n注: 変更はその後の動画にのみ適用されます"
},
"disable_google_play_dialogs": {
"name": "Google Play開発者サービスダイアログの無効化",
"description": "Google Play開発者サービスの利用可能性ダイアログが表示されるのを防ぎます"
},
"default_volume_controls": {
"name": "デフォルト音量コントロール",
"description": "Snapchatにシステム音量コントロールの使用を強制します"
},
"disable_telecom_framework": {
"name": "Telecomフレームワークの無効化",
"description": "SnapchatがAndroid Telecomフレームワークを使用するのを防ぎます\nこれにより、通話中に音楽を聴くことができます"
},
"hide_active_music": {
"name": "アクティブな音楽を隠す",
"description": "音楽を聴いていることをSnapchatに知られないようにします\nこれにより、音楽を聴きながら音量ボタンでSnapを撮影できるようになります"
},
"disable_snap_splitting": {
"name": "Snap分割の無効化",
"description": "Snapが複数のパートに分割されるのを防ぎます\n送信する写真は動画になります"
}
}
},
@@ -1143,7 +1220,7 @@
},
"stealth_mode_indicator": {
"name": "ステルスモードインジケーター",
"description": "ステルスモードの会話の横に\ud83d\udc7b絵文字を追加します"
"description": "ステルスモードの会話の横に👻絵文字を追加します"
},
"edit_text_override": {
"name": "テキスト編集のオーバーライド",
@@ -1671,164 +1748,6 @@
}
}
},
"global": {
"name": "グローバル",
"description": "グローバルなSnapchat設定を調整",
"properties": {
"better_location": {
"name": "位置情報の改善",
"description": "Snapchatの位置情報を強化します",
"properties": {
"spoof_location": {
"name": "位置情報偽装",
"description": "位置情報を指定したものに偽装します"
},
"coordinates": {
"name": "座標",
"description": "偽装場所の座標を設定します"
},
"walk_radius": {
"name": "歩行半径",
"description": "この半径内(フィート)をランダムに歩き回ります"
},
"always_update_location": {
"name": "常に位置情報を更新",
"description": "GPSデータが受信されない場合でもSnapchatに位置情報の更新を強制します"
},
"suspend_location_updates": {
"name": "位置情報の更新を一時停止",
"description": "位置情報が更新されるのを防ぎます"
},
"spoof_battery_level": {
"name": "バッテリーレベルの偽装",
"description": "マップ上のデバイスのバッテリーレベルを偽装します\n値は0から100の間でなければなりません"
},
"spoof_headphones": {
"name": "ヘッドフォンの偽装",
"description": "マップ上の音楽を聴いている状態を偽装します"
},
"show_battery_level": {
"name": "バッテリーレベルを表示",
"description": "マップ上にフレンドのバッテリーレベルを表示します"
}
}
},
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Snapchat Plusの機能を有効にします\n一部のサーバーサイド機能は動作しない場合があります"
},
"media_upload_quality": {
"name": "メディアアップロード品質",
"description": "メディアのアップロード品質を上書きします",
"properties": {
"force_video_upload_source_quality": {
"name": "ビデオアップロード時にソース品質を強制",
"description": "ビデオをアップロードする際にSnapchatにソース品質の使用を強制します\nこれによりメディアからメタデータが削除されない場合があります"
},
"disable_image_compression": {
"name": "画像圧縮を無効化",
"description": "メディアアップロード時の画像圧縮を無効にします"
},
"custom_image_upload_format": {
"name": "カスタム画像アップロード形式",
"description": "カスタム画像アップロード形式を設定します\n最高品質を得るにはロスレス形式PNGなどを選択してください"
}
}
},
"disable_confirmation_dialogs": {
"name": "確認ダイアログの無効化",
"description": "選択したアクションを自動的に確認します"
},
"auto_updater": {
"name": "自動アップデーター",
"description": "新しいアップデートを自動的に確認します"
},
"update_settings": {
"name": "アップデート設定",
"description": "PurrfectSnapのアップデート確認方法を制御",
"properties": {
"auto_update_check": {
"name": "自動アップデート確認"
},
"update_check_frequency": {
"name": "アップデート確認頻度"
}
}
},
"ui_settings": {
"name": "UI設定",
"properties": {
"haptic_feedback": {
"name": "触覚フィードバック"
}
}
},
"disable_metrics": {
"name": "メトリクスの無効化",
"description": "特定の分析データのSnapchatへの送信をブロックします"
},
"disable_story_sections": {
"name": "ストーリーセクションの無効化",
"description": "ストーリーページからセクションを削除します\n正しく動作させるにはリフレッシュが必要な場合があります"
},
"block_ads": {
"name": "広告ブロック",
"description": "広告が表示されるのを防ぎます"
},
"disable_custom_tabs": {
"name": "カスタムタブの無効化",
"description": "ウェブブラウザではなくサポートされているアプリケーションでリンクを開きます"
},
"disable_permission_requests": {
"name": "権限リクエストの無効化",
"description": "Snapchatが特定の権限を要求するのを防ぎます"
},
"disable_memories_snap_feed": {
"name": "思い出スナップフィードの無効化",
"description": "カメラで上にスワイプしたときに最近の思い出が表示されるのを防ぎます"
},
"spotlight_comments_username": {
"name": "スポットライトコメントのユーザー名",
"description": "スポットライトのコメントに作成者のユーザー名を表示します"
},
"spotlight_comments_username_icon": {
"name": "スポットライトコメントのユーザー名アイコン",
"description": "スポットライトコメントのユーザー名の横に表示するアイコンを選択します"
},
"bypass_video_length_restriction": {
"name": "動画の長さ制限の回避",
"description": "シングル: 単一の動画を送信します\n分割: 編集後に動画を分割します"
},
"default_video_playback_rate": {
"name": "デフォルト動画再生速度",
"description": "動画再生のデフォルト速度を設定します\n値は0.1から4.0の間でなければなりません"
},
"video_playback_rate_slider": {
"name": "動画再生速度スライダー",
"description": "Operaコンテキストメニューに動画再生速度を変更するスライダーを追加します\n注: 変更はその後の動画にのみ適用されます"
},
"disable_google_play_dialogs": {
"name": "Google Play開発者サービスダイアログの無効化",
"description": "Google Play開発者サービスの利用可能性ダイアログが表示されるのを防ぎます"
},
"default_volume_controls": {
"name": "デフォルト音量コントロール",
"description": "Snapchatにシステム音量コントロールの使用を強制します"
},
"disable_telecom_framework": {
"name": "Telecomフレームワークの無効化",
"description": "SnapchatがAndroid Telecomフレームワークを使用するのを防ぎます\nこれにより、通話中に音楽を聴くことができます"
},
"hide_active_music": {
"name": "アクティブな音楽を隠す",
"description": "音楽を聴いていることをSnapchatに知られないようにします\nこれにより、音楽を聴きながら音量ボタンでSnapを撮影できるようになります"
},
"disable_snap_splitting": {
"name": "Snap分割の無効化",
"description": "Snapが複数のパートに分割されるのを防ぎます\n送信する写真は動画になります"
}
}
},
"rules": {
"name": "ルール",
"description": "自動化ルールの設定",
@@ -2110,7 +2029,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "暗号化メッセージインジケーター",
"description": "暗号化されたメッセージの横に\ud83d\udd12絵文字を追加します"
"description": "暗号化されたメッセージの横に🔒絵文字を追加します"
},
"force_message_encryption": {
"name": "メッセージ暗号化の強制",
@@ -2190,6 +2109,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "常にライト",
"always_dark": "常にダーク",
@@ -2207,20 +2130,20 @@
"null": "実際のバッテリーレベルを使用"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f 自動ダウンロード",
"auto_save": "\ud83d\udcac メッセージ自動保存",
"unsaveable_messages": "\u2b07\ufe0f 保存不可メッセージ",
"auto_open_snaps": "\ud83d\udcf7 Snap自動開封",
"stealth": "\ud83d\udc7b ステルスモード",
"auto_reply": "\ud83d\udce8 自動返信",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f 送信メッセージの自動削除",
"mark_snaps_as_seen": "\ud83d\udc40 Snapを既読にする",
"mark_stories_as_seen_locally": "\ud83d\udc40 ストーリーをローカルで既読にする",
"conversation_info": "\ud83d\udc64 会話情報",
"e2e_encryption": "\ud83d\udd12 E2E暗号化を使用",
"message_logger": "\ud83d\udcdd メッセージロガー",
"auto_read": "\u2705 自動既読",
"hide_typing_indicator": "\ud83d\ude48 入力中インジケータを隠す"
"auto_download": "⬇️ 自動ダウンロード",
"auto_save": "💬 メッセージ自動保存",
"unsaveable_messages": "⬇️ 保存不可メッセージ",
"auto_open_snaps": "📷 Snap自動開封",
"stealth": "👻 ステルスモード",
"auto_reply": "📨 自動返信",
"auto_delete_sent_messages": "🗑️ 送信メッセージの自動削除",
"mark_snaps_as_seen": "👀 Snapを既読にする",
"mark_stories_as_seen_locally": "👀 ストーリーをローカルで既読にする",
"conversation_info": "👤 会話情報",
"e2e_encryption": "🔒 E2E暗号化を使用",
"message_logger": "📝 メッセージロガー",
"auto_read": " 自動既読",
"hide_typing_indicator": "🙈 入力中インジケータを隠す"
},
"schedule_scheduled_for": "{name} に {time} 後に予定されています",
"schedule_sending_in": "{time} 後に送信します",
@@ -2439,8 +2362,8 @@
},
"spotlight_comments_username_icon": {
"user": "ユーザー名アイコン",
"\ud83d\udc64": "ユーザー名アイコン",
"[\ud83d\udc64]": "ユーザー名アイコン",
"👤": "ユーザー名アイコン",
"[👤]": "ユーザー名アイコン",
"default": "ユーザー名アイコン",
"no_icon": "アイコンなし"
},
@@ -2520,11 +2443,11 @@
"phone_calls": "通話"
},
"message_indicators": {
"encryption_indicator": "あなただけに送信されたメッセージの横に\ud83d\udd12アイコンを追加します",
"encryption_indicator": "あなただけに送信されたメッセージの横に🔒アイコンを追加します",
"platform_indicator": "メディアが送信されたプラットフォームのアイコンを追加します(例: Android, iOS, Web",
"location_indicator": "位置情報を有効にして送信されたSnapに\ud83d\udccdアイコンを追加します",
"location_indicator": "位置情報を有効にして送信されたSnapに📍アイコンを追加します",
"ovf_editor_indicator": "SnapがOVF Editorを使用して送信されたかどうかを示します",
"director_mode_indicator": "Director Modeギャラリー画像をSnapとして送信するために使用可能を使用して送信されたSnapに\u270f\ufe0fアイコンを追加します"
"director_mode_indicator": "Director Modeギャラリー画像をSnapとして送信するために使用可能を使用して送信されたSnapに✏️アイコンを追加します"
},
"auto_mark_as_read": {
"conversation_read": "メッセージ送信時に会話を既読にする",
@@ -3077,7 +3000,7 @@
"queue_cleared": "キューを消去し統計をリセットしました",
"queue_cleared_title": "キュー消去済み",
"queue_cleared_reset": "キュー消去 & リセット",
"queue_cleared_feedback": "{count} 件のキュー内Snapを消去 \u2022 {processed} 件の処理済みカウントをリセット",
"queue_cleared_feedback": "{count} 件のキュー内Snapを消去 {processed} 件の処理済みカウントをリセット",
"queue_cleared_feedback_simple": "{processed} 件の処理済みカウントをリセット",
"unknown_sender": "不明",
"unknown_user": "不明なユーザー",

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 by Eternal",
"version_title": "v{versionName} · by Eternal",
"update_title": "PurrfectSnap 업데이트",
"update_content": "버전 {version}을(를) 사용할 수 있습니다!",
"update_button": "다운로드",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "작업 없음",
"merge_button": "병합",
"summary_active": "활성 {active}개 \u00b7 최근 {recent}개",
"summary_idle": "유휴 \u00b7 최근 {recent}개",
"summary_active": "활성 {active}개 · 최근 {recent}개",
"summary_idle": "유휴 · 최근 {recent}개",
"running_count": "{count}개 실행 중",
"clear_button_description": "작업 지우기",
"failed_to_open_file": "파일 열기 실패",
@@ -312,22 +312,22 @@
"remove_selected_tasks_confirm": "{count}개의 작업을 제거할까요?",
"remove_all_tasks_confirm": "모든 작업을 제거할까요?"
},
"features": {
"disabled": "비활성화됨",
"export_option": "내보내기",
"import_option": "가져오기",
"reset_option": "초기화",
"config_export_success_toast": "구성이 성공적으로 내보내졌습니다",
"config_import_success_toast": "구성이 성공적으로 가져와졌습니다",
"config_import_failure_toast": "구성 가져오기 실패: {error}",
"config_export_failure_toast": "구성 내보내기 실패: {error}",
"saved_config_snackbar": "구성 저장됨",
"older_required": "이 기능이 올바르게 작동하려면 Snapchat v{version} 이하 버전이 필요합니다",
"newer_required": "이 기능이 올바르게 작동하려면 Snapchat v{version} 이상 버전이 필요합니다",
"search_button": "검색",
"clear_history": "검색 기록 지우기",
"subtitle": "기능 검색 및 관리"
},
"features": {
"disabled": "비활성화됨",
"export_option": "내보내기",
"import_option": "가져오기",
"reset_option": "초기화",
"config_export_success_toast": "구성이 성공적으로 내보내졌습니다",
"config_import_success_toast": "구성이 성공적으로 가져와졌습니다",
"config_import_failure_toast": "구성 가져오기 실패: {error}",
"config_export_failure_toast": "구성 내보내기 실패: {error}",
"saved_config_snackbar": "구성 저장됨",
"older_required": "이 기능이 올바르게 작동하려면 Snapchat v{version} 이하 버전이 필요합니다",
"newer_required": "이 기능이 올바르게 작동하려면 Snapchat v{version} 이상 버전이 필요합니다",
"search_button": "검색",
"clear_history": "검색 기록 지우기",
"subtitle": "기능 검색 및 관리"
},
"bypass_status": {
"active": "PurrAura 활성",
"inactive": "PurrAura 비활성"
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "친구에게 텔레포트",
"search_bar": "검색",
"no_friends_map": "지도에 친구 없음",
"no_friends_found": "친구를 찾을 수 없음"
"no_friends_found": "친구를 찾을 수 없음",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,166 @@
},
"features": {
"notices": {
"unstable": "\u26a0 불안정함",
"ban_risk": "\u26a0 이 기능은 계정 정지를 유발할 수 있음",
"internal_behavior": "\u26a0 이 기능은 Snapchat 내부 동작을 깨뜨릴 수 있음"
},
"options": {
"empty": "비어 있음",
"walk_radius": {
"empty": "비어 있음"
},
"spoof_battery_level": {
"empty": "비어 있음"
},
"custom_android_id": {
"empty": "비어 있음"
},
"custom_streaks_expiration_format": {
"empty": "비어 있음"
},
"preferred_transcription_lang": {
"empty": "비어 있음"
},
"custom_emoji_font": {
"empty": "비어 있음"
},
"custom_shared_library": {
"empty": "비어 있음"
},
"custom_resolution": {
"empty": "비어 있음"
},
"custom_path_format": {
"empty": "비어 있음"
},
"custom_video_codec": {
"empty": "비어 있음"
},
"custom_audio_codec": {
"empty": "비어 있음"
},
"double_tap_chat_action_custom_emoji": {
"empty": "비어 있음"
},
"unsaveable_messages": {
"blacklist": "블랙리스트 모드",
"whitelist": "화이트리스트 모드",
"null": "비활성화됨"
},
"update_check_frequency": {
"daily": "매일",
"weekly": "매주",
"monthly": "매월"
}
"unstable": " 불안정함",
"ban_risk": " 이 기능은 계정 정지를 유발할 수 있음",
"internal_behavior": " 이 기능은 Snapchat 내부 동작을 깨뜨릴 수 있음"
},
"properties": {
"global": {
"name": "전역(Global)",
"description": "일반 모듈 환경 설정 및 기본값",
"description": "전역 Snapchat 설정 조정",
"properties": {
"ui_settings": {
"name": "UI 설정",
"description": "피드백 및 토스트 동작 조정",
"better_location": {
"name": "더 나은 위치(Better Location)",
"description": "Snapchat 위치 기능 향상",
"properties": {
"haptic_feedback": {
"name": "햅틱 피드백",
"description": "지원되는 상호 작용 시 진동"
"spoof_location": {
"name": "위치 위장",
"description": "위치를 지정된 곳으로 위장합니다"
},
"use_system_toasts": {
"name": "시스템 토스트 사용",
"description": "앱 내 오버레이 대신 안드로이드 시스템 토스트 표시"
"coordinates": {
"name": "좌표",
"description": "위장 위치의 좌표 설정"
},
"walk_radius": {
"name": "보행 반경",
"description": "이 반경(피트) 내에서 무작위로 돌아다닙니다"
},
"always_update_location": {
"name": "항상 위치 업데이트",
"description": "GPS 데이터가 수신되지 않아도 Snapchat이 위치를 업데이트하도록 강제"
},
"suspend_location_updates": {
"name": "위치 업데이트 중단",
"description": "위치가 업데이트되는 것을 방지합니다"
},
"spoof_battery_level": {
"name": "배터리 잔량 위장",
"description": "지도상에서 기기의 배터리 잔량을 위장합니다\n값은 0에서 100 사이여야 합니다"
},
"spoof_headphones": {
"name": "헤드폰 위장",
"description": "지도상에서 음악 감상 상태를 위장합니다"
},
"show_battery_level": {
"name": "배터리 잔량 표시",
"description": "지도상에서 친구들의 배터리 잔량을 표시합니다"
}
}
},
"update_settings": {
"name": "업데이트 설정",
"description": "자동 업데이트 확인 제어",
"snapchat_plus": {
"name": "Snapchat+",
"description": "Snapchat+ 기능을 활성화합니다\n일부 서버 측 기능은 작동하지 않을 수 있습니다"
},
"media_upload_quality": {
"name": "미디어 업로드 화질",
"description": "미디어 업로드 화질을 재정의합니다",
"properties": {
"auto_update_check": {
"name": "자동 업데이트 확인",
"description": "새 빌드를 자동으로 확인"
"force_video_upload_source_quality": {
"name": "비디오 업로드 원본 화질 강제",
"description": "비디오 업로드 시 Snapchat이 원본 화질을 사용하도록 강제합니다\n이 기능은 미디어에서 메타데이터를 제거하지 않을 수 있습니다"
},
"update_check_frequency": {
"name": "업데이트 확인 빈도",
"description": "업데이트 확인 주기"
"disable_image_compression": {
"name": "이미지 압축 비활성화",
"description": "미디어 업로드 시 이미지 압축을 비활성화합니다"
},
"custom_image_upload_format": {
"name": "사용자 지정 이미지 업로드 형식",
"description": "사용자 지정 이미지 업로드 형식 설정\n최고의 품질을 위해 무손실 형식(PNG 등)을 선택하세요"
}
}
},
"disable_confirmation_dialogs": {
"name": "확인 대화 상자 비활성화",
"description": "선택한 작업을 자동으로 확인합니다"
},
"auto_updater": {
"name": "자동 업데이트",
"description": "새 업데이트를 자동으로 확인합니다"
},
"update_settings": {
"name": "업데이트 설정",
"description": "PurrfectSnap 업데이트 확인 방식 제어",
"properties": {
"auto_update_check": {
"name": "자동 업데이트 확인"
},
"update_check_frequency": {
"name": "업데이트 확인 빈도"
}
}
},
"ui_settings": {
"name": "UI 설정",
"properties": {
"haptic_feedback": {
"name": "햅틱 피드백"
}
}
},
"disable_metrics": {
"name": "메트릭 비활성화",
"description": "Snapchat으로 특정 분석 데이터를 보내는 것을 차단합니다"
},
"disable_story_sections": {
"name": "스토리 섹션 비활성화",
"description": "스토리 페이지에서 섹션을 제거합니다\n제대로 작동하려면 새로 고침이 필요할 수 있습니다"
},
"block_ads": {
"name": "광고 차단",
"description": "광고가 표시되는 것을 방지합니다"
},
"disable_custom_tabs": {
"name": "사용자 지정 탭 비활성화",
"description": "웹 브라우저 대신 지원되는 애플리케이션에서 링크를 엽니다"
},
"disable_permission_requests": {
"name": "권한 요청 비활성화",
"description": "Snapchat이 특정 권한을 요청하는 것을 방지합니다"
},
"disable_memories_snap_feed": {
"name": "메모리 스냅 피드 비활성화",
"description": "카메라에서 위로 스와이프할 때 Snapchat이 최근 메모리를 표시하는 것을 방지합니다"
},
"spotlight_comments_username": {
"name": "스포트라이트 댓글 사용자 이름",
"description": "스포트라이트 댓글에 작성자 사용자 이름을 표시합니다"
},
"spotlight_comments_username_icon": {
"name": "스포트라이트 댓글 사용자 이름 아이콘",
"description": "스포트라이트 댓글에서 사용자 이름 옆에 표시할 아이콘을 선택합니다"
},
"bypass_video_length_restriction": {
"name": "비디오 길이 제한 우회",
"description": "단일(Single): 단일 비디오 전송\n분할(Split): 편집 후 비디오 분할"
},
"default_video_playback_rate": {
"name": "기본 비디오 재생 속도",
"description": "비디오 재생의 기본 속도를 설정합니다\n값은 0.1에서 4.0 사이여야 합니다"
},
"video_playback_rate_slider": {
"name": "비디오 재생 속도 슬라이더",
"description": "Opera 컨텍스트 메뉴에 비디오 재생 속도를 변경하는 슬라이더를 추가합니다\n참고: 변경 사항은 이후 비디오에만 적용됩니다"
},
"disable_google_play_dialogs": {
"name": "Google Play 서비스 대화 상자 비활성화",
"description": "Google Play 서비스 가용성 대화 상자가 표시되는 것을 방지합니다"
},
"default_volume_controls": {
"name": "기본 볼륨 컨트롤",
"description": "Snapchat이 시스템 볼륨 컨트롤을 사용하도록 강제합니다"
},
"disable_telecom_framework": {
"name": "통신 프레임워크 비활성화",
"description": "Snapchat이 Android 통신 프레임워크를 사용하는 것을 방지합니다\n통화 중에 음악을 들을 수 있게 합니다"
},
"hide_active_music": {
"name": "재생 중인 음악 숨기기",
"description": "Snapchat이 음악을 듣고 있다는 것을 알지 못하게 합니다\n음악을 듣는 동안 볼륨 버튼으로 스냅을 찍을 수 있게 합니다"
},
"disable_snap_splitting": {
"name": "스냅 분할 비활성화",
"description": "스냅이 여러 부분으로 분할되는 것을 방지합니다\n전송한 사진이 비디오로 바뀝니다"
}
}
},
@@ -1143,7 +1220,7 @@
},
"stealth_mode_indicator": {
"name": "몰래 보기 모드 표시기",
"description": "몰래 보기 모드인 대화 옆에 \ud83d\udc7b 이모지를 추가합니다"
"description": "몰래 보기 모드인 대화 옆에 👻 이모지를 추가합니다"
},
"edit_text_override": {
"name": "텍스트 편집 재정의",
@@ -1671,164 +1748,6 @@
}
}
},
"global": {
"name": "전역(Global)",
"description": "전역 Snapchat 설정 조정",
"properties": {
"better_location": {
"name": "더 나은 위치(Better Location)",
"description": "Snapchat 위치 기능 향상",
"properties": {
"spoof_location": {
"name": "위치 위장",
"description": "위치를 지정된 곳으로 위장합니다"
},
"coordinates": {
"name": "좌표",
"description": "위장 위치의 좌표 설정"
},
"walk_radius": {
"name": "보행 반경",
"description": "이 반경(피트) 내에서 무작위로 돌아다닙니다"
},
"always_update_location": {
"name": "항상 위치 업데이트",
"description": "GPS 데이터가 수신되지 않아도 Snapchat이 위치를 업데이트하도록 강제"
},
"suspend_location_updates": {
"name": "위치 업데이트 중단",
"description": "위치가 업데이트되는 것을 방지합니다"
},
"spoof_battery_level": {
"name": "배터리 잔량 위장",
"description": "지도상에서 기기의 배터리 잔량을 위장합니다\n값은 0에서 100 사이여야 합니다"
},
"spoof_headphones": {
"name": "헤드폰 위장",
"description": "지도상에서 음악 감상 상태를 위장합니다"
},
"show_battery_level": {
"name": "배터리 잔량 표시",
"description": "지도상에서 친구들의 배터리 잔량을 표시합니다"
}
}
},
"snapchat_plus": {
"name": "Snapchat+",
"description": "Snapchat+ 기능을 활성화합니다\n일부 서버 측 기능은 작동하지 않을 수 있습니다"
},
"media_upload_quality": {
"name": "미디어 업로드 화질",
"description": "미디어 업로드 화질을 재정의합니다",
"properties": {
"force_video_upload_source_quality": {
"name": "비디오 업로드 원본 화질 강제",
"description": "비디오 업로드 시 Snapchat이 원본 화질을 사용하도록 강제합니다\n이 기능은 미디어에서 메타데이터를 제거하지 않을 수 있습니다"
},
"disable_image_compression": {
"name": "이미지 압축 비활성화",
"description": "미디어 업로드 시 이미지 압축을 비활성화합니다"
},
"custom_image_upload_format": {
"name": "사용자 지정 이미지 업로드 형식",
"description": "사용자 지정 이미지 업로드 형식 설정\n최고의 품질을 위해 무손실 형식(PNG 등)을 선택하세요"
}
}
},
"disable_confirmation_dialogs": {
"name": "확인 대화 상자 비활성화",
"description": "선택한 작업을 자동으로 확인합니다"
},
"auto_updater": {
"name": "자동 업데이트",
"description": "새 업데이트를 자동으로 확인합니다"
},
"update_settings": {
"name": "업데이트 설정",
"description": "PurrfectSnap 업데이트 확인 방식 제어",
"properties": {
"auto_update_check": {
"name": "자동 업데이트 확인"
},
"update_check_frequency": {
"name": "업데이트 확인 빈도"
}
}
},
"ui_settings": {
"name": "UI 설정",
"properties": {
"haptic_feedback": {
"name": "햅틱 피드백"
}
}
},
"disable_metrics": {
"name": "메트릭 비활성화",
"description": "Snapchat으로 특정 분석 데이터를 보내는 것을 차단합니다"
},
"disable_story_sections": {
"name": "스토리 섹션 비활성화",
"description": "스토리 페이지에서 섹션을 제거합니다\n제대로 작동하려면 새로 고침이 필요할 수 있습니다"
},
"block_ads": {
"name": "광고 차단",
"description": "광고가 표시되는 것을 방지합니다"
},
"disable_custom_tabs": {
"name": "사용자 지정 탭 비활성화",
"description": "웹 브라우저 대신 지원되는 애플리케이션에서 링크를 엽니다"
},
"disable_permission_requests": {
"name": "권한 요청 비활성화",
"description": "Snapchat이 특정 권한을 요청하는 것을 방지합니다"
},
"disable_memories_snap_feed": {
"name": "메모리 스냅 피드 비활성화",
"description": "카메라에서 위로 스와이프할 때 Snapchat이 최근 메모리를 표시하는 것을 방지합니다"
},
"spotlight_comments_username": {
"name": "스포트라이트 댓글 사용자 이름",
"description": "스포트라이트 댓글에 작성자 사용자 이름을 표시합니다"
},
"spotlight_comments_username_icon": {
"name": "스포트라이트 댓글 사용자 이름 아이콘",
"description": "스포트라이트 댓글에서 사용자 이름 옆에 표시할 아이콘을 선택합니다"
},
"bypass_video_length_restriction": {
"name": "비디오 길이 제한 우회",
"description": "단일(Single): 단일 비디오 전송\n분할(Split): 편집 후 비디오 분할"
},
"default_video_playback_rate": {
"name": "기본 비디오 재생 속도",
"description": "비디오 재생의 기본 속도를 설정합니다\n값은 0.1에서 4.0 사이여야 합니다"
},
"video_playback_rate_slider": {
"name": "비디오 재생 속도 슬라이더",
"description": "Opera 컨텍스트 메뉴에 비디오 재생 속도를 변경하는 슬라이더를 추가합니다\n참고: 변경 사항은 이후 비디오에만 적용됩니다"
},
"disable_google_play_dialogs": {
"name": "Google Play 서비스 대화 상자 비활성화",
"description": "Google Play 서비스 가용성 대화 상자가 표시되는 것을 방지합니다"
},
"default_volume_controls": {
"name": "기본 볼륨 컨트롤",
"description": "Snapchat이 시스템 볼륨 컨트롤을 사용하도록 강제합니다"
},
"disable_telecom_framework": {
"name": "통신 프레임워크 비활성화",
"description": "Snapchat이 Android 통신 프레임워크를 사용하는 것을 방지합니다\n통화 중에 음악을 들을 수 있게 합니다"
},
"hide_active_music": {
"name": "재생 중인 음악 숨기기",
"description": "Snapchat이 음악을 듣고 있다는 것을 알지 못하게 합니다\n음악을 듣는 동안 볼륨 버튼으로 스냅을 찍을 수 있게 합니다"
},
"disable_snap_splitting": {
"name": "스냅 분할 비활성화",
"description": "스냅이 여러 부분으로 분할되는 것을 방지합니다\n전송한 사진이 비디오로 바뀝니다"
}
}
},
"rules": {
"name": "규칙",
"description": "자동화 규칙 구성",
@@ -2110,7 +2029,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "암호화된 메시지 표시기",
"description": "암호화된 메시지 옆에 \ud83d\udd12 이모지를 추가합니다"
"description": "암호화된 메시지 옆에 🔒 이모지를 추가합니다"
},
"force_message_encryption": {
"name": "메시지 암호화 강제",
@@ -2190,6 +2109,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "항상 라이트",
"always_dark": "항상 다크",
@@ -2207,20 +2130,20 @@
"null": "실제 배터리 잔량 사용"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f 자동 다운로드",
"auto_save": "\ud83d\udcac 메시지 자동 저장",
"unsaveable_messages": "\u2b07\ufe0f 저장 불가 메시지",
"auto_open_snaps": "\ud83d\udcf7 스냅 자동 열기",
"stealth": "\ud83d\udc7b 몰래 보기 모드",
"auto_reply": "\ud83d\udce8 자동 응답",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f 보낸 메시지 자동 삭제",
"mark_snaps_as_seen": "\ud83d\udc40 스냅 본 것으로 표시",
"mark_stories_as_seen_locally": "\ud83d\udc40 스토리 로컬에서 본 것으로 표시",
"conversation_info": "\ud83d\udc64 대화 정보",
"e2e_encryption": "\ud83d\udd12 E2E 암호화 사용",
"message_logger": "\ud83d\udcdd 메시지 로거",
"auto_read": "\u2705 자동 읽음",
"hide_typing_indicator": "\ud83d\ude48 입력 표시 숨기기"
"auto_download": "⬇️ 자동 다운로드",
"auto_save": "💬 메시지 자동 저장",
"unsaveable_messages": "⬇️ 저장 불가 메시지",
"auto_open_snaps": "📷 스냅 자동 열기",
"stealth": "👻 몰래 보기 모드",
"auto_reply": "📨 자동 응답",
"auto_delete_sent_messages": "🗑️ 보낸 메시지 자동 삭제",
"mark_snaps_as_seen": "👀 스냅 본 것으로 표시",
"mark_stories_as_seen_locally": "👀 스토리 로컬에서 본 것으로 표시",
"conversation_info": "👤 대화 정보",
"e2e_encryption": "🔒 E2E 암호화 사용",
"message_logger": "📝 메시지 로거",
"auto_read": " 자동 읽음",
"hide_typing_indicator": "🙈 입력 표시 숨기기"
},
"schedule_scheduled_for": "{time} 후 {name}에게 전송 예약됨",
"schedule_sending_in": "{time} 후 전송",
@@ -2323,16 +2246,16 @@
"custom_android_id": {
"null": "실제 Android ID 사용"
},
"add_friend_source_spoof": {
"added_by_username": "사용자 이름으로 추가",
"added_by_mention": "멘션으로 추가",
"added_by_group_chat": "그룹 채팅으로 추가",
"added_by_qr_code": "QR 코드로 추가",
"added_by_community": "커뮤니티로 추가",
"added_by_quick_add": "빠른 추가로 추가 (정지 위험 높음)",
"added_by_spotlight": "스포트라이트로 추가",
"null": "소스를 위장하지 않음"
},
"add_friend_source_spoof": {
"added_by_username": "사용자 이름으로 추가",
"added_by_mention": "멘션으로 추가",
"added_by_group_chat": "그룹 채팅으로 추가",
"added_by_qr_code": "QR 코드로 추가",
"added_by_community": "커뮤니티로 추가",
"added_by_quick_add": "빠른 추가로 추가 (정지 위험 높음)",
"added_by_spotlight": "스포트라이트로 추가",
"null": "소스를 위장하지 않음"
},
"custom_streaks_expiration_format": {
"null": "시스템 기본값"
},
@@ -2438,8 +2361,8 @@
},
"spotlight_comments_username_icon": {
"user": "사용자 이름 아이콘",
"\ud83d\udc64": "사용자 이름 아이콘",
"[\ud83d\udc64]": "사용자 이름 아이콘",
"👤": "사용자 이름 아이콘",
"[👤]": "사용자 이름 아이콘",
"default": "사용자 이름 아이콘",
"no_icon": "아이콘 없음"
},
@@ -2519,11 +2442,11 @@
"phone_calls": "전화 통화"
},
"message_indicators": {
"encryption_indicator": "나에게만 전송된 메시지 옆에 \ud83d\udd12 아이콘을 추가합니다",
"encryption_indicator": "나에게만 전송된 메시지 옆에 🔒 아이콘을 추가합니다",
"platform_indicator": "미디어가 전송된 플랫폼 아이콘을 추가합니다(예: Android, iOS, 웹)",
"location_indicator": "위치가 활성화된 상태로 전송된 스냅에 \ud83d\udccd 아이콘을 추가합니다",
"location_indicator": "위치가 활성화된 상태로 전송된 스냅에 📍 아이콘을 추가합니다",
"ovf_editor_indicator": "스냅이 OVF Editor를 사용하여 전송되었는지 나타냅니다",
"director_mode_indicator": "디렉터 모드를 사용하여 전송된 스냅에 \u270f\ufe0f 아이콘을 추가합니다. 디렉터 모드를 사용하면 갤러리 이미지를 스냅으로 보낼 수 있습니다"
"director_mode_indicator": "디렉터 모드를 사용하여 전송된 스냅에 ✏️ 아이콘을 추가합니다. 디렉터 모드를 사용하면 갤러리 이미지를 스냅으로 보낼 수 있습니다"
},
"auto_mark_as_read": {
"conversation_read": "메시지를 보낼 때 대화를 읽음으로 표시",
@@ -2747,7 +2670,6 @@
"show_chat_edit_history": "채팅 편집 기록 보기",
"convert_message": "메시지 변환"
},
"chat_wallpaper_downloader": {
"download_button": "채팅 배경화면 다운로드"
},
@@ -3077,7 +2999,7 @@
"queue_cleared": "대기열이 지워지고 통계가 초기화되었습니다",
"queue_cleared_title": "대기열 지워짐",
"queue_cleared_reset": "대기열 지워짐 및 초기화",
"queue_cleared_feedback": "{count}개의 대기 스냅 지움 \u2022 처리됨 카운트 {processed}개 초기화",
"queue_cleared_feedback": "{count}개의 대기 스냅 지움 처리됨 카운트 {processed}개 초기화",
"queue_cleared_feedback_simple": "처리됨 카운트 {processed}개 초기화",
"unknown_sender": "알 수 없음",
"unknown_user": "알 수 없는 사용자",

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 لەلایەن Eternal",
"version_title": "v{versionName} · لەلایەن Eternal",
"update_title": "نوێکردنەوەی PurrfectSnap",
"update_content": "وەشانی {version} بەردەستە!",
"update_button": "دابەزاندن",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "هیچ ئەرکێک نییە",
"merge_button": "تێکەڵکردن",
"summary_active": "{active} چالاک \u00b7 {recent} کۆتاکان",
"summary_idle": "بێکار \u00b7 {recent} کۆتاکان",
"summary_active": "{active} چالاک · {recent} کۆتاکان",
"summary_idle": "بێکار · {recent} کۆتاکان",
"running_count": "{count} کار دەکات",
"clear_button_description": "پاککردنەوەی ئەرکەکان",
"failed_to_open_file": "کردنەوەی فایل سەرکەوتوو نەبوو",
@@ -312,22 +312,22 @@
"remove_selected_tasks_confirm": "{count} ئەرک دەسڕیتەوە؟",
"remove_all_tasks_confirm": "هەموو ئەرکەکان دەسڕیتەوە؟"
},
"features": {
"disabled": "ناچالاک کراوە",
"export_option": "هەناردەکردن",
"import_option": "هاوردەکردن",
"reset_option": "ڕیست",
"config_export_success_toast": "ڕێکخستنەکان بە سەرکەوتوویی هەناردەکران",
"config_import_success_toast": "ڕێکخستنەکان بە سەرکەوتوویی هاوردەکران",
"config_import_failure_toast": "هاوردەکردنی ڕێکخستنەکان سەرکەوتوو نەبوو {error}",
"config_export_failure_toast": "هەناردەکردنی ڕێکخستنەکان سەرکەوتوو نەبوو {error}",
"saved_config_snackbar": "ڕێکخستن پاشەکەوت کرا",
"older_required": "ئەم تایبەتمەندییە پێویستی بە سناپچاتی وەشانی {version} یان کۆنتر هەیە بۆ ئەوەی بە دروستی کار بکات",
"newer_required": "ئەم تایبەتمەندییە پێویستی بە سناپچاتی وەشانی {version} یان نوێتر هەیە بۆ ئەوەی بە دروستی کار بکات",
"search_button": "گەڕان",
"clear_history": "پاککردنەوەی مێژووی گەڕان",
"subtitle": "گەڕان و بەڕێوەبردنی تایبەتمەندییەکان"
},
"features": {
"disabled": "ناچالاک کراوە",
"export_option": "هەناردەکردن",
"import_option": "هاوردەکردن",
"reset_option": "ڕیست",
"config_export_success_toast": "ڕێکخستنەکان بە سەرکەوتوویی هەناردەکران",
"config_import_success_toast": "ڕێکخستنەکان بە سەرکەوتوویی هاوردەکران",
"config_import_failure_toast": "هاوردەکردنی ڕێکخستنەکان سەرکەوتوو نەبوو {error}",
"config_export_failure_toast": "هەناردەکردنی ڕێکخستنەکان سەرکەوتوو نەبوو {error}",
"saved_config_snackbar": "ڕێکخستن پاشەکەوت کرا",
"older_required": "ئەم تایبەتمەندییە پێویستی بە سناپچاتی وەشانی {version} یان کۆنتر هەیە بۆ ئەوەی بە دروستی کار بکات",
"newer_required": "ئەم تایبەتمەندییە پێویستی بە سناپچاتی وەشانی {version} یان نوێتر هەیە بۆ ئەوەی بە دروستی کار بکات",
"search_button": "گەڕان",
"clear_history": "پاککردنەوەی مێژووی گەڕان",
"subtitle": "گەڕان و بەڕێوەبردنی تایبەتمەندییەکان"
},
"bypass_status": {
"active": "PurrAura چالاکە",
"inactive": "PurrAura ناچالاکە"
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "گواستنەوە بۆ لای هاوڕێ",
"search_bar": "گەڕان",
"no_friends_map": "هیچ هاوڕێیەک لەسەر نەخشە نییە",
"no_friends_found": "هیچ هاوڕێیەک نەدۆزرایەوە"
"no_friends_found": "هیچ هاوڕێیەک نەدۆزرایەوە",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,146 @@
},
"features": {
"notices": {
"unstable": "\u26a0 جێگیر نییە (Unstable)",
"ban_risk": "\u26a0 ئەم تایبەتمەندییە ڕەنگە ببێتە هۆی باندکردن",
"internal_behavior": "\u26a0 ئەمە ڕەنگە ڕەفتاری ناوخۆیی سناپچات تێک بدات"
},
"options": {
"empty": "بەتاڵ",
"walk_radius": {
"empty": "بەتاڵ"
},
"spoof_battery_level": {
"empty": "بەتاڵ"
},
"custom_android_id": {
"empty": "بەتاڵ"
},
"custom_streaks_expiration_format": {
"empty": "بەتاڵ"
},
"preferred_transcription_lang": {
"empty": "بەتاڵ"
},
"custom_emoji_font": {
"empty": "بەتاڵ"
},
"custom_shared_library": {
"empty": "بەتاڵ"
},
"custom_resolution": {
"empty": "بەتاڵ"
},
"custom_path_format": {
"empty": "بەتاڵ"
},
"custom_video_codec": {
"empty": "بەتاڵ"
},
"custom_audio_codec": {
"empty": "بەتاڵ"
},
"double_tap_chat_action_custom_emoji": {
"empty": "بەتاڵ"
},
"unsaveable_messages": {
"blacklist": "دۆخی لیستی ڕەش",
"whitelist": "دۆخی لیستی سپی",
"null": "ناچالاک کراوە"
},
"update_check_frequency": {
"daily": "ڕۆژانە",
"weekly": "هەفتانە",
"monthly": "مانگانە"
}
"unstable": " جێگیر نییە (Unstable)",
"ban_risk": " ئەم تایبەتمەندییە ڕەنگە ببێتە هۆی باندکردن",
"internal_behavior": " ئەمە ڕەنگە ڕەفتاری ناوخۆیی سناپچات تێک بدات"
},
"properties": {
"global": {
"name": "گشتی",
"description": "پەسەندکراوە گشتییەکانی مۆدیوڵ",
"description": "دەستکاریکردنی ڕێکخستنە گشتییەکانی سناپچات",
"properties": {
"ui_settings": {
"name": "ڕێکخستنەکانی ڕووکار (UI)",
"description": "ڕێکخستنی کاردانەوە و پەیامەکان",
"better_location": {
"name": "شوێنی باشتر",
"description": "شوێنی سناپچات باشتر دەکات",
"properties": {
"haptic_feedback": {
"name": "لەرینەوە (Haptic Feedback)",
"description": "لەرینەوە لە کاتی کارلێکە پشتگیریکراوەکان"
"spoof_location": {
"name": "ساختەکردنی شوێن (Spoof)",
"description": "شوێنەکەت دەگۆڕێت بۆ شوێنێکی دیاریکراو"
},
"use_system_toasts": {
"name": "بەکارهێنانی پەیامی سیستەم",
"description": "نیشاندانی پەیامی ئەندرۆید لە جیاتی پەیامی ناو بەرنامە"
"coordinates": {
"name": "شوێن (Coordinates)",
"description": "شوێنی ساختەکراوەکە دیاری دەکات"
},
"walk_radius": {
"name": "بازنەی ڕۆیشتن",
"description": "بە هەڕەمەکی دەسوڕێتەوە لەم بازنەیەدا (پێ ft)"
},
"always_update_location": {
"name": "هەمیشە نوێکردنەوەی شوێن",
"description": "سناپچات ناچار دەکات شوێن نوێ بکاتەوە تەنانەت ئەگەر داتای GPS وەرنەگیرێت"
},
"suspend_location_updates": {
"name": "ڕاگرتنی نوێبوونەوەی شوێن",
"description": "ڕێگری دەکات لە نوێبوونەوەی شوێنەکەت"
},
"spoof_battery_level": {
"name": "ساختەکردنی ئاستی باتری",
"description": "ئاستی باتری ئامێرەکەت ساختە دەکات لەسەر نەخشە\nبەها دەبێت لە نێوان ٠ و ١٠٠ بێت"
},
"spoof_headphones": {
"name": "ساختەکردنی هێدفۆن",
"description": "دۆخی گوێگرتن لە مۆسیقا ساختە دەکات لەسەر نەخشە"
},
"show_battery_level": {
"name": "نیشاندانی ئاستی باتری",
"description": "ئاستی باتری هاوڕێکانت نیشان دەدات لەسەر نەخشە"
}
}
},
"update_settings": {
"name": "ڕێکخستنەکانی نوێکردنەوە",
"description": "کۆنترۆڵی پشکنینی نوێکردنەوەی خۆکار",
"snapchat_plus": {
"name": "سناپچات پڵەس",
"description": "تایبەتمەندییەکانی سناپچات پڵەس چالاک دەکات\nهەندێک تایبەتمەندی لای سێرڤەر ڕەنگە کار نەکەن"
},
"media_upload_quality": {
"name": "کوالیتی ئەپلۆدی میدیا",
"description": "کوالیتی ئەپلۆدی میدیا دەگۆڕێت",
"properties": {
"auto_update_check": {
"name": "پشکنینی نوێکردنەوەی خۆکار",
"description": "پشکنین بۆ وەشانی نوێ بە خۆکاری"
"force_video_upload_source_quality": {
"name": "سەپاندنی کوالیتی سەرچاوە بۆ ئەپلۆدی ڤیدیۆ",
"description": "سناپچات ناچار دەکات کوالیتی سەرچاوە بەکاربهێنێت کاتێک ڤیدیۆ ئەپلۆد دەکات\nتکایە تێبینی بکە ئەمە ڕەنگە مێتاداتای میدیاکە لانەبات"
},
"update_check_frequency": {
"name": "ماوەی پشکنینی نوێکردنەوە",
"description": "چەند جار پشکنین بکرێت بۆ نوێکردنەوە"
"disable_image_compression": {
"name": "ناچالاککردنی کەمکردنەوەی قەبارەی وێنە",
"description": "پەستاندنی (compression) وێنە ناچالاک دەکات کاتێک میدیا ئەپلۆد دەکات"
},
"custom_image_upload_format": {
"name": "فۆرماتی ئەپلۆدی وێنەی تایبەت",
"description": "فۆرماتێکی تایبەت دادەنێت بۆ ئەپلۆدی وێنە\nفۆرماتێکی بێ زیان (وەک PNG) هەڵبژێرە بۆ باشترین کوالیتی"
}
}
},
"disable_confirmation_dialogs": {
"name": "ناچالاککردنی پەنجەرەی پشتڕاستکردنەوە",
"description": "بە خۆکاری کردارە هەڵبژێردراوەکان پشتڕاست دەکاتەوە"
},
"auto_updater": {
"name": "نوێکەرەوەی خۆکار",
"description": "بە خۆکاری دەگەڕێت بۆ نوێکردنەوەی نوێ"
},
"disable_metrics": {
"name": "ناچالاککردنی پێوەرەکان (Metrics)",
"description": "ڕێگری دەکات لە ناردنی داتای شیکاری دیاریکراو بۆ سناپچات"
},
"disable_story_sections": {
"name": "ناچالاککردنی بەشەکانی ستۆری",
"description": "بەشەکان لادەبات لە پەڕەی ستۆرییەکان\nڕەنگە پێویستی بە نوێکردنەوەیەک (refresh) بێت بۆ کارکردن"
},
"block_ads": {
"name": "بلۆککردنی ڕیکلام",
"description": "ڕێگری دەکات لە دەرکەوتنی ڕیکلامەکان"
},
"disable_custom_tabs": {
"name": "ناچالاککردنی تابی تایبەت",
"description": "لینکەکان لە بەرنامە پشتگیریکراوەکان دەکاتەوە لە جیاتی وێبگەڕی ناوخۆ"
},
"disable_permission_requests": {
"name": "ناچالاککردنی داواکاری مۆڵەت",
"description": "ڕێگری دەکات لە سناپچات بۆ داواکردنی مۆڵەتی دیاریکراو"
},
"disable_memories_snap_feed": {
"name": "ناچالاککردنی لیستی میمۆری سناپ",
"description": "ڕێگری لە سناپچات دەکات لە نیشاندانی میمۆرییە نوێکان کاتێک لە کامێرا swipe up دەکەیت"
},
"spotlight_comments_username": {
"name": "ناوی بەکارهێنەر لە کۆمێنتەکانی سپۆتلایت",
"description": "ناوی بەکارهێنەر نیشان دەدات لە کۆمێنتەکانی سپۆتلایت"
},
"spotlight_comments_username_icon": {
"name": "ئایکۆنی ناوی بەکارهێنەر لە کۆمێنتەکانی سپۆتلایت",
"description": "هەڵبژێرە کام ئایکۆن نیشان بدرێت لە تەنیشت ناوی بەکارهێنەر"
},
"bypass_video_length_restriction": {
"name": "تێپەڕاندنی سنووردارکردنی درێژی ڤیدیۆ",
"description": "تاک: یەک ڤیدیۆ دەنێرێت\nدابەشکراو: ڤیدیۆکان دابەش دەکات دوای دەستکاریکردن"
},
"default_video_playback_rate": {
"name": "خێرایی لێدانی ڤیدیۆی بەنێردراو",
"description": "خێرایی بەنێردراو دادەنێت بۆ لێدانی ڤیدیۆکان\nبەها دەبێت لە نێوان ٠.١ و ٤.٠ بێت"
},
"video_playback_rate_slider": {
"name": "سلایدەری خێرایی لێدانی ڤیدیۆ",
"description": "سلایدەرێک زیاد دەکات لە لیستی opera بۆ گۆڕینی خێرایی ڤیدیۆ\nتێبینی: گۆڕانکارییەکان تەنها بۆ ڤیدیۆکانی دواتر جێبەجێ دەبن"
},
"disable_google_play_dialogs": {
"name": "ناچالاککردنی پەیامەکانی Google Play Services",
"description": "ڕێگری دەکات لە دەرکەوتنی پەیامەکانی بەردەستبوونی Google Play Services"
},
"default_volume_controls": {
"name": "کۆنترۆڵی دەنگی بەنێردراو",
"description": "سناپچات ناچار دەکات کۆنترۆڵی دەنگی سیستەم بەکاربهێنێت"
},
"disable_telecom_framework": {
"name": "ناچالاککردنی چوارچێوەی پەیوەندی (Telecom)",
"description": "ڕێگری دەکات لە سناپچات بۆ بەکارهێنانی Android Telecom framework\nئەمە ڕێگەت دەدات گوێ لە مۆسیقا بگریت لە کاتی پەیوەندیدا"
},
"hide_active_music": {
"name": "شاردنەوەی مۆسیقای چالاک",
"description": "ڕێگری دەکات لە سناپچات بزانێت کە گوێ لە مۆسیقا دەگریت\nئەمە ڕێگەت دەدات سناپ بگریت بە بەکارهێنانی دوگمەکانی دەنگ لە کاتی گوێگرتن لە مۆسیقا"
},
"disable_snap_splitting": {
"name": "ناچالاککردنی دابەشکردنی سناپ",
"description": "ڕێگری دەکات لە دابەشکردنی سناپەکان بۆ چەند بەشێک\nئەو وێنانەی دەینێریت دەبن بە ڤیدیۆ"
}
}
},
@@ -1143,7 +1200,7 @@
},
"stealth_mode_indicator": {
"name": "نیشاندەری دۆخی شاراوە",
"description": "ئیمۆجی \ud83d\udc7b زیاد دەکات لە تەنیشت گفتوگۆکان لە دۆخی شاراوە"
"description": "ئیمۆجی 👻 زیاد دەکات لە تەنیشت گفتوگۆکان لە دۆخی شاراوە"
},
"edit_text_override": {
"name": "گۆڕینی دەستکاریکردنی دەق",
@@ -1671,144 +1728,6 @@
}
}
},
"global": {
"name": "گشتی",
"description": "دەستکاریکردنی ڕێکخستنە گشتییەکانی سناپچات",
"properties": {
"better_location": {
"name": "شوێنی باشتر",
"description": "شوێنی سناپچات باشتر دەکات",
"properties": {
"spoof_location": {
"name": "ساختەکردنی شوێن (Spoof)",
"description": "شوێنەکەت دەگۆڕێت بۆ شوێنێکی دیاریکراو"
},
"coordinates": {
"name": "شوێن (Coordinates)",
"description": "شوێنی ساختەکراوەکە دیاری دەکات"
},
"walk_radius": {
"name": "بازنەی ڕۆیشتن",
"description": "بە هەڕەمەکی دەسوڕێتەوە لەم بازنەیەدا (پێ ft)"
},
"always_update_location": {
"name": "هەمیشە نوێکردنەوەی شوێن",
"description": "سناپچات ناچار دەکات شوێن نوێ بکاتەوە تەنانەت ئەگەر داتای GPS وەرنەگیرێت"
},
"suspend_location_updates": {
"name": "ڕاگرتنی نوێبوونەوەی شوێن",
"description": "ڕێگری دەکات لە نوێبوونەوەی شوێنەکەت"
},
"spoof_battery_level": {
"name": "ساختەکردنی ئاستی باتری",
"description": "ئاستی باتری ئامێرەکەت ساختە دەکات لەسەر نەخشە\nبەها دەبێت لە نێوان ٠ و ١٠٠ بێت"
},
"spoof_headphones": {
"name": "ساختەکردنی هێدفۆن",
"description": "دۆخی گوێگرتن لە مۆسیقا ساختە دەکات لەسەر نەخشە"
},
"show_battery_level": {
"name": "نیشاندانی ئاستی باتری",
"description": "ئاستی باتری هاوڕێکانت نیشان دەدات لەسەر نەخشە"
}
}
},
"snapchat_plus": {
"name": "سناپچات پڵەس",
"description": "تایبەتمەندییەکانی سناپچات پڵەس چالاک دەکات\nهەندێک تایبەتمەندی لای سێرڤەر ڕەنگە کار نەکەن"
},
"media_upload_quality": {
"name": "کوالیتی ئەپلۆدی میدیا",
"description": "کوالیتی ئەپلۆدی میدیا دەگۆڕێت",
"properties": {
"force_video_upload_source_quality": {
"name": "سەپاندنی کوالیتی سەرچاوە بۆ ئەپلۆدی ڤیدیۆ",
"description": "سناپچات ناچار دەکات کوالیتی سەرچاوە بەکاربهێنێت کاتێک ڤیدیۆ ئەپلۆد دەکات\nتکایە تێبینی بکە ئەمە ڕەنگە مێتاداتای میدیاکە لانەبات"
},
"disable_image_compression": {
"name": "ناچالاککردنی کەمکردنەوەی قەبارەی وێنە",
"description": "پەستاندنی (compression) وێنە ناچالاک دەکات کاتێک میدیا ئەپلۆد دەکات"
},
"custom_image_upload_format": {
"name": "فۆرماتی ئەپلۆدی وێنەی تایبەت",
"description": "فۆرماتێکی تایبەت دادەنێت بۆ ئەپلۆدی وێنە\nفۆرماتێکی بێ زیان (وەک PNG) هەڵبژێرە بۆ باشترین کوالیتی"
}
}
},
"disable_confirmation_dialogs": {
"name": "ناچالاککردنی پەنجەرەی پشتڕاستکردنەوە",
"description": "بە خۆکاری کردارە هەڵبژێردراوەکان پشتڕاست دەکاتەوە"
},
"auto_updater": {
"name": "نوێکەرەوەی خۆکار",
"description": "بە خۆکاری دەگەڕێت بۆ نوێکردنەوەی نوێ"
},
"disable_metrics": {
"name": "ناچالاککردنی پێوەرەکان (Metrics)",
"description": "ڕێگری دەکات لە ناردنی داتای شیکاری دیاریکراو بۆ سناپچات"
},
"disable_story_sections": {
"name": "ناچالاککردنی بەشەکانی ستۆری",
"description": "بەشەکان لادەبات لە پەڕەی ستۆرییەکان\nڕەنگە پێویستی بە نوێکردنەوەیەک (refresh) بێت بۆ کارکردن"
},
"block_ads": {
"name": "بلۆککردنی ڕیکلام",
"description": "ڕێگری دەکات لە دەرکەوتنی ڕیکلامەکان"
},
"disable_custom_tabs": {
"name": "ناچالاککردنی تابی تایبەت",
"description": "لینکەکان لە بەرنامە پشتگیریکراوەکان دەکاتەوە لە جیاتی وێبگەڕی ناوخۆ"
},
"disable_permission_requests": {
"name": "ناچالاککردنی داواکاری مۆڵەت",
"description": "ڕێگری دەکات لە سناپچات بۆ داواکردنی مۆڵەتی دیاریکراو"
},
"disable_memories_snap_feed": {
"name": "ناچالاککردنی لیستی میمۆری سناپ",
"description": "ڕێگری لە سناپچات دەکات لە نیشاندانی میمۆرییە نوێکان کاتێک لە کامێرا swipe up دەکەیت"
},
"spotlight_comments_username": {
"name": "ناوی بەکارهێنەر لە کۆمێنتەکانی سپۆتلایت",
"description": "ناوی بەکارهێنەر نیشان دەدات لە کۆمێنتەکانی سپۆتلایت"
},
"spotlight_comments_username_icon": {
"name": "ئایکۆنی ناوی بەکارهێنەر لە کۆمێنتەکانی سپۆتلایت",
"description": "هەڵبژێرە کام ئایکۆن نیشان بدرێت لە تەنیشت ناوی بەکارهێنەر"
},
"bypass_video_length_restriction": {
"name": "تێپەڕاندنی سنووردارکردنی درێژی ڤیدیۆ",
"description": "تاک: یەک ڤیدیۆ دەنێرێت\nدابەشکراو: ڤیدیۆکان دابەش دەکات دوای دەستکاریکردن"
},
"default_video_playback_rate": {
"name": "خێرایی لێدانی ڤیدیۆی بەنێردراو",
"description": "خێرایی بەنێردراو دادەنێت بۆ لێدانی ڤیدیۆکان\nبەها دەبێت لە نێوان ٠.١ و ٤.٠ بێت"
},
"video_playback_rate_slider": {
"name": "سلایدەری خێرایی لێدانی ڤیدیۆ",
"description": "سلایدەرێک زیاد دەکات لە لیستی opera بۆ گۆڕینی خێرایی ڤیدیۆ\nتێبینی: گۆڕانکارییەکان تەنها بۆ ڤیدیۆکانی دواتر جێبەجێ دەبن"
},
"disable_google_play_dialogs": {
"name": "ناچالاککردنی پەیامەکانی Google Play Services",
"description": "ڕێگری دەکات لە دەرکەوتنی پەیامەکانی بەردەستبوونی Google Play Services"
},
"default_volume_controls": {
"name": "کۆنترۆڵی دەنگی بەنێردراو",
"description": "سناپچات ناچار دەکات کۆنترۆڵی دەنگی سیستەم بەکاربهێنێت"
},
"disable_telecom_framework": {
"name": "ناچالاککردنی چوارچێوەی پەیوەندی (Telecom)",
"description": "ڕێگری دەکات لە سناپچات بۆ بەکارهێنانی Android Telecom framework\nئەمە ڕێگەت دەدات گوێ لە مۆسیقا بگریت لە کاتی پەیوەندیدا"
},
"hide_active_music": {
"name": "شاردنەوەی مۆسیقای چالاک",
"description": "ڕێگری دەکات لە سناپچات بزانێت کە گوێ لە مۆسیقا دەگریت\nئەمە ڕێگەت دەدات سناپ بگریت بە بەکارهێنانی دوگمەکانی دەنگ لە کاتی گوێگرتن لە مۆسیقا"
},
"disable_snap_splitting": {
"name": "ناچالاککردنی دابەشکردنی سناپ",
"description": "ڕێگری دەکات لە دابەشکردنی سناپەکان بۆ چەند بەشێک\nئەو وێنانەی دەینێریت دەبن بە ڤیدیۆ"
}
}
},
"rules": {
"name": "یاساکان",
"description": "ڕێکخستنی یاساکانی ئۆتۆماتیک",
@@ -2090,7 +2009,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "نیشاندەری نامەی کۆدکراو",
"description": "ئیمۆجی \ud83d\udd12 زیاد دەکات لە تەنیشت نامە کۆدکراوەکان"
"description": "ئیمۆجی 🔒 زیاد دەکات لە تەنیشت نامە کۆدکراوەکان"
},
"force_message_encryption": {
"name": "سەپاندنی کۆدکردنی نامە",
@@ -2170,6 +2089,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "هەمیشە ڕۆشن",
"always_dark": "هەمیشە تاریک",
@@ -2187,20 +2110,20 @@
"null": "بەکارهێنانی ئاستی ڕاستەقینەی باتری"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f دابەزاندنی خۆکار",
"auto_save": "\ud83d\udcac پاشەکەوتکردنی خۆکاری نامە",
"unsaveable_messages": "\u2b07\ufe0f نامە پاشەکەوت نەکراوەکان",
"auto_open_snaps": "\ud83d\udcf7 کردنەوەی خۆکاری سناپ",
"stealth": "\ud83d\udc7b دۆخی شاراوە",
"auto_reply": "\ud83d\udce8 وەڵامدانەوەی خۆکار",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f سڕینەوەی خۆکاری نامە نێردراوەکان",
"mark_snaps_as_seen": "\ud83d\udc40 دیاریکردنی سناپ وەک بینراو",
"mark_stories_as_seen_locally": "\ud83d\udc40 دیاریکردنی ستۆری وەک بینراو (Local)",
"conversation_info": "\ud83d\udc64 زانیاری گفتوگۆ",
"e2e_encryption": "\ud83d\udd12 بەکارهێنانی E2E Encryption",
"message_logger": "\ud83d\udcdd تۆمارکەری نامە",
"auto_read": "\u2705 خوێندنەوەی خۆکار",
"hide_typing_indicator": "\ud83d\ude48 شاردنەوەی نیشاندەری نووسین"
"auto_download": "⬇️ دابەزاندنی خۆکار",
"auto_save": "💬 پاشەکەوتکردنی خۆکاری نامە",
"unsaveable_messages": "⬇️ نامە پاشەکەوت نەکراوەکان",
"auto_open_snaps": "📷 کردنەوەی خۆکاری سناپ",
"stealth": "👻 دۆخی شاراوە",
"auto_reply": "📨 وەڵامدانەوەی خۆکار",
"auto_delete_sent_messages": "🗑️ سڕینەوەی خۆکاری نامە نێردراوەکان",
"mark_snaps_as_seen": "👀 دیاریکردنی سناپ وەک بینراو",
"mark_stories_as_seen_locally": "👀 دیاریکردنی ستۆری وەک بینراو (Local)",
"conversation_info": "👤 زانیاری گفتوگۆ",
"e2e_encryption": "🔒 بەکارهێنانی E2E Encryption",
"message_logger": "📝 تۆمارکەری نامە",
"auto_read": " خوێندنەوەی خۆکار",
"hide_typing_indicator": "🙈 شاردنەوەی نیشاندەری نووسین"
},
"schedule_scheduled_for": "خشتەکراوە بۆ {name} لە {time}",
"schedule_sending_in": "دەنێردرێت لە {time}",
@@ -2303,16 +2226,16 @@
"custom_android_id": {
"null": "بەکارهێنانی Android ID ڕاستەقینە"
},
"add_friend_source_spoof": {
"added_by_username": "بە ناوی بەکارهێنەر",
"added_by_mention": "بە مێنشن",
"added_by_group_chat": "بە چاتی گرووپ",
"added_by_qr_code": "بە کۆدی QR",
"added_by_community": "بە کۆمەڵگە (Community)",
"added_by_quick_add": "بە Quick Add (مەترسی بەرزی باندبوون)",
"added_by_spotlight": "بە سپۆتلایت",
"null": "سەرچاوە ساختە مەکە"
},
"add_friend_source_spoof": {
"added_by_username": "بە ناوی بەکارهێنەر",
"added_by_mention": "بە مێنشن",
"added_by_group_chat": "بە چاتی گرووپ",
"added_by_qr_code": "بە کۆدی QR",
"added_by_community": "بە کۆمەڵگە (Community)",
"added_by_quick_add": "بە Quick Add (مەترسی بەرزی باندبوون)",
"added_by_spotlight": "بە سپۆتلایت",
"null": "سەرچاوە ساختە مەکە"
},
"custom_streaks_expiration_format": {
"null": "بەنێردراوی سیستەم"
},
@@ -2419,8 +2342,8 @@
},
"spotlight_comments_username_icon": {
"user": "ئایکۆنی ناوی بەکارهێنەر",
"\ud83d\udc64": "ئایکۆنی ناوی بەکارهێنەر",
"[\ud83d\udc64]": "ئایکۆنی ناوی بەکارهێنەر",
"👤": "ئایکۆنی ناوی بەکارهێنەر",
"[👤]": "ئایکۆنی ناوی بەکارهێنەر",
"default": "ئایکۆنی ناوی بەکارهێنەر",
"no_icon": "ئایکۆن نییە"
},
@@ -2500,11 +2423,11 @@
"phone_calls": "پەیوەندی تەلەفۆنی"
},
"message_indicators": {
"encryption_indicator": "ئایکۆنی \ud83d\udd12 زیاد دەکات لە تەنیشت ئەو نامانەی کە تەنها بۆ تۆ نێردراون",
"encryption_indicator": "ئایکۆنی 🔒 زیاد دەکات لە تەنیشت ئەو نامانەی کە تەنها بۆ تۆ نێردراون",
"platform_indicator": "ئایکۆنی پلاتفۆرم زیاد دەکات کە میدیاکەی لێوە نێردراوە (e.g. Android, iOS, Web)",
"location_indicator": "ئایکۆنی \ud83d\udccd زیاد دەکات بۆ سناپەکان کاتێک بە شوێنەوە (location enabled) نێردراون",
"location_indicator": "ئایکۆنی 📍 زیاد دەکات بۆ سناپەکان کاتێک بە شوێنەوە (location enabled) نێردراون",
"ovf_editor_indicator": "نیشانی دەدات ئەگەر سناپێک بە OVF Editor نێردرابێت",
"director_mode_indicator": "ئایکۆنی \u270f\ufe0f زیاد دەکات بۆ سناپەکان کاتێک بە Director Mode نێردراون"
"director_mode_indicator": "ئایکۆنی ✏️ زیاد دەکات بۆ سناپەکان کاتێک بە Director Mode نێردراون"
},
"auto_mark_as_read": {
"conversation_read": "دیاریکردنی گفتوگۆ وەک خوێندراو کاتێک نامەیەک دەنێریت",
@@ -2728,7 +2651,6 @@
"show_chat_edit_history": "نیشاندانی مێژووی دەستکاری چات",
"convert_message": "گۆڕینی نامە"
},
"chat_wallpaper_downloader": {
"download_button": "دابەزاندنی باکگراوندی چات"
},
@@ -3058,7 +2980,7 @@
"queue_cleared": "ڕیز پاککرایەوە و ئامارەکان ڕیست کرانەوە",
"queue_cleared_title": "ڕیز پاککرایەوە",
"queue_cleared_reset": "ڕیز پاککرایەوە & ڕیست",
"queue_cleared_feedback": "پاککردنەوەی {count} سناپی ڕیزکراو \u2022 ڕیستکردنی {processed} ژمارەی پرۆسەکراو",
"queue_cleared_feedback": "پاککردنەوەی {count} سناپی ڕیزکراو ڕیستکردنی {processed} ژمارەی پرۆسەکراو",
"queue_cleared_feedback_simple": "ڕیستکردنی {processed} ژمارەی پرۆسەکراو",
"unknown_sender": "نەناسراو",
"unknown_user": "بەکارهێنەری نەناسراو",

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 izveidoja Eternal",
"version_title": "v{versionName} · izveidoja Eternal",
"update_title": "PurrfectSnap atjauninājums",
"update_content": "Versija {version} ir pieejama!",
"update_button": "Lejupielādēt",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "Nav uzdevumu",
"merge_button": "Apvienot",
"summary_active": "{active} aktīvi \u00b7 {recent} neseni",
"summary_idle": "Dīkstāve \u00b7 {recent} neseni",
"summary_active": "{active} aktīvi · {recent} neseni",
"summary_idle": "Dīkstāve · {recent} neseni",
"running_count": "{count} darbojas",
"clear_button_description": "Notīrīt uzdevumus",
"failed_to_open_file": "Neizdevās atvērt failu",
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "Teleportēties pie drauga",
"search_bar": "Meklēt",
"no_friends_map": "Kartē nav draugu",
"no_friends_found": "Draugi nav atrasti"
"no_friends_found": "Draugi nav atrasti",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,166 @@
},
"features": {
"notices": {
"unstable": "\u26a0 Nestabils",
"ban_risk": "\u26a0 Šī funkcija var izraisīt bloķēšanu",
"internal_behavior": "\u26a0 Tas var izjaukt Snapchat iekšējo darbību"
},
"options": {
"empty": "Tukšs",
"walk_radius": {
"empty": "Tukšs"
},
"spoof_battery_level": {
"empty": "Tukšs"
},
"custom_android_id": {
"empty": "Tukšs"
},
"custom_streaks_expiration_format": {
"empty": "Tukšs"
},
"preferred_transcription_lang": {
"empty": "Tukšs"
},
"custom_emoji_font": {
"empty": "Tukšs"
},
"custom_shared_library": {
"empty": "Tukšs"
},
"custom_resolution": {
"empty": "Tukšs"
},
"custom_path_format": {
"empty": "Tukšs"
},
"custom_video_codec": {
"empty": "Tukšs"
},
"custom_audio_codec": {
"empty": "Tukšs"
},
"double_tap_chat_action_custom_emoji": {
"empty": "Tukšs"
},
"unsaveable_messages": {
"blacklist": "Melnā saraksta režīms",
"whitelist": "Baltā saraksta režīms",
"null": "Atspējots"
},
"update_check_frequency": {
"daily": "Katru dienu",
"weekly": "Katru nedēļu",
"monthly": "Katru mēnesi"
}
"unstable": " Nestabils",
"ban_risk": " Šī funkcija var izraisīt bloķēšanu",
"internal_behavior": " Tas var izjaukt Snapchat iekšējo darbību"
},
"properties": {
"global": {
"name": "Globāli",
"description": "Vispārīgas moduļa preferences un noklusējumi",
"description": "Pielāgot globālos Snapchat iestatījumus",
"properties": {
"ui_settings": {
"name": "UI iestatījumi",
"description": "Pielāgot atgriezenisko saiti un paziņojumu uzvedību",
"better_location": {
"name": "Labāka atrašanās vieta",
"description": "Uzlabo Snapchat atrašanās vietu",
"properties": {
"haptic_feedback": {
"name": "Haptiskā atgriezeniskā saite",
"description": "Vibrēt atbalstītajās mijiedarbībās"
"spoof_location": {
"name": "Viltot atrašanās vietu",
"description": "Vilto jūsu atrašanās vietu uz norādīto"
},
"use_system_toasts": {
"name": "Izmantot sistēmas paziņojumus",
"description": "Rādīt Android paziņojumus (toasts), nevis lietotnes pārklājumus"
"coordinates": {
"name": "Koordinātas",
"description": "Iestatīt viltotās atrašanās vietas koordinātas"
},
"walk_radius": {
"name": "Staigāšanas rādiuss",
"description": "Nejauši staigāt šajā rādiusā (pēdas)"
},
"always_update_location": {
"name": "Vienmēr atjaunināt atrašanās vietu",
"description": "Piespiest Snapchat atjaunināt atrašanās vietu pat tad, ja nav saņemti GPS dati"
},
"suspend_location_updates": {
"name": "Apturēt atrašanās vietas atjauninājumus",
"description": "Neļauj atjaunināt jūsu atrašanās vietu"
},
"spoof_battery_level": {
"name": "Viltot akumulatora līmeni",
"description": "Vilto ierīces akumulatora līmeni kartē\nVērtībai jābūt no 0 līdz 100"
},
"spoof_headphones": {
"name": "Viltot austiņas",
"description": "Vilto mūzikas klausīšanās statusu kartē"
},
"show_battery_level": {
"name": "Rādīt akumulatora līmeni",
"description": "Rāda jūsu draugu akumulatora līmeni kartē"
}
}
},
"update_settings": {
"name": "Atjauninājumu iestatījumi",
"description": "Kontrolēt automātiskās atjauninājumu pārbaudes",
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Iespējo Snapchat Plus funkcijas\nDažas servera puses funkcijas var nedarboties"
},
"media_upload_quality": {
"name": "Multivides augšupielādes kvalitāte",
"description": "Ignorē multivides augšupielādes kvalitāti",
"properties": {
"auto_update_check": {
"name": "Auto atjauninājumu pārbaude",
"description": "Pārbaudīt jaunus būvējumus automātiski"
"force_video_upload_source_quality": {
"name": "Piespiest video augšupielādes avota kvalitāti",
"description": "Piespiež Snapchat izmantot avota kvalitāti, augšupielādējot video\nLūdzu, ņemiet vērā, ka tas var nenoņemt metadatus no multivides"
},
"update_check_frequency": {
"name": "Atjauninājumu pārbaudes biežums",
"description": "Cik bieži pārbaudīt atjauninājumus"
"disable_image_compression": {
"name": "Atspējot attēlu saspiešanu",
"description": "Atspējo attēlu saspiešanu, augšupielādējot multividi"
},
"custom_image_upload_format": {
"name": "Pielāgots attēlu augšupielādes formāts",
"description": "Iestata pielāgotu attēlu augšupielādes formātu\nIzvēlieties bezzudumu formātu (piemēram, PNG) labākajai kvalitātei"
}
}
},
"disable_confirmation_dialogs": {
"name": "Atspējot apstiprinājuma logus",
"description": "Automātiski apstiprina atlasītās darbības"
},
"auto_updater": {
"name": "Automātiskais atjauninātājs",
"description": "Automātiski pārbauda jaunus atjauninājumus"
},
"update_settings": {
"name": "Atjauninājumu iestatījumi",
"description": "Kontrolēt, kā PurrfectSnap pārbauda atjauninājumus",
"properties": {
"auto_update_check": {
"name": "Auto atjauninājumu pārbaude"
},
"update_check_frequency": {
"name": "Atjauninājumu pārbaudes biežums"
}
}
},
"ui_settings": {
"name": "UI iestatījumi",
"properties": {
"haptic_feedback": {
"name": "Haptiskā atgriezeniskā saite"
}
}
},
"disable_metrics": {
"name": "Atspējot metriku",
"description": "Bloķē specifisku analītisko datu sūtīšanu uz Snapchat"
},
"disable_story_sections": {
"name": "Atspējot stāstu sadaļas",
"description": "Noņem sadaļas no stāstu lapas\nVar būt nepieciešama atsvaidzināšana, lai darbotos pareizi"
},
"block_ads": {
"name": "Bloķēt reklāmas",
"description": "Neļauj rādīt reklāmas"
},
"disable_custom_tabs": {
"name": "Atspējot pielāgotās cilnes",
"description": "Atver saites atbalstītajās lietotnēs, nevis tīmekļa pārlūkā"
},
"disable_permission_requests": {
"name": "Atspējot atļauju pieprasījumus",
"description": "Neļauj Snapchat prasīt noteiktas atļaujas"
},
"disable_memories_snap_feed": {
"name": "Atspējot atmiņu snap plūsmu",
"description": "Neļauj Snapchat rādīt nesenās atmiņas, kad pavelkat uz augšu kamerā"
},
"spotlight_comments_username": {
"name": "Spotlight komentāru lietotājvārds",
"description": "Rāda autora lietotājvārdu Spotlight komentāros"
},
"spotlight_comments_username_icon": {
"name": "Spotlight komentāru lietotājvārda ikona",
"description": "Izvēlieties, kura ikona tiek rādīta blakus lietotājvārdiem Spotlight komentāros"
},
"bypass_video_length_restriction": {
"name": "Apiet video garuma ierobežojumus",
"description": "Viens: sūta vienu video\nSadalīt: sadala video pēc rediģēšanas"
},
"default_video_playback_rate": {
"name": "Noklusējuma video atskaņošanas ātrums",
"description": "Iestata noklusējuma ātrumu video atskaņošanai\nVērtībai jābūt no 0.1 līdz 4.0"
},
"video_playback_rate_slider": {
"name": "Video atskaņošanas ātruma slīdnis",
"description": "Pievieno slīdni opera konteksta izvēlnē, lai mainītu video atskaņošanas ātrumu\nPiezīme: Izmaiņas attiecas tikai uz sekojošiem video"
},
"disable_google_play_dialogs": {
"name": "Atspējot Google Play Services dialogus",
"description": "Novērš Google Play Services pieejamības dialogu rādīšanu"
},
"default_volume_controls": {
"name": "Noklusējuma skaļuma kontrole",
"description": "Piespiež Snapchat izmantot sistēmas skaļuma kontroli"
},
"disable_telecom_framework": {
"name": "Atspējot Telecom Framework",
"description": "Neļauj Snapchat izmantot Android Telecom ietvaru\nTas ļauj klausīties mūziku zvana laikā"
},
"hide_active_music": {
"name": "Slēpt aktīvo mūziku",
"description": "Neļauj Snapchat uzzināt, ka klausāties mūziku\nTas ļaus jums uzņemt Snap'us, izmantojot skaļuma kontroles pogas, kamēr klausāties mūziku"
},
"disable_snap_splitting": {
"name": "Atspējot Snap sadalīšanu",
"description": "Neļauj Snap'iem tikt sadalītiem vairākās daļās\nAttēli, ko sūtāt, pārvērtīsies par video"
}
}
},
@@ -1143,7 +1220,7 @@
},
"stealth_mode_indicator": {
"name": "Maskēšanās režīma indikators",
"description": "Pievieno \ud83d\udc7b emocijzīmi blakus sarunām maskēšanās režīmā"
"description": "Pievieno 👻 emocijzīmi blakus sarunām maskēšanās režīmā"
},
"edit_text_override": {
"name": "Teksta rediģēšanas ignorēšana",
@@ -1671,164 +1748,6 @@
}
}
},
"global": {
"name": "Globāli",
"description": "Pielāgot globālos Snapchat iestatījumus",
"properties": {
"better_location": {
"name": "Labāka atrašanās vieta",
"description": "Uzlabo Snapchat atrašanās vietu",
"properties": {
"spoof_location": {
"name": "Viltot atrašanās vietu",
"description": "Vilto jūsu atrašanās vietu uz norādīto"
},
"coordinates": {
"name": "Koordinātas",
"description": "Iestatīt viltotās atrašanās vietas koordinātas"
},
"walk_radius": {
"name": "Staigāšanas rādiuss",
"description": "Nejauši staigāt šajā rādiusā (pēdas)"
},
"always_update_location": {
"name": "Vienmēr atjaunināt atrašanās vietu",
"description": "Piespiest Snapchat atjaunināt atrašanās vietu pat tad, ja nav saņemti GPS dati"
},
"suspend_location_updates": {
"name": "Apturēt atrašanās vietas atjauninājumus",
"description": "Neļauj atjaunināt jūsu atrašanās vietu"
},
"spoof_battery_level": {
"name": "Viltot akumulatora līmeni",
"description": "Vilto ierīces akumulatora līmeni kartē\nVērtībai jābūt no 0 līdz 100"
},
"spoof_headphones": {
"name": "Viltot austiņas",
"description": "Vilto mūzikas klausīšanās statusu kartē"
},
"show_battery_level": {
"name": "Rādīt akumulatora līmeni",
"description": "Rāda jūsu draugu akumulatora līmeni kartē"
}
}
},
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Iespējo Snapchat Plus funkcijas\nDažas servera puses funkcijas var nedarboties"
},
"media_upload_quality": {
"name": "Multivides augšupielādes kvalitāte",
"description": "Ignorē multivides augšupielādes kvalitāti",
"properties": {
"force_video_upload_source_quality": {
"name": "Piespiest video augšupielādes avota kvalitāti",
"description": "Piespiež Snapchat izmantot avota kvalitāti, augšupielādējot video\nLūdzu, ņemiet vērā, ka tas var nenoņemt metadatus no multivides"
},
"disable_image_compression": {
"name": "Atspējot attēlu saspiešanu",
"description": "Atspējo attēlu saspiešanu, augšupielādējot multividi"
},
"custom_image_upload_format": {
"name": "Pielāgots attēlu augšupielādes formāts",
"description": "Iestata pielāgotu attēlu augšupielādes formātu\nIzvēlieties bezzudumu formātu (piemēram, PNG) labākajai kvalitātei"
}
}
},
"disable_confirmation_dialogs": {
"name": "Atspējot apstiprinājuma logus",
"description": "Automātiski apstiprina atlasītās darbības"
},
"auto_updater": {
"name": "Automātiskais atjauninātājs",
"description": "Automātiski pārbauda jaunus atjauninājumus"
},
"update_settings": {
"name": "Atjauninājumu iestatījumi",
"description": "Kontrolēt, kā PurrfectSnap pārbauda atjauninājumus",
"properties": {
"auto_update_check": {
"name": "Auto atjauninājumu pārbaude"
},
"update_check_frequency": {
"name": "Atjauninājumu pārbaudes biežums"
}
}
},
"ui_settings": {
"name": "UI iestatījumi",
"properties": {
"haptic_feedback": {
"name": "Haptiskā atgriezeniskā saite"
}
}
},
"disable_metrics": {
"name": "Atspējot metriku",
"description": "Bloķē specifisku analītisko datu sūtīšanu uz Snapchat"
},
"disable_story_sections": {
"name": "Atspējot stāstu sadaļas",
"description": "Noņem sadaļas no stāstu lapas\nVar būt nepieciešama atsvaidzināšana, lai darbotos pareizi"
},
"block_ads": {
"name": "Bloķēt reklāmas",
"description": "Neļauj rādīt reklāmas"
},
"disable_custom_tabs": {
"name": "Atspējot pielāgotās cilnes",
"description": "Atver saites atbalstītajās lietotnēs, nevis tīmekļa pārlūkā"
},
"disable_permission_requests": {
"name": "Atspējot atļauju pieprasījumus",
"description": "Neļauj Snapchat prasīt noteiktas atļaujas"
},
"disable_memories_snap_feed": {
"name": "Atspējot atmiņu snap plūsmu",
"description": "Neļauj Snapchat rādīt nesenās atmiņas, kad pavelkat uz augšu kamerā"
},
"spotlight_comments_username": {
"name": "Spotlight komentāru lietotājvārds",
"description": "Rāda autora lietotājvārdu Spotlight komentāros"
},
"spotlight_comments_username_icon": {
"name": "Spotlight komentāru lietotājvārda ikona",
"description": "Izvēlieties, kura ikona tiek rādīta blakus lietotājvārdiem Spotlight komentāros"
},
"bypass_video_length_restriction": {
"name": "Apiet video garuma ierobežojumus",
"description": "Viens: sūta vienu video\nSadalīt: sadala video pēc rediģēšanas"
},
"default_video_playback_rate": {
"name": "Noklusējuma video atskaņošanas ātrums",
"description": "Iestata noklusējuma ātrumu video atskaņošanai\nVērtībai jābūt no 0.1 līdz 4.0"
},
"video_playback_rate_slider": {
"name": "Video atskaņošanas ātruma slīdnis",
"description": "Pievieno slīdni opera konteksta izvēlnē, lai mainītu video atskaņošanas ātrumu\nPiezīme: Izmaiņas attiecas tikai uz sekojošiem video"
},
"disable_google_play_dialogs": {
"name": "Atspējot Google Play Services dialogus",
"description": "Novērš Google Play Services pieejamības dialogu rādīšanu"
},
"default_volume_controls": {
"name": "Noklusējuma skaļuma kontrole",
"description": "Piespiež Snapchat izmantot sistēmas skaļuma kontroli"
},
"disable_telecom_framework": {
"name": "Atspējot Telecom Framework",
"description": "Neļauj Snapchat izmantot Android Telecom ietvaru\nTas ļauj klausīties mūziku zvana laikā"
},
"hide_active_music": {
"name": "Slēpt aktīvo mūziku",
"description": "Neļauj Snapchat uzzināt, ka klausāties mūziku\nTas ļaus jums uzņemt Snap'us, izmantojot skaļuma kontroles pogas, kamēr klausāties mūziku"
},
"disable_snap_splitting": {
"name": "Atspējot Snap sadalīšanu",
"description": "Neļauj Snap'iem tikt sadalītiem vairākās daļās\nAttēli, ko sūtāt, pārvērtīsies par video"
}
}
},
"rules": {
"name": "Noteikumi",
"description": "Konfigurēt automatizācijas noteikumus",
@@ -2110,7 +2029,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "Šifrēta ziņojuma indikators",
"description": "Pievieno \ud83d\udd12 emocijzīmi blakus šifrētiem ziņojumiem"
"description": "Pievieno 🔒 emocijzīmi blakus šifrētiem ziņojumiem"
},
"force_message_encryption": {
"name": "Piespiest ziņojumu šifrēšanu",
@@ -2190,6 +2109,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "Vienmēr gaišs",
"always_dark": "Vienmēr tumšs",
@@ -2207,20 +2130,20 @@
"null": "Izmantot reālo akumulatora līmeni"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f Automātiskā lejupielāde",
"auto_save": "\ud83d\udcac Automātiskā ziņojumu saglabāšana",
"unsaveable_messages": "\u2b07\ufe0f Nesaglabājami ziņojumi",
"auto_open_snaps": "\ud83d\udcf7 Automātiski atvērt Snap'us",
"stealth": "\ud83d\udc7b Maskēšanās režīms",
"auto_reply": "\ud83d\udce8 Automātiskā atbilde",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f Automātiski dzēst nosūtītos ziņojumus",
"mark_snaps_as_seen": "\ud83d\udc40 Atzīmēt Snap'us kā redzētus",
"mark_stories_as_seen_locally": "\ud83d\udc40 Atzīmēt stāstus kā redzētus lokāli",
"conversation_info": "\ud83d\udc64 Sarunas informācija",
"e2e_encryption": "\ud83d\udd12 Izmantot E2E šifrēšanu",
"message_logger": "\ud83d\udcdd Ziņojumu reģistrētājs",
"auto_read": "\u2705 Automātiski lasīt",
"hide_typing_indicator": "\ud83d\ude48 Slēpt rakstīšanas indikatoru"
"auto_download": "⬇️ Automātiskā lejupielāde",
"auto_save": "💬 Automātiskā ziņojumu saglabāšana",
"unsaveable_messages": "⬇️ Nesaglabājami ziņojumi",
"auto_open_snaps": "📷 Automātiski atvērt Snap'us",
"stealth": "👻 Maskēšanās režīms",
"auto_reply": "📨 Automātiskā atbilde",
"auto_delete_sent_messages": "🗑️ Automātiski dzēst nosūtītos ziņojumus",
"mark_snaps_as_seen": "👀 Atzīmēt Snap'us kā redzētus",
"mark_stories_as_seen_locally": "👀 Atzīmēt stāstus kā redzētus lokāli",
"conversation_info": "👤 Sarunas informācija",
"e2e_encryption": "🔒 Izmantot E2E šifrēšanu",
"message_logger": "📝 Ziņojumu reģistrētājs",
"auto_read": " Automātiski lasīt",
"hide_typing_indicator": "🙈 Slēpt rakstīšanas indikatoru"
},
"schedule_scheduled_for": "Ieplānots priekš {name} pēc {time}",
"schedule_sending_in": "Sūta pēc {time}",
@@ -2323,16 +2246,16 @@
"custom_android_id": {
"null": "Izmantot reālo Android ID"
},
"add_friend_source_spoof": {
"added_by_username": "Pēc lietotājvārda",
"added_by_mention": "Pēc pieminēšanas",
"added_by_group_chat": "No grupas tērzēšanas",
"added_by_qr_code": "Ar QR kodu",
"added_by_community": "No kopienas",
"added_by_quick_add": "Ar ātro pievienošanu (augsts bloķēšanas risks)",
"added_by_spotlight": "No Spotlight",
"null": "Neviltot avotu"
},
"add_friend_source_spoof": {
"added_by_username": "Pēc lietotājvārda",
"added_by_mention": "Pēc pieminēšanas",
"added_by_group_chat": "No grupas tērzēšanas",
"added_by_qr_code": "Ar QR kodu",
"added_by_community": "No kopienas",
"added_by_quick_add": "Ar ātro pievienošanu (augsts bloķēšanas risks)",
"added_by_spotlight": "No Spotlight",
"null": "Neviltot avotu"
},
"custom_streaks_expiration_format": {
"null": "Sistēmas noklusējums"
},
@@ -2438,8 +2361,8 @@
},
"spotlight_comments_username_icon": {
"user": "Lietotājvārda ikona",
"\ud83d\udc64": "Lietotājvārda ikona",
"[\ud83d\udc64]": "Lietotājvārda ikona",
"👤": "Lietotājvārda ikona",
"[👤]": "Lietotājvārda ikona",
"default": "Lietotājvārda ikona",
"no_icon": "Nav ikonas"
},
@@ -2519,11 +2442,11 @@
"phone_calls": "Tālruņa zvani"
},
"message_indicators": {
"encryption_indicator": "Pievieno \ud83d\udd12 ikonu blakus ziņojumiem, kas nosūtīti tikai jums",
"encryption_indicator": "Pievieno 🔒 ikonu blakus ziņojumiem, kas nosūtīti tikai jums",
"platform_indicator": "Pievieno platformas ikonu, no kuras multivide tika nosūtīta (piem., Android, iOS, Web)",
"location_indicator": "Pievieno \ud83d\udccd ikonu snap'iem, kad tie nosūtīti ar iespējotu atrašanās vietu",
"location_indicator": "Pievieno 📍 ikonu snap'iem, kad tie nosūtīti ar iespējotu atrašanās vietu",
"ovf_editor_indicator": "Norāda, vai snap ir nosūtīts, izmantojot OVF redaktoru",
"director_mode_indicator": "Pievieno \u270f\ufe0f ikonu snap'iem, kad tie nosūtīti, izmantojot Director Mode, ko var izmantot, lai sūtītu galerijas attēlus kā snap'us"
"director_mode_indicator": "Pievieno ✏️ ikonu snap'iem, kad tie nosūtīti, izmantojot Director Mode, ko var izmantot, lai sūtītu galerijas attēlus kā snap'us"
},
"auto_mark_as_read": {
"conversation_read": "Atzīmēt sarunu kā lasītu, sūtot ziņojumu",
@@ -2747,7 +2670,6 @@
"show_chat_edit_history": "Rādīt tērzēšanas rediģēšanas vēsturi",
"convert_message": "Konvertēt ziņojumu"
},
"chat_wallpaper_downloader": {
"download_button": "Lejupielādēt tērzēšanas fonu"
},
@@ -3077,7 +2999,7 @@
"queue_cleared": "Rinda notīrīta un statistika atiestatīta",
"queue_cleared_title": "Rinda notīrīta",
"queue_cleared_reset": "Rinda notīrīta un atiestatīta",
"queue_cleared_feedback": "Notīrīti {count} snap'i rindā \u2022 Atiestatīts {processed} apstrādāto skaits",
"queue_cleared_feedback": "Notīrīti {count} snap'i rindā Atiestatīts {processed} apstrādāto skaits",
"queue_cleared_feedback_simple": "Atiestatīts {processed} apstrādāto skaits",
"unknown_sender": "Nezināms",
"unknown_user": "Nezināms lietotājs",

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 av Eternal",
"version_title": "v{versionName} · av Eternal",
"update_title": "PurrfectSnap-oppdatering",
"update_content": "Versjon {version} er tilgjengelig!",
"update_button": "Last ned",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "Ingen oppgaver",
"merge_button": "Slå sammen",
"summary_active": "{active} aktive \u00b7 {recent} nylige",
"summary_idle": "Inaktiv \u00b7 {recent} nylige",
"summary_active": "{active} aktive · {recent} nylige",
"summary_idle": "Inaktiv · {recent} nylige",
"running_count": "{count} kjører",
"clear_button_description": "Tøm oppgaver",
"failed_to_open_file": "Kunne ikke åpne fil",
@@ -312,22 +312,22 @@
"remove_selected_tasks_confirm": "Fjern {count} oppgaver?",
"remove_all_tasks_confirm": "Fjern alle oppgaver?"
},
"features": {
"disabled": "Deaktivert",
"export_option": "Eksporter",
"import_option": "Importer",
"reset_option": "Tilbakestill",
"config_export_success_toast": "Konfigurasjon eksportert",
"config_import_success_toast": "Konfigurasjon importert",
"config_import_failure_toast": "Kunne ikke importere konfigurasjon {error}",
"config_export_failure_toast": "Kunne ikke eksportere konfigurasjon {error}",
"saved_config_snackbar": "Konfigurasjon lagret",
"older_required": "Denne funksjonen krever Snapchat v{version} eller eldre for å fungere korrekt",
"newer_required": "Denne funksjonen krever Snapchat v{version} eller nyere for å fungere korrekt",
"search_button": "Søk",
"clear_history": "Tøm søkchistorikk",
"subtitle": "Søk og administrer funksjoner"
},
"features": {
"disabled": "Deaktivert",
"export_option": "Eksporter",
"import_option": "Importer",
"reset_option": "Tilbakestill",
"config_export_success_toast": "Konfigurasjon eksportert",
"config_import_success_toast": "Konfigurasjon importert",
"config_import_failure_toast": "Kunne ikke importere konfigurasjon {error}",
"config_export_failure_toast": "Kunne ikke eksportere konfigurasjon {error}",
"saved_config_snackbar": "Konfigurasjon lagret",
"older_required": "Denne funksjonen krever Snapchat v{version} eller eldre for å fungere korrekt",
"newer_required": "Denne funksjonen krever Snapchat v{version} eller nyere for å fungere korrekt",
"search_button": "Søk",
"clear_history": "Tøm søkchistorikk",
"subtitle": "Søk og administrer funksjoner"
},
"bypass_status": {
"active": "PurrAura Aktiv",
"inactive": "PurrAura Inaktiv"
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "Teleporter til venn",
"search_bar": "Søk",
"no_friends_map": "Ingen venner på kartet",
"no_friends_found": "Ingen venner funnet"
"no_friends_found": "Ingen venner funnet",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,166 @@
},
"features": {
"notices": {
"unstable": "\u26a0 Ustabil",
"ban_risk": "\u26a0 Denne funksjonen kan føre til utestengelse",
"internal_behavior": "\u26a0 Dette kan ødelegge Snapchats interne oppførsel"
},
"options": {
"empty": "Tom",
"walk_radius": {
"empty": "Tom"
},
"spoof_battery_level": {
"empty": "Tom"
},
"custom_android_id": {
"empty": "Tom"
},
"custom_streaks_expiration_format": {
"empty": "Tom"
},
"preferred_transcription_lang": {
"empty": "Tom"
},
"custom_emoji_font": {
"empty": "Tom"
},
"custom_shared_library": {
"empty": "Tom"
},
"custom_resolution": {
"empty": "Tom"
},
"custom_path_format": {
"empty": "Tom"
},
"custom_video_codec": {
"empty": "Tom"
},
"custom_audio_codec": {
"empty": "Tom"
},
"double_tap_chat_action_custom_emoji": {
"empty": "Tom"
},
"unsaveable_messages": {
"blacklist": "Svartelistemodus",
"whitelist": "Hvitelistemodus",
"null": "Deaktivert"
},
"update_check_frequency": {
"daily": "Daglig",
"weekly": "Ukentlig",
"monthly": "Månedlig"
}
"unstable": " Ustabil",
"ban_risk": " Denne funksjonen kan føre til utestengelse",
"internal_behavior": " Dette kan ødelegge Snapchats interne oppførsel"
},
"properties": {
"global": {
"name": "Global",
"description": "Generelle modulpreferanser og standardinnstillinger",
"description": "Juster globale Snapchat-innstillinger",
"properties": {
"ui_settings": {
"name": "UI-innstillinger",
"description": "Juster tilbakemeldinger og varslingsadferd",
"better_location": {
"name": "Bedre posisjon",
"description": "Forbedrer Snapchat-posisjon",
"properties": {
"haptic_feedback": {
"name": "Haptisk tilbakemelding",
"description": "Vibrer ved støttede interaksjoner"
"spoof_location": {
"name": "Forfalsk posisjon",
"description": "Forfalsker posisjonen din til en spesifisert posisjon"
},
"use_system_toasts": {
"name": "Bruk systemvarsler (Toasts)",
"description": "Vis Android-varsler i stedet for overlegg i appen"
"coordinates": {
"name": "Koordinater",
"description": "Angi koordinatene for den falske posisjonen"
},
"walk_radius": {
"name": "Gå-radius",
"description": "Gå tilfeldig rundt innenfor denne radiusen (fot)"
},
"always_update_location": {
"name": "Oppdater alltid posisjon",
"description": "Tving Snapchat til å oppdatere posisjon selv om ingen GPS-data mottas"
},
"suspend_location_updates": {
"name": "Sett posisjonsoppdateringer på pause",
"description": "Forhindrer at posisjonen din oppdateres"
},
"spoof_battery_level": {
"name": "Forfalsk batterinivå",
"description": "Forfalsker batterinivået til enheten din på kartet\nVerdien må være mellom 0 og 100"
},
"spoof_headphones": {
"name": "Forfalsk hodetelefoner",
"description": "Forfalsker statusen for å lytte til musikk på kartet"
},
"show_battery_level": {
"name": "Vis batterinivå",
"description": "Viser batterinivået til vennene dine på kartet"
}
}
},
"update_settings": {
"name": "Oppdateringsinnstillinger",
"description": "Kontroller automatiske oppdateringssjekker",
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Aktiverer Snapchat Plus-funksjoner\nNoen server-side funksjoner fungerer kanskje ikke"
},
"media_upload_quality": {
"name": "Kvalitet for mediaopplasting",
"description": "Overstyrer kvaliteten for mediaopplasting",
"properties": {
"auto_update_check": {
"name": "Automatisk oppdateringssjekk",
"description": "Sjekk etter nye versjoner automatisk"
"force_video_upload_source_quality": {
"name": "Tving kildekvalitet ved videoopplasting",
"description": "Tvinger Snapchat til å bruke kildekvaliteten ved opplasting av videoer\nVennligst merk at dette kanskje ikke fjerner metadata fra media"
},
"update_check_frequency": {
"name": "Frekvens for oppdateringssjekk",
"description": "Hvor ofte det skal sjekkes etter oppdateringer"
"disable_image_compression": {
"name": "Deaktiver bildekomprimering",
"description": "Deaktiverer bildekomprimering ved opplasting av media"
},
"custom_image_upload_format": {
"name": "Egendefinert format for bildeopplasting",
"description": "Angir et egendefinert format for bildeopplasting\nVelg et tapsfritt format (som PNG) for best kvalitet"
}
}
},
"disable_confirmation_dialogs": {
"name": "Deaktiver bekreftelsesdialoger",
"description": "Bekrefter automatisk valgte handlinger"
},
"auto_updater": {
"name": "Auto-oppdaterer",
"description": "Sjekker automatisk etter nye oppdateringer"
},
"update_settings": {
"name": "Oppdateringsinnstillinger",
"description": "Kontroller hvordan PurrfectSnap sjekker etter oppdateringer",
"properties": {
"auto_update_check": {
"name": "Automatisk oppdateringssjekk"
},
"update_check_frequency": {
"name": "Frekvens for oppdateringssjekk"
}
}
},
"ui_settings": {
"name": "UI-innstillinger",
"properties": {
"haptic_feedback": {
"name": "Haptisk tilbakemelding"
}
}
},
"disable_metrics": {
"name": "Deaktiver beregninger (Metrics)",
"description": "Blokkerer sending av spesifikke analytiske data til Snapchat"
},
"disable_story_sections": {
"name": "Deaktiver historie-seksjoner",
"description": "Fjerner seksjoner fra Stories-siden\nKan kreve en oppfriskning for å fungere ordentlig"
},
"block_ads": {
"name": "Blokker reklame",
"description": "Forhindrer at reklame vises"
},
"disable_custom_tabs": {
"name": "Deaktiver egendefinerte faner",
"description": "Åpner lenker i støttede applikasjoner i stedet for i nettleseren"
},
"disable_permission_requests": {
"name": "Deaktiver tillatelsesforespørsler",
"description": "Forhindrer Snapchat i å be om spesifikke tillatelser"
},
"disable_memories_snap_feed": {
"name": "Deaktiver minner i snap-feed",
"description": "Forhindrer Snapchat i å vise nylige minner når du swiper opp i kameraet"
},
"spotlight_comments_username": {
"name": "Brukernavn i Spotlight-kommentarer",
"description": "Viser forfatterens brukernavn i Spotlight-kommentarer"
},
"spotlight_comments_username_icon": {
"name": "Brukernavn-ikon i Spotlight-kommentarer",
"description": "Velg hvilket ikon som vises ved siden av brukernavn i Spotlight-kommentarer"
},
"bypass_video_length_restriction": {
"name": "Omgå begrensninger for videolengde",
"description": "Enkel: sender en enkelt video\nSplitt: splitter videoer etter redigering"
},
"default_video_playback_rate": {
"name": "Standard videoavspillingshastighet",
"description": "Angir standardhastigheten for avspilling av videoer\nVerdien må være mellom 0.1 og 4.0"
},
"video_playback_rate_slider": {
"name": "Glidebryter for videoavspillingshastighet",
"description": "Legger til en glidebryter i opera-kontekstmenyen for å endre videoavspillingshastigheten\nMerk: Endringer gjelder kun for påfølgende videoer"
},
"disable_google_play_dialogs": {
"name": "Deaktiver Google Play Services-dialoger",
"description": "Forhindre at dialoger for tilgjengelighet av Google Play Services vises"
},
"default_volume_controls": {
"name": "Standard volumkontroller",
"description": "Tvinger Snapchat til å bruke systemets volumkontroller"
},
"disable_telecom_framework": {
"name": "Deaktiver Telecom-rammeverk",
"description": "Forhindrer Snapchat i å bruke Android Telecom-rammeverket\nDette lar deg lytte til musikk mens du er i en samtale"
},
"hide_active_music": {
"name": "Skjul aktiv musikk",
"description": "Forhindrer Snapchat i å vite at du lytter til musikk\nDette vil tillate deg å ta snaps ved hjelp av volumknapper mens du lytter til musikk"
},
"disable_snap_splitting": {
"name": "Deaktiver snap-splitting",
"description": "Forhindrer Snaps i å bli splittet i flere deler\nBilder du sender vil bli til videoer"
}
}
},
@@ -1143,7 +1220,7 @@
},
"stealth_mode_indicator": {
"name": "Stealth-modus indikator",
"description": "Legger til en \ud83d\udc7b emoji ved siden av samtaler i stealth-modus"
"description": "Legger til en 👻 emoji ved siden av samtaler i stealth-modus"
},
"edit_text_override": {
"name": "Overstyr tekstredigering",
@@ -1671,164 +1748,6 @@
}
}
},
"global": {
"name": "Global",
"description": "Juster globale Snapchat-innstillinger",
"properties": {
"better_location": {
"name": "Bedre posisjon",
"description": "Forbedrer Snapchat-posisjon",
"properties": {
"spoof_location": {
"name": "Forfalsk posisjon",
"description": "Forfalsker posisjonen din til en spesifisert posisjon"
},
"coordinates": {
"name": "Koordinater",
"description": "Angi koordinatene for den falske posisjonen"
},
"walk_radius": {
"name": "Gå-radius",
"description": "Gå tilfeldig rundt innenfor denne radiusen (fot)"
},
"always_update_location": {
"name": "Oppdater alltid posisjon",
"description": "Tving Snapchat til å oppdatere posisjon selv om ingen GPS-data mottas"
},
"suspend_location_updates": {
"name": "Sett posisjonsoppdateringer på pause",
"description": "Forhindrer at posisjonen din oppdateres"
},
"spoof_battery_level": {
"name": "Forfalsk batterinivå",
"description": "Forfalsker batterinivået til enheten din på kartet\nVerdien må være mellom 0 og 100"
},
"spoof_headphones": {
"name": "Forfalsk hodetelefoner",
"description": "Forfalsker statusen for å lytte til musikk på kartet"
},
"show_battery_level": {
"name": "Vis batterinivå",
"description": "Viser batterinivået til vennene dine på kartet"
}
}
},
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Aktiverer Snapchat Plus-funksjoner\nNoen server-side funksjoner fungerer kanskje ikke"
},
"media_upload_quality": {
"name": "Kvalitet for mediaopplasting",
"description": "Overstyrer kvaliteten for mediaopplasting",
"properties": {
"force_video_upload_source_quality": {
"name": "Tving kildekvalitet ved videoopplasting",
"description": "Tvinger Snapchat til å bruke kildekvaliteten ved opplasting av videoer\nVennligst merk at dette kanskje ikke fjerner metadata fra media"
},
"disable_image_compression": {
"name": "Deaktiver bildekomprimering",
"description": "Deaktiverer bildekomprimering ved opplasting av media"
},
"custom_image_upload_format": {
"name": "Egendefinert format for bildeopplasting",
"description": "Angir et egendefinert format for bildeopplasting\nVelg et tapsfritt format (som PNG) for best kvalitet"
}
}
},
"disable_confirmation_dialogs": {
"name": "Deaktiver bekreftelsesdialoger",
"description": "Bekrefter automatisk valgte handlinger"
},
"auto_updater": {
"name": "Auto-oppdaterer",
"description": "Sjekker automatisk etter nye oppdateringer"
},
"update_settings": {
"name": "Oppdateringsinnstillinger",
"description": "Kontroller hvordan PurrfectSnap sjekker etter oppdateringer",
"properties": {
"auto_update_check": {
"name": "Automatisk oppdateringssjekk"
},
"update_check_frequency": {
"name": "Frekvens for oppdateringssjekk"
}
}
},
"ui_settings": {
"name": "UI-innstillinger",
"properties": {
"haptic_feedback": {
"name": "Haptisk tilbakemelding"
}
}
},
"disable_metrics": {
"name": "Deaktiver beregninger (Metrics)",
"description": "Blokkerer sending av spesifikke analytiske data til Snapchat"
},
"disable_story_sections": {
"name": "Deaktiver historie-seksjoner",
"description": "Fjerner seksjoner fra Stories-siden\nKan kreve en oppfriskning for å fungere ordentlig"
},
"block_ads": {
"name": "Blokker reklame",
"description": "Forhindrer at reklame vises"
},
"disable_custom_tabs": {
"name": "Deaktiver egendefinerte faner",
"description": "Åpner lenker i støttede applikasjoner i stedet for i nettleseren"
},
"disable_permission_requests": {
"name": "Deaktiver tillatelsesforespørsler",
"description": "Forhindrer Snapchat i å be om spesifikke tillatelser"
},
"disable_memories_snap_feed": {
"name": "Deaktiver minner i snap-feed",
"description": "Forhindrer Snapchat i å vise nylige minner når du swiper opp i kameraet"
},
"spotlight_comments_username": {
"name": "Brukernavn i Spotlight-kommentarer",
"description": "Viser forfatterens brukernavn i Spotlight-kommentarer"
},
"spotlight_comments_username_icon": {
"name": "Brukernavn-ikon i Spotlight-kommentarer",
"description": "Velg hvilket ikon som vises ved siden av brukernavn i Spotlight-kommentarer"
},
"bypass_video_length_restriction": {
"name": "Omgå begrensninger for videolengde",
"description": "Enkel: sender en enkelt video\nSplitt: splitter videoer etter redigering"
},
"default_video_playback_rate": {
"name": "Standard videoavspillingshastighet",
"description": "Angir standardhastigheten for avspilling av videoer\nVerdien må være mellom 0.1 og 4.0"
},
"video_playback_rate_slider": {
"name": "Glidebryter for videoavspillingshastighet",
"description": "Legger til en glidebryter i opera-kontekstmenyen for å endre videoavspillingshastigheten\nMerk: Endringer gjelder kun for påfølgende videoer"
},
"disable_google_play_dialogs": {
"name": "Deaktiver Google Play Services-dialoger",
"description": "Forhindre at dialoger for tilgjengelighet av Google Play Services vises"
},
"default_volume_controls": {
"name": "Standard volumkontroller",
"description": "Tvinger Snapchat til å bruke systemets volumkontroller"
},
"disable_telecom_framework": {
"name": "Deaktiver Telecom-rammeverk",
"description": "Forhindrer Snapchat i å bruke Android Telecom-rammeverket\nDette lar deg lytte til musikk mens du er i en samtale"
},
"hide_active_music": {
"name": "Skjul aktiv musikk",
"description": "Forhindrer Snapchat i å vite at du lytter til musikk\nDette vil tillate deg å ta snaps ved hjelp av volumknapper mens du lytter til musikk"
},
"disable_snap_splitting": {
"name": "Deaktiver snap-splitting",
"description": "Forhindrer Snaps i å bli splittet i flere deler\nBilder du sender vil bli til videoer"
}
}
},
"rules": {
"name": "Regler",
"description": "Konfigurer automatiseringsregler",
@@ -2110,7 +2029,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "Kryptert meldingsindikator",
"description": "Legger til en \ud83d\udd12 emoji ved siden av krypterte meldinger"
"description": "Legger til en 🔒 emoji ved siden av krypterte meldinger"
},
"force_message_encryption": {
"name": "Tving meldingskryptering",
@@ -2190,6 +2109,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "Alltid lys",
"always_dark": "Alltid mørk",
@@ -2207,20 +2130,20 @@
"null": "Bruk ekte batterinivå"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f Auto-nedlasting",
"auto_save": "\ud83d\udcac Auto-lagre meldinger",
"unsaveable_messages": "\u2b07\ufe0f Ikke-lagrbare meldinger",
"auto_open_snaps": "\ud83d\udcf7 Auto-åpne Snaps",
"stealth": "\ud83d\udc7b Stealth-modus",
"auto_reply": "\ud83d\udce8 Auto-svar",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f Auto-slett sendte meldinger",
"mark_snaps_as_seen": "\ud83d\udc40 Marker Snaps som sett",
"mark_stories_as_seen_locally": "\ud83d\udc40 Marker Historier som sett lokalt",
"conversation_info": "\ud83d\udc64 Samtaleinfo",
"e2e_encryption": "\ud83d\udd12 Bruk E2E-kryptering",
"message_logger": "\ud83d\udcdd Meldingslogger",
"auto_read": "\u2705 Auto-les",
"hide_typing_indicator": "\ud83d\ude48 Skjul skriveindikator"
"auto_download": "⬇️ Auto-nedlasting",
"auto_save": "💬 Auto-lagre meldinger",
"unsaveable_messages": "⬇️ Ikke-lagrbare meldinger",
"auto_open_snaps": "📷 Auto-åpne Snaps",
"stealth": "👻 Stealth-modus",
"auto_reply": "📨 Auto-svar",
"auto_delete_sent_messages": "🗑️ Auto-slett sendte meldinger",
"mark_snaps_as_seen": "👀 Marker Snaps som sett",
"mark_stories_as_seen_locally": "👀 Marker Historier som sett lokalt",
"conversation_info": "👤 Samtaleinfo",
"e2e_encryption": "🔒 Bruk E2E-kryptering",
"message_logger": "📝 Meldingslogger",
"auto_read": " Auto-les",
"hide_typing_indicator": "🙈 Skjul skriveindikator"
},
"schedule_scheduled_for": "Planlagt for {name} om {time}",
"schedule_sending_in": "Sender om {time}",
@@ -2323,16 +2246,16 @@
"custom_android_id": {
"null": "Bruk ekte Android-ID"
},
"add_friend_source_spoof": {
"added_by_username": "Via brukernavn",
"added_by_mention": "Via omtale",
"added_by_group_chat": "Via gruppechat",
"added_by_qr_code": "Via QR-kode",
"added_by_community": "Via samfunn",
"added_by_quick_add": "Via Raskt tillegg (høy risiko for å bli utestengt)",
"added_by_spotlight": "Via Spotlight",
"null": "Ikke forfalsk kilde"
},
"add_friend_source_spoof": {
"added_by_username": "Via brukernavn",
"added_by_mention": "Via omtale",
"added_by_group_chat": "Via gruppechat",
"added_by_qr_code": "Via QR-kode",
"added_by_community": "Via samfunn",
"added_by_quick_add": "Via Raskt tillegg (høy risiko for å bli utestengt)",
"added_by_spotlight": "Via Spotlight",
"null": "Ikke forfalsk kilde"
},
"custom_streaks_expiration_format": {
"null": "Systemstandard"
},
@@ -2439,8 +2362,8 @@
},
"spotlight_comments_username_icon": {
"user": "Brukernavn-ikon",
"\ud83d\udc64": "Brukernavn-ikon",
"[\ud83d\udc64]": "Brukernavn-ikon",
"👤": "Brukernavn-ikon",
"[👤]": "Brukernavn-ikon",
"default": "Brukernavn-ikon",
"no_icon": "Ingen ikon"
},
@@ -2520,11 +2443,11 @@
"phone_calls": "Telefonsamtaler"
},
"message_indicators": {
"encryption_indicator": "Legger til et \ud83d\udd12 ikon ved siden av meldinger som kun er sendt til deg",
"encryption_indicator": "Legger til et 🔒 ikon ved siden av meldinger som kun er sendt til deg",
"platform_indicator": "Legger til plattformsikonet som media ble sendt fra (f.eks. Android, iOS, Web)",
"location_indicator": "Legger til et \ud83d\udccd ikon på snaps når de er sendt med posisjon aktivert",
"location_indicator": "Legger til et 📍 ikon på snaps når de er sendt med posisjon aktivert",
"ovf_editor_indicator": "Indikerer om en snap er sendt med OVF Editor",
"director_mode_indicator": "Legger til et \u270f\ufe0f ikon på snaps når de er sendt med Director Mode, som kan brukes til å sende galleribilder som snaps"
"director_mode_indicator": "Legger til et ✏️ ikon på snaps når de er sendt med Director Mode, som kan brukes til å sende galleribilder som snaps"
},
"auto_mark_as_read": {
"conversation_read": "Marker samtale som lest når du sender en melding",
@@ -2748,7 +2671,6 @@
"show_chat_edit_history": "Vis historikk for chatredigering",
"convert_message": "Konverter melding"
},
"chat_wallpaper_downloader": {
"download_button": "Last ned chatbakgrunn"
},
@@ -3078,7 +3000,7 @@
"queue_cleared": "Kø tømt og statistikk tilbakestilt",
"queue_cleared_title": "Kø tømt",
"queue_cleared_reset": "Kø tømt & tilbakestilt",
"queue_cleared_feedback": "Tømte {count} snaps i kø \u2022 Tilbakestilte {processed} behandlet antall",
"queue_cleared_feedback": "Tømte {count} snaps i kø Tilbakestilte {processed} behandlet antall",
"queue_cleared_feedback_simple": "Tilbakestilte {processed} behandlet antall",
"unknown_sender": "Ukjent",
"unknown_user": "Ukjent bruker",

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 door Eternal",
"version_title": "v{versionName} · door Eternal",
"update_title": "PurrfectSnap-update",
"update_content": "Versie {version} is beschikbaar!",
"update_button": "Downloaden",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "Geen taken",
"merge_button": "Samenvoegen",
"summary_active": "{active} actief \u00b7 {recent} recent",
"summary_idle": "Inactief \u00b7 {recent} recent",
"summary_active": "{active} actief · {recent} recent",
"summary_idle": "Inactief · {recent} recent",
"running_count": "{count} actief",
"clear_button_description": "Taken wissen",
"failed_to_open_file": "Bestand openen mislukt",
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "Teleporteer naar vriend",
"search_bar": "Zoeken",
"no_friends_map": "Geen vrienden op de kaart",
"no_friends_found": "Geen vrienden gevonden"
"no_friends_found": "Geen vrienden gevonden",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,166 @@
},
"features": {
"notices": {
"unstable": "\u26a0 Instabiel",
"ban_risk": "\u26a0 Deze functie kan leiden tot bans",
"internal_behavior": "\u26a0 Dit kan intern gedrag van Snapchat verstoren"
},
"options": {
"empty": "Leeg",
"walk_radius": {
"empty": "Leeg"
},
"spoof_battery_level": {
"empty": "Leeg"
},
"custom_android_id": {
"empty": "Leeg"
},
"custom_streaks_expiration_format": {
"empty": "Leeg"
},
"preferred_transcription_lang": {
"empty": "Leeg"
},
"custom_emoji_font": {
"empty": "Leeg"
},
"custom_shared_library": {
"empty": "Leeg"
},
"custom_resolution": {
"empty": "Leeg"
},
"custom_path_format": {
"empty": "Leeg"
},
"custom_video_codec": {
"empty": "Leeg"
},
"custom_audio_codec": {
"empty": "Leeg"
},
"double_tap_chat_action_custom_emoji": {
"empty": "Leeg"
},
"unsaveable_messages": {
"blacklist": "Zwarte-lijstmodus",
"whitelist": "Witte-lijstmodus",
"null": "Uitgeschakeld"
},
"update_check_frequency": {
"daily": "Dagelijks",
"weekly": "Wekelijks",
"monthly": "Maandelijks"
}
"unstable": " Instabiel",
"ban_risk": " Deze functie kan leiden tot bans",
"internal_behavior": " Dit kan intern gedrag van Snapchat verstoren"
},
"properties": {
"global": {
"name": "Algemeen",
"description": "Algemene modulevoorkeuren en standaardinstellingen",
"description": "Pas algemene Snapchat-instellingen aan",
"properties": {
"ui_settings": {
"name": "UI-instellingen",
"description": "Pas feedback en toast-gedrag aan",
"better_location": {
"name": "Betere locatie",
"description": "Verbetert de Snapchat-locatie",
"properties": {
"haptic_feedback": {
"name": "Haptische feedback",
"description": "Trillen bij ondersteunde interacties"
"spoof_location": {
"name": "Locatie spoofen",
"description": "Spooft je locatie naar een opgegeven plek"
},
"use_system_toasts": {
"name": "Systeem-toasts gebruiken",
"description": "Toon Android-toasts in plaats van in-app overlays"
"coordinates": {
"name": "Coördinaten",
"description": "Stel de coördinaten van de gespoofte locatie in"
},
"walk_radius": {
"name": "Loopradius",
"description": "Willekeurig rondlopen binnen deze straal (ft)"
},
"always_update_location": {
"name": "Locatie altijd bijwerken",
"description": "Forceer Snapchat om locatie bij te werken, zelfs als er geen GPS-gegevens worden ontvangen"
},
"suspend_location_updates": {
"name": "Locatie-updates onderbreken",
"description": "Voorkomt dat je locatie wordt bijgewerkt"
},
"spoof_battery_level": {
"name": "Batterijniveau spoofen",
"description": "Spooft het batterijniveau van je apparaat op de kaart\nWaarde moet tussen 0 en 100 liggen"
},
"spoof_headphones": {
"name": "Koptelefoon spoofen",
"description": "Spooft de status van muziek luisteren op de kaart"
},
"show_battery_level": {
"name": "Batterijniveau tonen",
"description": "Toont het batterijniveau van je vrienden op de kaart"
}
}
},
"update_settings": {
"name": "Update-instellingen",
"description": "Beheer automatische update-checks",
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Schakelt Snapchat Plus-functies in\nSommige server-kant functies werken mogelijk niet"
},
"media_upload_quality": {
"name": "Media-uploadkwaliteit",
"description": "Overschrijft de media-uploadkwaliteit",
"properties": {
"auto_update_check": {
"name": "Automatische update-check",
"description": "Automatisch controleren op nieuwe builds"
"force_video_upload_source_quality": {
"name": "Bronkwaliteit video-upload forceren",
"description": "Forceert Snapchat om de bronkwaliteit te gebruiken bij het uploaden van video's\nLet op: dit verwijdert mogelijk geen metadata van media"
},
"update_check_frequency": {
"name": "Frequentie update-check",
"description": "Hoe vaak controleren op updates"
"disable_image_compression": {
"name": "Beeldcompressie uitschakelen",
"description": "Schakelt beeldcompressie uit bij het uploaden van media"
},
"custom_image_upload_format": {
"name": "Aangepast beeld-uploadformaat",
"description": "Stelt een aangepast beeld-uploadformaat in\nSelecteer een lossless formaat (zoals PNG) voor de beste kwaliteit"
}
}
},
"disable_confirmation_dialogs": {
"name": "Bevestigingsvensters uitschakelen",
"description": "Bevestigt automatisch geselecteerde acties"
},
"auto_updater": {
"name": "Auto-updater",
"description": "Controleert automatisch op nieuwe updates"
},
"update_settings": {
"name": "Update-instellingen",
"description": "Beheer hoe PurrfectSnap controleert op updates",
"properties": {
"auto_update_check": {
"name": "Automatische update-check"
},
"update_check_frequency": {
"name": "Frequentie update-check"
}
}
},
"ui_settings": {
"name": "UI-instellingen",
"properties": {
"haptic_feedback": {
"name": "Haptische feedback"
}
}
},
"disable_metrics": {
"name": "Metrieken uitschakelen",
"description": "Blokkeert het verzenden van specifieke analytische gegevens naar Snapchat"
},
"disable_story_sections": {
"name": "Verhaalsecties uitschakelen",
"description": "Verwijdert secties van de verhalenpagina\nVereist mogelijk vernieuwen om correct te werken"
},
"block_ads": {
"name": "Advertenties blokkeren",
"description": "Voorkomt dat advertenties worden weergegeven"
},
"disable_custom_tabs": {
"name": "Aangepaste tabbladen uitschakelen",
"description": "Opent links in ondersteunde applicaties in plaats van in de webbrowser"
},
"disable_permission_requests": {
"name": "Toestemmingsverzoeken uitschakelen",
"description": "Voorkomt dat Snapchat om specifieke toestemmingen vraagt"
},
"disable_memories_snap_feed": {
"name": "Herinneringen in snapfeed uitschakelen",
"description": "Voorkomt dat Snapchat recente herinneringen toont wanneer je omhoog veegt in de camera"
},
"spotlight_comments_username": {
"name": "Gebruikersnaam in Spotlight-reacties",
"description": "Toont gebruikersnaam van auteur in Spotlight-reacties"
},
"spotlight_comments_username_icon": {
"name": "Gebruikersnaam-icoon in Spotlight-reacties",
"description": "Kies welk icoon wordt weergegeven naast gebruikersnamen in Spotlight-reacties"
},
"bypass_video_length_restriction": {
"name": "Videolengtebeperkingen omzeilen",
"description": "Enkel: verstuurt een enkele video\nGesplitst: splitst video's na bewerking"
},
"default_video_playback_rate": {
"name": "Standaard video-afspeelsnelheid",
"description": "Stelt de standaardsnelheid in voor het afspelen van video's\nWaarde moet tussen 0.1 en 4.0 liggen"
},
"video_playback_rate_slider": {
"name": "Schuifregelaar video-afspeelsnelheid",
"description": "Voegt een schuifregelaar toe in het opera-contextmenu om de afspeelsnelheid te wijzigen\nOpmerking: Wijzigingen gelden alleen voor volgende video's"
},
"disable_google_play_dialogs": {
"name": "Google Play Services-dialogen uitschakelen",
"description": "Voorkom dat dialogen over beschikbaarheid van Google Play Services worden getoond"
},
"default_volume_controls": {
"name": "Standaard volumeregelaars",
"description": "Forceert Snapchat om systeemvolumeregelaars te gebruiken"
},
"disable_telecom_framework": {
"name": "Telecom-framework uitschakelen",
"description": "Voorkomt dat Snapchat het Android Telecom-framework gebruikt\nHierdoor kun je muziek luisteren tijdens een gesprek"
},
"hide_active_music": {
"name": "Actieve muziek verbergen",
"description": "Voorkomt dat Snapchat weet dat je muziek luistert\nHierdoor kun je snaps maken met de volumeknoppen terwijl je muziek luistert"
},
"disable_snap_splitting": {
"name": "Snap-splitsing uitschakelen",
"description": "Voorkomt dat snaps worden gesplitst in meerdere delen\nAfbeeldingen die je verstuurt veranderen in video's"
}
}
},
@@ -1143,7 +1220,7 @@
},
"stealth_mode_indicator": {
"name": "Stealth-modus indicator",
"description": "Voegt een \ud83d\udc7b emoji toe naast gesprekken in stealth-modus"
"description": "Voegt een 👻 emoji toe naast gesprekken in stealth-modus"
},
"edit_text_override": {
"name": "Tekstbewerking overschrijven",
@@ -1671,164 +1748,6 @@
}
}
},
"global": {
"name": "Algemeen",
"description": "Pas algemene Snapchat-instellingen aan",
"properties": {
"better_location": {
"name": "Betere locatie",
"description": "Verbetert de Snapchat-locatie",
"properties": {
"spoof_location": {
"name": "Locatie spoofen",
"description": "Spooft je locatie naar een opgegeven plek"
},
"coordinates": {
"name": "Coördinaten",
"description": "Stel de coördinaten van de gespoofte locatie in"
},
"walk_radius": {
"name": "Loopradius",
"description": "Willekeurig rondlopen binnen deze straal (ft)"
},
"always_update_location": {
"name": "Locatie altijd bijwerken",
"description": "Forceer Snapchat om locatie bij te werken, zelfs als er geen GPS-gegevens worden ontvangen"
},
"suspend_location_updates": {
"name": "Locatie-updates onderbreken",
"description": "Voorkomt dat je locatie wordt bijgewerkt"
},
"spoof_battery_level": {
"name": "Batterijniveau spoofen",
"description": "Spooft het batterijniveau van je apparaat op de kaart\nWaarde moet tussen 0 en 100 liggen"
},
"spoof_headphones": {
"name": "Koptelefoon spoofen",
"description": "Spooft de status van muziek luisteren op de kaart"
},
"show_battery_level": {
"name": "Batterijniveau tonen",
"description": "Toont het batterijniveau van je vrienden op de kaart"
}
}
},
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Schakelt Snapchat Plus-functies in\nSommige server-kant functies werken mogelijk niet"
},
"media_upload_quality": {
"name": "Media-uploadkwaliteit",
"description": "Overschrijft de media-uploadkwaliteit",
"properties": {
"force_video_upload_source_quality": {
"name": "Bronkwaliteit video-upload forceren",
"description": "Forceert Snapchat om de bronkwaliteit te gebruiken bij het uploaden van video's\nLet op: dit verwijdert mogelijk geen metadata van media"
},
"disable_image_compression": {
"name": "Beeldcompressie uitschakelen",
"description": "Schakelt beeldcompressie uit bij het uploaden van media"
},
"custom_image_upload_format": {
"name": "Aangepast beeld-uploadformaat",
"description": "Stelt een aangepast beeld-uploadformaat in\nSelecteer een lossless formaat (zoals PNG) voor de beste kwaliteit"
}
}
},
"disable_confirmation_dialogs": {
"name": "Bevestigingsvensters uitschakelen",
"description": "Bevestigt automatisch geselecteerde acties"
},
"auto_updater": {
"name": "Auto-updater",
"description": "Controleert automatisch op nieuwe updates"
},
"update_settings": {
"name": "Update-instellingen",
"description": "Beheer hoe PurrfectSnap controleert op updates",
"properties": {
"auto_update_check": {
"name": "Automatische update-check"
},
"update_check_frequency": {
"name": "Frequentie update-check"
}
}
},
"ui_settings": {
"name": "UI-instellingen",
"properties": {
"haptic_feedback": {
"name": "Haptische feedback"
}
}
},
"disable_metrics": {
"name": "Metrieken uitschakelen",
"description": "Blokkeert het verzenden van specifieke analytische gegevens naar Snapchat"
},
"disable_story_sections": {
"name": "Verhaalsecties uitschakelen",
"description": "Verwijdert secties van de verhalenpagina\nVereist mogelijk vernieuwen om correct te werken"
},
"block_ads": {
"name": "Advertenties blokkeren",
"description": "Voorkomt dat advertenties worden weergegeven"
},
"disable_custom_tabs": {
"name": "Aangepaste tabbladen uitschakelen",
"description": "Opent links in ondersteunde applicaties in plaats van in de webbrowser"
},
"disable_permission_requests": {
"name": "Toestemmingsverzoeken uitschakelen",
"description": "Voorkomt dat Snapchat om specifieke toestemmingen vraagt"
},
"disable_memories_snap_feed": {
"name": "Herinneringen in snapfeed uitschakelen",
"description": "Voorkomt dat Snapchat recente herinneringen toont wanneer je omhoog veegt in de camera"
},
"spotlight_comments_username": {
"name": "Gebruikersnaam in Spotlight-reacties",
"description": "Toont gebruikersnaam van auteur in Spotlight-reacties"
},
"spotlight_comments_username_icon": {
"name": "Gebruikersnaam-icoon in Spotlight-reacties",
"description": "Kies welk icoon wordt weergegeven naast gebruikersnamen in Spotlight-reacties"
},
"bypass_video_length_restriction": {
"name": "Videolengtebeperkingen omzeilen",
"description": "Enkel: verstuurt een enkele video\nGesplitst: splitst video's na bewerking"
},
"default_video_playback_rate": {
"name": "Standaard video-afspeelsnelheid",
"description": "Stelt de standaardsnelheid in voor het afspelen van video's\nWaarde moet tussen 0.1 en 4.0 liggen"
},
"video_playback_rate_slider": {
"name": "Schuifregelaar video-afspeelsnelheid",
"description": "Voegt een schuifregelaar toe in het opera-contextmenu om de afspeelsnelheid te wijzigen\nOpmerking: Wijzigingen gelden alleen voor volgende video's"
},
"disable_google_play_dialogs": {
"name": "Google Play Services-dialogen uitschakelen",
"description": "Voorkom dat dialogen over beschikbaarheid van Google Play Services worden getoond"
},
"default_volume_controls": {
"name": "Standaard volumeregelaars",
"description": "Forceert Snapchat om systeemvolumeregelaars te gebruiken"
},
"disable_telecom_framework": {
"name": "Telecom-framework uitschakelen",
"description": "Voorkomt dat Snapchat het Android Telecom-framework gebruikt\nHierdoor kun je muziek luisteren tijdens een gesprek"
},
"hide_active_music": {
"name": "Actieve muziek verbergen",
"description": "Voorkomt dat Snapchat weet dat je muziek luistert\nHierdoor kun je snaps maken met de volumeknoppen terwijl je muziek luistert"
},
"disable_snap_splitting": {
"name": "Snap-splitsing uitschakelen",
"description": "Voorkomt dat snaps worden gesplitst in meerdere delen\nAfbeeldingen die je verstuurt veranderen in video's"
}
}
},
"rules": {
"name": "Regels",
"description": "Configureer automatiseringsregels",
@@ -2110,7 +2029,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "Indicator versleuteld bericht",
"description": "Voegt een \ud83d\udd12 emoji toe naast versleutelde berichten"
"description": "Voegt een 🔒 emoji toe naast versleutelde berichten"
},
"force_message_encryption": {
"name": "Berichtversleuteling forceren",
@@ -2190,6 +2109,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "Altijd licht",
"always_dark": "Altijd donker",
@@ -2207,20 +2130,20 @@
"null": "Gebruik echt batterijniveau"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f Automatisch downloaden",
"auto_save": "\ud83d\udcac Berichten automatisch opslaan",
"unsaveable_messages": "\u2b07\ufe0f Niet-opslagbare berichten",
"auto_open_snaps": "\ud83d\udcf7 Snaps automatisch openen",
"stealth": "\ud83d\udc7b Stealth-modus",
"auto_reply": "\ud83d\udce8 Automatisch beantwoorden",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f Verzonden berichten automatisch verwijderen",
"mark_snaps_as_seen": "\ud83d\udc40 Snaps als gezien markeren",
"mark_stories_as_seen_locally": "\ud83d\udc40 Verhalen lokaal als gezien markeren",
"conversation_info": "\ud83d\udc64 Gespreksinfo",
"e2e_encryption": "\ud83d\udd12 E2E-encryptie gebruiken",
"message_logger": "\ud83d\udcdd Berichtenlogger",
"auto_read": "\u2705 Automatisch lezen",
"hide_typing_indicator": "\ud83d\ude48 Typ-indicator verbergen"
"auto_download": "⬇️ Automatisch downloaden",
"auto_save": "💬 Berichten automatisch opslaan",
"unsaveable_messages": "⬇️ Niet-opslagbare berichten",
"auto_open_snaps": "📷 Snaps automatisch openen",
"stealth": "👻 Stealth-modus",
"auto_reply": "📨 Automatisch beantwoorden",
"auto_delete_sent_messages": "🗑️ Verzonden berichten automatisch verwijderen",
"mark_snaps_as_seen": "👀 Snaps als gezien markeren",
"mark_stories_as_seen_locally": "👀 Verhalen lokaal als gezien markeren",
"conversation_info": "👤 Gespreksinfo",
"e2e_encryption": "🔒 E2E-encryptie gebruiken",
"message_logger": "📝 Berichtenlogger",
"auto_read": " Automatisch lezen",
"hide_typing_indicator": "🙈 Typ-indicator verbergen"
},
"schedule_scheduled_for": "Gepland voor {name} over {time}",
"schedule_sending_in": "Verzenden over {time}",
@@ -2439,8 +2362,8 @@
},
"spotlight_comments_username_icon": {
"user": "Gebruikersnaam-icoon",
"\ud83d\udc64": "Gebruikersnaam-icoon",
"[\ud83d\udc64]": "Gebruikersnaam-icoon",
"👤": "Gebruikersnaam-icoon",
"[👤]": "Gebruikersnaam-icoon",
"default": "Gebruikersnaam-icoon",
"no_icon": "Geen icoon"
},
@@ -2520,11 +2443,11 @@
"phone_calls": "Telefoongesprekken"
},
"message_indicators": {
"encryption_indicator": "Voegt een \ud83d\udd12 pictogram toe naast berichten die alleen naar jou zijn verzonden",
"encryption_indicator": "Voegt een 🔒 pictogram toe naast berichten die alleen naar jou zijn verzonden",
"platform_indicator": "Voegt het platformpictogram toe waarvan media is verzonden (bijv. Android, iOS, Web)",
"location_indicator": "Voegt een \ud83d\udccd pictogram toe aan snaps wanneer ze zijn verzonden met locatie ingeschakeld",
"location_indicator": "Voegt een 📍 pictogram toe aan snaps wanneer ze zijn verzonden met locatie ingeschakeld",
"ovf_editor_indicator": "Geeft aan of een snap is verzonden met OVF Editor",
"director_mode_indicator": "Voegt een \u270f\ufe0f pictogram toe aan snaps wanneer ze zijn verzonden met Director Mode, die kan worden gebruikt om galerijafbeeldingen als snaps te verzenden"
"director_mode_indicator": "Voegt een ✏️ pictogram toe aan snaps wanneer ze zijn verzonden met Director Mode, die kan worden gebruikt om galerijafbeeldingen als snaps te verzenden"
},
"auto_mark_as_read": {
"conversation_read": "Gesprek als gelezen markeren bij verzenden bericht",
@@ -2748,7 +2671,6 @@
"show_chat_edit_history": "Chatbewerkingsgeschiedenis tonen",
"convert_message": "Bericht converteren"
},
"chat_wallpaper_downloader": {
"download_button": "Chatachtergrond downloaden"
},
@@ -3078,7 +3000,7 @@
"queue_cleared": "Wachtrij gewist en statistieken gereset",
"queue_cleared_title": "Wachtrij gewist",
"queue_cleared_reset": "Wachtrij gewist & gereset",
"queue_cleared_feedback": "{count} snaps in wachtrij gewist \u2022 Teller verwerkt ({processed}) gereset",
"queue_cleared_feedback": "{count} snaps in wachtrij gewist Teller verwerkt ({processed}) gereset",
"queue_cleared_feedback_simple": "Teller verwerkt ({processed}) gereset",
"unknown_sender": "Onbekend",
"unknown_user": "Onbekende gebruiker",

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 od Eternal",
"version_title": "v{versionName} · od Eternal",
"update_title": "Aktualizacja PurrfectSnap",
"update_content": "Wersja {version} jest dostępna!",
"update_button": "Pobierz",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "Brak zadań",
"merge_button": "Połącz",
"summary_active": "{active} aktywne \u00b7 {recent} niedawne",
"summary_idle": "Bezczynne \u00b7 {recent} niedawne",
"summary_active": "{active} aktywne · {recent} niedawne",
"summary_idle": "Bezczynne · {recent} niedawne",
"running_count": "{count} uruchomionych",
"clear_button_description": "Wyczyść zadania",
"failed_to_open_file": "Nie udało się otworzyć pliku",
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "Teleportuj do znajomego",
"search_bar": "Szukaj",
"no_friends_map": "Brak znajomych na mapie",
"no_friends_found": "Nie znaleziono znajomych"
"no_friends_found": "Nie znaleziono znajomych",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,166 @@
},
"features": {
"notices": {
"unstable": "\u26a0 Niestabilne",
"ban_risk": "\u26a0 Ta funkcja może spowodować bana",
"internal_behavior": "\u26a0 To może zepsuć wewnętrzne działanie Snapchata"
},
"options": {
"empty": "Puste",
"walk_radius": {
"empty": "Puste"
},
"spoof_battery_level": {
"empty": "Puste"
},
"custom_android_id": {
"empty": "Puste"
},
"custom_streaks_expiration_format": {
"empty": "Puste"
},
"preferred_transcription_lang": {
"empty": "Puste"
},
"custom_emoji_font": {
"empty": "Puste"
},
"custom_shared_library": {
"empty": "Puste"
},
"custom_resolution": {
"empty": "Puste"
},
"custom_path_format": {
"empty": "Puste"
},
"custom_video_codec": {
"empty": "Puste"
},
"custom_audio_codec": {
"empty": "Puste"
},
"double_tap_chat_action_custom_emoji": {
"empty": "Puste"
},
"unsaveable_messages": {
"blacklist": "Tryb czarnej listy",
"whitelist": "Tryb białej listy",
"null": "Wyłączone"
},
"update_check_frequency": {
"daily": "Codziennie",
"weekly": "Co tydzień",
"monthly": "Co miesiąc"
}
"unstable": " Niestabilne",
"ban_risk": " Ta funkcja może spowodować bana",
"internal_behavior": " To może zepsuć wewnętrzne działanie Snapchata"
},
"properties": {
"global": {
"name": "Globalne",
"description": "Ogólne preferencje modułu i wartości domyślne",
"description": "Dostosuj globalne ustawienia Snapchata",
"properties": {
"ui_settings": {
"name": "Ustawienia interfejsu",
"description": "Dostosuj zachowanie powiadomień i wibracji",
"better_location": {
"name": "Lepsza lokalizacja",
"description": "Ulepsza lokalizację Snapchata",
"properties": {
"haptic_feedback": {
"name": "Wibracje",
"description": "Wibruj przy obsługiwanych interakcjach"
"spoof_location": {
"name": "Fałszuj lokalizację",
"description": "Fałszuje Twoją lokalizację na określoną"
},
"use_system_toasts": {
"name": "Użyj systemowych powiadomień toast",
"description": "Pokaż powiadomienia systemu Android zamiast nakładek w aplikacji"
"coordinates": {
"name": "Współrzędne",
"description": "Ustaw współrzędne sfałszowanej lokalizacji"
},
"walk_radius": {
"name": "Promień chodzenia",
"description": "Losowo chodź w obrębie tego promienia (stopy)"
},
"always_update_location": {
"name": "Zawsze aktualizuj lokalizację",
"description": "Wymuś na Snapchacie aktualizację lokalizacji, nawet jeśli nie otrzymano danych GPS"
},
"suspend_location_updates": {
"name": "Wstrzymaj aktualizacje lokalizacji",
"description": "Zapobiega aktualizowaniu Twojej lokalizacji"
},
"spoof_battery_level": {
"name": "Fałszuj poziom baterii",
"description": "Fałszuje poziom baterii Twojego urządzenia na mapie\nWartość musi mieścić się w przedziale od 0 do 100"
},
"spoof_headphones": {
"name": "Fałszuj słuchawki",
"description": "Fałszuje status słuchania muzyki na mapie"
},
"show_battery_level": {
"name": "Pokaż poziom baterii",
"description": "Pokazuje poziom baterii Twoich znajomych na mapie"
}
}
},
"update_settings": {
"name": "Ustawienia aktualizacji",
"description": "Kontroluj automatyczne sprawdzanie aktualizacji",
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Włącza funkcje Snapchat Plus\nNiektóre funkcje po stronie serwera mogą nie działać"
},
"media_upload_quality": {
"name": "Jakość przesyłania mediów",
"description": "Nadpisuje jakość przesyłania mediów",
"properties": {
"auto_update_check": {
"name": "Automatyczne sprawdzanie aktualizacji",
"description": "Sprawdzaj nowe wersje automatycznie"
"force_video_upload_source_quality": {
"name": "Wymuś jakość źródłową przesyłania wideo",
"description": "Wymusza na Snapchacie użycie jakości źródłowej podczas przesyłania filmów\nZauważ, że może to nie usunąć metadanych z mediów"
},
"update_check_frequency": {
"name": "Częstotliwość sprawdzania aktualizacji",
"description": "Jak często sprawdzać dostępność aktualizacji"
"disable_image_compression": {
"name": "Wyłącz kompresję obrazu",
"description": "Wyłącza kompresję obrazu podczas przesyłania mediów"
},
"custom_image_upload_format": {
"name": "Niestandardowy format przesyłania obrazu",
"description": "Ustawia niestandardowy format przesyłania obrazu\nWybierz format bezstratny (jak PNG) dla najlepszej jakości"
}
}
},
"disable_confirmation_dialogs": {
"name": "Wyłącz okna dialogowe potwierdzenia",
"description": "Automatycznie potwierdza wybrane akcje"
},
"auto_updater": {
"name": "Automatyczny aktualizator",
"description": "Automatycznie sprawdza dostępność nowych aktualizacji"
},
"update_settings": {
"name": "Ustawienia aktualizacji",
"description": "Kontroluj, jak PurrfectSnap sprawdza aktualizacje",
"properties": {
"auto_update_check": {
"name": "Automatyczne sprawdzanie aktualizacji"
},
"update_check_frequency": {
"name": "Częstotliwość sprawdzania aktualizacji"
}
}
},
"ui_settings": {
"name": "Ustawienia interfejsu",
"properties": {
"haptic_feedback": {
"name": "Wibracje"
}
}
},
"disable_metrics": {
"name": "Wyłącz metryki",
"description": "Blokuje wysyłanie określonych danych analitycznych do Snapchata"
},
"disable_story_sections": {
"name": "Wyłącz sekcje relacji",
"description": "Usuwa sekcje ze strony Relacje\nMoże wymagać odświeżenia, aby działać poprawnie"
},
"block_ads": {
"name": "Blokuj reklamy",
"description": "Zapobiega wyświetlaniu reklam"
},
"disable_custom_tabs": {
"name": "Wyłącz karty niestandardowe",
"description": "Otwiera linki w obsługiwanych aplikacjach zamiast w przeglądarce internetowej"
},
"disable_permission_requests": {
"name": "Wyłącz prośby o uprawnienia",
"description": "Zapobiega pytaniu przez Snapchata o określone uprawnienia"
},
"disable_memories_snap_feed": {
"name": "Wyłącz kanał Memories Snap",
"description": "Zapobiega pokazywaniu przez Snapchata ostatnich wspomnień po przesunięciu w górę w aparacie"
},
"spotlight_comments_username": {
"name": "Nazwa użytkownika w komentarzach Spotlight",
"description": "Pokazuje nazwę użytkownika autora w komentarzach Spotlight"
},
"spotlight_comments_username_icon": {
"name": "Ikona nazwy użytkownika w komentarzach Spotlight",
"description": "Wybierz, która ikona jest wyświetlana obok nazw użytkowników w komentarzach Spotlight"
},
"bypass_video_length_restriction": {
"name": "Pomiń ograniczenia długości wideo",
"description": "Pojedyncze: wysyła pojedyncze wideo\nPodzielone: dzieli wideo po edycji"
},
"default_video_playback_rate": {
"name": "Domyślna prędkość odtwarzania wideo",
"description": "Ustawia domyślną prędkość odtwarzania wideo\nWartość musi mieścić się w przedziale od 0.1 do 4.0"
},
"video_playback_rate_slider": {
"name": "Suwak prędkości odtwarzania wideo",
"description": "Dodaje suwak w menu kontekstowym Opery, aby zmienić prędkość odtwarzania wideo\nUwaga: Zmiany dotyczą tylko kolejnych filmów"
},
"disable_google_play_dialogs": {
"name": "Wyłącz okna dialogowe Usług Google Play",
"description": "Zapobiegaj wyświetlaniu okien dialogowych dostępności Usług Google Play"
},
"default_volume_controls": {
"name": "Domyślna kontrola głośności",
"description": "Wymusza na Snapchacie użycie systemowej kontroli głośności"
},
"disable_telecom_framework": {
"name": "Wyłącz Telecom Framework",
"description": "Zapobiega używaniu przez Snapchata frameworku Android Telecom\nPozwala to na słuchanie muzyki podczas rozmowy"
},
"hide_active_music": {
"name": "Ukryj aktywną muzykę",
"description": "Zapobiega temu, by Snapchat wiedział, że słuchasz muzyki\nPozwoli to na robienie Snapów używając przycisków głośności podczas słuchania muzyki"
},
"disable_snap_splitting": {
"name": "Wyłącz dzielenie Snapów",
"description": "Zapobiega dzieleniu Snapów na wiele części\nZdjęcia, które wyślesz, zamienią się w wideo"
}
}
},
@@ -1143,7 +1220,7 @@
},
"stealth_mode_indicator": {
"name": "Wskaźnik trybu incognito",
"description": "Dodaje emoji \ud83d\udc7b obok konwersacji w trybie incognito"
"description": "Dodaje emoji 👻 obok konwersacji w trybie incognito"
},
"edit_text_override": {
"name": "Nadpisanie edycji tekstu",
@@ -1671,164 +1748,6 @@
}
}
},
"global": {
"name": "Globalne",
"description": "Dostosuj globalne ustawienia Snapchata",
"properties": {
"better_location": {
"name": "Lepsza lokalizacja",
"description": "Ulepsza lokalizację Snapchata",
"properties": {
"spoof_location": {
"name": "Fałszuj lokalizację",
"description": "Fałszuje Twoją lokalizację na określoną"
},
"coordinates": {
"name": "Współrzędne",
"description": "Ustaw współrzędne sfałszowanej lokalizacji"
},
"walk_radius": {
"name": "Promień chodzenia",
"description": "Losowo chodź w obrębie tego promienia (stopy)"
},
"always_update_location": {
"name": "Zawsze aktualizuj lokalizację",
"description": "Wymuś na Snapchacie aktualizację lokalizacji, nawet jeśli nie otrzymano danych GPS"
},
"suspend_location_updates": {
"name": "Wstrzymaj aktualizacje lokalizacji",
"description": "Zapobiega aktualizowaniu Twojej lokalizacji"
},
"spoof_battery_level": {
"name": "Fałszuj poziom baterii",
"description": "Fałszuje poziom baterii Twojego urządzenia na mapie\nWartość musi mieścić się w przedziale od 0 do 100"
},
"spoof_headphones": {
"name": "Fałszuj słuchawki",
"description": "Fałszuje status słuchania muzyki na mapie"
},
"show_battery_level": {
"name": "Pokaż poziom baterii",
"description": "Pokazuje poziom baterii Twoich znajomych na mapie"
}
}
},
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Włącza funkcje Snapchat Plus\nNiektóre funkcje po stronie serwera mogą nie działać"
},
"media_upload_quality": {
"name": "Jakość przesyłania mediów",
"description": "Nadpisuje jakość przesyłania mediów",
"properties": {
"force_video_upload_source_quality": {
"name": "Wymuś jakość źródłową przesyłania wideo",
"description": "Wymusza na Snapchacie użycie jakości źródłowej podczas przesyłania filmów\nZauważ, że może to nie usunąć metadanych z mediów"
},
"disable_image_compression": {
"name": "Wyłącz kompresję obrazu",
"description": "Wyłącza kompresję obrazu podczas przesyłania mediów"
},
"custom_image_upload_format": {
"name": "Niestandardowy format przesyłania obrazu",
"description": "Ustawia niestandardowy format przesyłania obrazu\nWybierz format bezstratny (jak PNG) dla najlepszej jakości"
}
}
},
"disable_confirmation_dialogs": {
"name": "Wyłącz okna dialogowe potwierdzenia",
"description": "Automatycznie potwierdza wybrane akcje"
},
"auto_updater": {
"name": "Automatyczny aktualizator",
"description": "Automatycznie sprawdza dostępność nowych aktualizacji"
},
"update_settings": {
"name": "Ustawienia aktualizacji",
"description": "Kontroluj, jak PurrfectSnap sprawdza aktualizacje",
"properties": {
"auto_update_check": {
"name": "Automatyczne sprawdzanie aktualizacji"
},
"update_check_frequency": {
"name": "Częstotliwość sprawdzania aktualizacji"
}
}
},
"ui_settings": {
"name": "Ustawienia interfejsu",
"properties": {
"haptic_feedback": {
"name": "Wibracje"
}
}
},
"disable_metrics": {
"name": "Wyłącz metryki",
"description": "Blokuje wysyłanie określonych danych analitycznych do Snapchata"
},
"disable_story_sections": {
"name": "Wyłącz sekcje relacji",
"description": "Usuwa sekcje ze strony Relacje\nMoże wymagać odświeżenia, aby działać poprawnie"
},
"block_ads": {
"name": "Blokuj reklamy",
"description": "Zapobiega wyświetlaniu reklam"
},
"disable_custom_tabs": {
"name": "Wyłącz karty niestandardowe",
"description": "Otwiera linki w obsługiwanych aplikacjach zamiast w przeglądarce internetowej"
},
"disable_permission_requests": {
"name": "Wyłącz prośby o uprawnienia",
"description": "Zapobiega pytaniu przez Snapchata o określone uprawnienia"
},
"disable_memories_snap_feed": {
"name": "Wyłącz kanał Memories Snap",
"description": "Zapobiega pokazywaniu przez Snapchata ostatnich wspomnień po przesunięciu w górę w aparacie"
},
"spotlight_comments_username": {
"name": "Nazwa użytkownika w komentarzach Spotlight",
"description": "Pokazuje nazwę użytkownika autora w komentarzach Spotlight"
},
"spotlight_comments_username_icon": {
"name": "Ikona nazwy użytkownika w komentarzach Spotlight",
"description": "Wybierz, która ikona jest wyświetlana obok nazw użytkowników w komentarzach Spotlight"
},
"bypass_video_length_restriction": {
"name": "Pomiń ograniczenia długości wideo",
"description": "Pojedyncze: wysyła pojedyncze wideo\nPodzielone: dzieli wideo po edycji"
},
"default_video_playback_rate": {
"name": "Domyślna prędkość odtwarzania wideo",
"description": "Ustawia domyślną prędkość odtwarzania wideo\nWartość musi mieścić się w przedziale od 0.1 do 4.0"
},
"video_playback_rate_slider": {
"name": "Suwak prędkości odtwarzania wideo",
"description": "Dodaje suwak w menu kontekstowym Opery, aby zmienić prędkość odtwarzania wideo\nUwaga: Zmiany dotyczą tylko kolejnych filmów"
},
"disable_google_play_dialogs": {
"name": "Wyłącz okna dialogowe Usług Google Play",
"description": "Zapobiegaj wyświetlaniu okien dialogowych dostępności Usług Google Play"
},
"default_volume_controls": {
"name": "Domyślna kontrola głośności",
"description": "Wymusza na Snapchacie użycie systemowej kontroli głośności"
},
"disable_telecom_framework": {
"name": "Wyłącz Telecom Framework",
"description": "Zapobiega używaniu przez Snapchata frameworku Android Telecom\nPozwala to na słuchanie muzyki podczas rozmowy"
},
"hide_active_music": {
"name": "Ukryj aktywną muzykę",
"description": "Zapobiega temu, by Snapchat wiedział, że słuchasz muzyki\nPozwoli to na robienie Snapów używając przycisków głośności podczas słuchania muzyki"
},
"disable_snap_splitting": {
"name": "Wyłącz dzielenie Snapów",
"description": "Zapobiega dzieleniu Snapów na wiele części\nZdjęcia, które wyślesz, zamienią się w wideo"
}
}
},
"rules": {
"name": "Reguły",
"description": "Konfiguruj reguły automatyzacji",
@@ -2110,7 +2029,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "Wskaźnik zaszyfrowanej wiadomości",
"description": "Dodaje emoji \ud83d\udd12 obok zaszyfrowanych wiadomości"
"description": "Dodaje emoji 🔒 obok zaszyfrowanych wiadomości"
},
"force_message_encryption": {
"name": "Wymuś szyfrowanie wiadomości",
@@ -2190,6 +2109,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "Zawsze jasny",
"always_dark": "Zawsze ciemny",
@@ -2207,20 +2130,20 @@
"null": "Użyj rzeczywistego poziomu baterii"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f Automatyczne pobieranie",
"auto_save": "\ud83d\udcac Automatyczny zapis wiadomości",
"unsaveable_messages": "\u2b07\ufe0f Wiadomości niezapisywalne",
"auto_open_snaps": "\ud83d\udcf7 Automatyczne otwieranie Snapów",
"stealth": "\ud83d\udc7b Tryb incognito",
"auto_reply": "\ud83d\udce8 Automatyczna odpowiedź",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f Automatyczne usuwanie wysłanych",
"mark_snaps_as_seen": "\ud83d\udc40 Oznacz Snapy jako wyświetlone",
"mark_stories_as_seen_locally": "\ud83d\udc40 Oznacz Relacje jako wyświetlone lokalnie",
"conversation_info": "\ud83d\udc64 Info o konwersacji",
"e2e_encryption": "\ud83d\udd12 Użyj szyfrowania E2E",
"message_logger": "\ud83d\udcdd Rejestrator wiadomości",
"auto_read": "\u2705 Automatyczne odczytywanie",
"hide_typing_indicator": "\ud83d\ude48 Ukryj wskaźnik pisania"
"auto_download": "⬇️ Automatyczne pobieranie",
"auto_save": "💬 Automatyczny zapis wiadomości",
"unsaveable_messages": "⬇️ Wiadomości niezapisywalne",
"auto_open_snaps": "📷 Automatyczne otwieranie Snapów",
"stealth": "👻 Tryb incognito",
"auto_reply": "📨 Automatyczna odpowiedź",
"auto_delete_sent_messages": "🗑️ Automatyczne usuwanie wysłanych",
"mark_snaps_as_seen": "👀 Oznacz Snapy jako wyświetlone",
"mark_stories_as_seen_locally": "👀 Oznacz Relacje jako wyświetlone lokalnie",
"conversation_info": "👤 Info o konwersacji",
"e2e_encryption": "🔒 Użyj szyfrowania E2E",
"message_logger": "📝 Rejestrator wiadomości",
"auto_read": " Automatyczne odczytywanie",
"hide_typing_indicator": "🙈 Ukryj wskaźnik pisania"
},
"schedule_scheduled_for": "Zaplanowano dla {name} za {time}",
"schedule_sending_in": "Wysyłanie za {time}",
@@ -2438,8 +2361,8 @@
},
"spotlight_comments_username_icon": {
"user": "Ikona użytkownika",
"\ud83d\udc64": "Ikona użytkownika",
"[\ud83d\udc64]": "Ikona użytkownika",
"👤": "Ikona użytkownika",
"[👤]": "Ikona użytkownika",
"default": "Ikona użytkownika",
"no_icon": "Brak ikony"
},
@@ -2519,11 +2442,11 @@
"phone_calls": "Połączenia telefoniczne"
},
"message_indicators": {
"encryption_indicator": "Dodaje ikonę \ud83d\udd12 obok wiadomości, które zostały wysłane tylko do Ciebie",
"encryption_indicator": "Dodaje ikonę 🔒 obok wiadomości, które zostały wysłane tylko do Ciebie",
"platform_indicator": "Dodaje ikonę platformy, z której wysłano media (np. Android, iOS, Web)",
"location_indicator": "Dodaje ikonę \ud83d\udccd do Snapów, gdy zostały wysłane z włączoną lokalizacją",
"location_indicator": "Dodaje ikonę 📍 do Snapów, gdy zostały wysłane z włączoną lokalizacją",
"ovf_editor_indicator": "Wskazuje, czy Snap został wysłany za pomocą edytora OVF",
"director_mode_indicator": "Dodaje ikonę \u270f\ufe0f do Snapów, gdy zostały wysłane przy użyciu trybu reżysera, który może być używany do wysyłania zdjęć z galerii jako Snapów"
"director_mode_indicator": "Dodaje ikonę ✏️ do Snapów, gdy zostały wysłane przy użyciu trybu reżysera, który może być używany do wysyłania zdjęć z galerii jako Snapów"
},
"auto_mark_as_read": {
"conversation_read": "Oznacz konwersację jako przeczytaną podczas wysyłania wiadomości",
@@ -3076,7 +2999,7 @@
"queue_cleared": "Kolejka wyczyszczona i statystyki zresetowane",
"queue_cleared_title": "Kolejka wyczyszczona",
"queue_cleared_reset": "Kolejka wyczyszczona i zresetowana",
"queue_cleared_feedback": "Wyczyszczono {count} zakolejkowanych snapów \u2022 Zresetowano licznik {processed} przetworzonych",
"queue_cleared_feedback": "Wyczyszczono {count} zakolejkowanych snapów Zresetowano licznik {processed} przetworzonych",
"queue_cleared_feedback_simple": "Zresetowano licznik {processed} przetworzonych",
"unknown_sender": "Nieznany",
"unknown_user": "Nieznany użytkownik",

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 por Eternal",
"version_title": "v{versionName} · por Eternal",
"update_title": "Atualização PurrfectSnap",
"update_content": "A versão {version} está disponível!",
"update_button": "Baixar",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "Nenhuma tarefa",
"merge_button": "Mesclar",
"summary_active": "{active} ativas \u00b7 {recent} recentes",
"summary_idle": "Ocioso \u00b7 {recent} recentes",
"summary_active": "{active} ativas · {recent} recentes",
"summary_idle": "Ocioso · {recent} recentes",
"running_count": "{count} em execução",
"clear_button_description": "Limpar tarefas",
"failed_to_open_file": "Falha ao abrir arquivo",
@@ -312,22 +312,22 @@
"remove_selected_tasks_confirm": "Remover {count} tarefas?",
"remove_all_tasks_confirm": "Remover todas as tarefas?"
},
"features": {
"disabled": "Desativado",
"export_option": "Exportar",
"import_option": "Importar",
"reset_option": "Redefinir",
"config_export_success_toast": "Configuração exportada com sucesso",
"config_import_success_toast": "Configuração importada com sucesso",
"config_import_failure_toast": "Falha ao importar configuração {error}",
"config_export_failure_toast": "Falha ao exportar configuração {error}",
"saved_config_snackbar": "Configuração salva",
"older_required": "Este recurso requer Snapchat v{version} ou anterior para funcionar corretamente",
"newer_required": "Este recurso requer Snapchat v{version} ou mais recente para funcionar corretamente",
"search_button": "Buscar",
"clear_history": "Limpar histórico de busca",
"subtitle": "Pesquisar e gerenciar recursos"
},
"features": {
"disabled": "Desativado",
"export_option": "Exportar",
"import_option": "Importar",
"reset_option": "Redefinir",
"config_export_success_toast": "Configuração exportada com sucesso",
"config_import_success_toast": "Configuração importada com sucesso",
"config_import_failure_toast": "Falha ao importar configuração {error}",
"config_export_failure_toast": "Falha ao exportar configuração {error}",
"saved_config_snackbar": "Configuração salva",
"older_required": "Este recurso requer Snapchat v{version} ou anterior para funcionar corretamente",
"newer_required": "Este recurso requer Snapchat v{version} ou mais recente para funcionar corretamente",
"search_button": "Buscar",
"clear_history": "Limpar histórico de busca",
"subtitle": "Pesquisar e gerenciar recursos"
},
"bypass_status": {
"active": "PurrAura Ativo",
"inactive": "PurrAura Inativo"
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "Teletransportar para Amigo",
"search_bar": "Buscar",
"no_friends_map": "Nenhum amigo no mapa",
"no_friends_found": "Nenhum amigo encontrado"
"no_friends_found": "Nenhum amigo encontrado",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,166 @@
},
"features": {
"notices": {
"unstable": "\u26a0 Instável",
"ban_risk": "\u26a0 Este recurso pode causar banimentos",
"internal_behavior": "\u26a0 Isso pode quebrar o comportamento interno do Snapchat"
},
"options": {
"empty": "Vazio",
"walk_radius": {
"empty": "Vazio"
},
"spoof_battery_level": {
"empty": "Vazio"
},
"custom_android_id": {
"empty": "Vazio"
},
"custom_streaks_expiration_format": {
"empty": "Vazio"
},
"preferred_transcription_lang": {
"empty": "Vazio"
},
"custom_emoji_font": {
"empty": "Vazio"
},
"custom_shared_library": {
"empty": "Vazio"
},
"custom_resolution": {
"empty": "Vazio"
},
"custom_path_format": {
"empty": "Vazio"
},
"custom_video_codec": {
"empty": "Vazio"
},
"custom_audio_codec": {
"empty": "Vazio"
},
"double_tap_chat_action_custom_emoji": {
"empty": "Vazio"
},
"unsaveable_messages": {
"blacklist": "Modo Lista Negra",
"whitelist": "Modo Lista Branca",
"null": "Desativado"
},
"update_check_frequency": {
"daily": "Diariamente",
"weekly": "Semanalmente",
"monthly": "Mensalmente"
}
"unstable": " Instável",
"ban_risk": " Este recurso pode causar banimentos",
"internal_behavior": " Isso pode quebrar o comportamento interno do Snapchat"
},
"properties": {
"global": {
"name": "Global",
"description": "Preferências gerais do módulo e padrões",
"description": "Ajustar Configurações Globais do Snapchat",
"properties": {
"ui_settings": {
"name": "Configurações de UI",
"description": "Ajuste o comportamento de feedback e toasts",
"better_location": {
"name": "Localização Melhorada",
"description": "Melhora a Localização do Snapchat",
"properties": {
"haptic_feedback": {
"name": "Feedback Híptico",
"description": "Vibrar em interações suportadas"
"spoof_location": {
"name": "Falsificar Localização",
"description": "Falsifica sua localização para uma especificada"
},
"use_system_toasts": {
"name": "Usar Toasts do Sistema",
"description": "Mostrar toasts do Android em vez de sobreposições no app"
"coordinates": {
"name": "Coordenadas",
"description": "Definir as coordenadas da localização falsa"
},
"walk_radius": {
"name": "Raio de Caminhada",
"description": "Caminhar aleatoriamente dentro deste raio (pés)"
},
"always_update_location": {
"name": "Sempre Atualizar Localização",
"description": "Força o Snapchat a atualizar a localização mesmo se nenhum dado GPS for recebido"
},
"suspend_location_updates": {
"name": "Suspender Atualizações de Localização",
"description": "Impede que sua localização seja atualizada"
},
"spoof_battery_level": {
"name": "Falsificar Nível de Bateria",
"description": "Falsifica o nível de bateria do seu dispositivo no mapa\nValor deve estar entre 0 e 100"
},
"spoof_headphones": {
"name": "Falsificar Fones de Ouvido",
"description": "Falsifica o status de ouvindo música no mapa"
},
"show_battery_level": {
"name": "Mostrar Nível de Bateria",
"description": "Mostra o nível de bateria dos seus amigos no mapa"
}
}
},
"update_settings": {
"name": "Configurações de Atualização",
"description": "Controle as verificações automáticas de atualização",
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Ativa recursos do Snapchat Plus\nAlguns recursos baseados em servidor podem não funcionar"
},
"media_upload_quality": {
"name": "Qualidade de Upload de Mídia",
"description": "Substitui a qualidade de upload de mídia",
"properties": {
"auto_update_check": {
"name": "Verificação Automática de Atualização",
"description": "Verificar novas builds automaticamente"
"force_video_upload_source_quality": {
"name": "Forçar Qualidade da Fonte no Upload de Vídeo",
"description": "Força o Snapchat a usar a qualidade da fonte ao fazer upload de vídeos\nNote que isso pode não remover metadados da mídia"
},
"update_check_frequency": {
"name": "Frequência de Verificação",
"description": "Com que frequência verificar atualizações"
"disable_image_compression": {
"name": "Desativar Compressão de Imagem",
"description": "Desativa a compressão de imagem ao fazer upload de mídia"
},
"custom_image_upload_format": {
"name": "Formato Personalizado de Upload de Imagem",
"description": "Define um formato personalizado de upload de imagem\nSelecione um formato sem perdas (como PNG) para a melhor qualidade"
}
}
},
"disable_confirmation_dialogs": {
"name": "Desativar Diálogos de Confirmação",
"description": "Confirma automaticamente ações selecionadas"
},
"auto_updater": {
"name": "Auto Atualizador",
"description": "Verifica automaticamente se há novas atualizações"
},
"update_settings": {
"name": "Configurações de Atualização",
"description": "Controle como o PurrfectSnap verifica atualizações",
"properties": {
"auto_update_check": {
"name": "Verificação Automática de Atualização"
},
"update_check_frequency": {
"name": "Frequência de Verificação de Atualização"
}
}
},
"ui_settings": {
"name": "Configurações de UI",
"properties": {
"haptic_feedback": {
"name": "Feedback Híptico"
}
}
},
"disable_metrics": {
"name": "Desativar Métricas",
"description": "Bloqueia o envio de dados analíticos específicos para o Snapchat"
},
"disable_story_sections": {
"name": "Desativar Seções de Story",
"description": "Remove seções da página de Stories\nPode exigir uma atualização para funcionar corretamente"
},
"block_ads": {
"name": "Bloquear Anúncios",
"description": "Impede que Propagandas sejam exibidas"
},
"disable_custom_tabs": {
"name": "Desativar Abas Personalizadas",
"description": "Abre links em aplicativos suportados em vez de no Navegador Web"
},
"disable_permission_requests": {
"name": "Desativar Solicitações de Permissão",
"description": "Impede que o Snapchat peça permissões específicas"
},
"disable_memories_snap_feed": {
"name": "Desativar Feed de Snaps de Memórias",
"description": "Impede que o Snapchat mostre memórias recentes quando você desliza para cima na câmera"
},
"spotlight_comments_username": {
"name": "Nome de Usuário em Comentários do Spotlight",
"description": "Mostra o nome de usuário do autor nos comentários do Spotlight"
},
"spotlight_comments_username_icon": {
"name": "Ícone de Nome de Usuário em Comentários do Spotlight",
"description": "Escolha qual ícone é exibido ao lado dos nomes de usuário nos comentários do Spotlight"
},
"bypass_video_length_restriction": {
"name": "Bypass Restrições de Duração de Vídeo",
"description": "Único: envia um único vídeo\nDividir: divide vídeos após edição"
},
"default_video_playback_rate": {
"name": "Taxa de Reprodução de Vídeo Padrão",
"description": "Define a velocidade padrão para a reprodução de vídeos\nO valor deve estar entre 0.1 e 4.0"
},
"video_playback_rate_slider": {
"name": "Slider de Taxa de Reprodução de Vídeo",
"description": "Adiciona um controle deslizante no menu de contexto opera para alterar a taxa de reprodução de vídeo\nNota: As alterações aplicam-se apenas aos vídeos subsequentes"
},
"disable_google_play_dialogs": {
"name": "Desativar Diálogos do Google Play Services",
"description": "Impede que diálogos de disponibilidade do Google Play Services sejam mostrados"
},
"default_volume_controls": {
"name": "Controles de Volume Padrão",
"description": "Força o Snapchat a usar os controles de volume do sistema"
},
"disable_telecom_framework": {
"name": "Desativar Framework Telecom",
"description": "Impede que o Snapchat use o framework Android Telecom\nIsso permite que você ouça música durante uma chamada"
},
"hide_active_music": {
"name": "Ocultar Música Ativa",
"description": "Impede que o Snapchat saiba que você está ouvindo música\nIsso permitirá que você tire snaps usando os botões de controle de volume enquanto ouve música"
},
"disable_snap_splitting": {
"name": "Desativar Divisão de Snap",
"description": "Impede que Snaps sejam divididos em várias partes\nFotos que você enviar se transformarão em vídeos"
}
}
},
@@ -1143,7 +1220,7 @@
},
"stealth_mode_indicator": {
"name": "Indicador de Modo Furtivo",
"description": "Adiciona um emoji \ud83d\udc7b ao lado de conversas em modo furtivo"
"description": "Adiciona um emoji 👻 ao lado de conversas em modo furtivo"
},
"edit_text_override": {
"name": "Substituição de Edição de Texto",
@@ -1671,164 +1748,6 @@
}
}
},
"global": {
"name": "Global",
"description": "Ajustar Configurações Globais do Snapchat",
"properties": {
"better_location": {
"name": "Localização Melhorada",
"description": "Melhora a Localização do Snapchat",
"properties": {
"spoof_location": {
"name": "Falsificar Localização",
"description": "Falsifica sua localização para uma especificada"
},
"coordinates": {
"name": "Coordenadas",
"description": "Definir as coordenadas da localização falsa"
},
"walk_radius": {
"name": "Raio de Caminhada",
"description": "Caminhar aleatoriamente dentro deste raio (pés)"
},
"always_update_location": {
"name": "Sempre Atualizar Localização",
"description": "Força o Snapchat a atualizar a localização mesmo se nenhum dado GPS for recebido"
},
"suspend_location_updates": {
"name": "Suspender Atualizações de Localização",
"description": "Impede que sua localização seja atualizada"
},
"spoof_battery_level": {
"name": "Falsificar Nível de Bateria",
"description": "Falsifica o nível de bateria do seu dispositivo no mapa\nValor deve estar entre 0 e 100"
},
"spoof_headphones": {
"name": "Falsificar Fones de Ouvido",
"description": "Falsifica o status de ouvindo música no mapa"
},
"show_battery_level": {
"name": "Mostrar Nível de Bateria",
"description": "Mostra o nível de bateria dos seus amigos no mapa"
}
}
},
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Ativa recursos do Snapchat Plus\nAlguns recursos baseados em servidor podem não funcionar"
},
"media_upload_quality": {
"name": "Qualidade de Upload de Mídia",
"description": "Substitui a qualidade de upload de mídia",
"properties": {
"force_video_upload_source_quality": {
"name": "Forçar Qualidade da Fonte no Upload de Vídeo",
"description": "Força o Snapchat a usar a qualidade da fonte ao fazer upload de vídeos\nNote que isso pode não remover metadados da mídia"
},
"disable_image_compression": {
"name": "Desativar Compressão de Imagem",
"description": "Desativa a compressão de imagem ao fazer upload de mídia"
},
"custom_image_upload_format": {
"name": "Formato Personalizado de Upload de Imagem",
"description": "Define um formato personalizado de upload de imagem\nSelecione um formato sem perdas (como PNG) para a melhor qualidade"
}
}
},
"disable_confirmation_dialogs": {
"name": "Desativar Diálogos de Confirmação",
"description": "Confirma automaticamente ações selecionadas"
},
"auto_updater": {
"name": "Auto Atualizador",
"description": "Verifica automaticamente se há novas atualizações"
},
"update_settings": {
"name": "Configurações de Atualização",
"description": "Controle como o PurrfectSnap verifica atualizações",
"properties": {
"auto_update_check": {
"name": "Verificação Automática de Atualização"
},
"update_check_frequency": {
"name": "Frequência de Verificação de Atualização"
}
}
},
"ui_settings": {
"name": "Configurações de UI",
"properties": {
"haptic_feedback": {
"name": "Feedback Híptico"
}
}
},
"disable_metrics": {
"name": "Desativar Métricas",
"description": "Bloqueia o envio de dados analíticos específicos para o Snapchat"
},
"disable_story_sections": {
"name": "Desativar Seções de Story",
"description": "Remove seções da página de Stories\nPode exigir uma atualização para funcionar corretamente"
},
"block_ads": {
"name": "Bloquear Anúncios",
"description": "Impede que Propagandas sejam exibidas"
},
"disable_custom_tabs": {
"name": "Desativar Abas Personalizadas",
"description": "Abre links em aplicativos suportados em vez de no Navegador Web"
},
"disable_permission_requests": {
"name": "Desativar Solicitações de Permissão",
"description": "Impede que o Snapchat peça permissões específicas"
},
"disable_memories_snap_feed": {
"name": "Desativar Feed de Snaps de Memórias",
"description": "Impede que o Snapchat mostre memórias recentes quando você desliza para cima na câmera"
},
"spotlight_comments_username": {
"name": "Nome de Usuário em Comentários do Spotlight",
"description": "Mostra o nome de usuário do autor nos comentários do Spotlight"
},
"spotlight_comments_username_icon": {
"name": "Ícone de Nome de Usuário em Comentários do Spotlight",
"description": "Escolha qual ícone é exibido ao lado dos nomes de usuário nos comentários do Spotlight"
},
"bypass_video_length_restriction": {
"name": "Bypass Restrições de Duração de Vídeo",
"description": "Único: envia um único vídeo\nDividir: divide vídeos após edição"
},
"default_video_playback_rate": {
"name": "Taxa de Reprodução de Vídeo Padrão",
"description": "Define a velocidade padrão para a reprodução de vídeos\nO valor deve estar entre 0.1 e 4.0"
},
"video_playback_rate_slider": {
"name": "Slider de Taxa de Reprodução de Vídeo",
"description": "Adiciona um controle deslizante no menu de contexto opera para alterar a taxa de reprodução de vídeo\nNota: As alterações aplicam-se apenas aos vídeos subsequentes"
},
"disable_google_play_dialogs": {
"name": "Desativar Diálogos do Google Play Services",
"description": "Impede que diálogos de disponibilidade do Google Play Services sejam mostrados"
},
"default_volume_controls": {
"name": "Controles de Volume Padrão",
"description": "Força o Snapchat a usar os controles de volume do sistema"
},
"disable_telecom_framework": {
"name": "Desativar Framework Telecom",
"description": "Impede que o Snapchat use o framework Android Telecom\nIsso permite que você ouça música durante uma chamada"
},
"hide_active_music": {
"name": "Ocultar Música Ativa",
"description": "Impede que o Snapchat saiba que você está ouvindo música\nIsso permitirá que você tire snaps usando os botões de controle de volume enquanto ouve música"
},
"disable_snap_splitting": {
"name": "Desativar Divisão de Snap",
"description": "Impede que Snaps sejam divididos em várias partes\nFotos que você enviar se transformarão em vídeos"
}
}
},
"rules": {
"name": "Regras",
"description": "Configurar regras de automação",
@@ -2110,7 +2029,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "Indicador de Mensagem Criptografada",
"description": "Adiciona um emoji \ud83d\udd12 ao lado de mensagens criptografadas"
"description": "Adiciona um emoji 🔒 ao lado de mensagens criptografadas"
},
"force_message_encryption": {
"name": "Forçar Criptografia de Mensagem",
@@ -2190,6 +2109,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "Sempre Claro",
"always_dark": "Sempre Escuro",
@@ -2207,20 +2130,20 @@
"null": "Usar nível de bateria real"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f Download Automático",
"auto_save": "\ud83d\udcac Salvar Mensagens Auto.",
"unsaveable_messages": "\u2b07\ufe0f Mensagens Não Salváveis",
"auto_open_snaps": "\ud83d\udcf7 Abrir Snaps Auto.",
"stealth": "\ud83d\udc7b Modo Furtivo",
"auto_reply": "\ud83d\udce8 Resposta Automática",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f Auto Excluir Mensagens Enviadas",
"mark_snaps_as_seen": "\ud83d\udc40 Marcar Snaps como vistos",
"mark_stories_as_seen_locally": "\ud83d\udc40 Marcar Stories como vistos localmente",
"conversation_info": "\ud83d\udc64 Info da Conversa",
"e2e_encryption": "\ud83d\udd12 Usar Criptografia E2E",
"message_logger": "\ud83d\udcdd Registrador de Mensagens",
"auto_read": "\u2705 Leitura Automática",
"hide_typing_indicator": "\ud83d\ude48 Ocultar Indicador de Digitação"
"auto_download": "⬇️ Download Automático",
"auto_save": "💬 Salvar Mensagens Auto.",
"unsaveable_messages": "⬇️ Mensagens Não Salváveis",
"auto_open_snaps": "📷 Abrir Snaps Auto.",
"stealth": "👻 Modo Furtivo",
"auto_reply": "📨 Resposta Automática",
"auto_delete_sent_messages": "🗑️ Auto Excluir Mensagens Enviadas",
"mark_snaps_as_seen": "👀 Marcar Snaps como vistos",
"mark_stories_as_seen_locally": "👀 Marcar Stories como vistos localmente",
"conversation_info": "👤 Info da Conversa",
"e2e_encryption": "🔒 Usar Criptografia E2E",
"message_logger": "📝 Registrador de Mensagens",
"auto_read": " Leitura Automática",
"hide_typing_indicator": "🙈 Ocultar Indicador de Digitação"
},
"schedule_scheduled_for": "Agendado para {name} em {time}",
"schedule_sending_in": "Enviando em {time}",
@@ -2323,16 +2246,16 @@
"custom_android_id": {
"null": "Usar ID do Android real"
},
"add_friend_source_spoof": {
"added_by_username": "Por Nome de Usuário",
"added_by_mention": "Por Menção",
"added_by_group_chat": "Por Chat em Grupo",
"added_by_qr_code": "Por Código QR",
"added_by_community": "Por Comunidade",
"added_by_quick_add": "Por Adição Rápida (alto risco de banimento)",
"added_by_spotlight": "Por Spotlight",
"null": "Não falsificar fonte"
},
"add_friend_source_spoof": {
"added_by_username": "Por Nome de Usuário",
"added_by_mention": "Por Menção",
"added_by_group_chat": "Por Chat em Grupo",
"added_by_qr_code": "Por Código QR",
"added_by_community": "Por Comunidade",
"added_by_quick_add": "Por Adição Rápida (alto risco de banimento)",
"added_by_spotlight": "Por Spotlight",
"null": "Não falsificar fonte"
},
"custom_streaks_expiration_format": {
"null": "Padrão do Sistema"
},
@@ -2438,8 +2361,8 @@
},
"spotlight_comments_username_icon": {
"user": "Ícone de Nome de Usuário",
"\ud83d\udc64": "Ícone de Nome de Usuário",
"[\ud83d\udc64]": "Ícone de Nome de Usuário",
"👤": "Ícone de Nome de Usuário",
"[👤]": "Ícone de Nome de Usuário",
"default": "Ícone de Nome de Usuário",
"no_icon": "Sem ícone"
},
@@ -2519,11 +2442,11 @@
"phone_calls": "Chamadas Telefônicas"
},
"message_indicators": {
"encryption_indicator": "Adiciona um ícone \ud83d\udd12 ao lado de mensagens que foram enviadas apenas para você",
"encryption_indicator": "Adiciona um ícone 🔒 ao lado de mensagens que foram enviadas apenas para você",
"platform_indicator": "Adiciona o ícone da plataforma de onde uma mídia foi enviada (ex: Android, iOS, Web)",
"location_indicator": "Adiciona um ícone \ud83d\udccd aos snaps quando eles foram enviados com localização ativada",
"location_indicator": "Adiciona um ícone 📍 aos snaps quando eles foram enviados com localização ativada",
"ovf_editor_indicator": "Indica se um snap foi enviado usando o Editor OVF",
"director_mode_indicator": "Adiciona um ícone \u270f\ufe0f aos snaps quando eles foram enviados usando o Modo Diretor, que pode ser usado para enviar imagens da galeria como snaps"
"director_mode_indicator": "Adiciona um ícone ✏️ aos snaps quando eles foram enviados usando o Modo Diretor, que pode ser usado para enviar imagens da galeria como snaps"
},
"auto_mark_as_read": {
"conversation_read": "Marcar conversa como lida ao enviar uma mensagem",
@@ -2747,7 +2670,6 @@
"show_chat_edit_history": "Mostrar Histórico de Edição do Chat",
"convert_message": "Converter Mensagem"
},
"chat_wallpaper_downloader": {
"download_button": "Baixar Papel de Parede do Chat"
},
@@ -3077,7 +2999,7 @@
"queue_cleared": "Fila limpa e estatísticas redefinidas",
"queue_cleared_title": "Fila limpa",
"queue_cleared_reset": "Fila Limpa & Redefinida",
"queue_cleared_feedback": "Limpou {count} snaps na fila \u2022 Redefiniu contagem de {processed} processados",
"queue_cleared_feedback": "Limpou {count} snaps na fila Redefiniu contagem de {processed} processados",
"queue_cleared_feedback_simple": "Redefiniu contagem de {processed} processados",
"unknown_sender": "Desconhecido",
"unknown_user": "Usuário Desconhecido",

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 de Eternal",
"version_title": "v{versionName} · de Eternal",
"update_title": "Actualizare PurrfectSnap",
"update_content": "Versiunea {version} este disponibilă!",
"update_button": "Descarcă",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "Nicio sarcină",
"merge_button": "Îmbină",
"summary_active": "{active} active \u00b7 {recent} recente",
"summary_idle": "Inactiv \u00b7 {recent} recente",
"summary_active": "{active} active · {recent} recente",
"summary_idle": "Inactiv · {recent} recente",
"running_count": "{count} rulează",
"clear_button_description": "Șterge sarcini",
"failed_to_open_file": "Deschiderea fișierului a eșuat",
@@ -312,22 +312,22 @@
"remove_selected_tasks_confirm": "Elimini {count} sarcini?",
"remove_all_tasks_confirm": "Elimini toate sarcinile?"
},
"features": {
"disabled": "Dezactivat",
"export_option": "Exportă",
"import_option": "Importă",
"reset_option": "Resetează",
"config_export_success_toast": "Configurație exportată cu succes",
"config_import_success_toast": "Configurație importată cu succes",
"config_import_failure_toast": "Importul configurației a eșuat {error}",
"config_export_failure_toast": "Exportul configurației a eșuat {error}",
"saved_config_snackbar": "Configurație salvată",
"older_required": "Această funcție necesită Snapchat v{version} sau mai vechi pentru a funcționa corect",
"newer_required": "Această funcție necesită Snapchat v{version} sau mai nou pentru a funcționa corect",
"search_button": "Caută",
"clear_history": "Șterge istoric căutare",
"subtitle": "Caută și gestionează funcționalități"
},
"features": {
"disabled": "Dezactivat",
"export_option": "Exportă",
"import_option": "Importă",
"reset_option": "Resetează",
"config_export_success_toast": "Configurație exportată cu succes",
"config_import_success_toast": "Configurație importată cu succes",
"config_import_failure_toast": "Importul configurației a eșuat {error}",
"config_export_failure_toast": "Exportul configurației a eșuat {error}",
"saved_config_snackbar": "Configurație salvată",
"older_required": "Această funcție necesită Snapchat v{version} sau mai vechi pentru a funcționa corect",
"newer_required": "Această funcție necesită Snapchat v{version} sau mai nou pentru a funcționa corect",
"search_button": "Caută",
"clear_history": "Șterge istoric căutare",
"subtitle": "Caută și gestionează funcționalități"
},
"bypass_status": {
"active": "PurrAura Activ",
"inactive": "PurrAura Inactiv"
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "Teleportează-te la Prieten",
"search_bar": "Caută",
"no_friends_map": "Niciun prieten pe hartă",
"no_friends_found": "Niciun prieten găsit"
"no_friends_found": "Niciun prieten găsit",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,166 @@
},
"features": {
"notices": {
"unstable": "\u26a0 Instabil",
"ban_risk": "\u26a0 Această funcție poate cauza ban-uri",
"internal_behavior": "\u26a0 Asta poate strica comportamentul intern Snapchat"
},
"options": {
"empty": "Gol",
"walk_radius": {
"empty": "Gol"
},
"spoof_battery_level": {
"empty": "Gol"
},
"custom_android_id": {
"empty": "Gol"
},
"custom_streaks_expiration_format": {
"empty": "Gol"
},
"preferred_transcription_lang": {
"empty": "Gol"
},
"custom_emoji_font": {
"empty": "Gol"
},
"custom_shared_library": {
"empty": "Gol"
},
"custom_resolution": {
"empty": "Gol"
},
"custom_path_format": {
"empty": "Gol"
},
"custom_video_codec": {
"empty": "Gol"
},
"custom_audio_codec": {
"empty": "Gol"
},
"double_tap_chat_action_custom_emoji": {
"empty": "Gol"
},
"unsaveable_messages": {
"blacklist": "Mod listă neagră",
"whitelist": "Mod listă albă",
"null": "Dezactivat"
},
"update_check_frequency": {
"daily": "Zilnic",
"weekly": "Săptămânal",
"monthly": "Lunar"
}
"unstable": " Instabil",
"ban_risk": " Această funcție poate cauza ban-uri",
"internal_behavior": " Asta poate strica comportamentul intern Snapchat"
},
"properties": {
"global": {
"name": "Global",
"description": "Preferințe generale modul și implicite",
"description": "Ajustează Setări Globale Snapchat",
"properties": {
"ui_settings": {
"name": "Setări UI",
"description": "Ajustează comportamentul feedback-ului și toast-urilor",
"better_location": {
"name": "Locație Îmbunătățită",
"description": "Îmbunătățește Locația Snapchat",
"properties": {
"haptic_feedback": {
"name": "Feedback Haptic",
"description": "Vibrează la interacțiunile suportate"
"spoof_location": {
"name": "Locație Falsă",
"description": "Falsifică locația ta către una specificată"
},
"use_system_toasts": {
"name": "Folosește Toast-uri de Sistem",
"description": "Arată toast-uri Android în loc de suprapuneri în aplicație"
"coordinates": {
"name": "Coordonate",
"description": "Setează coordonatele locației false"
},
"walk_radius": {
"name": "Rază de Mers",
"description": "Plimbă-te aleatoriu în cadrul acestei raze (ft)"
},
"always_update_location": {
"name": "Actualizează Mereu Locația",
"description": "Forțează Snapchat să actualizeze locația chiar dacă nu sunt primite date GPS"
},
"suspend_location_updates": {
"name": "Suspendă Actualizări Locație",
"description": "Previne actualizarea locației tale"
},
"spoof_battery_level": {
"name": "Falsifică Nivel Baterie",
"description": "Falsifică nivelul bateriei dispozitivului tău pe hartă\nValoarea trebuie să fie între 0 și 100"
},
"spoof_headphones": {
"name": "Falsifică Căști",
"description": "Falsifică statusul ascultării muzicii pe hartă"
},
"show_battery_level": {
"name": "Arată Nivel Baterie",
"description": "Arată nivelul bateriei prietenilor tăi pe hartă"
}
}
},
"update_settings": {
"name": "Setări Actualizare",
"description": "Controlează verificările automate de actualizare",
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Activează funcționalitățile Snapchat Plus\nUnele funcții pe server s-ar putea să nu meargă"
},
"media_upload_quality": {
"name": "Calitate Upload Media",
"description": "Suprascrie calitatea de încărcare media",
"properties": {
"auto_update_check": {
"name": "Verificare Auto Actualizare",
"description": "Verifică automat build-uri noi"
"force_video_upload_source_quality": {
"name": "Forțează Calitate Sursă Upload Video",
"description": "Forțează Snapchat să folosească calitatea sursă la încărcarea videoclipurilor\nTe rugăm să notezi că acest lucru poate să nu elimine metadatele din media"
},
"update_check_frequency": {
"name": "Frecvență Verificare Actualizare",
"description": "Cât de des să verifice actualizările"
"disable_image_compression": {
"name": "Dezactivează Compresie Imagine",
"description": "Dezactivează compresia imaginii la încărcarea media"
},
"custom_image_upload_format": {
"name": "Format Upload Imagine Personalizat",
"description": "Setează un format personalizat de upload imagine\nSelectează un format fără pierderi (ca PNG) pentru cea mai bună calitate"
}
}
},
"disable_confirmation_dialogs": {
"name": "Dezactivează Dialoguri Confirmare",
"description": "Confirmă automat acțiunile selectate"
},
"auto_updater": {
"name": "Actualizator Automat",
"description": "Verifică automat pentru actualizări noi"
},
"update_settings": {
"name": "Setări Actualizare",
"description": "Controlează cum PurrfectSnap verifică actualizările",
"properties": {
"auto_update_check": {
"name": "Verificare Auto Actualizare"
},
"update_check_frequency": {
"name": "Frecvență Verificare Actualizare"
}
}
},
"ui_settings": {
"name": "Setări UI",
"properties": {
"haptic_feedback": {
"name": "Feedback Haptic"
}
}
},
"disable_metrics": {
"name": "Dezactivează Metrice",
"description": "Blochează trimiterea datelor analitice specifice către Snapchat"
},
"disable_story_sections": {
"name": "Dezactivează Secțiuni Povești",
"description": "Elimină secțiuni din pagina Povești\nPoate necesita un refresh pentru a funcționa corect"
},
"block_ads": {
"name": "Blochează Reclame",
"description": "Previne afișarea Reclamelor"
},
"disable_custom_tabs": {
"name": "Dezactivează File Personalizate",
"description": "Deschide link-urile în aplicațiile suportate în loc de Browserul Web"
},
"disable_permission_requests": {
"name": "Dezactivează Cereri Permisiuni",
"description": "Previne Snapchat să ceară permisiuni specifice"
},
"disable_memories_snap_feed": {
"name": "Dezactivează Feed Amintiri Snap",
"description": "Previne Snapchat să arate amintiri recente când dai swipe în sus în cameră"
},
"spotlight_comments_username": {
"name": "Nume Utilizator Comentarii Spotlight",
"description": "Arată numele de utilizator al autorului în comentariile Spotlight"
},
"spotlight_comments_username_icon": {
"name": "Pictogramă Nume Utilizator Comentarii Spotlight",
"description": "Alege ce pictogramă este afișată lângă numele de utilizator în comentariile Spotlight"
},
"bypass_video_length_restriction": {
"name": "Ocolește Restricții Lungime Video",
"description": "Single: trimite un singur video\nSplit: împarte videoclipurile după editare"
},
"default_video_playback_rate": {
"name": "Rată Redare Video Implicită",
"description": "Setează viteza implicită pentru redarea videoclipurilor\nValoarea trebuie să fie între 0.1 și 4.0"
},
"video_playback_rate_slider": {
"name": "Slider Rată Redare Video",
"description": "Adaugă un slider în meniul contextual opera pentru a schimba rata de redare video\nNotă: Schimbările se aplică doar videoclipurilor ulterioare"
},
"disable_google_play_dialogs": {
"name": "Dezactivează Dialoguri Google Play Services",
"description": "Previne afișarea dialogurilor de disponibilitate Google Play Services"
},
"default_volume_controls": {
"name": "Controale Volum Implicite",
"description": "Forțează Snapchat să folosească controalele de volum ale sistemului"
},
"disable_telecom_framework": {
"name": "Dezactivează Telecom Framework",
"description": "Previne Snapchat să folosească framework-ul Android Telecom\nAcest lucru îți permite să asculți muzică în timp ce ești într-un apel"
},
"hide_active_music": {
"name": "Ascunde Muzică Activă",
"description": "Previne Snapchat să știe că asculți muzică\nAcest lucru îți va permite să faci snap-uri folosind butoanele de control volum în timp ce asculți muzică"
},
"disable_snap_splitting": {
"name": "Dezactivează Împărțire Snap",
"description": "Previne Snap-urile să fie împărțite în mai multe părți\nPozele pe care le trimiți se vor transforma în videoclipuri"
}
}
},
@@ -1143,7 +1220,7 @@
},
"stealth_mode_indicator": {
"name": "Indicator Mod Invizibil",
"description": "Adaugă un emoji \ud83d\udc7b lângă conversațiile în mod invizibil"
"description": "Adaugă un emoji 👻 lângă conversațiile în mod invizibil"
},
"edit_text_override": {
"name": "Suprascriere Editare Text",
@@ -1671,164 +1748,6 @@
}
}
},
"global": {
"name": "Global",
"description": "Ajustează Setări Globale Snapchat",
"properties": {
"better_location": {
"name": "Locație Îmbunătățită",
"description": "Îmbunătățește Locația Snapchat",
"properties": {
"spoof_location": {
"name": "Locație Falsă",
"description": "Falsifică locația ta către una specificată"
},
"coordinates": {
"name": "Coordonate",
"description": "Setează coordonatele locației false"
},
"walk_radius": {
"name": "Rază de Mers",
"description": "Plimbă-te aleatoriu în cadrul acestei raze (ft)"
},
"always_update_location": {
"name": "Actualizează Mereu Locația",
"description": "Forțează Snapchat să actualizeze locația chiar dacă nu sunt primite date GPS"
},
"suspend_location_updates": {
"name": "Suspendă Actualizări Locație",
"description": "Previne actualizarea locației tale"
},
"spoof_battery_level": {
"name": "Falsifică Nivel Baterie",
"description": "Falsifică nivelul bateriei dispozitivului tău pe hartă\nValoarea trebuie să fie între 0 și 100"
},
"spoof_headphones": {
"name": "Falsifică Căști",
"description": "Falsifică statusul ascultării muzicii pe hartă"
},
"show_battery_level": {
"name": "Arată Nivel Baterie",
"description": "Arată nivelul bateriei prietenilor tăi pe hartă"
}
}
},
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Activează funcționalitățile Snapchat Plus\nUnele funcții pe server s-ar putea să nu meargă"
},
"media_upload_quality": {
"name": "Calitate Upload Media",
"description": "Suprascrie calitatea de încărcare media",
"properties": {
"force_video_upload_source_quality": {
"name": "Forțează Calitate Sursă Upload Video",
"description": "Forțează Snapchat să folosească calitatea sursă la încărcarea videoclipurilor\nTe rugăm să notezi că acest lucru poate să nu elimine metadatele din media"
},
"disable_image_compression": {
"name": "Dezactivează Compresie Imagine",
"description": "Dezactivează compresia imaginii la încărcarea media"
},
"custom_image_upload_format": {
"name": "Format Upload Imagine Personalizat",
"description": "Setează un format personalizat de upload imagine\nSelectează un format fără pierderi (ca PNG) pentru cea mai bună calitate"
}
}
},
"disable_confirmation_dialogs": {
"name": "Dezactivează Dialoguri Confirmare",
"description": "Confirmă automat acțiunile selectate"
},
"auto_updater": {
"name": "Actualizator Automat",
"description": "Verifică automat pentru actualizări noi"
},
"update_settings": {
"name": "Setări Actualizare",
"description": "Controlează cum PurrfectSnap verifică actualizările",
"properties": {
"auto_update_check": {
"name": "Verificare Auto Actualizare"
},
"update_check_frequency": {
"name": "Frecvență Verificare Actualizare"
}
}
},
"ui_settings": {
"name": "Setări UI",
"properties": {
"haptic_feedback": {
"name": "Feedback Haptic"
}
}
},
"disable_metrics": {
"name": "Dezactivează Metrice",
"description": "Blochează trimiterea datelor analitice specifice către Snapchat"
},
"disable_story_sections": {
"name": "Dezactivează Secțiuni Povești",
"description": "Elimină secțiuni din pagina Povești\nPoate necesita un refresh pentru a funcționa corect"
},
"block_ads": {
"name": "Blochează Reclame",
"description": "Previne afișarea Reclamelor"
},
"disable_custom_tabs": {
"name": "Dezactivează File Personalizate",
"description": "Deschide link-urile în aplicațiile suportate în loc de Browserul Web"
},
"disable_permission_requests": {
"name": "Dezactivează Cereri Permisiuni",
"description": "Previne Snapchat să ceară permisiuni specifice"
},
"disable_memories_snap_feed": {
"name": "Dezactivează Feed Amintiri Snap",
"description": "Previne Snapchat să arate amintiri recente când dai swipe în sus în cameră"
},
"spotlight_comments_username": {
"name": "Nume Utilizator Comentarii Spotlight",
"description": "Arată numele de utilizator al autorului în comentariile Spotlight"
},
"spotlight_comments_username_icon": {
"name": "Pictogramă Nume Utilizator Comentarii Spotlight",
"description": "Alege ce pictogramă este afișată lângă numele de utilizator în comentariile Spotlight"
},
"bypass_video_length_restriction": {
"name": "Ocolește Restricții Lungime Video",
"description": "Single: trimite un singur video\nSplit: împarte videoclipurile după editare"
},
"default_video_playback_rate": {
"name": "Rată Redare Video Implicită",
"description": "Setează viteza implicită pentru redarea videoclipurilor\nValoarea trebuie să fie între 0.1 și 4.0"
},
"video_playback_rate_slider": {
"name": "Slider Rată Redare Video",
"description": "Adaugă un slider în meniul contextual opera pentru a schimba rata de redare video\nNotă: Schimbările se aplică doar videoclipurilor ulterioare"
},
"disable_google_play_dialogs": {
"name": "Dezactivează Dialoguri Google Play Services",
"description": "Previne afișarea dialogurilor de disponibilitate Google Play Services"
},
"default_volume_controls": {
"name": "Controale Volum Implicite",
"description": "Forțează Snapchat să folosească controalele de volum ale sistemului"
},
"disable_telecom_framework": {
"name": "Dezactivează Telecom Framework",
"description": "Previne Snapchat să folosească framework-ul Android Telecom\nAcest lucru îți permite să asculți muzică în timp ce ești într-un apel"
},
"hide_active_music": {
"name": "Ascunde Muzică Activă",
"description": "Previne Snapchat să știe că asculți muzică\nAcest lucru îți va permite să faci snap-uri folosind butoanele de control volum în timp ce asculți muzică"
},
"disable_snap_splitting": {
"name": "Dezactivează Împărțire Snap",
"description": "Previne Snap-urile să fie împărțite în mai multe părți\nPozele pe care le trimiți se vor transforma în videoclipuri"
}
}
},
"rules": {
"name": "Reguli",
"description": "Configurează reguli de automatizare",
@@ -2110,7 +2029,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "Indicator Mesaj Criptat",
"description": "Adaugă un emoji \ud83d\udd12 lângă mesajele criptate"
"description": "Adaugă un emoji 🔒 lângă mesajele criptate"
},
"force_message_encryption": {
"name": "Forțează Criptare Mesaj",
@@ -2190,6 +2109,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "Mereu Luminos",
"always_dark": "Mereu Întunecat",
@@ -2207,20 +2130,20 @@
"null": "Folosește nivel real baterie"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f Descărcare Automată",
"auto_save": "\ud83d\udcac Salvare Automată Mesaje",
"unsaveable_messages": "\u2b07\ufe0f Mesaje Nesalvabile",
"auto_open_snaps": "\ud83d\udcf7 Deschidere Automată Snap-uri",
"stealth": "\ud83d\udc7b Mod Invizibil",
"auto_reply": "\ud83d\udce8 Răspuns Automat",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f Ștergere Automată Mesaje Trimise",
"mark_snaps_as_seen": "\ud83d\udc40 Marchează Snap-uri ca văzute",
"mark_stories_as_seen_locally": "\ud83d\udc40 Marchează Povești ca văzute local",
"conversation_info": "\ud83d\udc64 Info Conversație",
"e2e_encryption": "\ud83d\udd12 Folosește Criptare E2E",
"message_logger": "\ud83d\udcdd Jurnal Mesaje",
"auto_read": "\u2705 Citire Automată",
"hide_typing_indicator": "\ud83d\ude48 Ascunde Indicator Tastare"
"auto_download": "⬇️ Descărcare Automată",
"auto_save": "💬 Salvare Automată Mesaje",
"unsaveable_messages": "⬇️ Mesaje Nesalvabile",
"auto_open_snaps": "📷 Deschidere Automată Snap-uri",
"stealth": "👻 Mod Invizibil",
"auto_reply": "📨 Răspuns Automat",
"auto_delete_sent_messages": "🗑️ Ștergere Automată Mesaje Trimise",
"mark_snaps_as_seen": "👀 Marchează Snap-uri ca văzute",
"mark_stories_as_seen_locally": "👀 Marchează Povești ca văzute local",
"conversation_info": "👤 Info Conversație",
"e2e_encryption": "🔒 Folosește Criptare E2E",
"message_logger": "📝 Jurnal Mesaje",
"auto_read": " Citire Automată",
"hide_typing_indicator": "🙈 Ascunde Indicator Tastare"
},
"schedule_scheduled_for": "Programat pentru {name} în {time}",
"schedule_sending_in": "Se trimite în {time}",
@@ -2439,8 +2362,8 @@
},
"spotlight_comments_username_icon": {
"user": "Pictogramă Nume Utilizator",
"\ud83d\udc64": "Pictogramă Nume Utilizator",
"[\ud83d\udc64]": "Pictogramă Nume Utilizator",
"👤": "Pictogramă Nume Utilizator",
"[👤]": "Pictogramă Nume Utilizator",
"default": "Pictogramă Nume Utilizator",
"no_icon": "Fără pictogramă"
},
@@ -2520,11 +2443,11 @@
"phone_calls": "Apeluri Telefonice"
},
"message_indicators": {
"encryption_indicator": "Adaugă o pictogramă \ud83d\udd12 lângă mesajele care au fost trimise doar ție",
"encryption_indicator": "Adaugă o pictogramă 🔒 lângă mesajele care au fost trimise doar ție",
"platform_indicator": "Adaugă pictograma platformei de pe care a fost trimis un media (ex. Android, iOS, Web)",
"location_indicator": "Adaugă o pictogramă \ud83d\udccd la snap-uri când au fost trimise cu locația activată",
"location_indicator": "Adaugă o pictogramă 📍 la snap-uri când au fost trimise cu locația activată",
"ovf_editor_indicator": "Indică dacă un snap a fost trimis folosind OVF Editor",
"director_mode_indicator": "Adaugă o pictogramă \u270f\ufe0f la snap-uri când au fost trimise folosind Director Mode, care poate fi folosit pentru a trimite imagini din galerie ca snap-uri"
"director_mode_indicator": "Adaugă o pictogramă ✏️ la snap-uri când au fost trimise folosind Director Mode, care poate fi folosit pentru a trimite imagini din galerie ca snap-uri"
},
"auto_mark_as_read": {
"conversation_read": "Marchează conversația ca citită la trimiterea unui mesaj",
@@ -2748,7 +2671,6 @@
"show_chat_edit_history": "Arată Istoric Editare Chat",
"convert_message": "Convertește Mesaj"
},
"chat_wallpaper_downloader": {
"download_button": "Descarcă Fundal Chat"
},
@@ -3078,7 +3000,7 @@
"queue_cleared": "Coadă golită și statistici resetate",
"queue_cleared_title": "Coadă golită",
"queue_cleared_reset": "Coadă Golită & Resetată",
"queue_cleared_feedback": "S-au golit {count} snap-uri din coadă \u2022 Resetat contor {processed} procesate",
"queue_cleared_feedback": "S-au golit {count} snap-uri din coadă Resetat contor {processed} procesate",
"queue_cleared_feedback_simple": "Resetat contor {processed} procesate",
"unknown_sender": "Necunoscut",
"unknown_user": "Utilizator Necunoscut",

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 от Eternal",
"version_title": "v{versionName} · от Eternal",
"update_title": "Обновление PurrfectSnap",
"update_content": "Версия {version} доступна!",
"update_button": "Скачать",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "Нет задач",
"merge_button": "Объединить",
"summary_active": "{active} активных \u00b7 {recent} недавних",
"summary_idle": "Ожидание \u00b7 {recent} недавних",
"summary_active": "{active} активных · {recent} недавних",
"summary_idle": "Ожидание · {recent} недавних",
"running_count": "{count} выполняется",
"clear_button_description": "Очистить задачи",
"failed_to_open_file": "Не удалось открыть файл",
@@ -312,22 +312,22 @@
"remove_selected_tasks_confirm": "Удалить {count} задач?",
"remove_all_tasks_confirm": "Удалить все задачи?"
},
"features": {
"disabled": "Отключено",
"export_option": "Экспорт",
"import_option": "Импорт",
"reset_option": "Сброс",
"config_export_success_toast": "Конфигурация успешно экспортирована",
"config_import_success_toast": "Конфигурация успешно импортирована",
"config_import_failure_toast": "Не удалось импортировать конфигурацию {error}",
"config_export_failure_toast": "Не удалось экспортировать конфигурацию {error}",
"saved_config_snackbar": "Конфигурация сохранена",
"older_required": "Этой функции требуется Snapchat v{version} или старее для корректной работы",
"newer_required": "Этой функции требуется Snapchat v{version} или новее для корректной работы",
"search_button": "Поиск",
"clear_history": "Очистить историю поиска",
"subtitle": "Поиск и управление функциями"
},
"features": {
"disabled": "Отключено",
"export_option": "Экспорт",
"import_option": "Импорт",
"reset_option": "Сброс",
"config_export_success_toast": "Конфигурация успешно экспортирована",
"config_import_success_toast": "Конфигурация успешно импортирована",
"config_import_failure_toast": "Не удалось импортировать конфигурацию {error}",
"config_export_failure_toast": "Не удалось экспортировать конфигурацию {error}",
"saved_config_snackbar": "Конфигурация сохранена",
"older_required": "Этой функции требуется Snapchat v{version} или старее для корректной работы",
"newer_required": "Этой функции требуется Snapchat v{version} или новее для корректной работы",
"search_button": "Поиск",
"clear_history": "Очистить историю поиска",
"subtitle": "Поиск и управление функциями"
},
"bypass_status": {
"active": "PurrAura Активна",
"inactive": "PurrAura Неактивна"
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "Телепорт к другу",
"search_bar": "Поиск",
"no_friends_map": "Нет друзей на карте",
"no_friends_found": "Друзья не найдены"
"no_friends_found": "Друзья не найдены",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,166 @@
},
"features": {
"notices": {
"unstable": "\u26a0 Нестабильно",
"ban_risk": "\u26a0 Эта функция может привести к бану",
"internal_behavior": "\u26a0 Это может нарушить внутреннюю работу Snapchat"
},
"options": {
"empty": "Пусто",
"walk_radius": {
"empty": "Пусто"
},
"spoof_battery_level": {
"empty": "Пусто"
},
"custom_android_id": {
"empty": "Пусто"
},
"custom_streaks_expiration_format": {
"empty": "Пусто"
},
"preferred_transcription_lang": {
"empty": "Пусто"
},
"custom_emoji_font": {
"empty": "Пусто"
},
"custom_shared_library": {
"empty": "Пусто"
},
"custom_resolution": {
"empty": "Пусто"
},
"custom_path_format": {
"empty": "Пусто"
},
"custom_video_codec": {
"empty": "Пусто"
},
"custom_audio_codec": {
"empty": "Пусто"
},
"double_tap_chat_action_custom_emoji": {
"empty": "Пусто"
},
"unsaveable_messages": {
"blacklist": "Черный список",
"whitelist": "Белый список",
"null": "Отключено"
},
"update_check_frequency": {
"daily": "Ежедневно",
"weekly": "Еженедельно",
"monthly": "Ежемесячно"
}
"unstable": " Нестабильно",
"ban_risk": " Эта функция может привести к бану",
"internal_behavior": " Это может нарушить внутреннюю работу Snapchat"
},
"properties": {
"global": {
"name": "Глобальные",
"description": "Общие настройки модуля и значения по умолчанию",
"description": "Настройка глобальных параметров Snapchat",
"properties": {
"ui_settings": {
"name": "Настройки UI",
"description": "Настройка обратной связи и уведомлений",
"better_location": {
"name": "Улучшенное местоположение",
"description": "Улучшает местоположение Snapchat",
"properties": {
"haptic_feedback": {
"name": "Виброотклик",
"description": "Вибрация при поддерживаемых взаимодействиях"
"spoof_location": {
"name": "Подмена местоположения",
"description": "Подменяет ваше местоположение на указанное"
},
"use_system_toasts": {
"name": "Использовать системные уведомления",
"description": "Показывать системные тосты Android вместо встроенных оверлеев"
"coordinates": {
"name": "Координаты",
"description": "Установите координаты поддельного местоположения"
},
"walk_radius": {
"name": "Радиус прогулки",
"description": "Случайным образом ходить в пределах этого радиуса (футы)"
},
"always_update_location": {
"name": "Всегда обновлять местоположение",
"description": "Заставлять Snapchat обновлять местоположение, даже если данные GPS не получены"
},
"suspend_location_updates": {
"name": "Приостановить обновление местоположения",
"description": "Предотвращает обновление вашего местоположения"
},
"spoof_battery_level": {
"name": "Подмена уровня заряда",
"description": "Подменяет уровень заряда вашего устройства на карте\nЗначение должно быть от 0 до 100"
},
"spoof_headphones": {
"name": "Подмена наушников",
"description": "Подменяет статус прослушивания музыки на карте"
},
"show_battery_level": {
"name": "Показать уровень заряда",
"description": "Показывает уровень заряда ваших друзей на карте"
}
}
},
"update_settings": {
"name": "Настройки обновлений",
"description": "Управление автоматическими проверками обновлений",
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Включает функции Snapchat Plus\nНекоторые серверные функции могут не работать"
},
"media_upload_quality": {
"name": "Качество загрузки медиа",
"description": "Переопределяет качество загрузки медиа",
"properties": {
"auto_update_check": {
"name": "Автопроверка обновлений",
"description": "Проверять новые сборки автоматически"
"force_video_upload_source_quality": {
"name": "Принудительное качество источника при загрузке видео",
"description": "Заставляет Snapchat использовать исходное качество при загрузке видео\nОбратите внимание, что это может не удалять метаданные из медиа"
},
"update_check_frequency": {
"name": "Частота проверки обновлений",
"description": "Как часто проверять обновления"
"disable_image_compression": {
"name": "Отключить сжатие изображений",
"description": "Отключает сжатие изображений при загрузке медиа"
},
"custom_image_upload_format": {
"name": "Кастомный формат загрузки изображений",
"description": "Устанавливает пользовательский формат загрузки изображений\nВыберите формат без потерь (например, PNG) для наилучшего качества"
}
}
},
"disable_confirmation_dialogs": {
"name": "Отключить диалоги подтверждения",
"description": "Автоматически подтверждает выбранные действия"
},
"auto_updater": {
"name": "Автообновление",
"description": "Автоматически проверяет наличие новых обновлений"
},
"update_settings": {
"name": "Настройки обновлений",
"description": "Управление тем, как PurrfectSnap проверяет обновления",
"properties": {
"auto_update_check": {
"name": "Автопроверка обновлений"
},
"update_check_frequency": {
"name": "Частота проверки обновлений"
}
}
},
"ui_settings": {
"name": "Настройки UI",
"properties": {
"haptic_feedback": {
"name": "Виброотклик"
}
}
},
"disable_metrics": {
"name": "Отключить метрики",
"description": "Блокирует отправку определенных аналитических данных в Snapchat"
},
"disable_story_sections": {
"name": "Отключить разделы историй",
"description": "Удаляет разделы со страницы историй\nМожет потребоваться обновление для корректной работы"
},
"block_ads": {
"name": "Блокировать рекламу",
"description": "Предотвращает показ рекламы"
},
"disable_custom_tabs": {
"name": "Отключить Custom Tabs",
"description": "Открывает ссылки в поддерживаемых приложениях, а не в веб-браузере"
},
"disable_permission_requests": {
"name": "Отключить запросы разрешений",
"description": "Запрещает Snapchat запрашивать определенные разрешения"
},
"disable_memories_snap_feed": {
"name": "Отключить ленту воспоминаний",
"description": "Запрещает Snapchat показывать недавние воспоминания при свайпе вверх в камере"
},
"spotlight_comments_username": {
"name": "Имя пользователя в комментариях Spotlight",
"description": "Показывает имя пользователя автора в комментариях Spotlight"
},
"spotlight_comments_username_icon": {
"name": "Иконка имени пользователя в комментариях Spotlight",
"description": "Выберите, какая иконка отображается рядом с именами пользователей в комментариях Spotlight"
},
"bypass_video_length_restriction": {
"name": "Обход ограничений длины видео",
"description": "Одиночное: отправляет одно видео\nРазделенное: разделяет видео после редактирования"
},
"default_video_playback_rate": {
"name": "Скорость воспроизведения видео по умолчанию",
"description": "Устанавливает скорость по умолчанию для воспроизведения видео\nЗначение должно быть между 0.1 и 4.0"
},
"video_playback_rate_slider": {
"name": "Слайдер скорости воспроизведения видео",
"description": "Добавляет слайдер в контекстное меню opera для изменения скорости воспроизведения видео\nПримечание: Изменения применяются только к последующим видео"
},
"disable_google_play_dialogs": {
"name": "Отключить диалоги сервисов Google Play",
"description": "Предотвращает показ диалогов о доступности сервисов Google Play"
},
"default_volume_controls": {
"name": "Управление громкостью по умолчанию",
"description": "Заставляет Snapchat использовать системные регуляторы громкости"
},
"disable_telecom_framework": {
"name": "Отключить Telecom Framework",
"description": "Запрещает Snapchat использовать Android Telecom framework\nЭто позволяет слушать музыку во время звонка"
},
"hide_active_music": {
"name": "Скрыть активную музыку",
"description": "Не дает Snapchat знать, что вы слушаете музыку\nЭто позволит вам снимать снапы, используя кнопки громкости, во время прослушивания музыки"
},
"disable_snap_splitting": {
"name": "Отключить разделение снапов",
"description": "Предотвращает разделение снапов на несколько частей\nИзображения, которые вы отправляете, станут видео"
}
}
},
@@ -1143,7 +1220,7 @@
},
"stealth_mode_indicator": {
"name": "Индикатор режима невидимки",
"description": "Добавляет эмодзи \ud83d\udc7b рядом с диалогами в режиме невидимки"
"description": "Добавляет эмодзи 👻 рядом с диалогами в режиме невидимки"
},
"edit_text_override": {
"name": "Переопределение редактирования текста",
@@ -1671,164 +1748,6 @@
}
}
},
"global": {
"name": "Глобальные",
"description": "Настройка глобальных параметров Snapchat",
"properties": {
"better_location": {
"name": "Улучшенное местоположение",
"description": "Улучшает местоположение Snapchat",
"properties": {
"spoof_location": {
"name": "Подмена местоположения",
"description": "Подменяет ваше местоположение на указанное"
},
"coordinates": {
"name": "Координаты",
"description": "Установите координаты поддельного местоположения"
},
"walk_radius": {
"name": "Радиус прогулки",
"description": "Случайным образом ходить в пределах этого радиуса (футы)"
},
"always_update_location": {
"name": "Всегда обновлять местоположение",
"description": "Заставлять Snapchat обновлять местоположение, даже если данные GPS не получены"
},
"suspend_location_updates": {
"name": "Приостановить обновление местоположения",
"description": "Предотвращает обновление вашего местоположения"
},
"spoof_battery_level": {
"name": "Подмена уровня заряда",
"description": "Подменяет уровень заряда вашего устройства на карте\nЗначение должно быть от 0 до 100"
},
"spoof_headphones": {
"name": "Подмена наушников",
"description": "Подменяет статус прослушивания музыки на карте"
},
"show_battery_level": {
"name": "Показать уровень заряда",
"description": "Показывает уровень заряда ваших друзей на карте"
}
}
},
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Включает функции Snapchat Plus\nНекоторые серверные функции могут не работать"
},
"media_upload_quality": {
"name": "Качество загрузки медиа",
"description": "Переопределяет качество загрузки медиа",
"properties": {
"force_video_upload_source_quality": {
"name": "Принудительное качество источника при загрузке видео",
"description": "Заставляет Snapchat использовать исходное качество при загрузке видео\nОбратите внимание, что это может не удалять метаданные из медиа"
},
"disable_image_compression": {
"name": "Отключить сжатие изображений",
"description": "Отключает сжатие изображений при загрузке медиа"
},
"custom_image_upload_format": {
"name": "Кастомный формат загрузки изображений",
"description": "Устанавливает пользовательский формат загрузки изображений\nВыберите формат без потерь (например, PNG) для наилучшего качества"
}
}
},
"disable_confirmation_dialogs": {
"name": "Отключить диалоги подтверждения",
"description": "Автоматически подтверждает выбранные действия"
},
"auto_updater": {
"name": "Автообновление",
"description": "Автоматически проверяет наличие новых обновлений"
},
"update_settings": {
"name": "Настройки обновлений",
"description": "Управление тем, как PurrfectSnap проверяет обновления",
"properties": {
"auto_update_check": {
"name": "Автопроверка обновлений"
},
"update_check_frequency": {
"name": "Частота проверки обновлений"
}
}
},
"ui_settings": {
"name": "Настройки UI",
"properties": {
"haptic_feedback": {
"name": "Виброотклик"
}
}
},
"disable_metrics": {
"name": "Отключить метрики",
"description": "Блокирует отправку определенных аналитических данных в Snapchat"
},
"disable_story_sections": {
"name": "Отключить разделы историй",
"description": "Удаляет разделы со страницы историй\nМожет потребоваться обновление для корректной работы"
},
"block_ads": {
"name": "Блокировать рекламу",
"description": "Предотвращает показ рекламы"
},
"disable_custom_tabs": {
"name": "Отключить Custom Tabs",
"description": "Открывает ссылки в поддерживаемых приложениях, а не в веб-браузере"
},
"disable_permission_requests": {
"name": "Отключить запросы разрешений",
"description": "Запрещает Snapchat запрашивать определенные разрешения"
},
"disable_memories_snap_feed": {
"name": "Отключить ленту воспоминаний",
"description": "Запрещает Snapchat показывать недавние воспоминания при свайпе вверх в камере"
},
"spotlight_comments_username": {
"name": "Имя пользователя в комментариях Spotlight",
"description": "Показывает имя пользователя автора в комментариях Spotlight"
},
"spotlight_comments_username_icon": {
"name": "Иконка имени пользователя в комментариях Spotlight",
"description": "Выберите, какая иконка отображается рядом с именами пользователей в комментариях Spotlight"
},
"bypass_video_length_restriction": {
"name": "Обход ограничений длины видео",
"description": "Одиночное: отправляет одно видео\nРазделенное: разделяет видео после редактирования"
},
"default_video_playback_rate": {
"name": "Скорость воспроизведения видео по умолчанию",
"description": "Устанавливает скорость по умолчанию для воспроизведения видео\nЗначение должно быть между 0.1 и 4.0"
},
"video_playback_rate_slider": {
"name": "Слайдер скорости воспроизведения видео",
"description": "Добавляет слайдер в контекстное меню opera для изменения скорости воспроизведения видео\nПримечание: Изменения применяются только к последующим видео"
},
"disable_google_play_dialogs": {
"name": "Отключить диалоги сервисов Google Play",
"description": "Предотвращает показ диалогов о доступности сервисов Google Play"
},
"default_volume_controls": {
"name": "Управление громкостью по умолчанию",
"description": "Заставляет Snapchat использовать системные регуляторы громкости"
},
"disable_telecom_framework": {
"name": "Отключить Telecom Framework",
"description": "Запрещает Snapchat использовать Android Telecom framework\nЭто позволяет слушать музыку во время звонка"
},
"hide_active_music": {
"name": "Скрыть активную музыку",
"description": "Не дает Snapchat знать, что вы слушаете музыку\nЭто позволит вам снимать снапы, используя кнопки громкости, во время прослушивания музыки"
},
"disable_snap_splitting": {
"name": "Отключить разделение снапов",
"description": "Предотвращает разделение снапов на несколько частей\nИзображения, которые вы отправляете, станут видео"
}
}
},
"rules": {
"name": "Правила",
"description": "Настройка правил автоматизации",
@@ -2110,7 +2029,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "Индикатор зашифрованного сообщения",
"description": "Добавляет эмодзи \ud83d\udd12 рядом с зашифрованными сообщениями"
"description": "Добавляет эмодзи 🔒 рядом с зашифрованными сообщениями"
},
"force_message_encryption": {
"name": "Принудительное шифрование сообщений",
@@ -2190,6 +2109,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "Всегда светлая",
"always_dark": "Всегда темная",
@@ -2207,20 +2130,20 @@
"null": "Использовать реальный уровень заряда"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f Автоскачивание",
"auto_save": "\ud83d\udcac Автосохранение сообщений",
"unsaveable_messages": "\u2b07\ufe0f Несохраняемые сообщения",
"auto_open_snaps": "\ud83d\udcf7 Автооткрытие снапов",
"stealth": "\ud83d\udc7b Режим невидимки",
"auto_reply": "\ud83d\udce8 Автоответ",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f Автоудаление отправленных сообщений",
"mark_snaps_as_seen": "\ud83d\udc40 Пометить снапы как просмотренные",
"mark_stories_as_seen_locally": "\ud83d\udc40 Пометить истории как просмотренные локально",
"conversation_info": "\ud83d\udc64 Инфо о диалоге",
"e2e_encryption": "\ud83d\udd12 Использовать E2E шифрование",
"message_logger": "\ud83d\udcdd Логгер сообщений",
"auto_read": "\u2705 Автопрочтение",
"hide_typing_indicator": "\ud83d\ude48 Скрыть индикатор набора"
"auto_download": "⬇️ Автоскачивание",
"auto_save": "💬 Автосохранение сообщений",
"unsaveable_messages": "⬇️ Несохраняемые сообщения",
"auto_open_snaps": "📷 Автооткрытие снапов",
"stealth": "👻 Режим невидимки",
"auto_reply": "📨 Автоответ",
"auto_delete_sent_messages": "🗑️ Автоудаление отправленных сообщений",
"mark_snaps_as_seen": "👀 Пометить снапы как просмотренные",
"mark_stories_as_seen_locally": "👀 Пометить истории как просмотренные локально",
"conversation_info": "👤 Инфо о диалоге",
"e2e_encryption": "🔒 Использовать E2E шифрование",
"message_logger": "📝 Логгер сообщений",
"auto_read": " Автопрочтение",
"hide_typing_indicator": "🙈 Скрыть индикатор набора"
},
"schedule_scheduled_for": "Запланировано для {name} через {time}",
"schedule_sending_in": "Отправка через {time}",
@@ -2439,8 +2362,8 @@
},
"spotlight_comments_username_icon": {
"user": "Иконка пользователя",
"\ud83d\udc64": "Иконка пользователя",
"[\ud83d\udc64]": "Иконка пользователя",
"👤": "Иконка пользователя",
"[👤]": "Иконка пользователя",
"default": "Иконка пользователя",
"no_icon": "Без иконки"
},
@@ -2520,11 +2443,11 @@
"phone_calls": "Телефонные звонки"
},
"message_indicators": {
"encryption_indicator": "Добавляет иконку \ud83d\udd12 рядом с сообщениями, которые были отправлены только вам",
"encryption_indicator": "Добавляет иконку 🔒 рядом с сообщениями, которые были отправлены только вам",
"platform_indicator": "Добавляет иконку платформы, с которой было отправлено медиа (например, Android, iOS, Web)",
"location_indicator": "Добавляет иконку \ud83d\udccd к снапам, когда они были отправлены с включенным местоположением",
"location_indicator": "Добавляет иконку 📍 к снапам, когда они были отправлены с включенным местоположением",
"ovf_editor_indicator": "Указывает, был ли снап отправлен с использованием редактора OVF",
"director_mode_indicator": "Добавляет иконку \u270f\ufe0f к снапам, когда они были отправлены с использованием режима режиссера, который можно использовать для отправки изображений из галереи как снапов"
"director_mode_indicator": "Добавляет иконку ✏️ к снапам, когда они были отправлены с использованием режима режиссера, который можно использовать для отправки изображений из галереи как снапов"
},
"auto_mark_as_read": {
"conversation_read": "Помечать диалог как прочитанный при отправке сообщения",
@@ -2748,7 +2671,6 @@
"show_chat_edit_history": "Показать историю редактирования чата",
"convert_message": "Конвертировать сообщение"
},
"chat_wallpaper_downloader": {
"download_button": "Скачать обои чата"
},
@@ -3078,7 +3000,7 @@
"queue_cleared": "Очередь очищена и статистика сброшена",
"queue_cleared_title": "Очередь очищена",
"queue_cleared_reset": "Очередь очищена и сброшена",
"queue_cleared_feedback": "Очищено {count} снапов в очереди \u2022 Сброшен счетчик {processed} обработанных",
"queue_cleared_feedback": "Очищено {count} снапов в очереди Сброшен счетчик {processed} обработанных",
"queue_cleared_feedback_simple": "Сброшен счетчик {processed} обработанных",
"unknown_sender": "Неизвестный",
"unknown_user": "Неизвестный пользователь",

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 avtor Eternal",
"version_title": "v{versionName} · avtor Eternal",
"update_title": "Posodobitev PurrfectSnap",
"update_content": "Različica {version} je na voljo!",
"update_button": "Prenesi",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "Ni nalog",
"merge_button": "Združi",
"summary_active": "{active} aktivnih \u00b7 {recent} nedavnih",
"summary_idle": "V mirovanju \u00b7 {recent} nedavnih",
"summary_active": "{active} aktivnih · {recent} nedavnih",
"summary_idle": "V mirovanju · {recent} nedavnih",
"running_count": "{count} v teku",
"clear_button_description": "Počisti naloge",
"failed_to_open_file": "Datoteke ni bilo mogoče odpreti",
@@ -312,22 +312,22 @@
"remove_selected_tasks_confirm": "Odstrani {count} nalog?",
"remove_all_tasks_confirm": "Odstrani vse naloge?"
},
"features": {
"disabled": "Onemogočeno",
"export_option": "Izvozi",
"import_option": "Uvozi",
"reset_option": "Ponastavi",
"config_export_success_toast": "Konfiguracija uspešno izvožena",
"config_import_success_toast": "Konfiguracija uspešno uvožena",
"config_import_failure_toast": "Uvoz konfiguracije ni uspel {error}",
"config_export_failure_toast": "Izvoz konfiguracije ni uspel {error}",
"saved_config_snackbar": "Konfiguracija shranjena",
"older_required": "Ta funkcija za pravilno delovanje zahteva Snapchat v{version} ali starejši",
"newer_required": "Ta funkcija za pravilno delovanje zahteva Snapchat v{version} ali novejši",
"search_button": "Išči",
"clear_history": "Počisti zgodovino iskanja",
"subtitle": "Išči in upravljaj funkcije"
},
"features": {
"disabled": "Onemogočeno",
"export_option": "Izvozi",
"import_option": "Uvozi",
"reset_option": "Ponastavi",
"config_export_success_toast": "Konfiguracija uspešno izvožena",
"config_import_success_toast": "Konfiguracija uspešno uvožena",
"config_import_failure_toast": "Uvoz konfiguracije ni uspel {error}",
"config_export_failure_toast": "Izvoz konfiguracije ni uspel {error}",
"saved_config_snackbar": "Konfiguracija shranjena",
"older_required": "Ta funkcija za pravilno delovanje zahteva Snapchat v{version} ali starejši",
"newer_required": "Ta funkcija za pravilno delovanje zahteva Snapchat v{version} ali novejši",
"search_button": "Išči",
"clear_history": "Počisti zgodovino iskanja",
"subtitle": "Išči in upravljaj funkcije"
},
"bypass_status": {
"active": "PurrAura aktivna",
"inactive": "PurrAura neaktivna"
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "Teleportiraj k prijatelju",
"search_bar": "Išči",
"no_friends_map": "Ni prijateljev na zemljevidu",
"no_friends_found": "Ni najdenih prijateljev"
"no_friends_found": "Ni najdenih prijateljev",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,166 @@
},
"features": {
"notices": {
"unstable": "\u26a0 Nestabilno",
"ban_risk": "\u26a0 Ta funkcija lahko povzroči blokade računa",
"internal_behavior": "\u26a0 To lahko pokvari notranje delovanje Snapchata"
},
"options": {
"empty": "Prazno",
"walk_radius": {
"empty": "Prazno"
},
"spoof_battery_level": {
"empty": "Prazno"
},
"custom_android_id": {
"empty": "Prazno"
},
"custom_streaks_expiration_format": {
"empty": "Prazno"
},
"preferred_transcription_lang": {
"empty": "Prazno"
},
"custom_emoji_font": {
"empty": "Prazno"
},
"custom_shared_library": {
"empty": "Prazno"
},
"custom_resolution": {
"empty": "Prazno"
},
"custom_path_format": {
"empty": "Prazno"
},
"custom_video_codec": {
"empty": "Prazno"
},
"custom_audio_codec": {
"empty": "Prazno"
},
"double_tap_chat_action_custom_emoji": {
"empty": "Prazno"
},
"unsaveable_messages": {
"blacklist": "Način črnega seznama",
"whitelist": "Način belega seznama",
"null": "Onemogočeno"
},
"update_check_frequency": {
"daily": "Dnevno",
"weekly": "Tedensko",
"monthly": "Mesečno"
}
"unstable": " Nestabilno",
"ban_risk": " Ta funkcija lahko povzroči blokade računa",
"internal_behavior": " To lahko pokvari notranje delovanje Snapchata"
},
"properties": {
"global": {
"name": "Globalno",
"description": "Splošne nastavitve modula in privzete vrednosti",
"description": "Prilagodite globalne nastavitve Snapchata",
"properties": {
"ui_settings": {
"name": "Nastavitve vmesnika",
"description": "Prilagodite odzive in obnašanje obvestil",
"better_location": {
"name": "Boljša lokacija",
"description": "Izboljša lokacijo Snapchata",
"properties": {
"haptic_feedback": {
"name": "Haptični odziv",
"description": "Vibriraj pri podprtih interakcijah"
"spoof_location": {
"name": "Lažna lokacija",
"description": "Ponaredi vašo lokacijo na določeno"
},
"use_system_toasts": {
"name": "Uporabi sistemska obvestila",
"description": "Prikaži Android obvestila namesto prekrivnih v aplikaciji"
"coordinates": {
"name": "Koordinate",
"description": "Nastavi koordinate lažne lokacije"
},
"walk_radius": {
"name": "Radij hoje",
"description": "Naključno hojo znotraj tega radija (ft)"
},
"always_update_location": {
"name": "Vedno posodobi lokacijo",
"description": "Prisili Snapchat k posodobitvi lokacije, tudi če niso prejeti podatki GPS"
},
"suspend_location_updates": {
"name": "Zaustavi posodobitve lokacije",
"description": "Prepreči posodabljanje vaše lokacije"
},
"spoof_battery_level": {
"name": "Ponaredi nivo baterije",
"description": "Ponaredi nivo baterije vaše naprave na zemljevidu\nVrednost mora biti med 0 in 100"
},
"spoof_headphones": {
"name": "Ponaredi slušalke",
"description": "Ponaredi status poslušanja glasbe na zemljevidu"
},
"show_battery_level": {
"name": "Prikaži nivo baterije",
"description": "Prikaže nivo baterije vaših prijateljev na zemljevidu"
}
}
},
"update_settings": {
"name": "Nastavitve posodobitev",
"description": "Nadzor nad samodejnim preverjanjem posodobitev",
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Omogoči funkcije Snapchat Plus\nNekatere funkcije na strani strežnika morda ne bodo delovale"
},
"media_upload_quality": {
"name": "Kakovost nalaganja medijev",
"description": "Preglasi kakovost nalaganja medijev",
"properties": {
"auto_update_check": {
"name": "Samodejno preverjanje posodobitev",
"description": "Samodejno preveri nove gradnje"
"force_video_upload_source_quality": {
"name": "Vsili izvorno kakovost nalaganja videa",
"description": "Prisili Snapchat, da pri nalaganju videoposnetkov uporabi izvorno kakovost\nProsimo, upoštevajte, da to morda ne bo odstranilo metapodatkov iz medijev"
},
"update_check_frequency": {
"name": "Pogostost preverjanja posodobitev",
"description": "Kako pogosto preverjati posodobitve"
"disable_image_compression": {
"name": "Onemogoči stiskanje slik",
"description": "Onemogoči stiskanje slik pri nalaganju medijev"
},
"custom_image_upload_format": {
"name": "Format nalaganja slik po meri",
"description": "Nastavi format nalaganja slik po meri\nIzberite format brez izgub (kot PNG) za najboljšo kakovost"
}
}
},
"disable_confirmation_dialogs": {
"name": "Onemogoči potrditvena pogovorna okna",
"description": "Samodejno potrdi izbrana dejanja"
},
"auto_updater": {
"name": "Samodejni posodobljevalnik",
"description": "Samodejno preverja nove posodobitve"
},
"update_settings": {
"name": "Nastavitve posodobitev",
"description": "Nadzorujte, kako PurrfectSnap preverja posodobitve",
"properties": {
"auto_update_check": {
"name": "Samodejno preverjanje posodobitev"
},
"update_check_frequency": {
"name": "Pogostost preverjanja posodobitev"
}
}
},
"ui_settings": {
"name": "Nastavitve vmesnika",
"properties": {
"haptic_feedback": {
"name": "Haptični odziv"
}
}
},
"disable_metrics": {
"name": "Onemogoči meritve",
"description": "Blokira pošiljanje specifičnih analitičnih podatkov Snapchatu"
},
"disable_story_sections": {
"name": "Onemogoči razdelke zgodb",
"description": "Odstrani razdelke s strani Zgodbe\nZa pravilno delovanje bo morda potrebna osvežitev"
},
"block_ads": {
"name": "Blokiraj oglase",
"description": "Preprečuje prikazovanje oglasov"
},
"disable_custom_tabs": {
"name": "Onemogoči zavihke po meri",
"description": "Odpre povezave v podprtih aplikacijah namesto v spletnem brskalniku"
},
"disable_permission_requests": {
"name": "Onemogoči zahteve za dovoljenja",
"description": "Preprečuje Snapchatu, da bi zahteval določena dovoljenja"
},
"disable_memories_snap_feed": {
"name": "Onemogoči vir snap spominov",
"description": "Preprečuje Snapchatu prikazovanje nedavnih spominov, ko povlečete navzgor v kameri"
},
"spotlight_comments_username": {
"name": "Uporabniško ime v komentarjih Spotlight",
"description": "Prikaže uporabniško ime avtorja v komentarjih Spotlight"
},
"spotlight_comments_username_icon": {
"name": "Ikona uporabniškega imena v komentarjih Spotlight",
"description": "Izberite, katera ikona se prikaže ob uporabniških imenih v komentarjih Spotlight"
},
"bypass_video_length_restriction": {
"name": "Obidi omejitve dolžine videa",
"description": "Enojno: pošlje en sam video\nRazdeljeno: razdeli videoposnetke po urejanju"
},
"default_video_playback_rate": {
"name": "Privzeta hitrost predvajanja videa",
"description": "Nastavi privzeto hitrost predvajanja videoposnetkov\nVrednost mora biti med 0.1 in 4.0"
},
"video_playback_rate_slider": {
"name": "Drsnik hitrosti predvajanja videa",
"description": "Doda drsnik v kontekstni meni opera za spreminjanje hitrosti predvajanja videa\nOpomba: Spremembe veljajo le za naslednje videoposnetke"
},
"disable_google_play_dialogs": {
"name": "Onemogoči pogovorna okna storitev Google Play",
"description": "Prepreči prikazovanje pogovornih oken o razpoložljivosti storitev Google Play"
},
"default_volume_controls": {
"name": "Privzeti nadzor glasnosti",
"description": "Prisili Snapchat k uporabi sistemskega nadzora glasnosti"
},
"disable_telecom_framework": {
"name": "Onemogoči telekomunikacijsko ogrodje",
"description": "Preprečuje Snapchatu uporabo ogrodja Android Telecom\nTo vam omogoča poslušanje glasbe med klicem"
},
"hide_active_music": {
"name": "Skrij aktivno glasbo",
"description": "Preprečuje Snapchatu, da bi vedel, da poslušate glasbo\nTo vam bo omogočilo snemanje snapov z uporabo gumbov za glasnost med poslušanjem glasbe"
},
"disable_snap_splitting": {
"name": "Onemogoči delitev snapov",
"description": "Preprečuje, da bi se snapi razdelili na več delov\nSlike, ki jih pošljete, se bodo spremenile v videoposnetke"
}
}
},
@@ -1143,7 +1220,7 @@
},
"stealth_mode_indicator": {
"name": "Indikator nevidnega načina",
"description": "Doda \ud83d\udc7b emoji ob pogovorih v nevidnem načinu"
"description": "Doda 👻 emoji ob pogovorih v nevidnem načinu"
},
"edit_text_override": {
"name": "Preglasitev urejanja besedila",
@@ -1671,164 +1748,6 @@
}
}
},
"global": {
"name": "Globalno",
"description": "Prilagodite globalne nastavitve Snapchata",
"properties": {
"better_location": {
"name": "Boljša lokacija",
"description": "Izboljša lokacijo Snapchata",
"properties": {
"spoof_location": {
"name": "Lažna lokacija",
"description": "Ponaredi vašo lokacijo na določeno"
},
"coordinates": {
"name": "Koordinate",
"description": "Nastavi koordinate lažne lokacije"
},
"walk_radius": {
"name": "Radij hoje",
"description": "Naključno hojo znotraj tega radija (ft)"
},
"always_update_location": {
"name": "Vedno posodobi lokacijo",
"description": "Prisili Snapchat k posodobitvi lokacije, tudi če niso prejeti podatki GPS"
},
"suspend_location_updates": {
"name": "Zaustavi posodobitve lokacije",
"description": "Prepreči posodabljanje vaše lokacije"
},
"spoof_battery_level": {
"name": "Ponaredi nivo baterije",
"description": "Ponaredi nivo baterije vaše naprave na zemljevidu\nVrednost mora biti med 0 in 100"
},
"spoof_headphones": {
"name": "Ponaredi slušalke",
"description": "Ponaredi status poslušanja glasbe na zemljevidu"
},
"show_battery_level": {
"name": "Prikaži nivo baterije",
"description": "Prikaže nivo baterije vaših prijateljev na zemljevidu"
}
}
},
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Omogoči funkcije Snapchat Plus\nNekatere funkcije na strani strežnika morda ne bodo delovale"
},
"media_upload_quality": {
"name": "Kakovost nalaganja medijev",
"description": "Preglasi kakovost nalaganja medijev",
"properties": {
"force_video_upload_source_quality": {
"name": "Vsili izvorno kakovost nalaganja videa",
"description": "Prisili Snapchat, da pri nalaganju videoposnetkov uporabi izvorno kakovost\nProsimo, upoštevajte, da to morda ne bo odstranilo metapodatkov iz medijev"
},
"disable_image_compression": {
"name": "Onemogoči stiskanje slik",
"description": "Onemogoči stiskanje slik pri nalaganju medijev"
},
"custom_image_upload_format": {
"name": "Format nalaganja slik po meri",
"description": "Nastavi format nalaganja slik po meri\nIzberite format brez izgub (kot PNG) za najboljšo kakovost"
}
}
},
"disable_confirmation_dialogs": {
"name": "Onemogoči potrditvena pogovorna okna",
"description": "Samodejno potrdi izbrana dejanja"
},
"auto_updater": {
"name": "Samodejni posodobljevalnik",
"description": "Samodejno preverja nove posodobitve"
},
"update_settings": {
"name": "Nastavitve posodobitev",
"description": "Nadzorujte, kako PurrfectSnap preverja posodobitve",
"properties": {
"auto_update_check": {
"name": "Samodejno preverjanje posodobitev"
},
"update_check_frequency": {
"name": "Pogostost preverjanja posodobitev"
}
}
},
"ui_settings": {
"name": "Nastavitve vmesnika",
"properties": {
"haptic_feedback": {
"name": "Haptični odziv"
}
}
},
"disable_metrics": {
"name": "Onemogoči meritve",
"description": "Blokira pošiljanje specifičnih analitičnih podatkov Snapchatu"
},
"disable_story_sections": {
"name": "Onemogoči razdelke zgodb",
"description": "Odstrani razdelke s strani Zgodbe\nZa pravilno delovanje bo morda potrebna osvežitev"
},
"block_ads": {
"name": "Blokiraj oglase",
"description": "Preprečuje prikazovanje oglasov"
},
"disable_custom_tabs": {
"name": "Onemogoči zavihke po meri",
"description": "Odpre povezave v podprtih aplikacijah namesto v spletnem brskalniku"
},
"disable_permission_requests": {
"name": "Onemogoči zahteve za dovoljenja",
"description": "Preprečuje Snapchatu, da bi zahteval določena dovoljenja"
},
"disable_memories_snap_feed": {
"name": "Onemogoči vir snap spominov",
"description": "Preprečuje Snapchatu prikazovanje nedavnih spominov, ko povlečete navzgor v kameri"
},
"spotlight_comments_username": {
"name": "Uporabniško ime v komentarjih Spotlight",
"description": "Prikaže uporabniško ime avtorja v komentarjih Spotlight"
},
"spotlight_comments_username_icon": {
"name": "Ikona uporabniškega imena v komentarjih Spotlight",
"description": "Izberite, katera ikona se prikaže ob uporabniških imenih v komentarjih Spotlight"
},
"bypass_video_length_restriction": {
"name": "Obidi omejitve dolžine videa",
"description": "Enojno: pošlje en sam video\nRazdeljeno: razdeli videoposnetke po urejanju"
},
"default_video_playback_rate": {
"name": "Privzeta hitrost predvajanja videa",
"description": "Nastavi privzeto hitrost predvajanja videoposnetkov\nVrednost mora biti med 0.1 in 4.0"
},
"video_playback_rate_slider": {
"name": "Drsnik hitrosti predvajanja videa",
"description": "Doda drsnik v kontekstni meni opera za spreminjanje hitrosti predvajanja videa\nOpomba: Spremembe veljajo le za naslednje videoposnetke"
},
"disable_google_play_dialogs": {
"name": "Onemogoči pogovorna okna storitev Google Play",
"description": "Prepreči prikazovanje pogovornih oken o razpoložljivosti storitev Google Play"
},
"default_volume_controls": {
"name": "Privzeti nadzor glasnosti",
"description": "Prisili Snapchat k uporabi sistemskega nadzora glasnosti"
},
"disable_telecom_framework": {
"name": "Onemogoči telekomunikacijsko ogrodje",
"description": "Preprečuje Snapchatu uporabo ogrodja Android Telecom\nTo vam omogoča poslušanje glasbe med klicem"
},
"hide_active_music": {
"name": "Skrij aktivno glasbo",
"description": "Preprečuje Snapchatu, da bi vedel, da poslušate glasbo\nTo vam bo omogočilo snemanje snapov z uporabo gumbov za glasnost med poslušanjem glasbe"
},
"disable_snap_splitting": {
"name": "Onemogoči delitev snapov",
"description": "Preprečuje, da bi se snapi razdelili na več delov\nSlike, ki jih pošljete, se bodo spremenile v videoposnetke"
}
}
},
"rules": {
"name": "Pravila",
"description": "Konfiguriraj pravila avtomatizacije",
@@ -2110,7 +2029,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "Indikator šifriranega sporočila",
"description": "Doda \ud83d\udd12 emoji ob šifriranih sporočilih"
"description": "Doda 🔒 emoji ob šifriranih sporočilih"
},
"force_message_encryption": {
"name": "Vsili šifriranje sporočil",
@@ -2190,6 +2109,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "Vedno svetlo",
"always_dark": "Vedno temno",
@@ -2207,20 +2130,20 @@
"null": "Uporabi pravi nivo baterije"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f Samodejni prenos",
"auto_save": "\ud83d\udcac Samodejno shranjevanje sporočil",
"unsaveable_messages": "\u2b07\ufe0f Neshranljiva sporočila",
"auto_open_snaps": "\ud83d\udcf7 Samodejno odpiranje Snapov",
"stealth": "\ud83d\udc7b Nevidni način",
"auto_reply": "\ud83d\udce8 Samodejni odgovor",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f Samodejno brisanje poslanih sporočil",
"mark_snaps_as_seen": "\ud83d\udc40 Označi Snape kot videne",
"mark_stories_as_seen_locally": "\ud83d\udc40 Označi zgodbe kot videne lokalno",
"conversation_info": "\ud83d\udc64 Informacije o pogovoru",
"e2e_encryption": "\ud83d\udd12 Uporabi E2E šifriranje",
"message_logger": "\ud83d\udcdd Beleženje sporočil",
"auto_read": "\u2705 Samodejno branje",
"hide_typing_indicator": "\ud83d\ude48 Skrij indikator tipkanja"
"auto_download": "⬇️ Samodejni prenos",
"auto_save": "💬 Samodejno shranjevanje sporočil",
"unsaveable_messages": "⬇️ Neshranljiva sporočila",
"auto_open_snaps": "📷 Samodejno odpiranje Snapov",
"stealth": "👻 Nevidni način",
"auto_reply": "📨 Samodejni odgovor",
"auto_delete_sent_messages": "🗑️ Samodejno brisanje poslanih sporočil",
"mark_snaps_as_seen": "👀 Označi Snape kot videne",
"mark_stories_as_seen_locally": "👀 Označi zgodbe kot videne lokalno",
"conversation_info": "👤 Informacije o pogovoru",
"e2e_encryption": "🔒 Uporabi E2E šifriranje",
"message_logger": "📝 Beleženje sporočil",
"auto_read": " Samodejno branje",
"hide_typing_indicator": "🙈 Skrij indikator tipkanja"
},
"schedule_scheduled_for": "Načrtovano za {name} čez {time}",
"schedule_sending_in": "Pošiljanje čez {time}",
@@ -2323,16 +2246,16 @@
"custom_android_id": {
"null": "Uporabi pravi Android ID"
},
"add_friend_source_spoof": {
"added_by_username": "Po uporabniškem imenu",
"added_by_mention": "Z omembo",
"added_by_group_chat": "Iz skupinskega klepeta",
"added_by_qr_code": "S kodo QR",
"added_by_community": "Iz skupnosti",
"added_by_quick_add": "S hitrim dodajanjem (visoko tveganje za blokado)",
"added_by_spotlight": "Prek Spotlight",
"null": "Ne ponarejaj vira"
},
"add_friend_source_spoof": {
"added_by_username": "Po uporabniškem imenu",
"added_by_mention": "Z omembo",
"added_by_group_chat": "Iz skupinskega klepeta",
"added_by_qr_code": "S kodo QR",
"added_by_community": "Iz skupnosti",
"added_by_quick_add": "S hitrim dodajanjem (visoko tveganje za blokado)",
"added_by_spotlight": "Prek Spotlight",
"null": "Ne ponarejaj vira"
},
"custom_streaks_expiration_format": {
"null": "Sistemsko privzeto"
},
@@ -2439,8 +2362,8 @@
},
"spotlight_comments_username_icon": {
"user": "Ikona uporabniškega imena",
"\ud83d\udc64": "Ikona uporabniškega imena",
"[\ud83d\udc64]": "Ikona uporabniškega imena",
"👤": "Ikona uporabniškega imena",
"[👤]": "Ikona uporabniškega imena",
"default": "Ikona uporabniškega imena",
"no_icon": "Brez ikone"
},
@@ -2520,11 +2443,11 @@
"phone_calls": "Telefonski klici"
},
"message_indicators": {
"encryption_indicator": "Doda \ud83d\udd12 ikono ob sporočilih, ki so bila poslana samo vam",
"encryption_indicator": "Doda 🔒 ikono ob sporočilih, ki so bila poslana samo vam",
"platform_indicator": "Doda ikono platforme, s katere je bil medij poslan (npr. Android, iOS, Splet)",
"location_indicator": "Doda \ud83d\udccd ikono snapom, ko so bili poslani z omogočeno lokacijo",
"location_indicator": "Doda 📍 ikono snapom, ko so bili poslani z omogočeno lokacijo",
"ovf_editor_indicator": "Označuje, ali je bil snap poslan z uporabo urejevalnika OVF",
"director_mode_indicator": "Doda \u270f\ufe0f ikono snapom, ko so bili poslani z uporabo načina Director, ki se lahko uporabi za pošiljanje slik iz galerije kot snapov"
"director_mode_indicator": "Doda ✏️ ikono snapom, ko so bili poslani z uporabo načina Director, ki se lahko uporabi za pošiljanje slik iz galerije kot snapov"
},
"auto_mark_as_read": {
"conversation_read": "Označi pogovor kot prebran ob pošiljanju sporočila",
@@ -2748,7 +2671,6 @@
"show_chat_edit_history": "Prikaži zgodovino urejanja klepeta",
"convert_message": "Pretvori sporočilo"
},
"chat_wallpaper_downloader": {
"download_button": "Prenesi ozadje klepeta"
},
@@ -3078,7 +3000,7 @@
"queue_cleared": "Vrsta počiščena in statistika ponastavljena",
"queue_cleared_title": "Vrsta počiščena",
"queue_cleared_reset": "Vrsta počiščena in ponastavljena",
"queue_cleared_feedback": "Počiščeno {count} snapov v vrsti \u2022 Ponastavljeno {processed} obdelanih",
"queue_cleared_feedback": "Počiščeno {count} snapov v vrsti Ponastavljeno {processed} obdelanih",
"queue_cleared_feedback_simple": "Ponastavljeno {processed} obdelanih",
"unknown_sender": "Neznano",
"unknown_user": "Neznan uporabnik",

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 av Eternal",
"version_title": "v{versionName} · av Eternal",
"update_title": "PurrfectSnap-uppdatering",
"update_content": "Version {version} är tillgänglig!",
"update_button": "Ladda ner",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "Inga uppgifter",
"merge_button": "Sammanfoga",
"summary_active": "{active} aktiva \u00b7 {recent} senaste",
"summary_idle": "Inaktiv \u00b7 {recent} senaste",
"summary_active": "{active} aktiva · {recent} senaste",
"summary_idle": "Inaktiv · {recent} senaste",
"running_count": "{count} körs",
"clear_button_description": "Rensa uppgifter",
"failed_to_open_file": "Misslyckades att öppna fil",
@@ -312,22 +312,22 @@
"remove_selected_tasks_confirm": "Ta bort {count} uppgifter?",
"remove_all_tasks_confirm": "Ta bort alla uppgifter?"
},
"features": {
"disabled": "Inaktiverad",
"export_option": "Exportera",
"import_option": "Importera",
"reset_option": "Återställ",
"config_export_success_toast": "Konfiguration exporterades framgångsrikt",
"config_import_success_toast": "Konfiguration importerades framgångsrikt",
"config_import_failure_toast": "Misslyckades att importera konfiguration {error}",
"config_export_failure_toast": "Misslyckades att exportera konfiguration {error}",
"saved_config_snackbar": "Konfiguration sparad",
"older_required": "Denna funktion kräver Snapchat v{version} eller äldre för att fungera korrekt",
"newer_required": "Denna funktion kräver Snapchat v{version} eller nyare för att fungera korrekt",
"search_button": "Sök",
"clear_history": "Rensa sökhistorik",
"subtitle": "Sök och hantera funktioner"
},
"features": {
"disabled": "Inaktiverad",
"export_option": "Exportera",
"import_option": "Importera",
"reset_option": "Återställ",
"config_export_success_toast": "Konfiguration exporterades framgångsrikt",
"config_import_success_toast": "Konfiguration importerades framgångsrikt",
"config_import_failure_toast": "Misslyckades att importera konfiguration {error}",
"config_export_failure_toast": "Misslyckades att exportera konfiguration {error}",
"saved_config_snackbar": "Konfiguration sparad",
"older_required": "Denna funktion kräver Snapchat v{version} eller äldre för att fungera korrekt",
"newer_required": "Denna funktion kräver Snapchat v{version} eller nyare för att fungera korrekt",
"search_button": "Sök",
"clear_history": "Rensa sökhistorik",
"subtitle": "Sök och hantera funktioner"
},
"bypass_status": {
"active": "PurrAura Aktiv",
"inactive": "PurrAura Inaktiv"
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "Teleportera till vän",
"search_bar": "Sök",
"no_friends_map": "Inga vänner på kartan",
"no_friends_found": "Inga vänner hittades"
"no_friends_found": "Inga vänner hittades",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,166 @@
},
"features": {
"notices": {
"unstable": "\u26a0 Instabil",
"ban_risk": "\u26a0 Denna funktion kan orsaka bannlysningar",
"internal_behavior": "\u26a0 Detta kan bryta Snapchats interna beteende"
},
"options": {
"empty": "Tom",
"walk_radius": {
"empty": "Tom"
},
"spoof_battery_level": {
"empty": "Tom"
},
"custom_android_id": {
"empty": "Tom"
},
"custom_streaks_expiration_format": {
"empty": "Tom"
},
"preferred_transcription_lang": {
"empty": "Tom"
},
"custom_emoji_font": {
"empty": "Tom"
},
"custom_shared_library": {
"empty": "Tom"
},
"custom_resolution": {
"empty": "Tom"
},
"custom_path_format": {
"empty": "Tom"
},
"custom_video_codec": {
"empty": "Tom"
},
"custom_audio_codec": {
"empty": "Tom"
},
"double_tap_chat_action_custom_emoji": {
"empty": "Tom"
},
"unsaveable_messages": {
"blacklist": "Svartlistningsläge",
"whitelist": "Vitlistningsläge",
"null": "Inaktiverad"
},
"update_check_frequency": {
"daily": "Dagligen",
"weekly": "Veckovis",
"monthly": "Månadsvis"
}
"unstable": " Instabil",
"ban_risk": " Denna funktion kan orsaka bannlysningar",
"internal_behavior": " Detta kan bryta Snapchats interna beteende"
},
"properties": {
"global": {
"name": "Globalt",
"description": "Allmänna modulpreferenser och standardvärden",
"description": "Justera globala Snapchat-inställningar",
"properties": {
"ui_settings": {
"name": "UI-inställningar",
"description": "Justera feedback och toast-beteende",
"better_location": {
"name": "Bättre plats",
"description": "Förbättrar Snapchats plats",
"properties": {
"haptic_feedback": {
"name": "Haptisk återkoppling",
"description": "Vibrera vid interaktioner som stöds"
"spoof_location": {
"name": "Spoofa plats",
"description": "Spoofar din plats till en angiven sådan"
},
"use_system_toasts": {
"name": "Använd system-toasts",
"description": "Visa Android-toasts istället för överlägg i appen"
"coordinates": {
"name": "Koordinater",
"description": "Ställ in koordinaterna för den spoofade platsen"
},
"walk_radius": {
"name": "Gångradie",
"description": "Gå slumpmässigt runt inom denna radie (fot)"
},
"always_update_location": {
"name": "Uppdatera alltid plats",
"description": "Tvinga Snapchat att uppdatera plats även om ingen GPS-data tas emot"
},
"suspend_location_updates": {
"name": "Pausa platsuppdateringar",
"description": "Förhindrar att din plats uppdateras"
},
"spoof_battery_level": {
"name": "Spoofa batterinivå",
"description": "Spoofar batterinivån för din enhet på kartan\nVärdet måste vara mellan 0 och 100"
},
"spoof_headphones": {
"name": "Spoofa hörlurar",
"description": "Spoofar statusen för att lyssna på musik på kartan"
},
"show_battery_level": {
"name": "Visa batterinivå",
"description": "Visar batterinivån för dina vänner på kartan"
}
}
},
"update_settings": {
"name": "Uppdateringsinställningar",
"description": "Kontrollera automatiska uppdateringskontroller",
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Aktiverar Snapchat Plus-funktioner\nVissa server-sido-funktioner kanske inte fungerar"
},
"media_upload_quality": {
"name": "Mediauppladdningskvalitet",
"description": "Överskrider mediauppladdningskvaliteten",
"properties": {
"auto_update_check": {
"name": "Automatisk uppdateringskontroll",
"description": "Kontrollera efter nya byggen automatiskt"
"force_video_upload_source_quality": {
"name": "Tvinga källkvalitet vid videouppladdning",
"description": "Tvingar Snapchat att använda källkvaliteten vid uppladdning av videor\nObservera att detta kanske inte tar bort metadata från media"
},
"update_check_frequency": {
"name": "Uppdateringskontrollfrekvens",
"description": "Hur ofta uppdateringar ska kontrolleras"
"disable_image_compression": {
"name": "Inaktivera bildkomprimering",
"description": "Inaktiverar bildkomprimering vid uppladdning av media"
},
"custom_image_upload_format": {
"name": "Anpassat bilduppladdningsformat",
"description": "Ställer in ett anpassat bilduppladdningsformat\nVälj ett förlustfritt format (som PNG) för bästa kvalitet"
}
}
},
"disable_confirmation_dialogs": {
"name": "Inaktivera bekräftelsedialoger",
"description": "Bekräftar automatiskt valda åtgärder"
},
"auto_updater": {
"name": "Auto-uppdaterare",
"description": "Kontrollerar automatiskt efter nya uppdateringar"
},
"update_settings": {
"name": "Uppdateringsinställningar",
"description": "Kontrollera hur PurrfectSnap letar efter uppdateringar",
"properties": {
"auto_update_check": {
"name": "Automatisk uppdateringskontroll"
},
"update_check_frequency": {
"name": "Uppdateringskontrollfrekvens"
}
}
},
"ui_settings": {
"name": "UI-inställningar",
"properties": {
"haptic_feedback": {
"name": "Haptisk återkoppling"
}
}
},
"disable_metrics": {
"name": "Inaktivera mätvärden",
"description": "Blockerar sändning av specifik analytisk data till Snapchat"
},
"disable_story_sections": {
"name": "Inaktivera story-sektioner",
"description": "Tar bort sektioner från Stories-sidan\nKan kräva en uppdatering för att fungera korrekt"
},
"block_ads": {
"name": "Blockera annonser",
"description": "Förhindrar att reklam visas"
},
"disable_custom_tabs": {
"name": "Inaktivera anpassade flikar",
"description": "Öppnar länkar i appar som stöds snarare än i webbläsaren"
},
"disable_permission_requests": {
"name": "Inaktivera behörighetsförfrågningar",
"description": "Förhindrar Snapchat från att be om specifika behörigheter"
},
"disable_memories_snap_feed": {
"name": "Inaktivera minnen i snap-flöde",
"description": "Förhindrar Snapchat från att visa senaste minnen när du sveper upp i kameran"
},
"spotlight_comments_username": {
"name": "Användarnamn i Spotlight-kommentarer",
"description": "Visar författarens användarnamn i Spotlight-kommentarer"
},
"spotlight_comments_username_icon": {
"name": "Ikon för användarnamn i Spotlight-kommentarer",
"description": "Välj vilken ikon som visas bredvid användarnamn i Spotlight-kommentarer"
},
"bypass_video_length_restriction": {
"name": "Kringgå videolängdsbegränsningar",
"description": "Singel: skickar en enda video\nDela upp: dela upp videor efter redigering"
},
"default_video_playback_rate": {
"name": "Standard videouppspelningshastighet",
"description": "Ställer in standardhastigheten för uppspelning av videor\nVärdet måste vara mellan 0.1 och 4.0"
},
"video_playback_rate_slider": {
"name": "Reglage för videouppspelningshastighet",
"description": "Lägger till ett reglage i opera-kontextmenyn för att ändra videouppspelningshastigheten\nObs: Ändringar gäller endast efterföljande videor"
},
"disable_google_play_dialogs": {
"name": "Inaktivera Google Play Services-dialoger",
"description": "Förhindra att dialoger om Google Play Services tillgänglighet visas"
},
"default_volume_controls": {
"name": "Standard volymkontroller",
"description": "Tvingar Snapchat att använda systemets volymkontroller"
},
"disable_telecom_framework": {
"name": "Inaktivera Telecom Framework",
"description": "Förhindrar Snapchat från att använda Android Telecom-ramverket\nDetta låter dig lyssna på musik medan du är i ett samtal"
},
"hide_active_music": {
"name": "Dölj aktiv musik",
"description": "Förhindrar Snapchat från att veta att du lyssnar på musik\nDetta låter dig ta snaps med volymknapparna medan du lyssnar på musik"
},
"disable_snap_splitting": {
"name": "Inaktivera Snap-uppdelning",
"description": "Förhindrar Snaps från att delas upp i flera delar\nBilder du skickar kommer att bli videor"
}
}
},
@@ -1143,7 +1220,7 @@
},
"stealth_mode_indicator": {
"name": "Smyglägesindikator",
"description": "Lägger till en \ud83d\udc7b emoji bredvid konversationer i smygläge"
"description": "Lägger till en 👻 emoji bredvid konversationer i smygläge"
},
"edit_text_override": {
"name": "Redigera text-överskridning",
@@ -1671,164 +1748,6 @@
}
}
},
"global": {
"name": "Globalt",
"description": "Justera globala Snapchat-inställningar",
"properties": {
"better_location": {
"name": "Bättre plats",
"description": "Förbättrar Snapchats plats",
"properties": {
"spoof_location": {
"name": "Spoofa plats",
"description": "Spoofar din plats till en angiven sådan"
},
"coordinates": {
"name": "Koordinater",
"description": "Ställ in koordinaterna för den spoofade platsen"
},
"walk_radius": {
"name": "Gångradie",
"description": "Gå slumpmässigt runt inom denna radie (fot)"
},
"always_update_location": {
"name": "Uppdatera alltid plats",
"description": "Tvinga Snapchat att uppdatera plats även om ingen GPS-data tas emot"
},
"suspend_location_updates": {
"name": "Pausa platsuppdateringar",
"description": "Förhindrar att din plats uppdateras"
},
"spoof_battery_level": {
"name": "Spoofa batterinivå",
"description": "Spoofar batterinivån för din enhet på kartan\nVärdet måste vara mellan 0 och 100"
},
"spoof_headphones": {
"name": "Spoofa hörlurar",
"description": "Spoofar statusen för att lyssna på musik på kartan"
},
"show_battery_level": {
"name": "Visa batterinivå",
"description": "Visar batterinivån för dina vänner på kartan"
}
}
},
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Aktiverar Snapchat Plus-funktioner\nVissa server-sido-funktioner kanske inte fungerar"
},
"media_upload_quality": {
"name": "Mediauppladdningskvalitet",
"description": "Överskrider mediauppladdningskvaliteten",
"properties": {
"force_video_upload_source_quality": {
"name": "Tvinga källkvalitet vid videouppladdning",
"description": "Tvingar Snapchat att använda källkvaliteten vid uppladdning av videor\nObservera att detta kanske inte tar bort metadata från media"
},
"disable_image_compression": {
"name": "Inaktivera bildkomprimering",
"description": "Inaktiverar bildkomprimering vid uppladdning av media"
},
"custom_image_upload_format": {
"name": "Anpassat bilduppladdningsformat",
"description": "Ställer in ett anpassat bilduppladdningsformat\nVälj ett förlustfritt format (som PNG) för bästa kvalitet"
}
}
},
"disable_confirmation_dialogs": {
"name": "Inaktivera bekräftelsedialoger",
"description": "Bekräftar automatiskt valda åtgärder"
},
"auto_updater": {
"name": "Auto-uppdaterare",
"description": "Kontrollerar automatiskt efter nya uppdateringar"
},
"update_settings": {
"name": "Uppdateringsinställningar",
"description": "Kontrollera hur PurrfectSnap letar efter uppdateringar",
"properties": {
"auto_update_check": {
"name": "Automatisk uppdateringskontroll"
},
"update_check_frequency": {
"name": "Uppdateringskontrollfrekvens"
}
}
},
"ui_settings": {
"name": "UI-inställningar",
"properties": {
"haptic_feedback": {
"name": "Haptisk återkoppling"
}
}
},
"disable_metrics": {
"name": "Inaktivera mätvärden",
"description": "Blockerar sändning av specifik analytisk data till Snapchat"
},
"disable_story_sections": {
"name": "Inaktivera story-sektioner",
"description": "Tar bort sektioner från Stories-sidan\nKan kräva en uppdatering för att fungera korrekt"
},
"block_ads": {
"name": "Blockera annonser",
"description": "Förhindrar att reklam visas"
},
"disable_custom_tabs": {
"name": "Inaktivera anpassade flikar",
"description": "Öppnar länkar i appar som stöds snarare än i webbläsaren"
},
"disable_permission_requests": {
"name": "Inaktivera behörighetsförfrågningar",
"description": "Förhindrar Snapchat från att be om specifika behörigheter"
},
"disable_memories_snap_feed": {
"name": "Inaktivera minnen i snap-flöde",
"description": "Förhindrar Snapchat från att visa senaste minnen när du sveper upp i kameran"
},
"spotlight_comments_username": {
"name": "Användarnamn i Spotlight-kommentarer",
"description": "Visar författarens användarnamn i Spotlight-kommentarer"
},
"spotlight_comments_username_icon": {
"name": "Ikon för användarnamn i Spotlight-kommentarer",
"description": "Välj vilken ikon som visas bredvid användarnamn i Spotlight-kommentarer"
},
"bypass_video_length_restriction": {
"name": "Kringgå videolängdsbegränsningar",
"description": "Singel: skickar en enda video\nDela upp: dela upp videor efter redigering"
},
"default_video_playback_rate": {
"name": "Standard videouppspelningshastighet",
"description": "Ställer in standardhastigheten för uppspelning av videor\nVärdet måste vara mellan 0.1 och 4.0"
},
"video_playback_rate_slider": {
"name": "Reglage för videouppspelningshastighet",
"description": "Lägger till ett reglage i opera-kontextmenyn för att ändra videouppspelningshastigheten\nObs: Ändringar gäller endast efterföljande videor"
},
"disable_google_play_dialogs": {
"name": "Inaktivera Google Play Services-dialoger",
"description": "Förhindra att dialoger om Google Play Services tillgänglighet visas"
},
"default_volume_controls": {
"name": "Standard volymkontroller",
"description": "Tvingar Snapchat att använda systemets volymkontroller"
},
"disable_telecom_framework": {
"name": "Inaktivera Telecom Framework",
"description": "Förhindrar Snapchat från att använda Android Telecom-ramverket\nDetta låter dig lyssna på musik medan du är i ett samtal"
},
"hide_active_music": {
"name": "Dölj aktiv musik",
"description": "Förhindrar Snapchat från att veta att du lyssnar på musik\nDetta låter dig ta snaps med volymknapparna medan du lyssnar på musik"
},
"disable_snap_splitting": {
"name": "Inaktivera Snap-uppdelning",
"description": "Förhindrar Snaps från att delas upp i flera delar\nBilder du skickar kommer att bli videor"
}
}
},
"rules": {
"name": "Regler",
"description": "Konfigurera automatiseringsregler",
@@ -2110,7 +2029,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "Krypterad meddelandeindikator",
"description": "Lägger till en \ud83d\udd12 emoji bredvid krypterade meddelanden"
"description": "Lägger till en 🔒 emoji bredvid krypterade meddelanden"
},
"force_message_encryption": {
"name": "Tvinga meddelandekryptering",
@@ -2190,6 +2109,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "Alltid ljus",
"always_dark": "Alltid mörk",
@@ -2207,20 +2130,20 @@
"null": "Använd verklig batterinivå"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f Auto-nedladdning",
"auto_save": "\ud83d\udcac Autospara meddelanden",
"unsaveable_messages": "\u2b07\ufe0f Icke-sparade meddelanden",
"auto_open_snaps": "\ud83d\udcf7 Auto-öppna Snaps",
"stealth": "\ud83d\udc7b Smygläge",
"auto_reply": "\ud83d\udce8 Autosvar",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f Ta bort skickade meddelanden automatiskt",
"mark_snaps_as_seen": "\ud83d\udc40 Markera Snaps som sedda",
"mark_stories_as_seen_locally": "\ud83d\udc40 Markera Stories som sedda lokalt",
"conversation_info": "\ud83d\udc64 Konversationsinfo",
"e2e_encryption": "\ud83d\udd12 Använd E2E-kryptering",
"message_logger": "\ud83d\udcdd Meddelandelogg",
"auto_read": "\u2705 Auto-läs",
"hide_typing_indicator": "\ud83d\ude48 Dölj skrivindikator"
"auto_download": "⬇️ Auto-nedladdning",
"auto_save": "💬 Autospara meddelanden",
"unsaveable_messages": "⬇️ Icke-sparade meddelanden",
"auto_open_snaps": "📷 Auto-öppna Snaps",
"stealth": "👻 Smygläge",
"auto_reply": "📨 Autosvar",
"auto_delete_sent_messages": "🗑️ Ta bort skickade meddelanden automatiskt",
"mark_snaps_as_seen": "👀 Markera Snaps som sedda",
"mark_stories_as_seen_locally": "👀 Markera Stories som sedda lokalt",
"conversation_info": "👤 Konversationsinfo",
"e2e_encryption": "🔒 Använd E2E-kryptering",
"message_logger": "📝 Meddelandelogg",
"auto_read": " Auto-läs",
"hide_typing_indicator": "🙈 Dölj skrivindikator"
},
"schedule_scheduled_for": "Schemalagd för {name} om {time}",
"schedule_sending_in": "Skickar om {time}",
@@ -2323,16 +2246,16 @@
"custom_android_id": {
"null": "Använd verkligt Android-ID"
},
"add_friend_source_spoof": {
"added_by_username": "Via Användarnamn",
"added_by_mention": "Via Omnämnande",
"added_by_group_chat": "Via Gruppchatt",
"added_by_qr_code": "Via QR-kod",
"added_by_community": "Via Community",
"added_by_quick_add": "Via Snabbtillägg (hög risk att bli bannad)",
"added_by_spotlight": "Via Spotlight",
"null": "Spoofa inte källa"
},
"add_friend_source_spoof": {
"added_by_username": "Via Användarnamn",
"added_by_mention": "Via Omnämnande",
"added_by_group_chat": "Via Gruppchatt",
"added_by_qr_code": "Via QR-kod",
"added_by_community": "Via Community",
"added_by_quick_add": "Via Snabbtillägg (hög risk att bli bannad)",
"added_by_spotlight": "Via Spotlight",
"null": "Spoofa inte källa"
},
"custom_streaks_expiration_format": {
"null": "Systemstandard"
},
@@ -2439,8 +2362,8 @@
},
"spotlight_comments_username_icon": {
"user": "Användarnamnsikon",
"\ud83d\udc64": "Användarnamnsikon",
"[\ud83d\udc64]": "Användarnamnsikon",
"👤": "Användarnamnsikon",
"[👤]": "Användarnamnsikon",
"default": "Användarnamnsikon",
"no_icon": "Ingen ikon"
},
@@ -2520,11 +2443,11 @@
"phone_calls": "Telefonsamtal"
},
"message_indicators": {
"encryption_indicator": "Lägger till en \ud83d\udd12 ikon bredvid meddelanden som endast har skickats till dig",
"encryption_indicator": "Lägger till en 🔒 ikon bredvid meddelanden som endast har skickats till dig",
"platform_indicator": "Lägger till plattformsikonen från vilken media skickades (t.ex. Android, iOS, Webb)",
"location_indicator": "Lägger till en \ud83d\udccd ikon på snaps när de har skickats med plats aktiverad",
"location_indicator": "Lägger till en 📍 ikon på snaps när de har skickats med plats aktiverad",
"ovf_editor_indicator": "Indikerar om en snap har skickats med OVF Editor",
"director_mode_indicator": "Lägger till en \u270f\ufe0f ikon på snaps när de har skickats med Director Mode, som kan användas för att skicka galleribilder som snaps"
"director_mode_indicator": "Lägger till en ✏️ ikon på snaps när de har skickats med Director Mode, som kan användas för att skicka galleribilder som snaps"
},
"auto_mark_as_read": {
"conversation_read": "Markera konversation som läst när du skickar ett meddelande",
@@ -2748,7 +2671,6 @@
"show_chat_edit_history": "Visa chattredigeringshistorik",
"convert_message": "Konvertera meddelande"
},
"chat_wallpaper_downloader": {
"download_button": "Ladda ner chattbakgrund"
},
@@ -3078,7 +3000,7 @@
"queue_cleared": "Kö rensad och statistik återställd",
"queue_cleared_title": "Kö rensad",
"queue_cleared_reset": "Kö rensad & återställd",
"queue_cleared_feedback": "Rensade {count} köade snaps \u2022 Återställde {processed} behandlat antal",
"queue_cleared_feedback": "Rensade {count} köade snaps Återställde {processed} behandlat antal",
"queue_cleared_feedback_simple": "Återställde {processed} behandlat antal",
"unknown_sender": "Okänd",
"unknown_user": "Okänd användare",

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 Eternal tarafından",
"version_title": "v{versionName} · Eternal tarafından",
"update_title": "PurrfectSnap Güncellemesi",
"update_content": "Sürüm {version} mevcut!",
"update_button": "İndir",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "Görev yok",
"merge_button": "Birleştir",
"summary_active": "{active} aktif \u00b7 {recent} yeni",
"summary_idle": "Boşta \u00b7 {recent} yeni",
"summary_active": "{active} aktif · {recent} yeni",
"summary_idle": "Boşta · {recent} yeni",
"running_count": "{count} çalışıyor",
"clear_button_description": "Görevleri temizle",
"failed_to_open_file": "Dosya açılamadı",
@@ -312,22 +312,22 @@
"remove_selected_tasks_confirm": "{count} görev kaldırılsın mı?",
"remove_all_tasks_confirm": "Tüm görevler kaldırılsın mı?"
},
"features": {
"disabled": "Devre Dışı",
"export_option": "Dışa Aktar",
"import_option": "İçe Aktar",
"reset_option": "Sıfırla",
"config_export_success_toast": "Yapılandırma başarıyla dışa aktarıldı",
"config_import_success_toast": "Yapılandırma başarıyla içe aktarıldı",
"config_import_failure_toast": "Yapılandırma içe aktarılamadı {error}",
"config_export_failure_toast": "Yapılandırma dışa aktarılamadı {error}",
"saved_config_snackbar": "Yapılandırma kaydedildi",
"older_required": "Bu özellik, doğru çalışması için Snapchat v{version} veya daha eskisini gerektirir",
"newer_required": "Bu özellik, doğru çalışması için Snapchat v{version} veya daha yenisini gerektirir",
"search_button": "Ara",
"clear_history": "Arama geçmişini temizle",
"subtitle": "Özellikleri ara ve yönet"
},
"features": {
"disabled": "Devre Dışı",
"export_option": "Dışa Aktar",
"import_option": "İçe Aktar",
"reset_option": "Sıfırla",
"config_export_success_toast": "Yapılandırma başarıyla dışa aktarıldı",
"config_import_success_toast": "Yapılandırma başarıyla içe aktarıldı",
"config_import_failure_toast": "Yapılandırma içe aktarılamadı {error}",
"config_export_failure_toast": "Yapılandırma dışa aktarılamadı {error}",
"saved_config_snackbar": "Yapılandırma kaydedildi",
"older_required": "Bu özellik, doğru çalışması için Snapchat v{version} veya daha eskisini gerektirir",
"newer_required": "Bu özellik, doğru çalışması için Snapchat v{version} veya daha yenisini gerektirir",
"search_button": "Ara",
"clear_history": "Arama geçmişini temizle",
"subtitle": "Özellikleri ara ve yönet"
},
"bypass_status": {
"active": "PurrAura Aktif",
"inactive": "PurrAura Devre Dışı"
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "Arkadaşa Işınlan",
"search_bar": "Ara",
"no_friends_map": "Haritada arkadaş yok",
"no_friends_found": "Arkadaş bulunamadı"
"no_friends_found": "Arkadaş bulunamadı",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,166 @@
},
"features": {
"notices": {
"unstable": "\u26a0 Kararsız",
"ban_risk": "\u26a0 Bu özellik yasaklanmalara neden olabilir",
"internal_behavior": "\u26a0 Bu, Snapchat'in dahili davranışını bozabilir"
},
"options": {
"empty": "Boş",
"walk_radius": {
"empty": "Boş"
},
"spoof_battery_level": {
"empty": "Boş"
},
"custom_android_id": {
"empty": "Boş"
},
"custom_streaks_expiration_format": {
"empty": "Boş"
},
"preferred_transcription_lang": {
"empty": "Boş"
},
"custom_emoji_font": {
"empty": "Boş"
},
"custom_shared_library": {
"empty": "Boş"
},
"custom_resolution": {
"empty": "Boş"
},
"custom_path_format": {
"empty": "Boş"
},
"custom_video_codec": {
"empty": "Boş"
},
"custom_audio_codec": {
"empty": "Boş"
},
"double_tap_chat_action_custom_emoji": {
"empty": "Boş"
},
"unsaveable_messages": {
"blacklist": "Kara liste modu",
"whitelist": "Beyaz liste modu",
"null": "Devre Dışı"
},
"update_check_frequency": {
"daily": "Günlük",
"weekly": "Haftalık",
"monthly": "Aylık"
}
"unstable": " Kararsız",
"ban_risk": " Bu özellik yasaklanmalara neden olabilir",
"internal_behavior": " Bu, Snapchat'in dahili davranışını bozabilir"
},
"properties": {
"global": {
"name": "Küresel",
"description": "Genel modül tercihleri ve varsayılanlar",
"description": "Küresel Snapchat Ayarlarını Düzenle",
"properties": {
"ui_settings": {
"name": "Arayüz Ayarları",
"description": "Geri bildirim ve bildirim (toast) davranışını ayarla",
"better_location": {
"name": "Daha İyi Konum",
"description": "Snapchat Konumunu Geliştirir",
"properties": {
"haptic_feedback": {
"name": "Dokunsal Geri Bildirim",
"description": "Desteklenen etkileşimlerde titreşim"
"spoof_location": {
"name": "Konumu Taklit Et",
"description": "Konumunuzu belirtilen bir konumla taklit eder"
},
"use_system_toasts": {
"name": "Sistem Bildirimlerini Kullan",
"description": "Uygulama içi yer paylaşımları yerine Android bildirimlerini (toast) göster"
"coordinates": {
"name": "Koordinatlar",
"description": "Taklit edilen konumun koordinatlarını ayarla"
},
"walk_radius": {
"name": "Yürüme Yarıçapı",
"description": "Bu yarıçap içinde rastgele dolaş (fit)"
},
"always_update_location": {
"name": "Konumu Her Zaman Güncelle",
"description": "GPS verisi alınmasa bile Snapchat'i konumu güncellemeye zorla"
},
"suspend_location_updates": {
"name": "Konum Güncellemelerini Askıya Al",
"description": "Konumunuzun güncellenmesini engeller"
},
"spoof_battery_level": {
"name": "Pil Seviyesini Taklit Et",
"description": "Haritada cihazınızın pil seviyesini taklit eder\nDeğer 0 ile 100 arasında olmalıdır"
},
"spoof_headphones": {
"name": "Kulaklıkları Taklit Et",
"description": "Haritada müzik dinleme durumunu taklit eder"
},
"show_battery_level": {
"name": "Pil Seviyesini Göster",
"description": "Haritada arkadaşlarınızın pil seviyesini gösterir"
}
}
},
"update_settings": {
"name": "Güncelleme Ayarları",
"description": "Otomatik güncelleme kontrollerini yönet",
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Snapchat Plus özelliklerini etkinleştirir\nBazı sunucu taraflı özellikler çalışmayabilir"
},
"media_upload_quality": {
"name": "Medya Yükleme Kalitesi",
"description": "Medya yükleme kalitesini geçersiz kılar",
"properties": {
"auto_update_check": {
"name": "Otomatik Güncelleme Kontrolü",
"description": "Yeni yapıları otomatik olarak kontrol et"
"force_video_upload_source_quality": {
"name": "Video Yükleme Kaynak Kalitesini Zorla",
"description": "Snapchat'i video yüklerken kaynak kalitesini kullanmaya zorlar\nBunun medyadaki üst verileri kaldırmayabileceğini lütfen unutmayın"
},
"update_check_frequency": {
"name": "Güncelleme Kontrol Sıklığı",
"description": "Güncellemelerin ne sıklıkla kontrol edileceği"
"disable_image_compression": {
"name": "Görüntü Sıkıştırmayı Devre Dışı Bırak",
"description": "Medya yüklerken görüntü sıkıştırmayı devre dışı bırakır"
},
"custom_image_upload_format": {
"name": "Özel Görüntü Yükleme Formatı",
"description": "Özel bir görüntü yükleme formatı ayarlar\nEn iyi kalite için kayıpsız bir format (PNG gibi) seçin"
}
}
},
"disable_confirmation_dialogs": {
"name": "Onay İletişim Kutularını Devre Dışı Bırak",
"description": "Seçilen eylemleri otomatik olarak onaylar"
},
"auto_updater": {
"name": "Otomatik Güncelleyici",
"description": "Yeni güncellemeleri otomatik olarak kontrol eder"
},
"update_settings": {
"name": "Güncelleme Ayarları",
"description": "PurrfectSnap'in güncellemeleri nasıl kontrol edeceğini yönetin",
"properties": {
"auto_update_check": {
"name": "Otomatik Güncelleme Kontrolü"
},
"update_check_frequency": {
"name": "Güncelleme Kontrol Sıklığı"
}
}
},
"ui_settings": {
"name": "Arayüz Ayarları",
"properties": {
"haptic_feedback": {
"name": "Dokunsal Geri Bildirim"
}
}
},
"disable_metrics": {
"name": "Metrikleri Devre Dışı Bırak",
"description": "Belirli analitik verilerin Snapchat'e gönderilmesini engeller"
},
"disable_story_sections": {
"name": "Hikaye Bölümlerini Devre Dışı Bırak",
"description": "Hikayeler sayfasındaki bölümleri kaldırır\nDoğru çalışması için yenileme gerekebilir"
},
"block_ads": {
"name": "Reklamları Engelle",
"description": "Reklamların görüntülenmesini engeller"
},
"disable_custom_tabs": {
"name": "Özel Sekmeleri Devre Dışı Bırak",
"description": "Bağlantıları Web Tarayıcısı yerine desteklenen uygulamalarda açar"
},
"disable_permission_requests": {
"name": "İzin İsteklerini Devre Dışı Bırak",
"description": "Snapchat'in belirli izinleri istemesini engeller"
},
"disable_memories_snap_feed": {
"name": "Anılar Snap Akışını Devre Dışı Bırak",
"description": "Kamerada yukarı kaydırdığınızda Snapchat'in son anıları göstermesini engeller"
},
"spotlight_comments_username": {
"name": "Spotlight Yorumları Kullanıcı Adı",
"description": "Spotlight yorumlarında yazar kullanıcı adını gösterir"
},
"spotlight_comments_username_icon": {
"name": "Spotlight Yorumları Kullanıcı Adı Simgesi",
"description": "Spotlight yorumlarında kullanıcı adlarının yanında hangi simgenin görüntüleneceğini seçin"
},
"bypass_video_length_restriction": {
"name": "Video Uzunluk Kısıtlamalarını Atla",
"description": "Tek: tek bir video gönderir\nBöl: düzenlemeden sonra videoları böler"
},
"default_video_playback_rate": {
"name": "Varsayılan Video Oynatma Hızı",
"description": "Videoların oynatılması için varsayılan hızı ayarlar\nDeğer 0.1 ile 4.0 arasında olmalıdır"
},
"video_playback_rate_slider": {
"name": "Video Oynatma Hızı Kaydırıcısı",
"description": "Video oynatma hızını değiştirmek için opera bağlam menüsüne bir kaydırıcı ekler\nNot: Değişiklikler yalnızca sonraki videolar için geçerlidir"
},
"disable_google_play_dialogs": {
"name": "Google Play Hizmetleri İletişim Kutularını Devre Dışı Bırak",
"description": "Google Play Hizmetleri kullanılabilirlik iletişim kutularının gösterilmesini önler"
},
"default_volume_controls": {
"name": "Varsayılan Ses Kontrolleri",
"description": "Snapchat'i sistem ses kontrollerini kullanmaya zorlar"
},
"disable_telecom_framework": {
"name": "Telekom Çerçevesini Devre Dışı Bırak",
"description": "Snapchat'in Android Telekom çerçevesini kullanmasını engeller\nBu, bir arama sırasındayken müzik dinlemenize olanak tanır"
},
"hide_active_music": {
"name": "Aktif Müziği Gizle",
"description": "Snapchat'in müzik dinlediğinizi bilmesini engeller\nBu, müzik dinlerken ses kontrol düğmelerini kullanarak snap çekmenize olanak tanır"
},
"disable_snap_splitting": {
"name": "Snap Bölmeyi Devre Dışı Bırak",
"description": "Snap'lerin birden fazla parçaya bölünmesini engeller\nGönderdiğiniz resimler videolara dönüşür"
}
}
},
@@ -1143,7 +1220,7 @@
},
"stealth_mode_indicator": {
"name": "Gizli Mod Göstergesi",
"description": "Gizli moddaki konuşmaların yanına bir \ud83d\udc7b emojisi ekler"
"description": "Gizli moddaki konuşmaların yanına bir 👻 emojisi ekler"
},
"edit_text_override": {
"name": "Metin Düzenlemeyi Geçersiz Kıl",
@@ -1671,164 +1748,6 @@
}
}
},
"global": {
"name": "Küresel",
"description": "Küresel Snapchat Ayarlarını Düzenle",
"properties": {
"better_location": {
"name": "Daha İyi Konum",
"description": "Snapchat Konumunu Geliştirir",
"properties": {
"spoof_location": {
"name": "Konumu Taklit Et",
"description": "Konumunuzu belirtilen bir konumla taklit eder"
},
"coordinates": {
"name": "Koordinatlar",
"description": "Taklit edilen konumun koordinatlarını ayarla"
},
"walk_radius": {
"name": "Yürüme Yarıçapı",
"description": "Bu yarıçap içinde rastgele dolaş (fit)"
},
"always_update_location": {
"name": "Konumu Her Zaman Güncelle",
"description": "GPS verisi alınmasa bile Snapchat'i konumu güncellemeye zorla"
},
"suspend_location_updates": {
"name": "Konum Güncellemelerini Askıya Al",
"description": "Konumunuzun güncellenmesini engeller"
},
"spoof_battery_level": {
"name": "Pil Seviyesini Taklit Et",
"description": "Haritada cihazınızın pil seviyesini taklit eder\nDeğer 0 ile 100 arasında olmalıdır"
},
"spoof_headphones": {
"name": "Kulaklıkları Taklit Et",
"description": "Haritada müzik dinleme durumunu taklit eder"
},
"show_battery_level": {
"name": "Pil Seviyesini Göster",
"description": "Haritada arkadaşlarınızın pil seviyesini gösterir"
}
}
},
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Snapchat Plus özelliklerini etkinleştirir\nBazı sunucu taraflı özellikler çalışmayabilir"
},
"media_upload_quality": {
"name": "Medya Yükleme Kalitesi",
"description": "Medya yükleme kalitesini geçersiz kılar",
"properties": {
"force_video_upload_source_quality": {
"name": "Video Yükleme Kaynak Kalitesini Zorla",
"description": "Snapchat'i video yüklerken kaynak kalitesini kullanmaya zorlar\nBunun medyadaki üst verileri kaldırmayabileceğini lütfen unutmayın"
},
"disable_image_compression": {
"name": "Görüntü Sıkıştırmayı Devre Dışı Bırak",
"description": "Medya yüklerken görüntü sıkıştırmayı devre dışı bırakır"
},
"custom_image_upload_format": {
"name": "Özel Görüntü Yükleme Formatı",
"description": "Özel bir görüntü yükleme formatı ayarlar\nEn iyi kalite için kayıpsız bir format (PNG gibi) seçin"
}
}
},
"disable_confirmation_dialogs": {
"name": "Onay İletişim Kutularını Devre Dışı Bırak",
"description": "Seçilen eylemleri otomatik olarak onaylar"
},
"auto_updater": {
"name": "Otomatik Güncelleyici",
"description": "Yeni güncellemeleri otomatik olarak kontrol eder"
},
"update_settings": {
"name": "Güncelleme Ayarları",
"description": "PurrfectSnap'in güncellemeleri nasıl kontrol edeceğini yönetin",
"properties": {
"auto_update_check": {
"name": "Otomatik Güncelleme Kontrolü"
},
"update_check_frequency": {
"name": "Güncelleme Kontrol Sıklığı"
}
}
},
"ui_settings": {
"name": "Arayüz Ayarları",
"properties": {
"haptic_feedback": {
"name": "Dokunsal Geri Bildirim"
}
}
},
"disable_metrics": {
"name": "Metrikleri Devre Dışı Bırak",
"description": "Belirli analitik verilerin Snapchat'e gönderilmesini engeller"
},
"disable_story_sections": {
"name": "Hikaye Bölümlerini Devre Dışı Bırak",
"description": "Hikayeler sayfasındaki bölümleri kaldırır\nDoğru çalışması için yenileme gerekebilir"
},
"block_ads": {
"name": "Reklamları Engelle",
"description": "Reklamların görüntülenmesini engeller"
},
"disable_custom_tabs": {
"name": "Özel Sekmeleri Devre Dışı Bırak",
"description": "Bağlantıları Web Tarayıcısı yerine desteklenen uygulamalarda açar"
},
"disable_permission_requests": {
"name": "İzin İsteklerini Devre Dışı Bırak",
"description": "Snapchat'in belirli izinleri istemesini engeller"
},
"disable_memories_snap_feed": {
"name": "Anılar Snap Akışını Devre Dışı Bırak",
"description": "Kamerada yukarı kaydırdığınızda Snapchat'in son anıları göstermesini engeller"
},
"spotlight_comments_username": {
"name": "Spotlight Yorumları Kullanıcı Adı",
"description": "Spotlight yorumlarında yazar kullanıcı adını gösterir"
},
"spotlight_comments_username_icon": {
"name": "Spotlight Yorumları Kullanıcı Adı Simgesi",
"description": "Spotlight yorumlarında kullanıcı adlarının yanında hangi simgenin görüntüleneceğini seçin"
},
"bypass_video_length_restriction": {
"name": "Video Uzunluk Kısıtlamalarını Atla",
"description": "Tek: tek bir video gönderir\nBöl: düzenlemeden sonra videoları böler"
},
"default_video_playback_rate": {
"name": "Varsayılan Video Oynatma Hızı",
"description": "Videoların oynatılması için varsayılan hızı ayarlar\nDeğer 0.1 ile 4.0 arasında olmalıdır"
},
"video_playback_rate_slider": {
"name": "Video Oynatma Hızı Kaydırıcısı",
"description": "Video oynatma hızını değiştirmek için opera bağlam menüsüne bir kaydırıcı ekler\nNot: Değişiklikler yalnızca sonraki videolar için geçerlidir"
},
"disable_google_play_dialogs": {
"name": "Google Play Hizmetleri İletişim Kutularını Devre Dışı Bırak",
"description": "Google Play Hizmetleri kullanılabilirlik iletişim kutularının gösterilmesini önler"
},
"default_volume_controls": {
"name": "Varsayılan Ses Kontrolleri",
"description": "Snapchat'i sistem ses kontrollerini kullanmaya zorlar"
},
"disable_telecom_framework": {
"name": "Telekom Çerçevesini Devre Dışı Bırak",
"description": "Snapchat'in Android Telekom çerçevesini kullanmasını engeller\nBu, bir arama sırasındayken müzik dinlemenize olanak tanır"
},
"hide_active_music": {
"name": "Aktif Müziği Gizle",
"description": "Snapchat'in müzik dinlediğinizi bilmesini engeller\nBu, müzik dinlerken ses kontrol düğmelerini kullanarak snap çekmenize olanak tanır"
},
"disable_snap_splitting": {
"name": "Snap Bölmeyi Devre Dışı Bırak",
"description": "Snap'lerin birden fazla parçaya bölünmesini engeller\nGönderdiğiniz resimler videolara dönüşür"
}
}
},
"rules": {
"name": "Kurallar",
"description": "Otomasyon kurallarını yapılandır",
@@ -2110,7 +2029,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "Şifreli Mesaj Göstergesi",
"description": "Şifreli mesajların yanına bir \ud83d\udd12 emojisi ekler"
"description": "Şifreli mesajların yanına bir 🔒 emojisi ekler"
},
"force_message_encryption": {
"name": "Mesaj Şifrelemeyi Zorla",
@@ -2190,6 +2109,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "Her Zaman Açık",
"always_dark": "Her Zaman Koyu",
@@ -2207,20 +2130,20 @@
"null": "Gerçek pil seviyesini kullan"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f Otomatik İndir",
"auto_save": "\ud83d\udcac Mesajları Otomatik Kaydet",
"unsaveable_messages": "\u2b07\ufe0f Kaydedilemeyen Mesajlar",
"auto_open_snaps": "\ud83d\udcf7 Snap'leri Otomatik Aç",
"stealth": "\ud83d\udc7b Gizli Mod",
"auto_reply": "\ud83d\udce8 Otomatik Yanıt",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f Gönderilen Mesajları Otomatik Sil",
"mark_snaps_as_seen": "\ud83d\udc40 Snap'leri Görüldü Olarak İşaretle",
"mark_stories_as_seen_locally": "\ud83d\udc40 Hikayeleri Yerel Olarak Görüldü Olarak İşaretle",
"conversation_info": "\ud83d\udc64 Konuşma Bilgisi",
"e2e_encryption": "\ud83d\udd12 Uçtan Uca Şifreleme Kullan",
"message_logger": "\ud83d\udcdd Mesaj Kaydedici",
"auto_read": "\u2705 Otomatik Oku",
"hide_typing_indicator": "\ud83d\ude48 Yazıyor Göstergesini Gizle"
"auto_download": "⬇️ Otomatik İndir",
"auto_save": "💬 Mesajları Otomatik Kaydet",
"unsaveable_messages": "⬇️ Kaydedilemeyen Mesajlar",
"auto_open_snaps": "📷 Snap'leri Otomatik Aç",
"stealth": "👻 Gizli Mod",
"auto_reply": "📨 Otomatik Yanıt",
"auto_delete_sent_messages": "🗑️ Gönderilen Mesajları Otomatik Sil",
"mark_snaps_as_seen": "👀 Snap'leri Görüldü Olarak İşaretle",
"mark_stories_as_seen_locally": "👀 Hikayeleri Yerel Olarak Görüldü Olarak İşaretle",
"conversation_info": "👤 Konuşma Bilgisi",
"e2e_encryption": "🔒 Uçtan Uca Şifreleme Kullan",
"message_logger": "📝 Mesaj Kaydedici",
"auto_read": " Otomatik Oku",
"hide_typing_indicator": "🙈 Yazıyor Göstergesini Gizle"
},
"schedule_scheduled_for": "{name} için {time} içinde zamanlandı",
"schedule_sending_in": "{time} içinde gönderiliyor",
@@ -2439,8 +2362,8 @@
},
"spotlight_comments_username_icon": {
"user": "Kullanıcı Adı Simgesi",
"\ud83d\udc64": "Kullanıcı Adı Simgesi",
"[\ud83d\udc64]": "Kullanıcı Adı Simgesi",
"👤": "Kullanıcı Adı Simgesi",
"[👤]": "Kullanıcı Adı Simgesi",
"default": "Kullanıcı Adı Simgesi",
"no_icon": "Simge yok"
},
@@ -2520,11 +2443,11 @@
"phone_calls": "Telefon Aramaları"
},
"message_indicators": {
"encryption_indicator": "Yalnızca size gönderilen mesajların yanına bir \ud83d\udd12 simgesi ekler",
"encryption_indicator": "Yalnızca size gönderilen mesajların yanına bir 🔒 simgesi ekler",
"platform_indicator": "Bir medyanın gönderildiği platform simgesini ekler (ör. Android, iOS, Web)",
"location_indicator": "Konum etkinken gönderilen snap'lere bir \ud83d\udccd simgesi ekler",
"location_indicator": "Konum etkinken gönderilen snap'lere bir 📍 simgesi ekler",
"ovf_editor_indicator": "Bir snap'in OVF Editör kullanılarak gönderilip gönderilmediğini belirtir",
"director_mode_indicator": "Yönetmen Modu kullanılarak gönderilen snap'lere bir \u270f\ufe0f simgesi ekler, bu mod galeri görüntülerini snap olarak göndermek için kullanılabilir"
"director_mode_indicator": "Yönetmen Modu kullanılarak gönderilen snap'lere bir ✏️ simgesi ekler, bu mod galeri görüntülerini snap olarak göndermek için kullanılabilir"
},
"auto_mark_as_read": {
"conversation_read": "Mesaj gönderirken konuşmayı okundu olarak işaretle",
@@ -2748,7 +2671,6 @@
"show_chat_edit_history": "Sohbet Düzenleme Geçmişini Göster",
"convert_message": "Mesajı Dönüştür"
},
"chat_wallpaper_downloader": {
"download_button": "Sohbet Duvar Kağıdını İndir"
},
@@ -3078,7 +3000,7 @@
"queue_cleared": "Kuyruk temizlendi ve istatistikler sıfırlandı",
"queue_cleared_title": "Kuyruk temizlendi",
"queue_cleared_reset": "Kuyruk Temizlendi ve Sıfırlandı",
"queue_cleared_feedback": "{count} kuyruğa alınmış snap temizlendi \u2022 {processed} işlenmiş sayımı sıfırlandı",
"queue_cleared_feedback": "{count} kuyruğa alınmış snap temizlendi {processed} işlenmiş sayımı sıfırlandı",
"queue_cleared_feedback_simple": "{processed} işlenmiş sayımı sıfırlandı",
"unknown_sender": "Bilinmiyor",
"unknown_user": "Bilinmeyen Kullanıcı",

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 від Eternal",
"version_title": "v{versionName} · від Eternal",
"update_title": "Оновлення PurrfectSnap",
"update_content": "Версія {version} доступна!",
"update_button": "Завантажити",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "Немає завдань",
"merge_button": "Об'єднати",
"summary_active": "{active} активно \u00b7 {recent} нещодавно",
"summary_idle": "Очікування \u00b7 {recent} нещодавно",
"summary_active": "{active} активно · {recent} нещодавно",
"summary_idle": "Очікування · {recent} нещодавно",
"running_count": "{count} виконується",
"clear_button_description": "Очистити завдання",
"failed_to_open_file": "Не вдалося відкрити файл",
@@ -312,22 +312,22 @@
"remove_selected_tasks_confirm": "Видалити {count} завдань?",
"remove_all_tasks_confirm": "Видалити всі завдання?"
},
"features": {
"disabled": "Вимкнено",
"export_option": "Експорт",
"import_option": "Імпорт",
"reset_option": "Скинути",
"config_export_success_toast": "Конфігурацію експортовано успішно",
"config_import_success_toast": "Конфігурацію імпортовано успішно",
"config_import_failure_toast": "Не вдалося імпортувати конфігурацію {error}",
"config_export_failure_toast": "Не вдалося експортувати конфігурацію {error}",
"saved_config_snackbar": "Конфігурацію збережено",
"older_required": "Ця функція вимагає Snapchat v{version} або старішої версії для коректної роботи",
"newer_required": "Ця функція вимагає Snapchat v{version} або новішої версії для коректної роботи",
"search_button": "Пошук",
"clear_history": "Очистити історію пошуку",
"subtitle": "Пошук та керування функціями"
},
"features": {
"disabled": "Вимкнено",
"export_option": "Експорт",
"import_option": "Імпорт",
"reset_option": "Скинути",
"config_export_success_toast": "Конфігурацію експортовано успішно",
"config_import_success_toast": "Конфігурацію імпортовано успішно",
"config_import_failure_toast": "Не вдалося імпортувати конфігурацію {error}",
"config_export_failure_toast": "Не вдалося експортувати конфігурацію {error}",
"saved_config_snackbar": "Конфігурацію збережено",
"older_required": "Ця функція вимагає Snapchat v{version} або старішої версії для коректної роботи",
"newer_required": "Ця функція вимагає Snapchat v{version} або новішої версії для коректної роботи",
"search_button": "Пошук",
"clear_history": "Очистити історію пошуку",
"subtitle": "Пошук та керування функціями"
},
"bypass_status": {
"active": "PurrAura Активна",
"inactive": "PurrAura Неактивна"
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "Телепортуватися до друга",
"search_bar": "Пошук",
"no_friends_map": "Немає друзів на карті",
"no_friends_found": "Друзів не знайдено"
"no_friends_found": "Друзів не знайдено",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,166 @@
},
"features": {
"notices": {
"unstable": "\u26a0 Нестабільно",
"ban_risk": "\u26a0 Ця функція може призвести до банів",
"internal_behavior": "\u26a0 Це може порушити внутрішню поведінку Snapchat"
},
"options": {
"empty": "Порожньо",
"walk_radius": {
"empty": "Порожньо"
},
"spoof_battery_level": {
"empty": "Порожньо"
},
"custom_android_id": {
"empty": "Порожньо"
},
"custom_streaks_expiration_format": {
"empty": "Порожньо"
},
"preferred_transcription_lang": {
"empty": "Порожньо"
},
"custom_emoji_font": {
"empty": "Порожньо"
},
"custom_shared_library": {
"empty": "Порожньо"
},
"custom_resolution": {
"empty": "Порожньо"
},
"custom_path_format": {
"empty": "Порожньо"
},
"custom_video_codec": {
"empty": "Порожньо"
},
"custom_audio_codec": {
"empty": "Порожньо"
},
"double_tap_chat_action_custom_emoji": {
"empty": "Порожньо"
},
"unsaveable_messages": {
"blacklist": "Режим чорного списку",
"whitelist": "Режим білого списку",
"null": "Вимкнено"
},
"update_check_frequency": {
"daily": "Щодня",
"weekly": "Щотижня",
"monthly": "Щомісяця"
}
"unstable": " Нестабільно",
"ban_risk": " Ця функція може призвести до банів",
"internal_behavior": " Це може порушити внутрішню поведінку Snapchat"
},
"properties": {
"global": {
"name": "Глобальні",
"description": "Загальні налаштування модуля та значення за замовчуванням",
"description": "Налаштування глобальних параметрів Snapchat",
"properties": {
"ui_settings": {
"name": "Налаштування інтерфейсу",
"description": "Налаштування зворотного зв'язку та поведінки спливаючих повідомлень",
"better_location": {
"name": "Краще місцезнаходження",
"description": "Покращує місцезнаходження Snapchat",
"properties": {
"haptic_feedback": {
"name": "Вібровідгук",
"description": "Вібрація при підтримуваних взаємодіях"
"spoof_location": {
"name": "Підміна місцезнаходження",
"description": "Підмінює ваше місцезнаходження на вказане"
},
"use_system_toasts": {
"name": "Використовувати системні сповіщення",
"description": "Показувати сповіщення Android замість накладень у програмі"
"coordinates": {
"name": "Координати",
"description": "Встановіть координати підробленого місцезнаходження"
},
"walk_radius": {
"name": "Радіус прогулянки",
"description": "Випадково ходити в межах цього радіусу (фути)"
},
"always_update_location": {
"name": "Завжди оновлювати місцезнаходження",
"description": "Примусово оновлювати місцезнаходження Snapchat, навіть якщо дані GPS не отримані"
},
"suspend_location_updates": {
"name": "Призупинити оновлення місцезнаходження",
"description": "Запобігає оновленню вашого місцезнаходження"
},
"spoof_battery_level": {
"name": "Підміна рівня заряду батареї",
"description": "Підробляє рівень заряду батареї вашого пристрою на карті\nЗначення має бути від 0 до 100"
},
"spoof_headphones": {
"name": "Підміна навушників",
"description": "Підробляє статус прослуховування музики на карті"
},
"show_battery_level": {
"name": "Показати рівень заряду батареї",
"description": "Показує рівень заряду батареї ваших друзів на карті"
}
}
},
"update_settings": {
"name": "Налаштування оновлень",
"description": "Керування автоматичними перевірками оновлень",
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Вмикає функції Snapchat Plus\nДеякі функції на стороні сервера можуть не працювати"
},
"media_upload_quality": {
"name": "Якість завантаження медіа",
"description": "Перевизначає якість завантаження медіа",
"properties": {
"auto_update_check": {
"name": "Автоперевірка оновлень",
"description": еревіряти наявність нових збірок автоматично"
"force_video_upload_source_quality": {
"name": "Примусова якість джерела завантаження відео",
"description": римушує Snapchat використовувати якість джерела під час завантаження відео\nЗверніть увагу, що це може не видалити метадані з медіа"
},
"update_check_frequency": {
"name": "Частота перевірки оновлень",
"description": "Як часто перевіряти оновлення"
"disable_image_compression": {
"name": "Вимкнути стиснення зображень",
"description": "Вимикає стиснення зображень під час завантаження медіа"
},
"custom_image_upload_format": {
"name": "Власний формат завантаження зображень",
"description": "Встановлює власний формат завантаження зображень\nВиберіть формат без втрат (наприклад, PNG) для найкращої якості"
}
}
},
"disable_confirmation_dialogs": {
"name": "Вимкнути діалоги підтвердження",
"description": "Автоматично підтверджує вибрані дії"
},
"auto_updater": {
"name": "Автооновлювач",
"description": "Автоматично перевіряє наявність нових оновлень"
},
"update_settings": {
"name": "Налаштування оновлень",
"description": "Керуйте тим, як PurrfectSnap перевіряє оновлення",
"properties": {
"auto_update_check": {
"name": "Автоперевірка оновлень"
},
"update_check_frequency": {
"name": "Частота перевірки оновлень"
}
}
},
"ui_settings": {
"name": "Налаштування інтерфейсу",
"properties": {
"haptic_feedback": {
"name": "Вібровідгук"
}
}
},
"disable_metrics": {
"name": "Вимкнути метрики",
"description": "Блокує надсилання певних аналітичних даних до Snapchat"
},
"disable_story_sections": {
"name": "Вимкнути розділи історій",
"description": "Видаляє розділи зі сторінки історій\nМоже знадобитися оновлення, щоб працювати належним чином"
},
"block_ads": {
"name": "Блокувати рекламу",
"description": "Запобігає відображенню реклами"
},
"disable_custom_tabs": {
"name": "Вимкнути власні вкладки",
"description": "Відкриває посилання в підтримуваних програмах, а не у веб-браузері"
},
"disable_permission_requests": {
"name": "Вимкнути запити дозволів",
"description": "Запобігає запитам Snapchat на певні дозволи"
},
"disable_memories_snap_feed": {
"name": "Вимкнути стрічку спогадів",
"description": "Запобігає показу Snapchat недавніх спогадів, коли ви свайпаєте вгору в камері"
},
"spotlight_comments_username": {
"name": "Ім'я користувача в коментарях Spotlight",
"description": "Показує ім'я автора в коментарях Spotlight"
},
"spotlight_comments_username_icon": {
"name": "Іконка імені користувача в коментарях Spotlight",
"description": "Виберіть, яка іконка відображатиметься поруч з іменами користувачів у коментарях Spotlight"
},
"bypass_video_length_restriction": {
"name": "Обійти обмеження довжини відео",
"description": "Одиночне: надсилає одне відео\nРозділене: розділяє відео після редагування"
},
"default_video_playback_rate": {
"name": "Швидкість відтворення відео за замовчуванням",
"description": "Встановлює швидкість за замовчуванням для відтворення відео\nЗначення має бути від 0.1 до 4.0"
},
"video_playback_rate_slider": {
"name": "Повзунок швидкості відтворення відео",
"description": "Додає повзунок у контекстне меню opera для зміни швидкості відтворення відео\nПримітка: Зміни застосовуються лише до наступних відео"
},
"disable_google_play_dialogs": {
"name": "Вимкнути діалоги сервісів Google Play",
"description": "Запобігати відображенню діалогів доступності сервісів Google Play"
},
"default_volume_controls": {
"name": "Керування гучністю за замовчуванням",
"description": "Примушує Snapchat використовувати системні елементи керування гучністю"
},
"disable_telecom_framework": {
"name": "Вимкнути Telecom Framework",
"description": "Запобігає використанню Snapchat фреймворку Android Telecom\nЦе дозволяє слухати музику під час дзвінка"
},
"hide_active_music": {
"name": "Приховати активну музику",
"description": "Запобігає тому, щоб Snapchat знав, що ви слухаєте музику\nЦе дозволить вам знімати снапи за допомогою кнопок гучності під час прослуховування музики"
},
"disable_snap_splitting": {
"name": "Вимкнути розділення Снапів",
"description": "Запобігає розділенню Снапів на кілька частин\nЗображення, які ви надсилаєте, перетворяться на відео"
}
}
},
@@ -1143,7 +1220,7 @@
},
"stealth_mode_indicator": {
"name": "Індикатор режиму невидимки",
"description": "Додає емодзі \ud83d\udc7b поруч із розмовами в режимі невидимки"
"description": "Додає емодзі 👻 поруч із розмовами в режимі невидимки"
},
"edit_text_override": {
"name": "Перевизначення редагування тексту",
@@ -1671,164 +1748,6 @@
}
}
},
"global": {
"name": "Глобальні",
"description": "Налаштування глобальних параметрів Snapchat",
"properties": {
"better_location": {
"name": "Краще місцезнаходження",
"description": "Покращує місцезнаходження Snapchat",
"properties": {
"spoof_location": {
"name": "Підміна місцезнаходження",
"description": "Підмінює ваше місцезнаходження на вказане"
},
"coordinates": {
"name": "Координати",
"description": "Встановіть координати підробленого місцезнаходження"
},
"walk_radius": {
"name": "Радіус прогулянки",
"description": "Випадково ходити в межах цього радіусу (фути)"
},
"always_update_location": {
"name": "Завжди оновлювати місцезнаходження",
"description": "Примусово оновлювати місцезнаходження Snapchat, навіть якщо дані GPS не отримані"
},
"suspend_location_updates": {
"name": "Призупинити оновлення місцезнаходження",
"description": "Запобігає оновленню вашого місцезнаходження"
},
"spoof_battery_level": {
"name": "Підміна рівня заряду батареї",
"description": "Підробляє рівень заряду батареї вашого пристрою на карті\nЗначення має бути від 0 до 100"
},
"spoof_headphones": {
"name": "Підміна навушників",
"description": "Підробляє статус прослуховування музики на карті"
},
"show_battery_level": {
"name": "Показати рівень заряду батареї",
"description": "Показує рівень заряду батареї ваших друзів на карті"
}
}
},
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "Вмикає функції Snapchat Plus\nДеякі функції на стороні сервера можуть не працювати"
},
"media_upload_quality": {
"name": "Якість завантаження медіа",
"description": "Перевизначає якість завантаження медіа",
"properties": {
"force_video_upload_source_quality": {
"name": "Примусова якість джерела завантаження відео",
"description": "Примушує Snapchat використовувати якість джерела під час завантаження відео\nЗверніть увагу, що це може не видалити метадані з медіа"
},
"disable_image_compression": {
"name": "Вимкнути стиснення зображень",
"description": "Вимикає стиснення зображень під час завантаження медіа"
},
"custom_image_upload_format": {
"name": "Власний формат завантаження зображень",
"description": "Встановлює власний формат завантаження зображень\nВиберіть формат без втрат (наприклад, PNG) для найкращої якості"
}
}
},
"disable_confirmation_dialogs": {
"name": "Вимкнути діалоги підтвердження",
"description": "Автоматично підтверджує вибрані дії"
},
"auto_updater": {
"name": "Автооновлювач",
"description": "Автоматично перевіряє наявність нових оновлень"
},
"update_settings": {
"name": "Налаштування оновлень",
"description": "Керуйте тим, як PurrfectSnap перевіряє оновлення",
"properties": {
"auto_update_check": {
"name": "Автоперевірка оновлень"
},
"update_check_frequency": {
"name": "Частота перевірки оновлень"
}
}
},
"ui_settings": {
"name": "Налаштування інтерфейсу",
"properties": {
"haptic_feedback": {
"name": "Вібровідгук"
}
}
},
"disable_metrics": {
"name": "Вимкнути метрики",
"description": "Блокує надсилання певних аналітичних даних до Snapchat"
},
"disable_story_sections": {
"name": "Вимкнути розділи історій",
"description": "Видаляє розділи зі сторінки історій\nМоже знадобитися оновлення, щоб працювати належним чином"
},
"block_ads": {
"name": "Блокувати рекламу",
"description": "Запобігає відображенню реклами"
},
"disable_custom_tabs": {
"name": "Вимкнути власні вкладки",
"description": "Відкриває посилання в підтримуваних програмах, а не у веб-браузері"
},
"disable_permission_requests": {
"name": "Вимкнути запити дозволів",
"description": "Запобігає запитам Snapchat на певні дозволи"
},
"disable_memories_snap_feed": {
"name": "Вимкнути стрічку спогадів",
"description": "Запобігає показу Snapchat недавніх спогадів, коли ви свайпаєте вгору в камері"
},
"spotlight_comments_username": {
"name": "Ім'я користувача в коментарях Spotlight",
"description": "Показує ім'я автора в коментарях Spotlight"
},
"spotlight_comments_username_icon": {
"name": "Іконка імені користувача в коментарях Spotlight",
"description": "Виберіть, яка іконка відображатиметься поруч з іменами користувачів у коментарях Spotlight"
},
"bypass_video_length_restriction": {
"name": "Обійти обмеження довжини відео",
"description": "Одиночне: надсилає одне відео\nРозділене: розділяє відео після редагування"
},
"default_video_playback_rate": {
"name": "Швидкість відтворення відео за замовчуванням",
"description": "Встановлює швидкість за замовчуванням для відтворення відео\nЗначення має бути від 0.1 до 4.0"
},
"video_playback_rate_slider": {
"name": "Повзунок швидкості відтворення відео",
"description": "Додає повзунок у контекстне меню opera для зміни швидкості відтворення відео\nПримітка: Зміни застосовуються лише до наступних відео"
},
"disable_google_play_dialogs": {
"name": "Вимкнути діалоги сервісів Google Play",
"description": "Запобігати відображенню діалогів доступності сервісів Google Play"
},
"default_volume_controls": {
"name": "Керування гучністю за замовчуванням",
"description": "Примушує Snapchat використовувати системні елементи керування гучністю"
},
"disable_telecom_framework": {
"name": "Вимкнути Telecom Framework",
"description": "Запобігає використанню Snapchat фреймворку Android Telecom\nЦе дозволяє слухати музику під час дзвінка"
},
"hide_active_music": {
"name": "Приховати активну музику",
"description": "Запобігає тому, щоб Snapchat знав, що ви слухаєте музику\nЦе дозволить вам знімати снапи за допомогою кнопок гучності під час прослуховування музики"
},
"disable_snap_splitting": {
"name": "Вимкнути розділення Снапів",
"description": "Запобігає розділенню Снапів на кілька частин\nЗображення, які ви надсилаєте, перетворяться на відео"
}
}
},
"rules": {
"name": "Правила",
"description": "Налаштування правил автоматизації",
@@ -2110,7 +2029,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "Індикатор зашифрованого повідомлення",
"description": "Додає емодзі \ud83d\udd12 поруч із зашифрованими повідомленнями"
"description": "Додає емодзі 🔒 поруч із зашифрованими повідомленнями"
},
"force_message_encryption": {
"name": "Примусове шифрування повідомлень",
@@ -2190,6 +2109,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "Завжди світла",
"always_dark": "Завжди темна",
@@ -2207,20 +2130,20 @@
"null": "Використовувати реальний рівень заряду"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f Автозавантаження",
"auto_save": "\ud83d\udcac Автозбереження повідомлень",
"unsaveable_messages": "\u2b07\ufe0f Повідомлення, що не зберігаються",
"auto_open_snaps": "\ud83d\udcf7 Авто-відкриття Снапів",
"stealth": "\ud83d\udc7b Режим невидимки",
"auto_reply": "\ud83d\udce8 Автовідповідь",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f Автовидалення надісланих повідомлень",
"mark_snaps_as_seen": "\ud83d\udc40 Позначити Снапи як переглянуті",
"mark_stories_as_seen_locally": "\ud83d\udc40 Позначити Історії як переглянуті локально",
"conversation_info": "\ud83d\udc64 Інформація про розмову",
"e2e_encryption": "\ud83d\udd12 Використовувати шифрування E2E",
"message_logger": "\ud83d\udcdd Логер повідомлень",
"auto_read": "\u2705 Автопрочитання",
"hide_typing_indicator": "\ud83d\ude48 Приховати індикатор набору тексту"
"auto_download": "⬇️ Автозавантаження",
"auto_save": "💬 Автозбереження повідомлень",
"unsaveable_messages": "⬇️ Повідомлення, що не зберігаються",
"auto_open_snaps": "📷 Авто-відкриття Снапів",
"stealth": "👻 Режим невидимки",
"auto_reply": "📨 Автовідповідь",
"auto_delete_sent_messages": "🗑️ Автовидалення надісланих повідомлень",
"mark_snaps_as_seen": "👀 Позначити Снапи як переглянуті",
"mark_stories_as_seen_locally": "👀 Позначити Історії як переглянуті локально",
"conversation_info": "👤 Інформація про розмову",
"e2e_encryption": "🔒 Використовувати шифрування E2E",
"message_logger": "📝 Логер повідомлень",
"auto_read": " Автопрочитання",
"hide_typing_indicator": "🙈 Приховати індикатор набору тексту"
},
"schedule_scheduled_for": "Заплановано для {name} через {time}",
"schedule_sending_in": "Надсилання через {time}",
@@ -2323,16 +2246,16 @@
"custom_android_id": {
"null": "Використовувати реальний Android ID"
},
"add_friend_source_spoof": {
"added_by_username": "За іменем користувача",
"added_by_mention": "За згадкою",
"added_by_group_chat": "Через груповий чат",
"added_by_qr_code": "Через QR-код",
"added_by_community": "Через спільноту",
"added_by_quick_add": "Через швидке додавання (високий ризик бану)",
"added_by_spotlight": "Через Spotlight",
"null": "Не підмінювати джерело"
},
"add_friend_source_spoof": {
"added_by_username": "За іменем користувача",
"added_by_mention": "За згадкою",
"added_by_group_chat": "Через груповий чат",
"added_by_qr_code": "Через QR-код",
"added_by_community": "Через спільноту",
"added_by_quick_add": "Через швидке додавання (високий ризик бану)",
"added_by_spotlight": "Через Spotlight",
"null": "Не підмінювати джерело"
},
"custom_streaks_expiration_format": {
"null": "Системне за замовчуванням"
},
@@ -2438,8 +2361,8 @@
},
"spotlight_comments_username_icon": {
"user": "Іконка імені користувача",
"\ud83d\udc64": "Іконка імені користувача",
"[\ud83d\udc64]": "Іконка імені користувача",
"👤": "Іконка імені користувача",
"[👤]": "Іконка імені користувача",
"default": "Іконка імені користувача",
"no_icon": "Без іконки"
},
@@ -2519,11 +2442,11 @@
"phone_calls": "Телефонні дзвінки"
},
"message_indicators": {
"encryption_indicator": "Додає іконку \ud83d\udd12 поруч із повідомленнями, які були надіслані лише вам",
"encryption_indicator": "Додає іконку 🔒 поруч із повідомленнями, які були надіслані лише вам",
"platform_indicator": "Додає іконку платформи, з якої було надіслано медіа (наприклад, Android, iOS, Web)",
"location_indicator": "Додає іконку \ud83d\udccd до снапів, коли вони були надіслані з увімкненим місцезнаходженням",
"location_indicator": "Додає іконку 📍 до снапів, коли вони були надіслані з увімкненим місцезнаходженням",
"ovf_editor_indicator": "Вказує, чи було снап надіслано за допомогою редактора OVF",
"director_mode_indicator": "Додає іконку \u270f\ufe0f до снапів, коли вони були надіслані за допомогою режиму режисера, який можна використовувати для надсилання зображень з галереї як снапів"
"director_mode_indicator": "Додає іконку ✏️ до снапів, коли вони були надіслані за допомогою режиму режисера, який можна використовувати для надсилання зображень з галереї як снапів"
},
"auto_mark_as_read": {
"conversation_read": "Позначати розмову як прочитану під час надсилання повідомлення",
@@ -2747,7 +2670,6 @@
"show_chat_edit_history": "Показати історію редагування чату",
"convert_message": "Конвертувати повідомлення"
},
"chat_wallpaper_downloader": {
"download_button": "Завантажити шпалери чату"
},
@@ -3077,7 +2999,7 @@
"queue_cleared": "Чергу очищено і статистику скинуто",
"queue_cleared_title": "Чергу очищено",
"queue_cleared_reset": "Чергу очищено та скинуто",
"queue_cleared_feedback": "Очищено {count} снапів у черзі \u2022 Скинуто лічильник оброблених: {processed}",
"queue_cleared_feedback": "Очищено {count} снапів у черзі Скинуто лічильник оброблених: {processed}",
"queue_cleared_feedback_simple": "Скинуто лічильник оброблених: {processed}",
"unknown_sender": "Невідомий",
"unknown_user": "Невідомий користувач",

View File

@@ -196,7 +196,7 @@
},
"sections": {
"home": {
"version_title": "v{versionName} \u00b7 由 Eternal 开发",
"version_title": "v{versionName} · 由 Eternal 开发",
"update_title": "PurrfectSnap 更新",
"update_content": "版本 {version} 可用!",
"update_button": "下载",
@@ -300,8 +300,8 @@
"tasks": {
"no_tasks": "无任务",
"merge_button": "合并",
"summary_active": "{active} 个活跃 \u00b7 {recent} 个最近",
"summary_idle": "空闲 \u00b7 {recent} 个最近",
"summary_active": "{active} 个活跃 · {recent} 个最近",
"summary_idle": "空闲 · {recent} 个最近",
"running_count": "{count} 个正在运行",
"clear_button_description": "清除任务",
"failed_to_open_file": "打开文件失败",
@@ -312,22 +312,22 @@
"remove_selected_tasks_confirm": "移除 {count} 个任务?",
"remove_all_tasks_confirm": "移除所有任务?"
},
"features": {
"disabled": "已禁用",
"export_option": "导出",
"import_option": "导入",
"reset_option": "重置",
"config_export_success_toast": "配置导出成功",
"config_import_success_toast": "配置导入成功",
"config_import_failure_toast": "导入配置失败 {error}",
"config_export_failure_toast": "导出配置失败 {error}",
"saved_config_snackbar": "配置已保存",
"older_required": "此功能需要 Snapchat v{version} 或更旧版本才能正常工作",
"newer_required": "此功能需要 Snapchat v{version} 或更新版本才能正常工作",
"search_button": "搜索",
"clear_history": "清除搜索历史",
"subtitle": "搜索和管理功能"
},
"features": {
"disabled": "已禁用",
"export_option": "导出",
"import_option": "导入",
"reset_option": "重置",
"config_export_success_toast": "配置导出成功",
"config_import_success_toast": "配置导入成功",
"config_import_failure_toast": "导入配置失败 {error}",
"config_export_failure_toast": "导出配置失败 {error}",
"saved_config_snackbar": "配置已保存",
"older_required": "此功能需要 Snapchat v{version} 或更旧版本才能正常工作",
"newer_required": "此功能需要 Snapchat v{version} 或更新版本才能正常工作",
"search_button": "搜索",
"clear_history": "清除搜索历史",
"subtitle": "搜索和管理功能"
},
"bypass_status": {
"active": "PurrAura 已激活",
"inactive": "PurrAura 未激活"
@@ -442,7 +442,9 @@
"teleport_to_friend_title": "传送到好友",
"search_bar": "搜索",
"no_friends_map": "地图上没有好友",
"no_friends_found": "未找到好友"
"no_friends_found": "未找到好友",
"include_saved_locations": "Include Saved Locations",
"include_saved_locations_description": "Export your saved location coordinates"
}
},
"dialogs": {
@@ -826,91 +828,166 @@
},
"features": {
"notices": {
"unstable": "\u26a0 不稳定",
"ban_risk": "\u26a0 此功能可能导致封号",
"internal_behavior": "\u26a0 这可能会破坏 Snapchat 的内部行为"
},
"options": {
"empty": "空",
"walk_radius": {
"empty": "空"
},
"spoof_battery_level": {
"empty": "空"
},
"custom_android_id": {
"empty": "空"
},
"custom_streaks_expiration_format": {
"empty": "空"
},
"preferred_transcription_lang": {
"empty": "空"
},
"custom_emoji_font": {
"empty": "空"
},
"custom_shared_library": {
"empty": "空"
},
"custom_resolution": {
"empty": "空"
},
"custom_path_format": {
"empty": "空"
},
"custom_video_codec": {
"empty": "空"
},
"custom_audio_codec": {
"empty": "空"
},
"double_tap_chat_action_custom_emoji": {
"empty": "空"
},
"unsaveable_messages": {
"blacklist": "黑名单模式",
"whitelist": "白名单模式",
"null": "已禁用"
},
"update_check_frequency": {
"daily": "每天",
"weekly": "每周",
"monthly": "每月"
}
"unstable": " 不稳定",
"ban_risk": " 此功能可能导致封号",
"internal_behavior": " 这可能会破坏 Snapchat 的内部行为"
},
"properties": {
"global": {
"name": "全局",
"description": "通用模块偏好和默认值",
"description": "调整全局 Snapchat 设置",
"properties": {
"ui_settings": {
"name": "界面设置",
"description": "调整反馈和 Toast 行为",
"better_location": {
"name": "更好的定位",
"description": "增强 Snapchat 定位",
"properties": {
"haptic_feedback": {
"name": "触觉反馈",
"description": "在支持的交互上振动"
"spoof_location": {
"name": "伪装位置",
"description": "将您的位置伪装到指定位置"
},
"use_system_toasts": {
"name": "使用系统 Toast",
"description": "显示 Android 系统 Toast 而不是应用内悬浮提示"
"coordinates": {
"name": "坐标",
"description": "设置伪装位置的坐标"
},
"walk_radius": {
"name": "行走半径",
"description": "在此半径内随机走动 (ft)"
},
"always_update_location": {
"name": "始终更新位置",
"description": "即使没有收到 GPS 数据也强制 Snapchat 更新位置"
},
"suspend_location_updates": {
"name": "暂停位置更新",
"description": "防止您的位置被更新"
},
"spoof_battery_level": {
"name": "伪装电池电量",
"description": "在地图上伪装您设备的电池电量\n值必须在 0 到 100 之间"
},
"spoof_headphones": {
"name": "伪装耳机",
"description": "在地图上伪装听音乐的状态"
},
"show_battery_level": {
"name": "显示电池电量",
"description": "在地图上显示您好友的电池电量"
}
}
},
"update_settings": {
"name": "更新设置",
"description": "控制自动更新检查",
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "启用 Snapchat Plus 功能\n某些服务器端功能可能无法工作"
},
"media_upload_quality": {
"name": "媒体上传质量",
"description": "覆盖媒体上传质量",
"properties": {
"auto_update_check": {
"name": "自动更新检查",
"description": "自动检查新版本"
"force_video_upload_source_quality": {
"name": "强制视频上传源质量",
"description": "上传视频时强制 Snapchat 使用源质量\n请注意这可能不会从媒体中移除元数据"
},
"update_check_frequency": {
"name": "更新检查频率",
"description": "检查更新的频率"
"disable_image_compression": {
"name": "禁用图像压缩",
"description": "上传媒体时禁用图像压缩"
},
"custom_image_upload_format": {
"name": "自定义图像上传格式",
"description": "设置自定义图像上传格式\n选择无损格式如 PNG以获得最佳质量"
}
}
},
"disable_confirmation_dialogs": {
"name": "禁用确认对话框",
"description": "自动确认选定的操作"
},
"auto_updater": {
"name": "自动更新器",
"description": "自动检查新更新"
},
"update_settings": {
"name": "更新设置",
"description": "控制 PurrfectSnap 如何检查更新",
"properties": {
"auto_update_check": {
"name": "自动更新检查"
},
"update_check_frequency": {
"name": "更新检查频率"
}
}
},
"ui_settings": {
"name": "界面设置",
"properties": {
"haptic_feedback": {
"name": "触觉反馈"
}
}
},
"disable_metrics": {
"name": "禁用指标",
"description": "阻止向 Snapchat 发送特定的分析数据"
},
"disable_story_sections": {
"name": "禁用故事部分",
"description": "从故事页面移除部分\n可能需要刷新才能正常工作"
},
"block_ads": {
"name": "拦截广告",
"description": "防止显示广告"
},
"disable_custom_tabs": {
"name": "禁用自定义标签页",
"description": "在支持的应用程序中打开链接,而不是在内置浏览器中"
},
"disable_permission_requests": {
"name": "禁用权限请求",
"description": "防止 Snapchat 请求特定权限"
},
"disable_memories_snap_feed": {
"name": "禁用回忆 Snap 流",
"description": "在相机界面向上滑动时,防止 Snapchat 显示最近的回忆"
},
"spotlight_comments_username": {
"name": "聚光灯评论用户名",
"description": "在聚光灯评论中显示作者用户名"
},
"spotlight_comments_username_icon": {
"name": "聚光灯评论用户名图标",
"description": "选择在聚光灯评论中用户名旁边显示的图标"
},
"bypass_video_length_restriction": {
"name": "绕过视频长度限制",
"description": "单一:发送单个视频\n拆分编辑后拆分视频"
},
"default_video_playback_rate": {
"name": "默认视频播放速率",
"description": "设置视频播放的默认速度\n值必须在 0.1 和 4.0 之间"
},
"video_playback_rate_slider": {
"name": "视频播放速率滑块",
"description": "在 Opera 上下文菜单中添加滑块以更改视频播放速率\n注意更改仅适用于后续视频"
},
"disable_google_play_dialogs": {
"name": "禁用 Google Play 服务对话框",
"description": "防止显示 Google Play 服务可用性对话框"
},
"default_volume_controls": {
"name": "默认音量控制",
"description": "强制 Snapchat 使用系统音量控制"
},
"disable_telecom_framework": {
"name": "禁用电信框架",
"description": "防止 Snapchat 使用 Android 电信框架\n这允许您在通话时听音乐"
},
"hide_active_music": {
"name": "隐藏活跃音乐",
"description": "防止 Snapchat 知道您正在听音乐\n这将允许您在听音乐时使用音量键拍摄 Snap"
},
"disable_snap_splitting": {
"name": "禁用 Snap 拆分",
"description": "防止 Snap 被拆分成多个部分\n您发送的图片将变成视频"
}
}
},
@@ -1143,7 +1220,7 @@
},
"stealth_mode_indicator": {
"name": "隐身模式指示器",
"description": "在处于隐身模式的对话旁边添加 \ud83d\udc7b 表情符号"
"description": "在处于隐身模式的对话旁边添加 👻 表情符号"
},
"edit_text_override": {
"name": "编辑文本覆盖",
@@ -1671,164 +1748,6 @@
}
}
},
"global": {
"name": "全局",
"description": "调整全局 Snapchat 设置",
"properties": {
"better_location": {
"name": "更好的定位",
"description": "增强 Snapchat 定位",
"properties": {
"spoof_location": {
"name": "伪装位置",
"description": "将您的位置伪装到指定位置"
},
"coordinates": {
"name": "坐标",
"description": "设置伪装位置的坐标"
},
"walk_radius": {
"name": "行走半径",
"description": "在此半径内随机走动 (ft)"
},
"always_update_location": {
"name": "始终更新位置",
"description": "即使没有收到 GPS 数据也强制 Snapchat 更新位置"
},
"suspend_location_updates": {
"name": "暂停位置更新",
"description": "防止您的位置被更新"
},
"spoof_battery_level": {
"name": "伪装电池电量",
"description": "在地图上伪装您设备的电池电量\n值必须在 0 到 100 之间"
},
"spoof_headphones": {
"name": "伪装耳机",
"description": "在地图上伪装听音乐的状态"
},
"show_battery_level": {
"name": "显示电池电量",
"description": "在地图上显示您好友的电池电量"
}
}
},
"snapchat_plus": {
"name": "Snapchat Plus",
"description": "启用 Snapchat Plus 功能\n某些服务器端功能可能无法工作"
},
"media_upload_quality": {
"name": "媒体上传质量",
"description": "覆盖媒体上传质量",
"properties": {
"force_video_upload_source_quality": {
"name": "强制视频上传源质量",
"description": "上传视频时强制 Snapchat 使用源质量\n请注意这可能不会从媒体中移除元数据"
},
"disable_image_compression": {
"name": "禁用图像压缩",
"description": "上传媒体时禁用图像压缩"
},
"custom_image_upload_format": {
"name": "自定义图像上传格式",
"description": "设置自定义图像上传格式\n选择无损格式如 PNG以获得最佳质量"
}
}
},
"disable_confirmation_dialogs": {
"name": "禁用确认对话框",
"description": "自动确认选定的操作"
},
"auto_updater": {
"name": "自动更新器",
"description": "自动检查新更新"
},
"update_settings": {
"name": "更新设置",
"description": "控制 PurrfectSnap 如何检查更新",
"properties": {
"auto_update_check": {
"name": "自动更新检查"
},
"update_check_frequency": {
"name": "更新检查频率"
}
}
},
"ui_settings": {
"name": "界面设置",
"properties": {
"haptic_feedback": {
"name": "触觉反馈"
}
}
},
"disable_metrics": {
"name": "禁用指标",
"description": "阻止向 Snapchat 发送特定的分析数据"
},
"disable_story_sections": {
"name": "禁用故事部分",
"description": "从故事页面移除部分\n可能需要刷新才能正常工作"
},
"block_ads": {
"name": "拦截广告",
"description": "防止显示广告"
},
"disable_custom_tabs": {
"name": "禁用自定义标签页",
"description": "在支持的应用程序中打开链接,而不是在内置浏览器中"
},
"disable_permission_requests": {
"name": "禁用权限请求",
"description": "防止 Snapchat 请求特定权限"
},
"disable_memories_snap_feed": {
"name": "禁用回忆 Snap 流",
"description": "在相机界面向上滑动时,防止 Snapchat 显示最近的回忆"
},
"spotlight_comments_username": {
"name": "聚光灯评论用户名",
"description": "在聚光灯评论中显示作者用户名"
},
"spotlight_comments_username_icon": {
"name": "聚光灯评论用户名图标",
"description": "选择在聚光灯评论中用户名旁边显示的图标"
},
"bypass_video_length_restriction": {
"name": "绕过视频长度限制",
"description": "单一:发送单个视频\n拆分编辑后拆分视频"
},
"default_video_playback_rate": {
"name": "默认视频播放速率",
"description": "设置视频播放的默认速度\n值必须在 0.1 和 4.0 之间"
},
"video_playback_rate_slider": {
"name": "视频播放速率滑块",
"description": "在 Opera 上下文菜单中添加滑块以更改视频播放速率\n注意更改仅适用于后续视频"
},
"disable_google_play_dialogs": {
"name": "禁用 Google Play 服务对话框",
"description": "防止显示 Google Play 服务可用性对话框"
},
"default_volume_controls": {
"name": "默认音量控制",
"description": "强制 Snapchat 使用系统音量控制"
},
"disable_telecom_framework": {
"name": "禁用电信框架",
"description": "防止 Snapchat 使用 Android 电信框架\n这允许您在通话时听音乐"
},
"hide_active_music": {
"name": "隐藏活跃音乐",
"description": "防止 Snapchat 知道您正在听音乐\n这将允许您在听音乐时使用音量键拍摄 Snap"
},
"disable_snap_splitting": {
"name": "禁用 Snap 拆分",
"description": "防止 Snap 被拆分成多个部分\n您发送的图片将变成视频"
}
}
},
"rules": {
"name": "规则",
"description": "配置自动化规则",
@@ -2110,7 +2029,7 @@
"properties": {
"encrypted_message_indicator": {
"name": "加密消息指示器",
"description": "在加密消息旁边添加 \ud83d\udd12 表情符号"
"description": "在加密消息旁边添加 🔒 表情符号"
},
"force_message_encryption": {
"name": "强制消息加密",
@@ -2190,6 +2109,10 @@
}
},
"options": {
"location_search_provider": {
"osm": "OpenStreetMap (Free)",
"google_maps": "Google Maps"
},
"app_appearance": {
"always_light": "始终浅色",
"always_dark": "始终深色",
@@ -2207,20 +2130,20 @@
"null": "使用真实电池电量"
},
"friend_feed_menu_buttons": {
"auto_download": "\u2b07\ufe0f 自动下载",
"auto_save": "\ud83d\udcac 自动保存消息",
"unsaveable_messages": "\u2b07\ufe0f 不可保存的消息",
"auto_open_snaps": "\ud83d\udcf7 自动打开 Snap",
"stealth": "\ud83d\udc7b 隐身模式",
"auto_reply": "\ud83d\udce8 自动回复",
"auto_delete_sent_messages": "\ud83d\uddd1\ufe0f 自动删除已发送消息",
"mark_snaps_as_seen": "\ud83d\udc40 标记 Snap 为已查看",
"mark_stories_as_seen_locally": "\ud83d\udc40 本地标记故事为已查看",
"conversation_info": "\ud83d\udc64 对话信息",
"e2e_encryption": "\ud83d\udd12 使用端到端加密",
"message_logger": "\ud83d\udcdd 消息记录器",
"auto_read": "\u2705 自动已读",
"hide_typing_indicator": "\ud83d\ude48 隐藏输入指示器"
"auto_download": "⬇️ 自动下载",
"auto_save": "💬 自动保存消息",
"unsaveable_messages": "⬇️ 不可保存的消息",
"auto_open_snaps": "📷 自动打开 Snap",
"stealth": "👻 隐身模式",
"auto_reply": "📨 自动回复",
"auto_delete_sent_messages": "🗑️ 自动删除已发送消息",
"mark_snaps_as_seen": "👀 标记 Snap 为已查看",
"mark_stories_as_seen_locally": "👀 本地标记故事为已查看",
"conversation_info": "👤 对话信息",
"e2e_encryption": "🔒 使用端到端加密",
"message_logger": "📝 消息记录器",
"auto_read": " 自动已读",
"hide_typing_indicator": "🙈 隐藏输入指示器"
},
"schedule_scheduled_for": "预定给 {name},时间 {time}",
"schedule_sending_in": "{time} 后发送",
@@ -2439,8 +2362,8 @@
},
"spotlight_comments_username_icon": {
"user": "用户名图标",
"\ud83d\udc64": "用户名图标",
"[\ud83d\udc64]": "用户名图标",
"👤": "用户名图标",
"[👤]": "用户名图标",
"default": "用户名图标",
"no_icon": "无图标"
},
@@ -2520,11 +2443,11 @@
"phone_calls": "电话"
},
"message_indicators": {
"encryption_indicator": "在仅发送给您的消息旁边添加 \ud83d\udd12 图标",
"encryption_indicator": "在仅发送给您的消息旁边添加 🔒 图标",
"platform_indicator": "添加媒体发送来源的平台图标 (例如 Android, iOS, Web)",
"location_indicator": "在启用位置发送的 Snap 上添加 \ud83d\udccd 图标",
"location_indicator": "在启用位置发送的 Snap 上添加 📍 图标",
"ovf_editor_indicator": "指示 Snap 是否使用 OVF 编辑器发送",
"director_mode_indicator": "在使用导演模式发送的 Snap 上添加 \u270f\ufe0f 图标,这可用于将相册图片作为 Snap 发送"
"director_mode_indicator": "在使用导演模式发送的 Snap 上添加 ✏️ 图标,这可用于将相册图片作为 Snap 发送"
},
"auto_mark_as_read": {
"conversation_read": "发送消息时将对话标记为已读",
@@ -2748,7 +2671,6 @@
"show_chat_edit_history": "显示聊天编辑历史",
"convert_message": "转换消息"
},
"chat_wallpaper_downloader": {
"download_button": "下载聊天壁纸"
},
@@ -3078,7 +3000,7 @@
"queue_cleared": "队列已清除且统计数据已重置",
"queue_cleared_title": "队列已清除",
"queue_cleared_reset": "队列已清除并重置",
"queue_cleared_feedback": "清除了 {count} 个排队的 Snap \u2022 重置了 {processed} 个已处理计数",
"queue_cleared_feedback": "清除了 {count} 个排队的 Snap 重置了 {processed} 个已处理计数",
"queue_cleared_feedback_simple": "重置了 {processed} 个已处理计数",
"unknown_sender": "未知",
"unknown_user": "未知用户",

View File

@@ -74,11 +74,12 @@ open class ConfigContainer(
params: ConfigParamsBuilder = {}
) = registerProperty(key, DataProcessors.INT_COLOR, PropertyValue(defaultValue, defaultValues = defaultValue?.let { listOf(it) }), params)
fun toJson(exportSensitiveData: Boolean = true): JsonObject {
fun toJson(exportSensitiveData: Boolean = true, includeSavedLocations: Boolean = true): JsonObject {
val json = JsonObject()
properties.forEach { (propertyKey, propertyValue) ->
if (!exportSensitiveData && propertyKey.params.flags.contains(ConfigFlag.SENSITIVE)) return@forEach
val serializedValue = propertyValue.getRaw()?.let { propertyKey.dataType.serializeAny(it, exportSensitiveData) }
if (!includeSavedLocations && propertyKey.dataType.type == DataProcessors.Type.MAP_COORDINATES) return@forEach
val serializedValue = propertyValue.getRaw()?.let { propertyKey.dataType.serializeAny(it, exportSensitiveData, includeSavedLocations) }
json.add(propertyKey.name, serializedValue)
}
return json

View File

@@ -22,17 +22,17 @@ object DataProcessors {
class PropertyDataProcessor<T>
internal constructor(
val type: Type,
private val serialize: (T, exportSensitiveData: Boolean) -> JsonElement,
private val serialize: (T, exportSensitiveData: Boolean, includeSavedLocations: Boolean) -> JsonElement,
private val deserialize: (JsonElement) -> T
) {
@Suppress("UNCHECKED_CAST")
fun serializeAny(value: Any, exportSensitiveData: Boolean) = serialize(value as T, exportSensitiveData)
fun serializeAny(value: Any, exportSensitiveData: Boolean, includeSavedLocations: Boolean) = serialize(value as T, exportSensitiveData, includeSavedLocations)
fun deserializeAny(value: JsonElement) = deserialize(value)
}
val STRING = PropertyDataProcessor(
type = Type.STRING,
serialize = { it, _ ->
serialize = { it, _, _ ->
if (it != null) JsonPrimitive(it)
else JsonNull.INSTANCE
},
@@ -44,7 +44,7 @@ object DataProcessors {
val BOOLEAN = PropertyDataProcessor(
type = Type.BOOLEAN,
serialize = { it, _ ->
serialize = { it, _, _ ->
if (it) JsonPrimitive(true)
else JsonPrimitive(false)
},
@@ -53,19 +53,19 @@ object DataProcessors {
val INTEGER = PropertyDataProcessor(
type = Type.INTEGER,
serialize = { it, _ -> JsonPrimitive(it) },
serialize = { it, _, _ -> JsonPrimitive(it) },
deserialize = { it.asInt },
)
val FLOAT = PropertyDataProcessor(
type = Type.FLOAT,
serialize = { it, _ -> JsonPrimitive(it) },
serialize = { it, _, _ -> JsonPrimitive(it) },
deserialize = { it.asFloat },
)
val STRING_MULTIPLE_SELECTION = PropertyDataProcessor(
type = Type.STRING_MULTIPLE_SELECTION,
serialize = { it, _ -> JsonArray().apply { it.forEach { add(it) } } },
serialize = { it, _, _ -> JsonArray().apply { it.forEach { add(it) } } },
deserialize = { obj ->
obj.asJsonArray.map { it.asString }.toMutableList()
},
@@ -73,13 +73,13 @@ object DataProcessors {
val STRING_UNIQUE_SELECTION = PropertyDataProcessor(
type = Type.STRING_UNIQUE_SELECTION,
serialize = { it, _ -> JsonPrimitive(it) },
serialize = { it, _, _ -> JsonPrimitive(it) },
deserialize = { obj -> obj.takeIf { !it.isJsonNull }?.asString?.takeIf { it != "false" && it != "true" } }
)
val MAP_COORDINATES = PropertyDataProcessor(
type = Type.MAP_COORDINATES,
serialize = { it, _ ->
serialize = { it, _, _ ->
JsonObject().apply {
addProperty("lat", it.first.takeIf { it in -90.0..90.0 } ?: 0.0)
addProperty("lng", it.second.takeIf { it in -180.0..180.0 } ?: 0.0)
@@ -94,7 +94,7 @@ object DataProcessors {
val INT_COLOR = PropertyDataProcessor(
type = Type.INT_COLOR,
serialize = { it, _ ->
serialize = { it, _, _ ->
it?.let { JsonPrimitive(it) } ?: JsonNull.INSTANCE
},
deserialize = { if (it.isJsonNull) null else it.asString.toIntOrNull() },
@@ -102,10 +102,10 @@ object DataProcessors {
fun <T : ConfigContainer> container(container: T) = PropertyDataProcessor(
type = Type.CONTAINER,
serialize = { it, exportSensitiveData ->
serialize = { it, exportSensitiveData, includeSavedLocations ->
JsonObject().apply {
addProperty("state", it.globalState)
add("properties", it.toJson(exportSensitiveData))
add("properties", it.toJson(exportSensitiveData, includeSavedLocations))
}
},
deserialize = { obj ->

View File

@@ -3,7 +3,9 @@ package me.eternal.purrfectsnap.common.config
import android.content.Context
import com.google.gson.Gson
import com.google.gson.GsonBuilder
import com.google.gson.JsonArray
import com.google.gson.JsonObject
import me.eternal.purrfectsnap.bridge.location.LocationCoordinates
import me.eternal.purrfectsnap.bridge.ConfigStateListener
import me.eternal.purrfectsnap.bridge.storage.FileHandleManager
import me.eternal.purrfectsnap.common.bridge.InternalFileHandleType
@@ -60,10 +62,25 @@ class ModConfig(
fun exportToString(
exportSensitiveData: Boolean = true,
includeSavedLocations: Boolean = true,
savedLocations: List<LocationCoordinates>? = null,
config: RootConfig = root,
): String {
return gson.toJson(config.toJson(exportSensitiveData).apply {
return gson.toJson(config.toJson(exportSensitiveData, includeSavedLocations).apply {
addProperty("_locale", locale)
if (includeSavedLocations && savedLocations != null) {
add("_saved_locations", JsonArray().apply {
savedLocations.forEach { location ->
add(JsonObject().apply {
addProperty("id", location.id)
addProperty("name", location.name)
addProperty("latitude", location.latitude)
addProperty("longitude", location.longitude)
addProperty("radius", location.radius)
})
}
})
}
})
}
@@ -133,10 +150,17 @@ class ModConfig(
}
}
fun loadFromString(string: String) {
/**
* Loads config from a JSON string.
* @return JsonArray of saved locations if present in the JSON, null otherwise
*/
fun loadFromString(string: String): JsonArray? {
val configObject = gson.fromJson(string, JsonObject::class.java)
locale = configObject.get("_locale")?.asString ?: LocaleWrapper.DEFAULT_LOCALE
root.fromJson(configObject)
writeConfig()
// Return saved locations array if present (for caller to handle database import)
return configObject.getAsJsonArray("_saved_locations")
}
}

View File

@@ -20,15 +20,17 @@ class Global : ConfigContainer() {
}
inner class BetterLocationConfig : ConfigContainer(hasGlobalState = true) {
val spoofLocation = boolean("spoof_location")
val coordinates = mapCoordinates("coordinates", 0.0 to 0.0) { addFlags(ConfigFlag.SENSITIVE) } // lat, long
val walkRadius = string("walk_radius") { requireRestart(); inputCheck = { it.toDoubleOrNull()?.isFinite() == true && it.toDouble() >= 0.0 } }
val alwaysUpdateLocation = boolean("always_update_location") { requireRestart() }
val suspendLocationUpdates = boolean("suspend_location_updates")
val spoofBatteryLevel = string("spoof_battery_level") { requireRestart(); inputCheck = { it.isEmpty() || it.toIntOrNull() in 0..100 } }
val spoofHeadphones = boolean("spoof_headphones") { requireRestart() }
val showBatteryLevel = boolean("show_battery_level") { requireRestart() }
}
val spoofLocation = boolean("spoof_location")
val locationSearchProvider = unique("location_search_provider", "osm", "google_maps") { addFlags(ConfigFlag.NO_DISABLE_KEY) }
val googleMapsApiKey = string("google_maps_api_key") { addFlags(ConfigFlag.SENSITIVE) }
val coordinates = mapCoordinates("coordinates", 0.0 to 0.0) { addFlags(ConfigFlag.SENSITIVE) } // lat, long
val walkRadius = string("walk_radius") { requireRestart(); inputCheck = { it.toDoubleOrNull()?.isFinite() == true && it.toDouble() >= 0.0 } }
val alwaysUpdateLocation = boolean("always_update_location") { requireRestart() }
val suspendLocationUpdates = boolean("suspend_location_updates")
val spoofBatteryLevel = string("spoof_battery_level") { requireRestart(); inputCheck = { it.isEmpty() || it.toIntOrNull() in 0..100 } }
val spoofHeadphones = boolean("spoof_headphones") { requireRestart() }
val showBatteryLevel = boolean("show_battery_level") { requireRestart() }
}
inner class MediaUploadQualityConfig : ConfigContainer() {
val forceVideoUploadSourceQuality = boolean("force_video_upload_source_quality") { requireRestart() }

View File

@@ -13,3 +13,5 @@ APP_VERSION_CODE=261
debug_build_hash=18fe2a814d0e2eb5
psIntegrityPinnedSha256=
EXPECTED_CERT_SHA256=97fc5c4dff7e33c159528eb9e53f86c356d430cd63d177f40c22b577ac829dee
android.disallowKotlinSourceSets=false
android.sourceset.disallowProvider=false