forked from mirrors/gecko-dev
[components] Issue https://github.com/mozilla-mobile/android-components/issues/10335: Update dependencies to support Jetpack Compose and add first prototype components.
* Issue https://github.com/mozilla-mobile/android-components/issues/10335: Upgrade to Gradle 7. * Update Android Gradle Plugin to 7.0.0 Beta 2. * Issue https://github.com/mozilla-mobile/android-components/issues/10335: Generate BuildConfig with VERSION_CODE and VERSION_NAME fields in library modules (for Glean). * Issue https://github.com/mozilla-mobile/android-components/issues/10335: Add first component using Jetpack Compose: compose-browser-toolbar. * Issue https://github.com/mozilla-mobile/android-components/issues/10335: Introduce Jetpack Compose bindings for lib-state. * Issue https://github.com/mozilla-mobile/android-components/issues/10335: Upstream Jetpack Compose toolbar prototype from Reference Browser. * Issue https://github.com/mozilla-mobile/android-components/issues/10335: Add TargetTab helper for observing specific tabs. * Issue https://github.com/mozilla-mobile/android-components/issues/10335: Add compose-engine component for adding Jetpack Compose bindings to a concept-engine implementation. * Issue https://github.com/mozilla-mobile/android-components/issues/10335: Add new sample app (samples-compose-browser) for prototyping browser UI using Jetpack Compose. * Issue https://github.com/mozilla-mobile/android-components/issues/10335: Update to Beta 3 of the Android Gradle plugin. * Issue https://github.com/mozilla-mobile/android-components/issues/10335: Allow usage of http when substituting maven repositories in CI. * Issue https://github.com/mozilla-mobile/android-components/issues/10335: Rename TabTarget helper to just Target. * Issue https://github.com/mozilla-mobile/android-components/issues/10335: Make BrowserToolbar follow target tab too. * Add awesomebar prototype using Jetpack Compose. * Update to Gradle 7.0.2.
This commit is contained in:
parent
19af1d18fc
commit
f14b267388
395 changed files with 2479 additions and 544 deletions
|
|
@ -3,6 +3,18 @@
|
||||||
componentsVersion: 92.0.0
|
componentsVersion: 92.0.0
|
||||||
# Please add a treeherder group in taskcluster/ci/config.yml if you add a new project here.
|
# Please add a treeherder group in taskcluster/ci/config.yml if you add a new project here.
|
||||||
projects:
|
projects:
|
||||||
|
compose-awesomebar:
|
||||||
|
path: components/compose/awesomebar
|
||||||
|
description: 'An awesomebar component showing search results matching text entered into the toolbar.'
|
||||||
|
publish: true
|
||||||
|
compose-browser-toolbar:
|
||||||
|
path: components/compose/browser-toolbar
|
||||||
|
description: 'A customizable toolbar for browsers using Jetpack Compose.'
|
||||||
|
publish: true
|
||||||
|
compose-engine:
|
||||||
|
path: components/compose/engine
|
||||||
|
description: 'A component for integrating a concept-engine implementation into Jetpack Compose UI.'
|
||||||
|
publish: true
|
||||||
concept-awesomebar:
|
concept-awesomebar:
|
||||||
path: components/concept/awesomebar
|
path: components/concept/awesomebar
|
||||||
description: 'An abstract definition of an awesomebar component.'
|
description: 'An abstract definition of an awesomebar component.'
|
||||||
|
|
@ -403,6 +415,10 @@ projects:
|
||||||
path: samples/browser
|
path: samples/browser
|
||||||
description: 'A simple browser composed from browser components.'
|
description: 'A simple browser composed from browser components.'
|
||||||
publish: false
|
publish: false
|
||||||
|
samples-compose-browser:
|
||||||
|
path: samples/compose-browser
|
||||||
|
description: 'A simple browser composed from browser components using Jetpack Compose.'
|
||||||
|
publish: false
|
||||||
samples-crash:
|
samples-crash:
|
||||||
path: samples/crash
|
path: samples/crash
|
||||||
description: 'An app showing the integration of the lib-crash component.'
|
description: 'An app showing the integration of the lib-crash component.'
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,7 @@ buildscript {
|
||||||
maven {
|
maven {
|
||||||
name "Google"
|
name "Google"
|
||||||
url project.property("googleRepo")
|
url project.property("googleRepo")
|
||||||
|
allowInsecureProtocol true // Local Nexus in CI uses HTTP
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
google()
|
google()
|
||||||
|
|
@ -19,6 +20,7 @@ buildscript {
|
||||||
maven {
|
maven {
|
||||||
name "MavenCentral"
|
name "MavenCentral"
|
||||||
url project.property("centralRepo")
|
url project.property("centralRepo")
|
||||||
|
allowInsecureProtocol true // Local Nexus in CI uses HTTP
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
|
@ -42,6 +44,7 @@ allprojects {
|
||||||
maven {
|
maven {
|
||||||
name "Google"
|
name "Google"
|
||||||
url project.property("googleRepo")
|
url project.property("googleRepo")
|
||||||
|
allowInsecureProtocol true // Local Nexus in CI uses HTTP
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
google()
|
google()
|
||||||
|
|
@ -51,6 +54,7 @@ allprojects {
|
||||||
maven {
|
maven {
|
||||||
name "MavenCentral"
|
name "MavenCentral"
|
||||||
url project.property("centralRepo")
|
url project.property("centralRepo")
|
||||||
|
allowInsecureProtocol true // Local Nexus in CI uses HTTP
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
|
@ -114,6 +118,22 @@ subprojects {
|
||||||
|
|
||||||
afterEvaluate {
|
afterEvaluate {
|
||||||
if (it.hasProperty('android')) {
|
if (it.hasProperty('android')) {
|
||||||
|
|
||||||
|
// Glean currently expects every module to have a BuildConfig with VERSION_CODE and
|
||||||
|
// VERSION_NAME fields. Since Android Gradle Plugin 4.1+ those fields do not get
|
||||||
|
// generated for Android libraries anymore. As a workaround we generate them here
|
||||||
|
// explicitly.
|
||||||
|
// https://bugzilla.mozilla.org/show_bug.cgi?id=1713084
|
||||||
|
// https://issuetracker.google.com/issues/158695880
|
||||||
|
plugins.withId('com.android.library') {
|
||||||
|
android {
|
||||||
|
defaultConfig {
|
||||||
|
buildConfigField 'int', 'VERSION_CODE', "1"
|
||||||
|
buildConfigField 'String', 'VERSION_NAME', "\"1.0\""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
jacoco {
|
jacoco {
|
||||||
toolVersion = "0.8.7"
|
toolVersion = "0.8.7"
|
||||||
}
|
}
|
||||||
|
|
@ -179,7 +199,11 @@ subprojects {
|
||||||
disable 'MissingTranslation',
|
disable 'MissingTranslation',
|
||||||
'ExtraTranslation',
|
'ExtraTranslation',
|
||||||
// We do not want to enforce this as a generic rule for all languages (see #6117, #6056, #6118)
|
// We do not want to enforce this as a generic rule for all languages (see #6117, #6056, #6118)
|
||||||
'TypographyEllipsis'
|
'TypographyEllipsis',
|
||||||
|
// https://github.com/mozilla-mobile/android-components/issues/10641
|
||||||
|
'UnspecifiedImmutableFlag',
|
||||||
|
// https://github.com/mozilla-mobile/android-components/issues/10643
|
||||||
|
'UnusedResources'
|
||||||
}
|
}
|
||||||
|
|
||||||
packagingOptions {
|
packagingOptions {
|
||||||
|
|
@ -201,6 +225,7 @@ subprojects {
|
||||||
kotlinOptions {
|
kotlinOptions {
|
||||||
jvmTarget = "1.8"
|
jvmTarget = "1.8"
|
||||||
freeCompilerArgs += "-Xopt-in=kotlin.RequiresOptIn"
|
freeCompilerArgs += "-Xopt-in=kotlin.RequiresOptIn"
|
||||||
|
useIR = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -220,10 +245,6 @@ subprojects {
|
||||||
// correct runtime classpath when invoked with Android Studio's built-in JUnit test runner.
|
// correct runtime classpath when invoked with Android Studio's built-in JUnit test runner.
|
||||||
// Success!
|
// Success!
|
||||||
jnaForTest
|
jnaForTest
|
||||||
// Robolectric, through `com.google.android.apps.common.testing.accessibility.framework`
|
|
||||||
// depends on an old version of protobuf that conflict with the Application Services one.
|
|
||||||
// See: https://github.com/mozilla/application-services/issues/2952
|
|
||||||
all*.exclude group: 'com.google.protobuf', module: 'protobuf-java'
|
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
|
||||||
|
|
@ -3,16 +3,15 @@
|
||||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id "org.gradle.kotlin.kotlin-dsl" version "1.3.6"
|
id "org.gradle.kotlin.kotlin-dsl" version "2.1.4"
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
|
||||||
|
|
||||||
if (project.hasProperty("centralRepo")) {
|
if (project.hasProperty("centralRepo")) {
|
||||||
maven {
|
maven {
|
||||||
name "MavenCentral"
|
name "MavenCentral"
|
||||||
url project.property("centralRepo")
|
url project.property("centralRepo")
|
||||||
|
allowInsecureProtocol true // Local Nexus in CI uses HTTP
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
// Synchronized version numbers for dependencies used by (some) modules
|
// Synchronized version numbers for dependencies used by (some) modules
|
||||||
object Versions {
|
object Versions {
|
||||||
const val kotlin = "1.5.20"
|
const val kotlin = "1.5.10"
|
||||||
const val coroutines = "1.5.0"
|
const val coroutines = "1.5.0"
|
||||||
|
|
||||||
const val junit = "4.12"
|
const val junit = "4.12"
|
||||||
|
|
@ -17,7 +17,7 @@ object Versions {
|
||||||
|
|
||||||
const val mockwebserver = "3.10.0"
|
const val mockwebserver = "3.10.0"
|
||||||
|
|
||||||
const val android_gradle_plugin = "4.2.2"
|
const val android_gradle_plugin = "7.0.0-beta05"
|
||||||
const val android_maven_publish_plugin = "3.6.2"
|
const val android_maven_publish_plugin = "3.6.2"
|
||||||
const val lint = "27.0.1"
|
const val lint = "27.0.1"
|
||||||
const val detekt = "1.17.1"
|
const val detekt = "1.17.1"
|
||||||
|
|
@ -35,12 +35,16 @@ object Versions {
|
||||||
|
|
||||||
const val material = "1.2.1"
|
const val material = "1.2.1"
|
||||||
|
|
||||||
|
const val compose_version = "1.0.0-rc02"
|
||||||
|
|
||||||
object AndroidX {
|
object AndroidX {
|
||||||
|
const val activityCompose = "1.3.0-rc02"
|
||||||
const val annotation = "1.1.0"
|
const val annotation = "1.1.0"
|
||||||
const val appcompat = "1.3.0"
|
const val appcompat = "1.3.0"
|
||||||
const val browser = "1.3.0"
|
const val browser = "1.3.0"
|
||||||
const val biometric = "1.1.0"
|
const val biometric = "1.1.0"
|
||||||
const val cardview = "1.0.0"
|
const val cardview = "1.0.0"
|
||||||
|
const val compose = compose_version
|
||||||
const val constraintlayout = "2.0.4"
|
const val constraintlayout = "2.0.4"
|
||||||
const val coordinatorlayout = "1.1.0"
|
const val coordinatorlayout = "1.1.0"
|
||||||
const val core = "1.3.2"
|
const val core = "1.3.2"
|
||||||
|
|
@ -55,6 +59,7 @@ object Versions {
|
||||||
const val preferences = "1.1.1"
|
const val preferences = "1.1.1"
|
||||||
const val lifecycle = "2.2.0"
|
const val lifecycle = "2.2.0"
|
||||||
const val media = "1.2.0"
|
const val media = "1.2.0"
|
||||||
|
const val navigation = "2.4.0-alpha04"
|
||||||
const val work = "2.4.0"
|
const val work = "2.4.0"
|
||||||
const val arch = "2.1.0"
|
const val arch = "2.1.0"
|
||||||
const val uiautomator = "2.2.0"
|
const val uiautomator = "2.2.0"
|
||||||
|
|
@ -83,6 +88,7 @@ object Dependencies {
|
||||||
const val testing_maven_ant_tasks = "org.apache.maven:maven-ant-tasks:${Versions.maven_ant_tasks}"
|
const val testing_maven_ant_tasks = "org.apache.maven:maven-ant-tasks:${Versions.maven_ant_tasks}"
|
||||||
const val testing_leakcanary = "com.squareup.leakcanary:leakcanary-android-instrumentation:${Versions.leakcanary}"
|
const val testing_leakcanary = "com.squareup.leakcanary:leakcanary-android-instrumentation:${Versions.leakcanary}"
|
||||||
|
|
||||||
|
const val androidx_activity_compose = "androidx.activity:activity-compose:${Versions.AndroidX.activityCompose}"
|
||||||
const val androidx_annotation = "androidx.annotation:annotation:${Versions.AndroidX.annotation}"
|
const val androidx_annotation = "androidx.annotation:annotation:${Versions.AndroidX.annotation}"
|
||||||
const val androidx_appcompat = "androidx.appcompat:appcompat:${Versions.AndroidX.appcompat}"
|
const val androidx_appcompat = "androidx.appcompat:appcompat:${Versions.AndroidX.appcompat}"
|
||||||
const val androidx_arch_core_common = "androidx.arch.core:core-common:${Versions.AndroidX.arch}"
|
const val androidx_arch_core_common = "androidx.arch.core:core-common:${Versions.AndroidX.arch}"
|
||||||
|
|
@ -90,6 +96,13 @@ object Dependencies {
|
||||||
const val androidx_biometric = "androidx.biometric:biometric:${Versions.AndroidX.biometric}"
|
const val androidx_biometric = "androidx.biometric:biometric:${Versions.AndroidX.biometric}"
|
||||||
const val androidx_browser = "androidx.browser:browser:${Versions.AndroidX.browser}"
|
const val androidx_browser = "androidx.browser:browser:${Versions.AndroidX.browser}"
|
||||||
const val androidx_cardview = "androidx.cardview:cardview:${Versions.AndroidX.cardview}"
|
const val androidx_cardview = "androidx.cardview:cardview:${Versions.AndroidX.cardview}"
|
||||||
|
const val androidx_compose_ui = "androidx.compose.ui:ui:${Versions.AndroidX.compose}"
|
||||||
|
const val androidx_compose_ui_test = "androidx.compose.ui:ui-test-junit4:${Versions.AndroidX.compose}"
|
||||||
|
const val androidx_compose_ui_test_manifest = "androidx.compose.ui:ui-test-manifest:${Versions.AndroidX.compose}"
|
||||||
|
const val androidx_compose_ui_tooling = "androidx.compose.ui:ui-tooling:${Versions.AndroidX.compose}"
|
||||||
|
const val androidx_compose_foundation = "androidx.compose.foundation:foundation:${Versions.AndroidX.compose}"
|
||||||
|
const val androidx_compose_material = "androidx.compose.material:material:${Versions.AndroidX.compose}"
|
||||||
|
const val androidx_compose_navigation = "androidx.navigation:navigation-compose:${Versions.AndroidX.navigation}"
|
||||||
const val androidx_constraintlayout = "androidx.constraintlayout:constraintlayout:${Versions.AndroidX.constraintlayout}"
|
const val androidx_constraintlayout = "androidx.constraintlayout:constraintlayout:${Versions.AndroidX.constraintlayout}"
|
||||||
const val androidx_core = "androidx.core:core:${Versions.AndroidX.core}"
|
const val androidx_core = "androidx.core:core:${Versions.AndroidX.core}"
|
||||||
const val androidx_core_ktx = "androidx.core:core-ktx:${Versions.AndroidX.core}"
|
const val androidx_core_ktx = "androidx.core:core-ktx:${Versions.AndroidX.core}"
|
||||||
|
|
|
||||||
|
|
@ -93,6 +93,9 @@ In addition to those built-in metrics, the following metrics are added to the pi
|
||||||
| network.font_download_end |[timing_distribution](https://mozilla.github.io/glean/book/user/metrics/timing_distribution.html) |Time after navigationStart that all webfont downloads are completed. |[Bug 1580077](https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10)||never | |
|
| network.font_download_end |[timing_distribution](https://mozilla.github.io/glean/book/user/metrics/timing_distribution.html) |Time after navigationStart that all webfont downloads are completed. |[Bug 1580077](https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10)||never | |
|
||||||
| network.tcp_connection |[timing_distribution](https://mozilla.github.io/glean/book/user/metrics/timing_distribution.html) |In the HTTP page channel, time from the TCP SYN packet is received to the connection is established and ready for HTTP. |[Bug 1580077](https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10)||never | |
|
| network.tcp_connection |[timing_distribution](https://mozilla.github.io/glean/book/user/metrics/timing_distribution.html) |In the HTTP page channel, time from the TCP SYN packet is received to the connection is established and ready for HTTP. |[Bug 1580077](https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10)||never | |
|
||||||
| network.tls_handshake |[timing_distribution](https://mozilla.github.io/glean/book/user/metrics/timing_distribution.html) |In the HTTP page channel, time from after the TCP SYN packet is received to the secure connection is established and ready for HTTP. |[Bug 1580077](https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10)||never | |
|
| network.tls_handshake |[timing_distribution](https://mozilla.github.io/glean/book/user/metrics/timing_distribution.html) |In the HTTP page channel, time from after the TCP SYN packet is received to the secure connection is established and ready for HTTP. |[Bug 1580077](https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10)||never | |
|
||||||
|
| performance.clone.deserialize.items |[custom_distribution](https://mozilla.github.io/glean/book/user/metrics/custom_distribution.html) |Size of deserialized data, in items |[Bug 1717631](https://bugzilla.mozilla.org/show_bug.cgi?id=1717631#c4)||never | |
|
||||||
|
| performance.clone.deserialize.size |[memory_distribution](https://mozilla.github.io/glean/book/user/metrics/memory_distribution.html) |Size of deserialized data, in bytes |[Bug 1717631](https://bugzilla.mozilla.org/show_bug.cgi?id=1717631#c4)||never | |
|
||||||
|
| performance.clone.deserialize.time |[timing_distribution](https://mozilla.github.io/glean/book/user/metrics/timing_distribution.html) |Time spent deserializing structured data |[Bug 1717631](https://bugzilla.mozilla.org/show_bug.cgi?id=1717631#c4)||never | |
|
||||||
| performance.interaction.keypress_present_latency |[timing_distribution](https://mozilla.github.io/glean/book/user/metrics/timing_distribution.html) |Time between receiving a keypress event in the event loop and compositing its result onto the screen. |[Bug 1580077](https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10)||never | |
|
| performance.interaction.keypress_present_latency |[timing_distribution](https://mozilla.github.io/glean/book/user/metrics/timing_distribution.html) |Time between receiving a keypress event in the event loop and compositing its result onto the screen. |[Bug 1580077](https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10)||never | |
|
||||||
| performance.interaction.mouseup_click_present_latency |[timing_distribution](https://mozilla.github.io/glean/book/user/metrics/timing_distribution.html) |Time between receiving a mouseup which follow by a mouseclick on the event loop and compositing its result onto the screen. |[Bug 1698643](https://bugzilla.mozilla.org/show_bug.cgi?id=1698643#c3)||never | |
|
| performance.interaction.mouseup_click_present_latency |[timing_distribution](https://mozilla.github.io/glean/book/user/metrics/timing_distribution.html) |Time between receiving a mouseup which follow by a mouseclick on the event loop and compositing its result onto the screen. |[Bug 1698643](https://bugzilla.mozilla.org/show_bug.cgi?id=1698643#c3)||never | |
|
||||||
| performance.interaction.tab_switch_composite |[timing_distribution](https://mozilla.github.io/glean/book/user/metrics/timing_distribution.html) |Time between tab selection and first composite of the tab content onto the screen. |[Bug 1580077](https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10)||never | |
|
| performance.interaction.tab_switch_composite |[timing_distribution](https://mozilla.github.io/glean/book/user/metrics/timing_distribution.html) |Time between tab selection and first composite of the tab content onto the screen. |[Bug 1580077](https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10)||never | |
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
package mozilla.components.browser.engine.gecko
|
package mozilla.components.browser.engine.gecko
|
||||||
|
|
||||||
|
import android.annotation.SuppressLint
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.view.MotionEvent
|
import android.view.MotionEvent
|
||||||
import androidx.annotation.VisibleForTesting
|
import androidx.annotation.VisibleForTesting
|
||||||
|
|
@ -116,6 +117,7 @@ open class NestedGeckoView(context: Context) : GeckoView(context), NestedScrolli
|
||||||
return super.onTouchEvent(event)
|
return super.onTouchEvent(event)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@SuppressLint("WrongThread") // Lint complains startNestedScroll() needs to be called on the main thread
|
||||||
@VisibleForTesting
|
@VisibleForTesting
|
||||||
internal fun updateInputResult(event: MotionEvent) {
|
internal fun updateInputResult(event: MotionEvent) {
|
||||||
super.onTouchEventForDetailResult(event)
|
super.onTouchEventForDetailResult(event)
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
package mozilla.components.browser.errorpages
|
package mozilla.components.browser.errorpages
|
||||||
|
|
||||||
|
import android.annotation.SuppressLint
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import androidx.annotation.StringRes
|
import androidx.annotation.StringRes
|
||||||
import mozilla.components.support.ktx.android.content.appName
|
import mozilla.components.support.ktx.android.content.appName
|
||||||
|
|
@ -16,6 +17,7 @@ object ErrorPages {
|
||||||
/**
|
/**
|
||||||
* Provides an encoded URL for an error page. Supports displaying images
|
* Provides an encoded URL for an error page. Supports displaying images
|
||||||
*/
|
*/
|
||||||
|
@SuppressLint("StringFormatInvalid")
|
||||||
fun createUrlEncodedErrorPage(
|
fun createUrlEncodedErrorPage(
|
||||||
context: Context,
|
context: Context,
|
||||||
errorType: ErrorType,
|
errorType: ErrorType,
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,8 @@ android {
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdkVersion config.minSdkVersion
|
minSdkVersion config.minSdkVersion
|
||||||
targetSdkVersion config.targetSdkVersion
|
targetSdkVersion config.targetSdkVersion
|
||||||
|
|
||||||
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
|
|
@ -21,6 +23,14 @@ android {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
buildFeatures {
|
||||||
|
compose true
|
||||||
|
}
|
||||||
|
|
||||||
|
composeOptions {
|
||||||
|
kotlinCompilerExtensionVersion = Versions.compose_version
|
||||||
|
}
|
||||||
|
|
||||||
packagingOptions {
|
packagingOptions {
|
||||||
exclude 'META-INF/proguard/androidx-annotations.pro'
|
exclude 'META-INF/proguard/androidx-annotations.pro'
|
||||||
}
|
}
|
||||||
|
|
@ -45,6 +55,7 @@ dependencies {
|
||||||
api project(':concept-fetch')
|
api project(':concept-fetch')
|
||||||
|
|
||||||
implementation Dependencies.androidx_browser
|
implementation Dependencies.androidx_browser
|
||||||
|
implementation Dependencies.androidx_compose_ui
|
||||||
implementation Dependencies.kotlin_coroutines
|
implementation Dependencies.kotlin_coroutines
|
||||||
implementation Dependencies.kotlin_stdlib
|
implementation Dependencies.kotlin_stdlib
|
||||||
|
|
||||||
|
|
@ -55,6 +66,10 @@ dependencies {
|
||||||
testImplementation Dependencies.testing_mockito
|
testImplementation Dependencies.testing_mockito
|
||||||
testImplementation Dependencies.testing_robolectric
|
testImplementation Dependencies.testing_robolectric
|
||||||
testImplementation Dependencies.testing_coroutines
|
testImplementation Dependencies.testing_coroutines
|
||||||
|
|
||||||
|
androidTestImplementation Dependencies.androidx_test_junit
|
||||||
|
androidTestImplementation Dependencies.androidx_compose_ui_test_manifest
|
||||||
|
androidTestImplementation Dependencies.androidx_compose_ui_test
|
||||||
}
|
}
|
||||||
|
|
||||||
apply from: '../../../publish.gradle'
|
apply from: '../../../publish.gradle'
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,179 @@
|
||||||
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
|
package mozilla.components.browser.state.helper
|
||||||
|
|
||||||
|
import androidx.compose.ui.test.junit4.createComposeRule
|
||||||
|
import androidx.test.ext.junit.runners.AndroidJUnit4
|
||||||
|
import kotlinx.coroutines.runBlocking
|
||||||
|
import mozilla.components.browser.state.action.BrowserAction
|
||||||
|
import mozilla.components.browser.state.action.CustomTabListAction
|
||||||
|
import mozilla.components.browser.state.action.TabListAction
|
||||||
|
import mozilla.components.browser.state.state.BrowserState
|
||||||
|
import mozilla.components.browser.state.state.createCustomTab
|
||||||
|
import mozilla.components.browser.state.state.createTab
|
||||||
|
import mozilla.components.browser.state.store.BrowserStore
|
||||||
|
import org.junit.Assert.assertEquals
|
||||||
|
import org.junit.Assert.assertNull
|
||||||
|
import org.junit.Rule
|
||||||
|
import org.junit.Test
|
||||||
|
import org.junit.runner.RunWith
|
||||||
|
|
||||||
|
/**
|
||||||
|
* On-device tests for [Target].
|
||||||
|
*/
|
||||||
|
@RunWith(AndroidJUnit4::class)
|
||||||
|
class OnDeviceTargetTest {
|
||||||
|
@get:Rule
|
||||||
|
val rule = createComposeRule()
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun observingSelectedTab() {
|
||||||
|
val store = BrowserStore()
|
||||||
|
|
||||||
|
val target = Target.SelectedTab
|
||||||
|
var observedTabId: String? = null
|
||||||
|
|
||||||
|
rule.setContent {
|
||||||
|
val state = target.observeAsComposableStateFrom(
|
||||||
|
store = store,
|
||||||
|
observe = { tab -> tab?.id }
|
||||||
|
)
|
||||||
|
observedTabId = state.value?.id
|
||||||
|
}
|
||||||
|
|
||||||
|
assertNull(observedTabId)
|
||||||
|
|
||||||
|
store.dispatchBlockingOnIdle(
|
||||||
|
TabListAction.AddTabAction(createTab("https://www.mozilla.org", id = "mozilla"))
|
||||||
|
)
|
||||||
|
|
||||||
|
rule.runOnIdle {
|
||||||
|
assertEquals("mozilla", observedTabId)
|
||||||
|
}
|
||||||
|
|
||||||
|
store.dispatchBlockingOnIdle(
|
||||||
|
TabListAction.AddTabAction(createTab("https://example.org", id = "example"))
|
||||||
|
)
|
||||||
|
|
||||||
|
rule.runOnIdle {
|
||||||
|
assertEquals("mozilla", observedTabId)
|
||||||
|
}
|
||||||
|
|
||||||
|
store.dispatchBlockingOnIdle(
|
||||||
|
TabListAction.SelectTabAction("example")
|
||||||
|
)
|
||||||
|
|
||||||
|
rule.runOnIdle {
|
||||||
|
assertEquals("example", observedTabId)
|
||||||
|
}
|
||||||
|
|
||||||
|
store.dispatchBlockingOnIdle(
|
||||||
|
TabListAction.RemoveTabAction("example")
|
||||||
|
)
|
||||||
|
|
||||||
|
rule.runOnIdle {
|
||||||
|
assertEquals("mozilla", observedTabId)
|
||||||
|
}
|
||||||
|
|
||||||
|
store.dispatchBlockingOnIdle(TabListAction.RemoveAllTabsAction())
|
||||||
|
|
||||||
|
rule.runOnIdle {
|
||||||
|
assertNull(observedTabId)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun observingPinnedTab() {
|
||||||
|
val store = BrowserStore(
|
||||||
|
initialState = BrowserState(
|
||||||
|
tabs = listOf(
|
||||||
|
createTab("https://www.mozilla.org", id = "mozilla"),
|
||||||
|
createTab("https://www.example.org", id = "example")
|
||||||
|
),
|
||||||
|
selectedTabId = "mozilla"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
val target = Target.Tab("mozilla")
|
||||||
|
var observedTabId: String? = null
|
||||||
|
|
||||||
|
rule.setContent {
|
||||||
|
val state = target.observeAsComposableStateFrom(
|
||||||
|
store = store,
|
||||||
|
observe = { tab -> tab?.id }
|
||||||
|
)
|
||||||
|
observedTabId = state.value?.id
|
||||||
|
}
|
||||||
|
|
||||||
|
assertEquals("mozilla", observedTabId)
|
||||||
|
|
||||||
|
store.dispatchBlockingOnIdle(TabListAction.SelectTabAction("example"))
|
||||||
|
|
||||||
|
rule.runOnIdle {
|
||||||
|
assertEquals("mozilla", observedTabId)
|
||||||
|
}
|
||||||
|
|
||||||
|
store.dispatchBlockingOnIdle(TabListAction.RemoveTabAction("mozilla"))
|
||||||
|
|
||||||
|
rule.runOnIdle {
|
||||||
|
assertNull(observedTabId)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun observingCustomTab() {
|
||||||
|
val store = BrowserStore(
|
||||||
|
initialState = BrowserState(
|
||||||
|
tabs = listOf(
|
||||||
|
createTab("https://www.mozilla.org", id = "mozilla"),
|
||||||
|
createTab("https://www.example.org", id = "example")
|
||||||
|
),
|
||||||
|
customTabs = listOf(
|
||||||
|
createCustomTab("https://www.reddit.com/r/firefox/", id = "reddit")
|
||||||
|
),
|
||||||
|
selectedTabId = "mozilla"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
val target = Target.CustomTab("reddit")
|
||||||
|
|
||||||
|
var observedTabId: String? = null
|
||||||
|
|
||||||
|
rule.setContent {
|
||||||
|
val state = target.observeAsComposableStateFrom(
|
||||||
|
store = store,
|
||||||
|
observe = { tab -> tab?.id }
|
||||||
|
)
|
||||||
|
observedTabId = state.value?.id
|
||||||
|
}
|
||||||
|
|
||||||
|
assertEquals("reddit", observedTabId)
|
||||||
|
|
||||||
|
store.dispatchBlockingOnIdle(TabListAction.SelectTabAction("example"))
|
||||||
|
|
||||||
|
rule.runOnIdle {
|
||||||
|
assertEquals("reddit", observedTabId)
|
||||||
|
}
|
||||||
|
|
||||||
|
store.dispatchBlockingOnIdle(TabListAction.RemoveTabAction("mozilla"))
|
||||||
|
|
||||||
|
rule.runOnIdle {
|
||||||
|
assertEquals("reddit", observedTabId)
|
||||||
|
}
|
||||||
|
|
||||||
|
store.dispatchBlockingOnIdle(CustomTabListAction.RemoveCustomTabAction("reddit"))
|
||||||
|
|
||||||
|
rule.runOnIdle {
|
||||||
|
assertNull(observedTabId)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun BrowserStore.dispatchBlockingOnIdle(action: BrowserAction) {
|
||||||
|
rule.runOnIdle {
|
||||||
|
val job = dispatch(action)
|
||||||
|
runBlocking { job.join() }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,96 @@
|
||||||
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
|
package mozilla.components.browser.state.helper
|
||||||
|
|
||||||
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.runtime.State
|
||||||
|
import androidx.lifecycle.Lifecycle
|
||||||
|
import androidx.lifecycle.LifecycleOwner
|
||||||
|
import mozilla.components.browser.state.selector.findCustomTab
|
||||||
|
import mozilla.components.browser.state.selector.findTab
|
||||||
|
import mozilla.components.browser.state.selector.selectedTab
|
||||||
|
import mozilla.components.browser.state.state.BrowserState
|
||||||
|
import mozilla.components.browser.state.state.SessionState
|
||||||
|
import mozilla.components.browser.state.store.BrowserStore
|
||||||
|
import mozilla.components.lib.state.Store
|
||||||
|
import mozilla.components.lib.state.ext.observeAsComposableState
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helper for allowing a component consumer to specify which tab a component should target (e.g.
|
||||||
|
* the selected tab, a specific pinned tab or a custom tab). Additional helper methods make it
|
||||||
|
* easier to lookup the current state of the tab or observe changes.
|
||||||
|
*/
|
||||||
|
sealed class Target {
|
||||||
|
/**
|
||||||
|
* Looks up this target in the given [BrowserStore] and returns the matching [SessionState] if
|
||||||
|
* available. Otherwise returns `null`.
|
||||||
|
*
|
||||||
|
* @param store to lookup this target in.
|
||||||
|
*/
|
||||||
|
fun lookupIn(store: BrowserStore): SessionState? = lookupIn(store.state)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Looks up this target in the given [BrowserState] and returns the matching [SessionState] if
|
||||||
|
* available. Otherwise returns `null`.
|
||||||
|
*
|
||||||
|
* @param state to lookup this target in.
|
||||||
|
*/
|
||||||
|
abstract fun lookupIn(state: BrowserState): SessionState?
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Observes this target and represents the mapped state (using [map]) via [State].
|
||||||
|
*
|
||||||
|
* Everytime the [Store] state changes and the result of the [observe] function changes for this
|
||||||
|
* state, the returned [State] will be updated causing recomposition of every [State.value] usage.
|
||||||
|
*
|
||||||
|
* The [Store] observer will automatically be removed when this composable disposes or the current
|
||||||
|
* [LifecycleOwner] moves to the [Lifecycle.State.DESTROYED] state.
|
||||||
|
*
|
||||||
|
* @param store that should get observed
|
||||||
|
* @param observe function that maps a [SessionState] to the (sub) state that should get observed
|
||||||
|
* for changes.
|
||||||
|
*/
|
||||||
|
@Composable
|
||||||
|
fun <R> observeAsComposableStateFrom(
|
||||||
|
store: BrowserStore,
|
||||||
|
observe: (SessionState?) -> R
|
||||||
|
): State<SessionState?> {
|
||||||
|
return store.observeAsComposableState(
|
||||||
|
map = { state -> lookupIn(state) },
|
||||||
|
observe = { state -> observe(lookupIn(state)) }
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Targets the selected tab.
|
||||||
|
*/
|
||||||
|
object SelectedTab : Target() {
|
||||||
|
override fun lookupIn(state: BrowserState): SessionState? {
|
||||||
|
return state.selectedTab
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Targets a specific tab by its [tabId].
|
||||||
|
*
|
||||||
|
* @param tabId The ID of the tab to be targeted.
|
||||||
|
*/
|
||||||
|
class Tab(val tabId: String) : Target() {
|
||||||
|
override fun lookupIn(state: BrowserState): SessionState? {
|
||||||
|
return state.findTab(tabId)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Targets a specific custom tab by its [customTabId].
|
||||||
|
*
|
||||||
|
* @param customTabId The ID of the custom tab to be targeted.
|
||||||
|
*/
|
||||||
|
class CustomTab(val customTabId: String) : Target() {
|
||||||
|
override fun lookupIn(state: BrowserState): SessionState? {
|
||||||
|
return state.findCustomTab(customTabId)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,138 @@
|
||||||
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
|
package mozilla.components.browser.state.helper
|
||||||
|
|
||||||
|
import mozilla.components.browser.state.action.TabListAction
|
||||||
|
import mozilla.components.browser.state.state.BrowserState
|
||||||
|
import mozilla.components.browser.state.state.createCustomTab
|
||||||
|
import mozilla.components.browser.state.state.createTab
|
||||||
|
import mozilla.components.browser.state.store.BrowserStore
|
||||||
|
import mozilla.components.support.test.ext.joinBlocking
|
||||||
|
import org.junit.Assert.assertEquals
|
||||||
|
import org.junit.Assert.assertNull
|
||||||
|
import org.junit.Test
|
||||||
|
|
||||||
|
class TargetTest {
|
||||||
|
@Test
|
||||||
|
fun lookupInStore() {
|
||||||
|
val store = BrowserStore(
|
||||||
|
initialState = BrowserState(
|
||||||
|
tabs = listOf(
|
||||||
|
createTab("https://www.mozilla.org", id = "mozilla"),
|
||||||
|
createTab("https://www.example.org", id = "example"),
|
||||||
|
createTab("https://theverge.com", id = "theverge", private = true)
|
||||||
|
),
|
||||||
|
customTabs = listOf(
|
||||||
|
createCustomTab("https://www.reddit.com/r/firefox/", id = "reddit")
|
||||||
|
),
|
||||||
|
selectedTabId = "mozilla"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
assertEquals(
|
||||||
|
"https://www.mozilla.org",
|
||||||
|
Target.SelectedTab.lookupIn(store)?.content?.url
|
||||||
|
)
|
||||||
|
|
||||||
|
assertEquals(
|
||||||
|
"https://www.mozilla.org",
|
||||||
|
Target.Tab("mozilla").lookupIn(store)?.content?.url
|
||||||
|
)
|
||||||
|
|
||||||
|
assertEquals(
|
||||||
|
"https://theverge.com",
|
||||||
|
Target.Tab("theverge").lookupIn(store)?.content?.url
|
||||||
|
)
|
||||||
|
|
||||||
|
assertNull(
|
||||||
|
Target.Tab("unknown").lookupIn(store)
|
||||||
|
)
|
||||||
|
|
||||||
|
assertNull(
|
||||||
|
Target.Tab("reddit").lookupIn(store)
|
||||||
|
)
|
||||||
|
|
||||||
|
assertEquals(
|
||||||
|
"https://www.reddit.com/r/firefox/",
|
||||||
|
Target.CustomTab("reddit").lookupIn(store)?.content?.url
|
||||||
|
)
|
||||||
|
|
||||||
|
assertNull(
|
||||||
|
Target.CustomTab("unknown").lookupIn(store)
|
||||||
|
)
|
||||||
|
|
||||||
|
assertNull(
|
||||||
|
Target.CustomTab("mozilla").lookupIn(store)
|
||||||
|
)
|
||||||
|
|
||||||
|
store.dispatch(
|
||||||
|
TabListAction.SelectTabAction("example")
|
||||||
|
).joinBlocking()
|
||||||
|
|
||||||
|
assertEquals(
|
||||||
|
"https://www.example.org",
|
||||||
|
Target.SelectedTab.lookupIn(store)?.content?.url
|
||||||
|
)
|
||||||
|
|
||||||
|
store.dispatch(
|
||||||
|
TabListAction.RemoveAllTabsAction()
|
||||||
|
).joinBlocking()
|
||||||
|
|
||||||
|
assertNull(
|
||||||
|
Target.SelectedTab.lookupIn(store)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun lookupInState() {
|
||||||
|
val state = BrowserState(
|
||||||
|
tabs = listOf(
|
||||||
|
createTab("https://www.mozilla.org", id = "mozilla"),
|
||||||
|
createTab("https://www.example.org", id = "example"),
|
||||||
|
createTab("https://theverge.com", id = "theverge", private = true)
|
||||||
|
),
|
||||||
|
customTabs = listOf(
|
||||||
|
createCustomTab("https://www.reddit.com/r/firefox/", id = "reddit")
|
||||||
|
),
|
||||||
|
selectedTabId = "mozilla"
|
||||||
|
)
|
||||||
|
|
||||||
|
assertEquals(
|
||||||
|
"https://www.mozilla.org",
|
||||||
|
Target.SelectedTab.lookupIn(state)?.content?.url
|
||||||
|
)
|
||||||
|
|
||||||
|
assertEquals(
|
||||||
|
"https://www.mozilla.org",
|
||||||
|
Target.Tab("mozilla").lookupIn(state)?.content?.url
|
||||||
|
)
|
||||||
|
|
||||||
|
assertEquals(
|
||||||
|
"https://theverge.com",
|
||||||
|
Target.Tab("theverge").lookupIn(state)?.content?.url
|
||||||
|
)
|
||||||
|
|
||||||
|
assertNull(
|
||||||
|
Target.Tab("unknown").lookupIn(state)
|
||||||
|
)
|
||||||
|
|
||||||
|
assertNull(
|
||||||
|
Target.Tab("reddit").lookupIn(state)
|
||||||
|
)
|
||||||
|
|
||||||
|
assertEquals(
|
||||||
|
"https://www.reddit.com/r/firefox/",
|
||||||
|
Target.CustomTab("reddit").lookupIn(state)?.content?.url
|
||||||
|
)
|
||||||
|
|
||||||
|
assertNull(
|
||||||
|
Target.CustomTab("unknown").lookupIn(state)
|
||||||
|
)
|
||||||
|
|
||||||
|
assertNull(
|
||||||
|
Target.CustomTab("mozilla").lookupIn(state)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -48,6 +48,7 @@ internal class BrowserGestureDetector(
|
||||||
)
|
)
|
||||||
|
|
||||||
@VisibleForTesting
|
@VisibleForTesting
|
||||||
|
@Suppress("SoonBlockedPrivateApi") // https://github.com/mozilla-mobile/android-components/issues/10638
|
||||||
internal var scaleGestureDetector = ScaleGestureDetector(
|
internal var scaleGestureDetector = ScaleGestureDetector(
|
||||||
applicationContext,
|
applicationContext,
|
||||||
CustomScaleDetectorListener(
|
CustomScaleDetectorListener(
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menú</string>
|
|
||||||
<string name="mozac_clear_button_description">Borrar</string>
|
<string name="mozac_clear_button_description">Borrar</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">La protección contra seguimiento ye activada</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">La protección contra seguimiento ye activada</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">القائمة</string>
|
|
||||||
<string name="mozac_clear_button_description">امسح</string>
|
<string name="mozac_clear_button_description">امسح</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">الحماية من التعقّب مفعّلة</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">الحماية من التعقّب مفعّلة</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menú</string>
|
|
||||||
<string name="mozac_clear_button_description">Llimpiar</string>
|
<string name="mozac_clear_button_description">Llimpiar</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">La proteición antirrastrexu ta activada</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">La proteición antirrastrexu ta activada</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menyu</string>
|
|
||||||
<string name="mozac_clear_button_description">Təmizlə</string>
|
<string name="mozac_clear_button_description">Təmizlə</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">İzlənmə Qoruması açıqdır</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">İzlənmə Qoruması açıqdır</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Меню</string>
|
|
||||||
<string name="mozac_clear_button_description">Ачысціць</string>
|
<string name="mozac_clear_button_description">Ачысціць</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Ахова ад сачэння ўключана</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Ахова ад сачэння ўключана</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Меню</string>
|
|
||||||
<string name="mozac_clear_button_description">Изчистване</string>
|
<string name="mozac_clear_button_description">Изчистване</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Защита от проследяване включена</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Защита от проследяване включена</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">মেনু</string>
|
|
||||||
<string name="mozac_clear_button_description">পরিষ্কার করুন</string>
|
<string name="mozac_clear_button_description">পরিষ্কার করুন</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">ট্র্যাকিং সুরক্ষা চালু আছে</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">ট্র্যাকিং সুরক্ষা চালু আছে</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Lañser</string>
|
|
||||||
<string name="mozac_clear_button_description">Skarzhañ</string>
|
<string name="mozac_clear_button_description">Skarzhañ</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Gweredekaet eo ar gware heuliañ</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Gweredekaet eo ar gware heuliañ</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Meni</string>
|
|
||||||
<string name="mozac_clear_button_description">Očisti</string>
|
<string name="mozac_clear_button_description">Očisti</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Zaštita od praćenja uključena</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Zaštita od praćenja uključena</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menú</string>
|
|
||||||
<string name="mozac_clear_button_description">Esborra</string>
|
<string name="mozac_clear_button_description">Esborra</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">La protecció contra el seguiment està activada</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">La protecció contra el seguiment està activada</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">K\'utsamaj</string>
|
|
||||||
<string name="mozac_clear_button_description">Tijosq\'ïx</string>
|
<string name="mozac_clear_button_description">Tijosq\'ïx</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Tzijïl ri Chajinïk Chuwäch Ojqanïk</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Tzijïl ri Chajinïk Chuwäch Ojqanïk</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menu</string>
|
|
||||||
<string name="mozac_clear_button_description">Panas</string>
|
<string name="mozac_clear_button_description">Panas</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Ang Tracking Protection on</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Ang Tracking Protection on</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">پێڕست</string>
|
|
||||||
<string name="mozac_clear_button_description">پاککردنەوە</string>
|
<string name="mozac_clear_button_description">پاککردنەوە</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">پارێزگاری لە چاودێری کارایە</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">پارێزگاری لە چاودێری کارایە</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Interfaccia</string>
|
|
||||||
<string name="mozac_clear_button_description">Squassà</string>
|
<string name="mozac_clear_button_description">Squassà</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">A prutezzione contr’à u spiunagiu hè attivata</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">A prutezzione contr’à u spiunagiu hè attivata</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Nabídka</string>
|
|
||||||
<string name="mozac_clear_button_description">Vymazat</string>
|
<string name="mozac_clear_button_description">Vymazat</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Ochrana proti sledování je zapnuta</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Ochrana proti sledování je zapnuta</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Dewislen</string>
|
|
||||||
<string name="mozac_clear_button_description">Clirio</string>
|
<string name="mozac_clear_button_description">Clirio</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Mae Diogelwch rhag Tracio ymlaen</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Mae Diogelwch rhag Tracio ymlaen</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menu</string>
|
|
||||||
<string name="mozac_clear_button_description">Ryd</string>
|
<string name="mozac_clear_button_description">Ryd</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Beskyttelse mod sporing er slået til</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Beskyttelse mod sporing er slået til</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menü</string>
|
|
||||||
<string name="mozac_clear_button_description">Leeren</string>
|
<string name="mozac_clear_button_description">Leeren</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Schutz vor Aktivitätenverfolgung ist an</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Schutz vor Aktivitätenverfolgung ist an</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Meni</string>
|
|
||||||
<string name="mozac_clear_button_description">Wuprozniś</string>
|
<string name="mozac_clear_button_description">Wuprozniś</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Slědowański šćit jo zašaltowany</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Slědowański šćit jo zašaltowany</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Μενού</string>
|
|
||||||
<string name="mozac_clear_button_description">Απαλοιφή</string>
|
<string name="mozac_clear_button_description">Απαλοιφή</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Η προστασία από καταγραφή είναι ενεργή</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Η προστασία από καταγραφή είναι ενεργή</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menu</string>
|
|
||||||
<string name="mozac_clear_button_description">Clear</string>
|
<string name="mozac_clear_button_description">Clear</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Tracking Protection is on</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Tracking Protection is on</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menu</string>
|
|
||||||
<string name="mozac_clear_button_description">Clear</string>
|
<string name="mozac_clear_button_description">Clear</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Tracking Protection is on</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Tracking Protection is on</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menuo</string>
|
|
||||||
<string name="mozac_clear_button_description">Viŝi</string>
|
<string name="mozac_clear_button_description">Viŝi</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Protekto kontraŭ spurado ŝaltita</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Protekto kontraŭ spurado ŝaltita</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menú</string>
|
|
||||||
<string name="mozac_clear_button_description">Eliminar</string>
|
<string name="mozac_clear_button_description">Eliminar</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">La protección contra rastreo está habilitada</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">La protección contra rastreo está habilitada</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menú</string>
|
|
||||||
<string name="mozac_clear_button_description">Limpiar</string>
|
<string name="mozac_clear_button_description">Limpiar</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Protección de seguimiento activada</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Protección de seguimiento activada</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menú</string>
|
|
||||||
<string name="mozac_clear_button_description">Limpiar</string>
|
<string name="mozac_clear_button_description">Limpiar</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">La protección contra rastreo está activada</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">La protección contra rastreo está activada</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menú</string>
|
|
||||||
<string name="mozac_clear_button_description">Limpiar</string>
|
<string name="mozac_clear_button_description">Limpiar</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">La protección contra rastreo está activada</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">La protección contra rastreo está activada</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menú</string>
|
|
||||||
<string name="mozac_clear_button_description">Limpiar</string>
|
<string name="mozac_clear_button_description">Limpiar</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">La protección contra rastreo está activada</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">La protección contra rastreo está activada</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menüü</string>
|
|
||||||
<string name="mozac_clear_button_description">Tühjenda</string>
|
<string name="mozac_clear_button_description">Tühjenda</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Jälitamisvastane kaitse on sees</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Jälitamisvastane kaitse on sees</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menua</string>
|
|
||||||
<string name="mozac_clear_button_description">Garbitu</string>
|
<string name="mozac_clear_button_description">Garbitu</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Jarraipenaren babesa gaituta dago</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Jarraipenaren babesa gaituta dago</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">منو</string>
|
|
||||||
<string name="mozac_clear_button_description">پاک کردن</string>
|
<string name="mozac_clear_button_description">پاک کردن</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">محافظت در برابر ردگیری</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">محافظت در برابر ردگیری</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Dosol</string>
|
|
||||||
<string name="mozac_clear_button_description">Momtu</string>
|
<string name="mozac_clear_button_description">Momtu</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Ndeenka Dewindol nani e</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Ndeenka Dewindol nani e</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Valikko</string>
|
|
||||||
<string name="mozac_clear_button_description">Tyhjennä</string>
|
<string name="mozac_clear_button_description">Tyhjennä</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Seurannan suojaus on päällä</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Seurannan suojaus on päällä</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menu</string>
|
|
||||||
<string name="mozac_clear_button_description">Effacer</string>
|
<string name="mozac_clear_button_description">Effacer</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">La protection contre le pistage est activée</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">La protection contre le pistage est activée</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menu</string>
|
|
||||||
<string name="mozac_clear_button_description">Wiskje</string>
|
<string name="mozac_clear_button_description">Wiskje</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Beskerming tsjin folgjen is ynskeakele</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Beskerming tsjin folgjen is ynskeakele</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Roghchlár</string>
|
|
||||||
<string name="mozac_clear_button_description">Bánaigh</string>
|
<string name="mozac_clear_button_description">Bánaigh</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Tá Cosaint ar Lorgaireacht ar siúl</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Tá Cosaint ar Lorgaireacht ar siúl</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Clàr-taice</string>
|
|
||||||
<string name="mozac_clear_button_description">Falamhaich</string>
|
<string name="mozac_clear_button_description">Falamhaich</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Tha an dìon o thracadh air</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Tha an dìon o thracadh air</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menú</string>
|
|
||||||
<string name="mozac_clear_button_description">Limpar</string>
|
<string name="mozac_clear_button_description">Limpar</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Protección contra o rastrexo activada</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Protección contra o rastrexo activada</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Poravorã</string>
|
|
||||||
<string name="mozac_clear_button_description">Mopotĩ</string>
|
<string name="mozac_clear_button_description">Mopotĩ</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Tapykuehoha ñemo’ã oñemyandy</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Tapykuehoha ñemo’ã oñemyandy</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">મેનુ</string>
|
|
||||||
<string name="mozac_clear_button_description">સાફ કરો</string>
|
<string name="mozac_clear_button_description">સાફ કરો</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">ટ્રેકિંગ સુરક્ષા ચાલુ છે</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">ટ્રેકિંગ સુરક્ષા ચાલુ છે</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">मेन्यू</string>
|
|
||||||
<string name="mozac_clear_button_description">साफ करें</string>
|
<string name="mozac_clear_button_description">साफ करें</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">ट्रैकिंग सुरक्षा चालू है</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">ट्रैकिंग सुरक्षा चालू है</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Izbornik</string>
|
|
||||||
<string name="mozac_clear_button_description">Izbriši</string>
|
<string name="mozac_clear_button_description">Izbriši</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Zaštita od praćenja je uključena</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Zaštita od praćenja je uključena</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Meni</string>
|
|
||||||
<string name="mozac_clear_button_description">Wuprózdnić</string>
|
<string name="mozac_clear_button_description">Wuprózdnić</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Slědowanski škit je zmóžnjeny</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Slědowanski škit je zmóžnjeny</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menü</string>
|
|
||||||
<string name="mozac_clear_button_description">Törlés</string>
|
<string name="mozac_clear_button_description">Törlés</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Követés elleni védelem bekapcsolva</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Követés elleni védelem bekapcsolva</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Ցանկ</string>
|
|
||||||
<string name="mozac_clear_button_description">Մաքրել</string>
|
<string name="mozac_clear_button_description">Մաքրել</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Հետագծման պաշտպանությունը միաց. է</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Հետագծման պաշտպանությունը միաց. է</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menu</string>
|
|
||||||
<string name="mozac_clear_button_description">Clarar</string>
|
<string name="mozac_clear_button_description">Clarar</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Protection contra le traciamento active</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Protection contra le traciamento active</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menu</string>
|
|
||||||
<string name="mozac_clear_button_description">Bersihkan</string>
|
<string name="mozac_clear_button_description">Bersihkan</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Perlindungan Pelacakan aktif</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Perlindungan Pelacakan aktif</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Valmynd</string>
|
|
||||||
<string name="mozac_clear_button_description">Hreinsa</string>
|
<string name="mozac_clear_button_description">Hreinsa</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Vörn gegn gagnasöfnun virk</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Vörn gegn gagnasöfnun virk</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menu</string>
|
|
||||||
<string name="mozac_clear_button_description">Cancella</string>
|
<string name="mozac_clear_button_description">Cancella</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">La protezione antitracciamento è attiva</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">La protezione antitracciamento è attiva</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">תפריט</string>
|
|
||||||
<string name="mozac_clear_button_description">ניקוי</string>
|
<string name="mozac_clear_button_description">ניקוי</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">הגנת מעקב פעילה</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">הגנת מעקב פעילה</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">メニュー</string>
|
|
||||||
<string name="mozac_clear_button_description">消去</string>
|
<string name="mozac_clear_button_description">消去</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">トラッキング防止はオンです</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">トラッキング防止はオンです</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">მენიუ</string>
|
|
||||||
<string name="mozac_clear_button_description">გასუფთავება</string>
|
<string name="mozac_clear_button_description">გასუფთავება</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">თვალთვალისგან დაცვა ჩართულია</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">თვალთვალისგან დაცვა ჩართულია</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Umuɣ</string>
|
|
||||||
<string name="mozac_clear_button_description">Sfeḍ</string>
|
<string name="mozac_clear_button_description">Sfeḍ</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Ammesten mgal aḍfaṛ yermed</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Ammesten mgal aḍfaṛ yermed</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Мәзір</string>
|
|
||||||
<string name="mozac_clear_button_description">Тазарту</string>
|
<string name="mozac_clear_button_description">Тазарту</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Бақылаудан қорғаныс іске қосулы</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Бақылаудан қорғаныс іске қосулы</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menû</string>
|
|
||||||
<string name="mozac_clear_button_description">Paqij bike</string>
|
<string name="mozac_clear_button_description">Paqij bike</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Parastina ji Şopandinê vekirî ye</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Parastina ji Şopandinê vekirî ye</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">ಪರಿವಿಡಿ</string>
|
|
||||||
<string name="mozac_clear_button_description">ಅಳಿಸು</string>
|
<string name="mozac_clear_button_description">ಅಳಿಸು</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">ಜಾಡು ಇರಿಸುವಿಕೆ ಇಂದ ರಕ್ಷಣೆ ಶುರುವಾಗಿದೆ</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">ಜಾಡು ಇರಿಸುವಿಕೆ ಇಂದ ರಕ್ಷಣೆ ಶುರುವಾಗಿದೆ</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">메뉴</string>
|
|
||||||
<string name="mozac_clear_button_description">지우기</string>
|
<string name="mozac_clear_button_description">지우기</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">추적 방지 기능이 켜져 있습니다</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">추적 방지 기능이 켜져 있습니다</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menû</string>
|
|
||||||
<string name="mozac_clear_button_description">Scancella</string>
|
<string name="mozac_clear_button_description">Scancella</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Proteçion anti-traciamento açeiza</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Proteçion anti-traciamento açeiza</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">ເມນູ</string>
|
|
||||||
<string name="mozac_clear_button_description">ລົບລ້າງ</string>
|
<string name="mozac_clear_button_description">ລົບລ້າງ</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">ການປ້ອງກັນການຕິດຕາມກຳລັງເປີດຢູ່</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">ການປ້ອງກັນການຕິດຕາມກຳລັງເປີດຢູ່</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Meniu</string>
|
|
||||||
<string name="mozac_clear_button_description">Išvalyti</string>
|
<string name="mozac_clear_button_description">Išvalyti</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Apsauga nuo stebėjimo įjungta</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Apsauga nuo stebėjimo įjungta</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Katsi</string>
|
|
||||||
<string name="mozac_clear_button_description">Ku^un</string>
|
<string name="mozac_clear_button_description">Ku^un</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Chika va^a ña sau</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Chika va^a ña sau</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">മെനു</string>
|
|
||||||
<string name="mozac_clear_button_description">മായ്ക്കുക</string>
|
<string name="mozac_clear_button_description">മായ്ക്കുക</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">ട്രാക്കിങ്ങ് സംരക്ഷണം ഓൺ ആണ്</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">ട്രാക്കിങ്ങ് സംരക്ഷണം ഓൺ ആണ്</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">मेनू</string>
|
|
||||||
<string name="mozac_clear_button_description">साफ करा</string>
|
<string name="mozac_clear_button_description">साफ करा</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">ट्रॅकिंग संरक्षण चालू आहे</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">ट्रॅकिंग संरक्षण चालू आहे</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">စာရင်း</string>
|
|
||||||
<string name="mozac_clear_button_description">ရှင်းလင်းပါ</string>
|
<string name="mozac_clear_button_description">ရှင်းလင်းပါ</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">ခြေရာခံကာကွယ်မှုကို ဖွင့်ထားသည်</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">ခြေရာခံကာကွယ်မှုကို ဖွင့်ထားသည်</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Meny</string>
|
|
||||||
<string name="mozac_clear_button_description">Tøm</string>
|
<string name="mozac_clear_button_description">Tøm</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Sporingsbeskyttelse er på</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Sporingsbeskyttelse er på</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menu</string>
|
|
||||||
<string name="mozac_clear_button_description">Wissen</string>
|
<string name="mozac_clear_button_description">Wissen</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Bescherming tegen volgen is ingeschakeld</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Bescherming tegen volgen is ingeschakeld</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Meny</string>
|
|
||||||
<string name="mozac_clear_button_description">Tøm</string>
|
<string name="mozac_clear_button_description">Tøm</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Sporingsvern er ppå</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Sporingsvern er ppå</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menú</string>
|
|
||||||
<string name="mozac_clear_button_description">Escafar</string>
|
<string name="mozac_clear_button_description">Escafar</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">La proteccion contra lo seguiment es activada</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">La proteccion contra lo seguiment es activada</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">ମେନୁ</string>
|
|
||||||
<string name="mozac_clear_button_description">ଖାଲି କରନ୍ତୁ</string>
|
<string name="mozac_clear_button_description">ଖାଲି କରନ୍ତୁ</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">ଟ୍ରାକିଂ ସୁରକ୍ଷା ଚାଲୁଛି</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">ଟ୍ରାକିଂ ସୁରକ୍ଷା ଚାଲୁଛି</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">ਮੇਨੂ</string>
|
|
||||||
<string name="mozac_clear_button_description">ਸਾਫ਼ ਕਰੋ</string>
|
<string name="mozac_clear_button_description">ਸਾਫ਼ ਕਰੋ</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">ਟਰੈਕ ਕਰਨ ਤੋਂ ਸੁਰੱਖਿਆ ਚਾਲੂ ਹੈ</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">ਟਰੈਕ ਕਰਨ ਤੋਂ ਸੁਰੱਖਿਆ ਚਾਲੂ ਹੈ</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menu</string>
|
|
||||||
<string name="mozac_clear_button_description">Wyczyść</string>
|
<string name="mozac_clear_button_description">Wyczyść</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Ochrona przed śledzeniem jest włączona</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Ochrona przed śledzeniem jest włączona</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menu</string>
|
|
||||||
<string name="mozac_clear_button_description">Limpar</string>
|
<string name="mozac_clear_button_description">Limpar</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Proteção contra rastreamento ativada</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Proteção contra rastreamento ativada</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menu</string>
|
|
||||||
<string name="mozac_clear_button_description">Limpar</string>
|
<string name="mozac_clear_button_description">Limpar</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Proteção contra monitorização está ativada</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Proteção contra monitorização está ativada</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menu</string>
|
|
||||||
<string name="mozac_clear_button_description">Stizzar</string>
|
<string name="mozac_clear_button_description">Stizzar</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">La protecziun cunter il fastizar è activa</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">La protecziun cunter il fastizar è activa</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Meniu</string>
|
|
||||||
<string name="mozac_clear_button_description">Șterge</string>
|
<string name="mozac_clear_button_description">Șterge</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Protecția împotriva urmăririi este activată</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Protecția împotriva urmăririi este activată</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Меню</string>
|
|
||||||
<string name="mozac_clear_button_description">Очистить</string>
|
<string name="mozac_clear_button_description">Очистить</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Защита от отслеживания включена</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Защита от отслеживания включена</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">ᱢᱮᱱᱩ</string>
|
|
||||||
<string name="mozac_clear_button_description">ᱯᱷᱟᱨᱪᱟ</string>
|
<string name="mozac_clear_button_description">ᱯᱷᱟᱨᱪᱟ</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">ᱯᱟᱸᱡᱟ ᱟᱰ ᱪᱟᱹᱞᱩ ᱢᱮᱱᱟᱜ-ᱟ</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">ᱯᱟᱸᱡᱟ ᱟᱰ ᱪᱟᱹᱞᱩ ᱢᱮᱱᱟᱜ-ᱟ</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Ponuka</string>
|
|
||||||
<string name="mozac_clear_button_description">Vymazať</string>
|
<string name="mozac_clear_button_description">Vymazať</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Ochrana pred sledovaním je zapnutá</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Ochrana pred sledovaním je zapnutá</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Meni</string>
|
|
||||||
<string name="mozac_clear_button_description">Počisti</string>
|
<string name="mozac_clear_button_description">Počisti</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Zaščita pred sledenjem je vključena</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Zaščita pred sledenjem je vključena</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menu</string>
|
|
||||||
<string name="mozac_clear_button_description">Spastroje</string>
|
<string name="mozac_clear_button_description">Spastroje</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Mbrojtje Nga Gjurmimet është aktive</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Mbrojtje Nga Gjurmimet është aktive</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Мени</string>
|
|
||||||
<string name="mozac_clear_button_description">Обриши</string>
|
<string name="mozac_clear_button_description">Обриши</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Заштита од праћења је укључена</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Заштита од праћења је укључена</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menu</string>
|
|
||||||
<string name="mozac_clear_button_description">Beresihan</string>
|
<string name="mozac_clear_button_description">Beresihan</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Kilung Palacakan keur hurung</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Kilung Palacakan keur hurung</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Meny</string>
|
|
||||||
<string name="mozac_clear_button_description">Rensa</string>
|
<string name="mozac_clear_button_description">Rensa</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Spårningsskydd är på</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Spårningsskydd är på</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">பட்டி</string>
|
|
||||||
<string name="mozac_clear_button_description">துடை</string>
|
<string name="mozac_clear_button_description">துடை</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">தடமறியல் பாதுகாப்பு இயக்கத்தில்</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">தடமறியல் பாதுகாப்பு இயக்கத்தில்</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">మెనూ</string>
|
|
||||||
<string name="mozac_clear_button_description">తుడిచివేయి</string>
|
<string name="mozac_clear_button_description">తుడిచివేయి</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">ట్రాకింగ్ సంరక్షణ చేతనంగా ఉంది</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">ట్రాకింగ్ సంరక్షణ చేతనంగా ఉంది</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Меню</string>
|
|
||||||
<string name="mozac_clear_button_description">Пок кардан</string>
|
<string name="mozac_clear_button_description">Пок кардан</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Муҳофизат аз пайгирӣ фаъол аст</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Муҳофизат аз пайгирӣ фаъол аст</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">เมนู</string>
|
|
||||||
<string name="mozac_clear_button_description">ล้าง</string>
|
<string name="mozac_clear_button_description">ล้าง</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">การป้องกันการติดตามเปิดอยู่</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">การป้องกันการติดตามเปิดอยู่</string>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
<!-- Content description (not visible, for screen readers etc.): Description for the overflow menu button in the browser toolbar. -->
|
||||||
<string name="mozac_browser_toolbar_menu_button">Menu</string>
|
|
||||||
<string name="mozac_clear_button_description">Burahin</string>
|
<string name="mozac_clear_button_description">Burahin</string>
|
||||||
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
<!-- Content description: For the tracking protection toolbar icon, it is set when the site has tracking protection enabled, but none trackers have been blocked or detected. -->
|
||||||
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Nakabukas ang Tracking Protection</string>
|
<string name="mozac_browser_toolbar_content_description_tracking_protection_on_no_trackers_blocked">Nakabukas ang Tracking Protection</string>
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue