Merge remote-tracking branch 'upstream/master' into fork

pull/122/head
Adam Novak 4 years ago
commit c2b9882b31

@ -40,4 +40,9 @@ object FeatureFlags {
* Enables downloads with external download managers. * Enables downloads with external download managers.
*/ */
const val externalDownloadManager = true const val externalDownloadManager = true
/**
* Enables swipe to delete in bookmarks
*/
val bookmarkSwipeToDelete = Config.channel.isNightlyOrDebug
} }

@ -92,6 +92,7 @@ class BrowserToolbarView(
with(container.context) { with(container.context) {
val sessionManager = components.core.sessionManager val sessionManager = components.core.sessionManager
val isPinningSupported = components.useCases.webAppUseCases.isPinningSupported()
if (toolbarPosition == ToolbarPosition.TOP) { if (toolbarPosition == ToolbarPosition.TOP) {
val offsetChangedListener = val offsetChangedListener =
@ -178,7 +179,8 @@ class BrowserToolbarView(
lifecycleOwner = lifecycleOwner, lifecycleOwner = lifecycleOwner,
sessionManager = sessionManager, sessionManager = sessionManager,
store = components.core.store, store = components.core.store,
bookmarksStorage = bookmarkStorage bookmarksStorage = bookmarkStorage,
isPinningSupported = isPinningSupported
) )
view.display.setMenuDismissAction { view.display.setMenuDismissAction {
view.invalidateActions() view.invalidateActions()

@ -50,7 +50,8 @@ class DefaultToolbarMenu(
shouldReverseItems: Boolean, shouldReverseItems: Boolean,
private val onItemTapped: (ToolbarMenu.Item) -> Unit = {}, private val onItemTapped: (ToolbarMenu.Item) -> Unit = {},
private val lifecycleOwner: LifecycleOwner, private val lifecycleOwner: LifecycleOwner,
private val bookmarksStorage: BookmarksStorage private val bookmarksStorage: BookmarksStorage,
val isPinningSupported: Boolean
) : ToolbarMenu { ) : ToolbarMenu {
private var currentUrlIsBookmarked = false private var currentUrlIsBookmarked = false
@ -153,11 +154,11 @@ class DefaultToolbarMenu(
// Predicates that need to be repeatedly called as the session changes // Predicates that need to be repeatedly called as the session changes
private fun canAddToHomescreen(): Boolean = private fun canAddToHomescreen(): Boolean =
session != null && context.components.useCases.webAppUseCases.isPinningSupported() && session != null && isPinningSupported &&
!context.components.useCases.webAppUseCases.isInstallable() !context.components.useCases.webAppUseCases.isInstallable()
private fun canInstall(): Boolean = private fun canInstall(): Boolean =
session != null && context.components.useCases.webAppUseCases.isPinningSupported() && session != null && isPinningSupported &&
context.components.useCases.webAppUseCases.isInstallable() context.components.useCases.webAppUseCases.isInstallable()
private fun shouldShowOpenInApp(): Boolean = session?.let { session -> private fun shouldShowOpenInApp(): Boolean = session?.let { session ->

@ -13,6 +13,7 @@ import kotlinx.android.synthetic.main.component_bookmark.view.*
import mozilla.appservices.places.BookmarkRoot import mozilla.appservices.places.BookmarkRoot
import mozilla.components.concept.storage.BookmarkNode import mozilla.components.concept.storage.BookmarkNode
import mozilla.components.support.base.feature.UserInteractionHandler import mozilla.components.support.base.feature.UserInteractionHandler
import org.mozilla.fenix.FeatureFlags
import org.mozilla.fenix.NavGraphDirections import org.mozilla.fenix.NavGraphDirections
import org.mozilla.fenix.R import org.mozilla.fenix.R
import org.mozilla.fenix.library.LibraryPageView import org.mozilla.fenix.library.LibraryPageView
@ -135,7 +136,9 @@ class BookmarkView(
interactor.onRequestSync() interactor.onRequestSync()
} }
BookmarkTouchHelper(interactor).attachToRecyclerView(view.bookmark_list) if (FeatureFlags.bookmarkSwipeToDelete) {
BookmarkTouchHelper(interactor).attachToRecyclerView(view.bookmark_list)
}
} }
fun update(state: BookmarkFragmentState) { fun update(state: BookmarkFragmentState) {

@ -66,6 +66,7 @@ data class SearchFragmentState(
val showClipboardSuggestions: Boolean, val showClipboardSuggestions: Boolean,
val showHistorySuggestions: Boolean, val showHistorySuggestions: Boolean,
val showBookmarkSuggestions: Boolean, val showBookmarkSuggestions: Boolean,
val showSyncedTabsSuggestions: Boolean,
val tabId: String?, val tabId: String?,
val pastedText: String? = null, val pastedText: String? = null,
val searchAccessPoint: Event.PerformedSearch.SearchAccessPoint? val searchAccessPoint: Event.PerformedSearch.SearchAccessPoint?
@ -110,6 +111,7 @@ fun createInitialSearchFragmentState(
showClipboardSuggestions = settings.shouldShowClipboardSuggestions, showClipboardSuggestions = settings.shouldShowClipboardSuggestions,
showHistorySuggestions = settings.shouldShowHistorySuggestions, showHistorySuggestions = settings.shouldShowHistorySuggestions,
showBookmarkSuggestions = settings.shouldShowBookmarkSuggestions, showBookmarkSuggestions = settings.shouldShowBookmarkSuggestions,
showSyncedTabsSuggestions = settings.shouldShowSyncedTabsSuggestions,
tabId = tabId, tabId = tabId,
pastedText = pastedText, pastedText = pastedText,
searchAccessPoint = searchAccessPoint searchAccessPoint = searchAccessPoint

@ -20,6 +20,7 @@ import mozilla.components.feature.awesomebar.provider.SearchSuggestionProvider
import mozilla.components.feature.awesomebar.provider.SessionSuggestionProvider import mozilla.components.feature.awesomebar.provider.SessionSuggestionProvider
import mozilla.components.feature.search.SearchUseCases import mozilla.components.feature.search.SearchUseCases
import mozilla.components.feature.session.SessionUseCases import mozilla.components.feature.session.SessionUseCases
import mozilla.components.feature.syncedtabs.SyncedTabsStorageSuggestionProvider
import mozilla.components.feature.tabs.TabsUseCases import mozilla.components.feature.tabs.TabsUseCases
import mozilla.components.support.ktx.android.content.getColorFromAttr import mozilla.components.support.ktx.android.content.getColorFromAttr
import org.mozilla.fenix.HomeActivity import org.mozilla.fenix.HomeActivity
@ -32,6 +33,7 @@ import org.mozilla.fenix.search.SearchFragmentState
/** /**
* View that contains and configures the BrowserAwesomeBar * View that contains and configures the BrowserAwesomeBar
*/ */
@Suppress("LargeClass")
class AwesomeBarView( class AwesomeBarView(
private val activity: HomeActivity, private val activity: HomeActivity,
val interactor: AwesomeBarInteractor, val interactor: AwesomeBarInteractor,
@ -41,6 +43,7 @@ class AwesomeBarView(
private val historyStorageProvider: HistoryStorageSuggestionProvider private val historyStorageProvider: HistoryStorageSuggestionProvider
private val shortcutsEnginePickerProvider: ShortcutsSuggestionProvider private val shortcutsEnginePickerProvider: ShortcutsSuggestionProvider
private val bookmarksStorageSuggestionProvider: BookmarksStorageSuggestionProvider private val bookmarksStorageSuggestionProvider: BookmarksStorageSuggestionProvider
private val syncedTabsStorageSuggestionProvider: SyncedTabsStorageSuggestionProvider
private val defaultSearchSuggestionProvider: SearchSuggestionProvider private val defaultSearchSuggestionProvider: SearchSuggestionProvider
private val defaultSearchActionProvider: SearchActionProvider private val defaultSearchActionProvider: SearchActionProvider
private val searchSuggestionProviderMap: MutableMap<SearchEngine, List<AwesomeBar.SuggestionProvider>> private val searchSuggestionProviderMap: MutableMap<SearchEngine, List<AwesomeBar.SuggestionProvider>>
@ -123,6 +126,13 @@ class AwesomeBarView(
engine = engineForSpeculativeConnects engine = engineForSpeculativeConnects
) )
syncedTabsStorageSuggestionProvider =
SyncedTabsStorageSuggestionProvider(
components.backgroundServices.syncedTabsStorage,
components.useCases.tabsUseCases.addTab,
components.core.icons
)
val searchBitmap = getDrawable(activity, R.drawable.ic_search)!!.apply { val searchBitmap = getDrawable(activity, R.drawable.ic_search)!!.apply {
colorFilter = createBlendModeColorFilterCompat(primaryTextColor, SRC_IN) colorFilter = createBlendModeColorFilterCompat(primaryTextColor, SRC_IN)
}.toBitmap() }.toBitmap()
@ -204,6 +214,7 @@ class AwesomeBarView(
} }
} }
@Suppress("ComplexMethod")
private fun getProvidersToAdd(state: SearchFragmentState): MutableSet<AwesomeBar.SuggestionProvider> { private fun getProvidersToAdd(state: SearchFragmentState): MutableSet<AwesomeBar.SuggestionProvider> {
val providersToAdd = mutableSetOf<AwesomeBar.SuggestionProvider>() val providersToAdd = mutableSetOf<AwesomeBar.SuggestionProvider>()
@ -219,6 +230,10 @@ class AwesomeBarView(
providersToAdd.addAll(getSelectedSearchSuggestionProvider(state)) providersToAdd.addAll(getSelectedSearchSuggestionProvider(state))
} }
if (state.showSyncedTabsSuggestions) {
providersToAdd.add(syncedTabsStorageSuggestionProvider)
}
if (activity.browsingModeManager.mode == BrowsingMode.Normal) { if (activity.browsingModeManager.mode == BrowsingMode.Normal) {
providersToAdd.add(sessionProvider) providersToAdd.add(sessionProvider)
} }
@ -243,6 +258,10 @@ class AwesomeBarView(
providersToRemove.addAll(getSelectedSearchSuggestionProvider(state)) providersToRemove.addAll(getSelectedSearchSuggestionProvider(state))
} }
if (!state.showSyncedTabsSuggestions) {
providersToRemove.add(syncedTabsStorageSuggestionProvider)
}
if (activity.browsingModeManager.mode == BrowsingMode.Private) { if (activity.browsingModeManager.mode == BrowsingMode.Private) {
providersToRemove.add(sessionProvider) providersToRemove.add(sessionProvider)
} }

@ -57,6 +57,11 @@ class SearchEngineFragment : PreferenceFragmentCompat() {
isChecked = context.settings().shouldShowBookmarkSuggestions isChecked = context.settings().shouldShowBookmarkSuggestions
} }
val showSyncedTabsSuggestions =
requirePreference<SwitchPreference>(R.string.pref_key_search_synced_tabs).apply {
isChecked = context.settings().shouldShowSyncedTabsSuggestions
}
val showClipboardSuggestions = val showClipboardSuggestions =
requirePreference<SwitchPreference>(R.string.pref_key_show_clipboard_suggestions).apply { requirePreference<SwitchPreference>(R.string.pref_key_show_clipboard_suggestions).apply {
isChecked = context.settings().shouldShowClipboardSuggestions isChecked = context.settings().shouldShowClipboardSuggestions
@ -75,6 +80,7 @@ class SearchEngineFragment : PreferenceFragmentCompat() {
showSearchShortcuts.onPreferenceChangeListener = SharedPreferenceUpdater() showSearchShortcuts.onPreferenceChangeListener = SharedPreferenceUpdater()
showHistorySuggestions.onPreferenceChangeListener = SharedPreferenceUpdater() showHistorySuggestions.onPreferenceChangeListener = SharedPreferenceUpdater()
showBookmarkSuggestions.onPreferenceChangeListener = SharedPreferenceUpdater() showBookmarkSuggestions.onPreferenceChangeListener = SharedPreferenceUpdater()
showSyncedTabsSuggestions.onPreferenceChangeListener = SharedPreferenceUpdater()
showClipboardSuggestions.onPreferenceChangeListener = SharedPreferenceUpdater() showClipboardSuggestions.onPreferenceChangeListener = SharedPreferenceUpdater()
searchSuggestionsInPrivatePreference.onPreferenceChangeListener = SharedPreferenceUpdater() searchSuggestionsInPrivatePreference.onPreferenceChangeListener = SharedPreferenceUpdater()
showVoiceSearchPreference.onPreferenceChangeListener = SharedPreferenceUpdater() showVoiceSearchPreference.onPreferenceChangeListener = SharedPreferenceUpdater()

@ -323,6 +323,11 @@ class Settings(private val appContext: Context) : PreferencesHolder {
default = true default = true
) )
val shouldShowSyncedTabsSuggestions by booleanPreference(
appContext.getPreferenceKey(R.string.pref_key_search_synced_tabs),
default = true
)
val shouldShowClipboardSuggestions by booleanPreference( val shouldShowClipboardSuggestions by booleanPreference(
appContext.getPreferenceKey(R.string.pref_key_show_clipboard_suggestions), appContext.getPreferenceKey(R.string.pref_key_show_clipboard_suggestions),
default = true default = true

@ -25,6 +25,31 @@
<!-- Message announced to the user when tab tray is selected with 0 or 2+ tabs --> <!-- Message announced to the user when tab tray is selected with 0 or 2+ tabs -->
<string name="open_tab_tray_plural">%1$s من الألسنة مفتوح. انقر لتبديل الألسنة.</string> <string name="open_tab_tray_plural">%1$s من الألسنة مفتوح. انقر لتبديل الألسنة.</string>
<!-- Tab tray multi select title in app bar. The first parameter is the number of tabs selected -->
<string name="tab_tray_multi_select_title">حدّدتَ %1$d</string>
<!-- Label of button in create collection dialog for creating a new collection -->
<string name="tab_tray_add_new_collection">أضِف تجميعة جديدة</string>
<!-- Label of editable text in create collection dialog for naming a new collection -->
<string name="tab_tray_add_new_collection_name">الاسم</string>
<!-- Label of button in save to collection dialog for selecting a current collection -->
<string name="tab_tray_select_collection">اختر تجميعة</string>
<!-- Content description for close button while in multiselect mode in tab tray -->
<string name="tab_tray_close_multiselect_content_description">اخرج من وضع التحديد المتعدد</string>
<!-- Content description for save to collection button while in multiselect mode in tab tray -->
<string name="tab_tray_collection_button_multiselect_content_description">احفظ الألسنة المحدّدة في التجميعة</string>
<!-- Content description for checkmark while tab is selected while in multiselect mode in tab tray. The first parameter is the title of the tab selected -->
<string name="tab_tray_item_selected_multiselect_content_description">حدّدت %1$s</string>
<!-- Content description when tab is unselected while in multiselect mode in tab tray. The first parameter is the title of the tab unselected -->
<string name="tab_tray_item_unselected_multiselect_content_description">ألغيت تحديد %1$s</string>
<!-- Content description announcement when exiting multiselect mode in tab tray -->
<string name="tab_tray_exit_multiselect_content_description">خرجت من وضع التحديد المتعدد</string>
<!-- Content description announcement when entering multiselect mode in tab tray -->
<string name="tab_tray_enter_multiselect_content_description">دخلت وضع التحديد المتعدد، حدّد الألسنة لحفظها في تجميعة</string>
<!-- About content. The first parameter is the name of the application. (For example: Fenix) -->
<string name="about_content">%1$s من Mozilla.</string>
<!-- Private Browsing --> <!-- Private Browsing -->
<!-- Title for private session option --> <!-- Title for private session option -->
<string name="private_browsing_title">أنت في جلسة خاصة</string> <string name="private_browsing_title">أنت في جلسة خاصة</string>
@ -47,6 +72,28 @@
<!-- Text for the negative button --> <!-- Text for the negative button -->
<string name="search_widget_cfr_neg_button_text">ليس الآن</string> <string name="search_widget_cfr_neg_button_text">ليس الآن</string>
<!-- Open in App "contextual feature recommendation" (CFR) -->
<!-- Text for the info message. 'Firefox' intentionally hardcoded here.-->
<string name="open_in_app_cfr_info_message">يمكنك ضبط Firefox ليفتح الروابط في التطبيقات تلقائيا.</string>
<!-- Text for the positive action button -->
<string name="open_in_app_cfr_positive_button_text">انتقل إلى الإعدادات</string>
<!-- Text for the negative action button -->
<string name="open_in_app_cfr_negative_button_text">أهمِل</string>
<!-- Text for the info dialog when camera permissions have been denied but user tries to access a camera feature. -->
<string name="camera_permissions_needed_message">الوصول إلى الكمرة مطلوب. افتح إعدادات أندرويد، وانقر ”الأذونات“ ثم انقر ”سماح“.</string>
<!-- Text for the positive action button to go to Android Settings to grant permissions. -->
<string name="camera_permissions_needed_positive_button_text">انتقل إلى الإعدادات</string>
<!-- Text for the negative action button to dismiss the dialog. -->
<string name="camera_permissions_needed_negative_button_text">أهمِل</string>
<!-- Text for the banner message to tell users about our auto close feature. -->
<string name="tab_tray_close_tabs_banner_message">اضبط الألسنة المفتوحة لتُغلق من تلقاء نفسها إن لم تُعرض منذ اليوم أو الأسبوع أو الشهر الماضي.</string>
<!-- Text for the positive action button to go to Settings for auto close tabs. -->
<string name="tab_tray_close_tabs_banner_positive_button_text">خيارات المنظور</string>
<!-- Text for the negative action button to dismiss the Close Tabs Banner. -->
<string name="tab_tray_close_tabs_banner_negative_button_text">أهمِل</string>
<!-- Home screen icons - Long press shortcuts --> <!-- Home screen icons - Long press shortcuts -->
<!-- Shortcut action to open new tab --> <!-- Shortcut action to open new tab -->
<string name="home_screen_shortcut_open_new_tab_2">لسان جديد</string> <string name="home_screen_shortcut_open_new_tab_2">لسان جديد</string>
@ -140,8 +187,12 @@
<!-- Button in the search view that lets a user search by scanning a QR code --> <!-- Button in the search view that lets a user search by scanning a QR code -->
<string name="search_scan_button">امسح ضوئيًا</string> <string name="search_scan_button">امسح ضوئيًا</string>
<!-- Button in the search view that lets a user change their search engine -->
<string name="search_engine_button">محرّك البحث</string>
<!-- Button in the search view when shortcuts are displayed that takes a user to the search engine settings --> <!-- Button in the search view when shortcuts are displayed that takes a user to the search engine settings -->
<string name="search_shortcuts_engine_settings">إعدادات محرّك البحث</string> <string name="search_shortcuts_engine_settings">إعدادات محرّك البحث</string>
<!-- Header displayed when selecting a shortcut search engine -->
<string name="search_engines_search_with">الآن فقط ابحث باستعمال:</string>
<!-- Button in the search view that lets a user navigate to the site in their clipboard --> <!-- Button in the search view that lets a user navigate to the site in their clipboard -->
<string name="awesomebar_clipboard_title">املأ الرابط من الحافظة</string> <string name="awesomebar_clipboard_title">املأ الرابط من الحافظة</string>
<!-- Button in the search suggestions onboarding that allows search suggestions in private sessions --> <!-- Button in the search suggestions onboarding that allows search suggestions in private sessions -->
@ -228,6 +279,10 @@
<string name="preferences_toolbar">شريط الأدوات</string> <string name="preferences_toolbar">شريط الأدوات</string>
<!-- Preference for changing default theme to dark or light mode --> <!-- Preference for changing default theme to dark or light mode -->
<string name="preferences_theme">السمة</string> <string name="preferences_theme">السمة</string>
<!-- Preference for customizing the home screen -->
<string name="preferences_home">صفحة البداية</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">الإيماءات</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">خصّص</string> <string name="preferences_customize">خصّص</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -248,6 +303,8 @@
<string name="developer_tools_category">أدوات المطوّرين</string> <string name="developer_tools_category">أدوات المطوّرين</string>
<!-- Preference for developers --> <!-- Preference for developers -->
<string name="preferences_remote_debugging">التنقيح عن بعد عبر USB</string> <string name="preferences_remote_debugging">التنقيح عن بعد عبر USB</string>
<!-- Preference title for switch preference to show search engines -->
<string name="preferences_show_search_engines">اعرض محركات البحث</string>
<!-- Preference title for switch preference to show search suggestions --> <!-- Preference title for switch preference to show search suggestions -->
<string name="preferences_show_search_suggestions">اعرض اقتراحات البحث</string> <string name="preferences_show_search_suggestions">اعرض اقتراحات البحث</string>
<!-- Preference title for switch preference to show voice search button --> <!-- Preference title for switch preference to show voice search button -->
@ -264,9 +321,14 @@
<string name="preferences_account_settings">إعدادات الحساب</string> <string name="preferences_account_settings">إعدادات الحساب</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">افتح الروابط في التطبيقات</string> <string name="preferences_open_links_in_apps">افتح الروابط في التطبيقات</string>
<!-- Preference for open download with an external download manager app -->
<string name="preferences_external_download_manager">مدير التنزيل الخارجي</string>
<!-- Preference for add_ons --> <!-- Preference for add_ons -->
<string name="preferences_addons">الإضافات</string> <string name="preferences_addons">الإضافات</string>
<!-- Preference for notifications -->
<string name="preferences_notifications">التنبيهات</string>
<!-- Account Preferences --> <!-- Account Preferences -->
<!-- Preference for triggering sync --> <!-- Preference for triggering sync -->
<string name="preferences_sync_now">زامِن الآن</string> <string name="preferences_sync_now">زامِن الآن</string>
@ -336,6 +398,8 @@
<!-- Preference switch for usage and technical data collection --> <!-- Preference switch for usage and technical data collection -->
<string name="preference_usage_data">الاستخدام والبيانات التقنية</string> <string name="preference_usage_data">الاستخدام والبيانات التقنية</string>
<!-- Preference description for usage and technical data collection -->
<string name="preferences_usage_data_description">شارك بيانات المتصفح فيما يتعلق بالأداء و الاستخدام و العتاد و التخصيصات مع Mozilla لمساعدتنا في جعل %1$s أفضل</string>
<!-- Preference switch for marketing data collection --> <!-- Preference switch for marketing data collection -->
<string name="preferences_marketing_data">بيانات التسويق</string> <string name="preferences_marketing_data">بيانات التسويق</string>
<!-- Title for experiments preferences --> <!-- Title for experiments preferences -->
@ -380,6 +444,12 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">اتبع سمة الجهاز</string> <string name="preference_follow_device_theme">اتبع سمة الجهاز</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">اسحب للإنعاش</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">مرّر لإخفاء شريط الأدوات</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">الجلسات</string> <string name="library_sessions">الجلسات</string>
@ -411,6 +481,25 @@
<!-- Content description (not visible, for screen readers etc.): "Close button for library settings" --> <!-- Content description (not visible, for screen readers etc.): "Close button for library settings" -->
<string name="content_description_close_button">أغلِق</string> <string name="content_description_close_button">أغلِق</string>
<!-- Option in library for Recently Closed Tabs -->
<string name="library_recently_closed_tabs">الألسنة المُغلقة حديثًا</string>
<!-- Option in library to open Recently Closed Tabs page -->
<string name="recently_closed_show_full_history">اعرض التأريخ كاملا</string>
<!-- Recently closed tabs screen message when there are no recently closed tabs -->
<string name="recently_closed_empty_message">ما من ألسنة أُغلقت حديثًا</string>
<!-- Tab Management -->
<!-- Title of preference that allows a user to auto close tabs after a specified amount of time -->
<string name="preferences_close_tabs">إغلاق الألسنة</string>
<!-- Option for auto closing tabs that will never auto close tabs, always allows user to manually close tabs -->
<string name="close_tabs_manually">يدويًا</string>
<!-- Option for auto closing tabs that will auto close tabs after one day -->
<string name="close_tabs_after_one_day">بعد يوم واحد</string>
<!-- Option for auto closing tabs that will auto close tabs after one week -->
<string name="close_tabs_after_one_week">بعد أسبوع واحد</string>
<!-- Option for auto closing tabs that will auto close tabs after one month -->
<string name="close_tabs_after_one_month">بعد شهر واحد</string>
<!-- Sessions --> <!-- Sessions -->
<!-- Title for the list of tabs --> <!-- Title for the list of tabs -->
<string name="tab_header_label">الألسنة المفتوحة</string> <string name="tab_header_label">الألسنة المفتوحة</string>
@ -430,6 +519,10 @@
<string name="tab_tray_menu_item_save">احفظ في التجميعة</string> <string name="tab_tray_menu_item_save">احفظ في التجميعة</string>
<!-- Text shown in the menu for sharing all tabs --> <!-- Text shown in the menu for sharing all tabs -->
<string name="tab_tray_menu_item_share">شارِك كل الألسنة</string> <string name="tab_tray_menu_item_share">شارِك كل الألسنة</string>
<!-- Text shown in the menu to view recently closed tabs -->
<string name="tab_tray_menu_recently_closed">الألسنة المُغلقة حديثًا</string>
<!-- Text shown in the menu to view tab settings -->
<string name="tab_tray_menu_tab_settings">إعدادات اللسان</string>
<!-- Text shown in the menu for closing all tabs --> <!-- Text shown in the menu for closing all tabs -->
<string name="tab_tray_menu_item_close">أغلِق كل الألسنة</string> <string name="tab_tray_menu_item_close">أغلِق كل الألسنة</string>
<!-- Shortcut action to open new tab --> <!-- Shortcut action to open new tab -->
@ -448,6 +541,8 @@
<string name="tabs_menu_close_all_tabs">أغلِق كل الألسنة</string> <string name="tabs_menu_close_all_tabs">أغلِق كل الألسنة</string>
<!-- Open tabs menu item to share all tabs --> <!-- Open tabs menu item to share all tabs -->
<string name="tabs_menu_share_tabs">شارِك الألسنة</string> <string name="tabs_menu_share_tabs">شارِك الألسنة</string>
<!-- Open tabs menu item to save tabs to collection -->
<string name="tabs_menu_save_to_collection1">احفظ الألسنة في التجميعة</string>
<!-- Content description (not visible, for screen readers etc.): Opens the tab menu when pressed --> <!-- Content description (not visible, for screen readers etc.): Opens the tab menu when pressed -->
<string name="tab_menu">قائمة الألسنة</string> <string name="tab_menu">قائمة الألسنة</string>
<!-- Tab menu item to share the tab --> <!-- Tab menu item to share the tab -->
@ -469,6 +564,13 @@
<!-- Text for the menu button to remove a top site --> <!-- Text for the menu button to remove a top site -->
<string name="remove_top_site">أزِل</string> <string name="remove_top_site">أزِل</string>
<!-- Text for the menu button to delete a top site from history -->
<string name="delete_from_history">احذف من التأريخ</string>
<!-- Postfix for private WebApp titles, placeholder is replaced with app name -->
<string name="pwa_site_controls_title_private">%1$s (الوضع الخاص)</string>
<!-- Button in the current tab tray header in multiselect mode. Saved the selected tabs to a collection when pressed. -->
<string name="tab_tray_save_to_collection">احفظ</string>
<!-- History --> <!-- History -->
<!-- Text for the button to clear all history --> <!-- Text for the button to clear all history -->
<string name="history_delete_all">احذف التأريخ</string> <string name="history_delete_all">احذف التأريخ</string>
@ -505,6 +607,16 @@
<!-- Text shown when no history exists --> <!-- Text shown when no history exists -->
<string name="history_empty_message">ما من تأريخ هنا</string> <string name="history_empty_message">ما من تأريخ هنا</string>
<!-- Downloads -->
<!-- Text shown when no download exists -->
<string name="download_empty_message">لا تنزيلات هنا</string>
<!-- History multi select title in app bar
The first parameter is the number of downloads selected -->
<string name="download_multi_select_title">حدّدتَ %1$d</string>
<!-- Crashes -->
<!-- Title text displayed on the tab crash page. This first parameter is the name of the application (For example: Fenix) -->
<string name="tab_crash_title_2">نأسف. يتعذر على %1$s تحميل هذه الصفحة.</string>
<!-- Description text displayed on the tab crash page --> <!-- Description text displayed on the tab crash page -->
<string name="tab_crash_description">يمكنك محاولة استعادة اللسان أو إغلاقه أسفله.</string> <string name="tab_crash_description">يمكنك محاولة استعادة اللسان أو إغلاقه أسفله.</string>
<!-- Send crash report checkbox text on the tab crash page --> <!-- Send crash report checkbox text on the tab crash page -->
@ -529,6 +641,8 @@
<string name="bookmark_select_folder">اختر مجلدًا</string> <string name="bookmark_select_folder">اختر مجلدًا</string>
<!-- Confirmation message for a dialog confirming if the user wants to delete the selected folder --> <!-- Confirmation message for a dialog confirming if the user wants to delete the selected folder -->
<string name="bookmark_delete_folder_confirmation_dialog">أمتأكّد من حذف هذا المجلد؟</string> <string name="bookmark_delete_folder_confirmation_dialog">أمتأكّد من حذف هذا المجلد؟</string>
<!-- Confirmation message for a dialog confirming if the user wants to delete multiple items including folders. Parameter will be replaced by app name. -->
<string name="bookmark_delete_multiple_folders_confirmation_dialog">سيحذف %s العناصر المحدّدة.</string>
<!-- Snackbar title shown after a folder has been deleted. This first parameter is the name of the deleted folder --> <!-- Snackbar title shown after a folder has been deleted. This first parameter is the name of the deleted folder -->
<string name="bookmark_delete_folder_snackbar">حُذف %1$s</string> <string name="bookmark_delete_folder_snackbar">حُذف %1$s</string>
<!-- Screen title for adding a bookmarks folder --> <!-- Screen title for adding a bookmarks folder -->
@ -564,6 +678,10 @@
<!-- Bookmark folder editing screen title --> <!-- Bookmark folder editing screen title -->
<string name="edit_bookmark_folder_fragment_title">حرّر المجلد</string> <string name="edit_bookmark_folder_fragment_title">حرّر المجلد</string>
<!-- Bookmark sign in button message -->
<string name="bookmark_sign_in_button">لِج لترى العلامات المُزامنة</string>
<!-- Bookmark URL editing field label -->
<string name="bookmark_url_label">المسار</string>
<!-- Bookmark FOLDER editing field label --> <!-- Bookmark FOLDER editing field label -->
<string name="bookmark_folder_label">المجلد</string> <string name="bookmark_folder_label">المجلد</string>
<!-- Bookmark NAME editing field label --> <!-- Bookmark NAME editing field label -->
@ -609,6 +727,12 @@
<string name="preference_phone_feature_camera">الكمرة</string> <string name="preference_phone_feature_camera">الكمرة</string>
<!-- Preference for altering the microphone access for all websites --> <!-- Preference for altering the microphone access for all websites -->
<string name="preference_phone_feature_microphone">الميكروفون</string> <string name="preference_phone_feature_microphone">الميكروفون</string>
<!-- Preference for altering the location access for all websites -->
<string name="preference_phone_feature_location">المكان</string>
<!-- Preference for altering the notification access for all websites -->
<string name="preference_phone_feature_notification">التنبيهات</string>
<!-- Label that indicates that a permission must be asked always -->
<string name="preference_option_phone_feature_ask_to_allow">اطلب السماح</string>
<!-- Label that indicates that a permission must be blocked --> <!-- Label that indicates that a permission must be blocked -->
<string name="preference_option_phone_feature_blocked">محجوبة</string> <string name="preference_option_phone_feature_blocked">محجوبة</string>
<!-- Label that indicates that a permission must be allowed --> <!-- Label that indicates that a permission must be allowed -->
@ -636,10 +760,30 @@
<!-- Collections --> <!-- Collections -->
<!-- Collections header on home fragment --> <!-- Collections header on home fragment -->
<string name="collections_header">التجميعات</string> <string name="collections_header">التجميعات</string>
<!-- Content description (not visible, for screen readers etc.): Opens the collection menu when pressed -->
<string name="collection_menu_button_content_description">قائمة التجميعات</string>
<!-- Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description2">اجمع ما يهمّك.\nضَع عمليات البحث والمواقع والألسنة المتشابهة مع بعضها لتصل إليها لاحقا بسهولة.</string>
<!-- Title for the "select tabs" step of the collection creator -->
<string name="create_collection_select_tabs">اختر الألسنة</string>
<!-- Title for the "select collection" step of the collection creator -->
<string name="create_collection_select_collection">اختر التجميعة</string>
<!-- Title for the "name collection" step of the collection creator -->
<string name="create_collection_name_collection">ضَع اسما للتجميعة</string>
<!-- Button to add new collection for the "select collection" step of the collection creator -->
<string name="create_collection_add_new_collection">أضِف تجميعة جديدة</string>
<!-- Button to select all tabs in the "select tabs" step of the collection creator --> <!-- Button to select all tabs in the "select tabs" step of the collection creator -->
<string name="create_collection_select_all">اختر الكل</string> <string name="create_collection_select_all">اختر الكل</string>
<!-- Button to deselect all tabs in the "select tabs" step of the collection creator --> <!-- Button to deselect all tabs in the "select tabs" step of the collection creator -->
<string name="create_collection_deselect_all">ألغِ تحديد الكل</string> <string name="create_collection_deselect_all">ألغِ تحديد الكل</string>
<!-- Text to prompt users to select the tabs to save in the "select tabs" step of the collection creator -->
<string name="create_collection_save_to_collection_empty">حدّد الألسنة لحفظها</string>
<!-- Text shown in snackbar when multiple tabs have been saved in a collection -->
<string name="create_collection_tabs_saved">حُفظت الألسنة!</string>
<!-- Text shown in snackbar when one or multiple tabs have been saved in a new collection -->
<string name="create_collection_tabs_saved_new_collection">حُفظت التجميعة!</string>
<!-- Text shown in snackbar when one tab has been saved in a collection -->
<string name="create_collection_tab_saved">حُفظ اللسان!</string>
<!-- Content description (not visible, for screen readers etc.): button to close the collection creator --> <!-- Content description (not visible, for screen readers etc.): button to close the collection creator -->
<string name="create_collection_close">أغلِق</string> <string name="create_collection_close">أغلِق</string>
<!-- Button to save currently selected tabs in the "select tabs" step of the collection creator--> <!-- Button to save currently selected tabs in the "select tabs" step of the collection creator-->
@ -647,6 +791,9 @@
<!-- Snackbar action to view the collection the user just created or updated --> <!-- Snackbar action to view the collection the user just created or updated -->
<string name="create_collection_view">اعرض</string> <string name="create_collection_view">اعرض</string>
<!-- Default name for a new collection in "name new collection" step of the collection creator. %d is a placeholder for the number of collections-->
<string name="create_collection_default_name">تجميعة %d</string>
<!-- Share --> <!-- Share -->
<!-- Share screen header --> <!-- Share screen header -->
<string name="share_header">أرسِل وشارِك</string> <string name="share_header">أرسِل وشارِك</string>
@ -667,10 +814,14 @@
<string name="sync_sign_in">لِج إلى «المزامنة»</string> <string name="sync_sign_in">لِج إلى «المزامنة»</string>
<!-- An option from the share dialog to send link to all other sync devices --> <!-- An option from the share dialog to send link to all other sync devices -->
<string name="sync_send_to_all">أرسله إلى كل الأجهزة</string> <string name="sync_send_to_all">أرسله إلى كل الأجهزة</string>
<!-- An option from the share dialog to reconnect to sync -->
<string name="sync_reconnect">أعِد الاتصال بالتزامن</string>
<!-- Text displayed when sync is offline and cannot be accessed --> <!-- Text displayed when sync is offline and cannot be accessed -->
<string name="sync_offline">غير متصل</string> <string name="sync_offline">غير متصل</string>
<!-- An option to connect additional devices --> <!-- An option to connect additional devices -->
<string name="sync_connect_device">صِلْ جهازًا آخر</string> <string name="sync_connect_device">صِلْ جهازًا آخر</string>
<!-- The dialog text shown when additional devices are not available -->
<string name="sync_connect_device_dialog">لِج إلى Firefox على جهاز واحد آخر على الأقل لإرسال لسان إليه.</string>
<!-- Confirmation dialog button --> <!-- Confirmation dialog button -->
<string name="sync_confirmation_button">فهمت</string> <string name="sync_confirmation_button">فهمت</string>
<!-- Add new device screen title --> <!-- Add new device screen title -->
@ -686,10 +837,28 @@
<!-- Notifications --> <!-- Notifications -->
<!-- The user visible name of the "notification channel" (Android 8+ feature) for the ongoing notification shown while a browsing session is active. --> <!-- The user visible name of the "notification channel" (Android 8+ feature) for the ongoing notification shown while a browsing session is active. -->
<string name="notification_pbm_channel_name">جلسة تصفح خاصة</string> <string name="notification_pbm_channel_name">جلسة تصفح خاصة</string>
<!-- Text shown in the notification that pops up to remind the user that a private browsing session is active. -->
<string name="notification_pbm_delete_text">حذف الألسنة الخاصة</string>
<!-- Notification action to open Fenix and resume the current browsing session. --> <!-- Notification action to open Fenix and resume the current browsing session. -->
<string name="notification_pbm_action_open">افتح</string> <string name="notification_pbm_action_open">افتح</string>
<!-- Text shown in snackbar when user deletes a collection -->
<string name="snackbar_collection_deleted">حُذفت التجميعة</string>
<!-- Text shown in snackbar when user renames a collection -->
<string name="snackbar_collection_renamed">تغيّر اسم التجميعة</string>
<!-- Text shown in snackbar when user deletes a tab -->
<string name="snackbar_tab_deleted">حُذف اللسان</string>
<!-- Text shown in snackbar when user deletes all tabs -->
<string name="snackbar_tabs_deleted">حُذفت الألسنة</string>
<!-- Text shown in snackbar when user closes a tab --> <!-- Text shown in snackbar when user closes a tab -->
<string name="snackbar_tab_closed">أُغلق اللسان</string> <string name="snackbar_tab_closed">أُغلق اللسان</string>
<!-- Text shown in snackbar when user closes all tabs -->
<string name="snackbar_tabs_closed">أُغلقت الألسنة</string>
<!-- Text shown in snackbar when user closes a private tab -->
<string name="snackbar_private_tab_closed">أُغلق اللسان الخاص</string>
<!-- Text shown in snackbar when user closes all private tabs -->
<string name="snackbar_private_tabs_closed">أُغلقت الألسنة الخاصة</string>
<!-- Text shown in snackbar when user deletes all private tabs -->
<string name="snackbar_private_tabs_deleted">حُذفت الألسنة الخاصة</string>
<!-- Text shown in snackbar to undo deleting a tab, top site or collection --> <!-- Text shown in snackbar to undo deleting a tab, top site or collection -->
<string name="snackbar_deleted_undo">تراجَع</string> <string name="snackbar_deleted_undo">تراجَع</string>
<!-- Text shown in snackbar when user removes a top site --> <!-- Text shown in snackbar when user removes a top site -->
@ -698,19 +867,71 @@
<string name="a11y_dialog_deleted_undo">تراجَع</string> <string name="a11y_dialog_deleted_undo">تراجَع</string>
<!-- Text for action to confirm deleting a tab or collection shown in a11y dialog --> <!-- Text for action to confirm deleting a tab or collection shown in a11y dialog -->
<string name="a11y_dialog_deleted_confirm">أكّد</string> <string name="a11y_dialog_deleted_confirm">أكّد</string>
<!-- QR code scanner prompt which appears after scanning a code, but before navigating to it
First parameter is the name of the app, second parameter is the URL or text scanned-->
<string name="qr_scanner_confirmation_dialog_message">اسمح بأن يفتح %1$s %2$s</string>
<!-- QR code scanner prompt dialog positive option to allow navigation to scanned link -->
<string name="qr_scanner_dialog_positive">اسمح</string>
<!-- QR code scanner prompt dialog positive option to deny navigation to scanned link -->
<string name="qr_scanner_dialog_negative">ارفض</string>
<!-- Tab collection deletion prompt dialog message. Placeholder will be replaced with the collection name -->
<string name="tab_collection_dialog_message">أمتأكّد من حذف %1$s؟</string>
<!-- Collection and tab deletion prompt dialog message. This will show when the last tab from a collection is deleted -->
<string name="delete_tab_and_collection_dialog_message">بحذف هذا اللسان تحذف التجميعة كاملة. يمكنك إنشاء تجميعات أخرى جديدة متى أردت.</string>
<!-- Collection and tab deletion prompt dialog title. Placeholder will be replaced with the collection name. This will show when the last tab from a collection is deleted -->
<string name="delete_tab_and_collection_dialog_title">أنحذف %1$s؟</string>
<!-- Tab collection deletion prompt dialog option to delete the collection --> <!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">احذف</string> <string name="tab_collection_dialog_positive">احذف</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection --> <!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">ألغِ</string> <string name="tab_collection_dialog_negative">ألغِ</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">تدخل وضع ملء الشاشة</string>
<!-- Message for copying the URL via long press on the toolbar -->
<string name="url_copied">نُسخ المسار</string>
<!-- Sample text for accessibility font size -->
<string name="accessibility_text_size_sample_text_1">هذه عينة من نص، وتعرض لك شكل النص حين تزيد مقاسه باستعمال هذا الإعداد، أو تقلّله.</string>
<!-- Summary for Accessibility Text Size Scaling Preference -->
<string name="preference_accessibility_text_size_summary">كبرّ أو صغّر مقاس النص على المواقع</string>
<!-- Title for Accessibility Text Size Scaling Preference --> <!-- Title for Accessibility Text Size Scaling Preference -->
<string name="preference_accessibility_font_size_title">حجم الخط</string> <string name="preference_accessibility_font_size_title">حجم الخط</string>
<!-- Title for Accessibility Text Automatic Size Scaling Preference -->
<string name="preference_accessibility_auto_size_2">غيّر مقاس النص تلقائيا</string>
<!-- Summary for Accessibility Text Automatic Size Scaling Preference -->
<string name="preference_accessibility_auto_size_summary">سيتطابق مقاس الخط مع إعدادات أندرويد. عطّل الإعداد لإدارة المقاس هنا.</string>
<!-- Title for the Delete browsing data preference -->
<string name="preferences_delete_browsing_data">حذف بيانات التصفح</string>
<!-- Title for the tabs item in Delete browsing data -->
<string name="preferences_delete_browsing_data_tabs_title_2">الألسنة المفتوحة</string>
<!-- Title for the data and history items in Delete browsing data -->
<string name="preferences_delete_browsing_data_browsing_data_title">تأريخ التصفح وبيانات الموقع</string>
<!-- Title for history items in Delete browsing data --> <!-- Title for history items in Delete browsing data -->
<string name="preferences_delete_browsing_data_browsing_history_title">التأريخ</string> <string name="preferences_delete_browsing_data_browsing_history_title">التأريخ</string>
<!-- Title for the cookies item in Delete browsing data -->
<string name="preferences_delete_browsing_data_cookies">الكعكات</string>
<!-- Subtitle for the cookies item in Delete browsing data -->
<string name="preferences_delete_browsing_data_cookies_subtitle">ستخرج من معظم المواقع</string>
<!-- Title for the cached images and files item in Delete browsing data -->
<string name="preferences_delete_browsing_data_cached_files">الصور والملفات المخبّأة</string>
<!-- Title for the site permissions item in Delete browsing data -->
<string name="preferences_delete_browsing_data_site_permissions">تصاريح المواقع</string>
<!-- Text for the button to delete browsing data -->
<string name="preferences_delete_browsing_data_button">احذف بيانات التصفح</string>
<!-- Title for the Delete browsing data on quit preference -->
<string name="preferences_delete_browsing_data_on_quit">احذف بيانات التصفح عند المغادرة</string>
<!-- Summary for the Delete browsing data on quit preference. "Quit" translation should match delete_browsing_data_on_quit_action translation. -->
<string name="preference_summary_delete_browsing_data_on_quit">يحذف بيانات التصفح تلقائيا حين تنقر ”غادِر“ من القائمة الرئيسية</string>
<!-- Summary for the Delete browsing data on quit preference. "Quit" translation should match delete_browsing_data_on_quit_action translation. -->
<string name="preference_summary_delete_browsing_data_on_quit_2">يحذف بيانات التصفح تلقائيا حين تنقر ”غادِر“ من القائمة الرئيسية</string>
<!-- Action item in menu for the Delete browsing data on quit feature --> <!-- Action item in menu for the Delete browsing data on quit feature -->
<string name="delete_browsing_data_on_quit_action">أغلِق</string> <string name="delete_browsing_data_on_quit_action">غادِر</string>
<!-- Dialog message to the user asking to delete browsing data. -->
<string name="delete_browsing_data_prompt_message">سيحذف هذا كل بيانات تصفحك.</string>
<!-- Dialog message to the user asking to delete browsing data. Parameter will be replaced by app name. -->
<string name="delete_browsing_data_prompt_message_3">سيحذف %s بيانات التصفح المحددّة.</string>
<!-- Text for the cancel button for the data deletion dialog --> <!-- Text for the cancel button for the data deletion dialog -->
<string name="delete_browsing_data_prompt_cancel">ألغِ</string> <string name="delete_browsing_data_prompt_cancel">ألغِ</string>
<!-- Text for the allow button for the data deletion dialog --> <!-- Text for the allow button for the data deletion dialog -->
@ -720,6 +941,19 @@
<!-- Text for the snackbar to show the user that the deletion of browsing data is in progress --> <!-- Text for the snackbar to show the user that the deletion of browsing data is in progress -->
<string name="deleting_browsing_data_in_progress">يحذف بيانات التصفح…</string> <string name="deleting_browsing_data_in_progress">يحذف بيانات التصفح…</string>
<!-- Tips -->
<!-- text for firefox preview moving tip header "Firefox Preview" and "Firefox Nightly" are intentionally hardcoded -->
<string name="tip_firefox_preview_moved_header">صار Firefox Preview الآن Firefox Nightly</string>
<!-- text for firefox preview moving tip button. "Firefox for Android Beta" is intentionally hardcoded -->
<string name="tip_firefox_preview_moved_button_2">نزّل نسخة Firefox لأندرويد التجريبية</string>
<!-- text for firefox preview moving tip button -->
<string name="tip_firefox_preview_moved_button_preview_not_installed">نزّل النسخة الليلية الجديدة</string>
<!-- Onboarding -->
<!-- Text for onboarding welcome message
The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_header">مرحبًا بك في %s!</string>
<!-- text for the Firefox Accounts section header --> <!-- text for the Firefox Accounts section header -->
<string name="onboarding_fxa_section_header">ألديك حساب؟</string> <string name="onboarding_fxa_section_header">ألديك حساب؟</string>
<!-- text for the Firefox Preview feature section header <!-- text for the Firefox Preview feature section header
@ -727,11 +961,12 @@
<string name="onboarding_feature_section_header">تعرف على %s</string> <string name="onboarding_feature_section_header">تعرف على %s</string>
<!-- text for the "What's New" onboarding card header --> <!-- text for the "What's New" onboarding card header -->
<string name="onboarding_whats_new_header1">اعرف ما الجديد</string> <string name="onboarding_whats_new_header1">اعرف ما الجديد</string>
<!-- text for the firefox account onboarding card header <!-- text for the automatic sign-in button while signing in is in process -->
The first parameter is the name of the app (e.g. Firefox Preview) --> <string name="onboarding_firefox_account_signing_in">تَلج الآن…</string>
<string name="onboarding_firefox_account_header">استغلّ %s إلى أقصى حد.</string>
<!-- text for the button to manually sign into Firefox account. The word "Firefox" should not be translated --> <!-- text for the button to manually sign into Firefox account. The word "Firefox" should not be translated -->
<string name="onboarding_firefox_account_sign_in">لِج إلى Firefox</string> <string name="onboarding_firefox_account_sign_in">لِج إلى Firefox</string>
<!-- text to display in the snackbar once account is signed-in -->
<string name="onboarding_firefox_account_sync_is_on">التزامن يعمل</string>
<!-- text to display in the snackbar if automatic sign-in fails. user may try again --> <!-- text to display in the snackbar if automatic sign-in fails. user may try again -->
<string name="onboarding_firefox_account_automatic_signin_failed">فشل الولوج</string> <string name="onboarding_firefox_account_automatic_signin_failed">فشل الولوج</string>
<!-- text for tracking protection radio button option for standard level of blocking --> <!-- text for tracking protection radio button option for standard level of blocking -->
@ -771,6 +1006,14 @@
<string name="sync_sent_tab_error_snackbar">تعذر الإرسال</string> <string name="sync_sent_tab_error_snackbar">تعذر الإرسال</string>
<!-- Text shown in snackbar for the "retry" action that the user has after sharing tabs failed --> <!-- Text shown in snackbar for the "retry" action that the user has after sharing tabs failed -->
<string name="sync_sent_tab_error_snackbar_action">أعِد المحاولة</string> <string name="sync_sent_tab_error_snackbar_action">أعِد المحاولة</string>
<!-- Instructions on how to access pairing -->
<string name="sign_in_instructions"><![CDATA[افتح Firefox على حاسوبك وانتقل إلى <b>https://firefox.com/pair</b>]]></string>
<!-- Text shown for sign in pairing when ready -->
<string name="sign_in_ready_for_scan">جاهز للمسح</string>
<!-- Text shown for settings option for sign with pairing -->
<string name="sign_in_with_camera">لِج باستخدام كمرتك</string>
<!-- Text shown for settings option for sign with email -->
<string name="sign_in_with_email">استعمل البريد بدل المسح</string>
<!-- Text shown in confirmation dialog to sign out of account --> <!-- Text shown in confirmation dialog to sign out of account -->
<string name="sign_out_confirmation_message">سيتوقف Firefox عن مزامنة حسابك، لكن لن يحذف أيًا من بيانات تصفحك على هذا الجهاز.</string> <string name="sign_out_confirmation_message">سيتوقف Firefox عن مزامنة حسابك، لكن لن يحذف أيًا من بيانات تصفحك على هذا الجهاز.</string>
<!-- Text shown in confirmation dialog to sign out of account. The first parameter is the name of the app (e.g. Firefox Preview) --> <!-- Text shown in confirmation dialog to sign out of account. The first parameter is the name of the app (e.g. Firefox Preview) -->
@ -836,6 +1079,8 @@
<string name="etp_cryptominers_title">المُعدّنات المعمّاة</string> <string name="etp_cryptominers_title">المُعدّنات المعمّاة</string>
<!-- Category of trackers (fingerprinters) that can be blocked by Enhanced Tracking Protection --> <!-- Category of trackers (fingerprinters) that can be blocked by Enhanced Tracking Protection -->
<string name="etp_fingerprinters_title">مسجّلات البصمات</string> <string name="etp_fingerprinters_title">مسجّلات البصمات</string>
<!-- Category of trackers (tracking content) that can be blocked by Enhanced Tracking Protection -->
<string name="etp_tracking_content_title">المحتوى الذي يتعقّبك</string>
<!-- Enhanced Tracking Protection message that protection is currently on for this site --> <!-- Enhanced Tracking Protection message that protection is currently on for this site -->
<string name="etp_panel_on">فُعّلت الحماية في هذا الموقع</string> <string name="etp_panel_on">فُعّلت الحماية في هذا الموقع</string>
<!-- Enhanced Tracking Protection message that protection is currently off for this site --> <!-- Enhanced Tracking Protection message that protection is currently off for this site -->
@ -922,8 +1167,12 @@
<string name="preferences_passwords_saved_logins_username">اسم المستخدم</string> <string name="preferences_passwords_saved_logins_username">اسم المستخدم</string>
<!-- The header for the password for a login --> <!-- The header for the password for a login -->
<string name="preferences_passwords_saved_logins_password">كلمة السر</string> <string name="preferences_passwords_saved_logins_password">كلمة السر</string>
<!-- Message displayed when a connection is insecure and we detect the user is entering a password -->
<string name="logins_insecure_connection_warning">هذا الاتصال ليس آمنا. بيانات الولوج المدخلة هنا عرضة للخطر.</string>
<!-- Learn more link that will link to a page with more information displayed when a connection is insecure and we detect the user is entering a password --> <!-- Learn more link that will link to a page with more information displayed when a connection is insecure and we detect the user is entering a password -->
<string name="logins_insecure_connection_warning_learn_more">اطّلع على المزيد</string> <string name="logins_insecure_connection_warning_learn_more">اطّلع على المزيد</string>
<!-- Prompt message displayed when Fenix detects a user has entered a password and user decides if Fenix should save it. The first parameter is the name of the application (For example: Fenix) -->
<string name="logins_doorhanger_save">أتريد أن يحفظ %s جلسة الولوج هذه؟</string>
<!-- Positive confirmation that Fenix should save the new or updated login --> <!-- Positive confirmation that Fenix should save the new or updated login -->
<string name="logins_doorhanger_save_confirmation">احفظ</string> <string name="logins_doorhanger_save_confirmation">احفظ</string>
<!-- Negative confirmation that Fenix should not save the new or updated login --> <!-- Negative confirmation that Fenix should not save the new or updated login -->
@ -971,16 +1220,37 @@
<!-- Text for the button to learn more about adding a custom search engine --> <!-- Text for the button to learn more about adding a custom search engine -->
<string name="search_add_custom_engine_learn_more_label">اطّلع على المزيد</string> <string name="search_add_custom_engine_learn_more_label">اطّلع على المزيد</string>
<!-- Accessibility description for the 'Learn more' link -->
<string name="search_add_custom_engine_learn_more_description">رابط ”اطّلع على المزيد“</string>
<!-- Text shown when a user leaves the name field empty --> <!-- Text shown when a user leaves the name field empty -->
<string name="search_add_custom_engine_error_empty_name">أدخِل اسم محرك البحث</string> <string name="search_add_custom_engine_error_empty_name">أدخِل اسم محرك البحث</string>
<!-- Text shown when a user leaves the search string field empty --> <!-- Text shown when a user leaves the search string field empty -->
<string name="search_add_custom_engine_error_empty_search_string">أدخِل نص البحث</string> <string name="search_add_custom_engine_error_empty_search_string">أدخِل نص البحث</string>
<!-- Text shown when we aren't able to validate the custom search query. The first parameter is the url of the custom search engine -->
<string name="search_add_custom_engine_error_cannot_reach">عُطل أثناء الاتصال بِ‍ ”%s“</string>
<!-- Text shown when a user creates a new search engine -->
<string name="search_add_custom_engine_success_message">أُنشئ %s</string>
<!-- Text shown when a user successfully edits a custom search engine -->
<string name="search_edit_custom_engine_success_message">حُفظ %s</string>
<!-- Text shown when a user successfully deletes a custom search engine -->
<string name="search_delete_search_engine_success_message">حُذف %s</string>
<!-- Text on the disabled button while in progress. Placeholder replaced with app name -->
<string name="migration_updating_app_button_text">يحدّث %s…</string>
<!-- Text on the enabled button. Placeholder replaced with app name--> <!-- Text on the enabled button. Placeholder replaced with app name-->
<string name="migration_update_app_button">ابدأ %s</string> <string name="migration_update_app_button">ابدأ %s</string>
<!--Text on list of migrated items (e.g. Settings, History, etc.)--> <!--Text on list of migrated items (e.g. Settings, History, etc.)-->
<string name="migration_text_passwords">كلمات السر</string> <string name="migration_text_passwords">كلمات السر</string>
<!-- Heading for the instructions to allow a permission -->
<string name="phone_feature_blocked_intro">لتسمح بالتصريح:</string>
<!-- First step for the allowing a permission -->
<string name="phone_feature_blocked_step_settings">1. انتقل إلى إعدادات أندرويد</string>
<!-- Second step for the allowing a permission -->
<string name="phone_feature_blocked_step_permissions"><![CDATA[2. انقر <b>الأذونات</b>]]></string>
<!-- Label that indicates a site is using a secure connection --> <!-- Label that indicates a site is using a secure connection -->
<string name="quick_settings_sheet_secure_connection">اتصال آمن</string> <string name="quick_settings_sheet_secure_connection">اتصال آمن</string>
<!-- Label that indicates a site is using a insecure connection --> <!-- Label that indicates a site is using a insecure connection -->
@ -991,8 +1261,15 @@
<string name="confirm_clear_permissions_site">أمتأكد من مسح كل الصلاحيات لهذا الموقع؟</string> <string name="confirm_clear_permissions_site">أمتأكد من مسح كل الصلاحيات لهذا الموقع؟</string>
<!-- Confirmation message for a dialog confirming if the user wants to set default value a permission for a site--> <!-- Confirmation message for a dialog confirming if the user wants to set default value a permission for a site-->
<string name="confirm_clear_permission_site">أمتأكد من مسح التصريح لهذا الموقع؟</string> <string name="confirm_clear_permission_site">أمتأكد من مسح التصريح لهذا الموقع؟</string>
<!-- label shown when there are not site exceptions to show in the site exception settings -->
<string name="no_site_exceptions">ما من مواقع مستثناة</string>
<!-- Bookmark deletion confirmation -->
<string name="bookmark_deletion_confirmation">أمتأكد من حذف هذه العلامة؟</string>
<!-- Browser menu button that adds a top site to the home fragment --> <!-- Browser menu button that adds a top site to the home fragment -->
<string name="browser_menu_add_to_top_sites">أضِف للمواقع الشائعة</string> <string name="browser_menu_add_to_top_sites">أضِف للمواقع الشائعة</string>
<!-- text shown before the issuer name to indicate who its verified by, parameter is the name of
the certificate authority that verified the ticket-->
<string name="certificate_info_verified_by">تثبّت منها: %1$s</string>
<!-- Login overflow menu delete button --> <!-- Login overflow menu delete button -->
<string name="login_menu_delete_button">احذف</string> <string name="login_menu_delete_button">احذف</string>
<!-- Login overflow menu edit button --> <!-- Login overflow menu edit button -->
@ -1001,6 +1278,10 @@
<string name="login_deletion_confirmation">أمتأكد من حذف جلسة الولوج هذه؟</string> <string name="login_deletion_confirmation">أمتأكد من حذف جلسة الولوج هذه؟</string>
<!-- Positive action of a dialog asking to delete --> <!-- Positive action of a dialog asking to delete -->
<string name="dialog_delete_positive">احذف</string> <string name="dialog_delete_positive">احذف</string>
<!-- The saved login options menu description. -->
<string name="login_options_menu">خيارات الولوج</string>
<!-- The button description to save changes to an edited login. -->
<string name="save_changes_to_login">احفظ التغييرات على الولوج.</string>
<!-- The button description to discard changes to an edited login. --> <!-- The button description to discard changes to an edited login. -->
<string name="discard_changes">أهمِل التعديلات</string> <string name="discard_changes">أهمِل التعديلات</string>
<!-- The page title for editing a saved login. --> <!-- The page title for editing a saved login. -->
@ -1015,8 +1296,10 @@
<string name="saved_login_duplicate">يوجد بالفعل جلسة ولوج باسم المستخدم هذا</string> <string name="saved_login_duplicate">يوجد بالفعل جلسة ولوج باسم المستخدم هذا</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">صِلْ جهازا آخر.</string> <string name="synced_tabs_connect_another_device">صِلْ جهازا آخر.</string>
<!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">من فضلك أعِد الاستيثاق.</string>
<!-- Text displayed when user has disabled tab syncing in Firefox Sync Account --> <!-- Text displayed when user has disabled tab syncing in Firefox Sync Account -->
<string name="synced_tabs_enable_tab_syncing">من فضلك فعّل مزامنة الألسنة.</string> <string name="synced_tabs_enable_tab_syncing">من فضلك فعّل مزامنة الألسنة.</string>
<!-- Text displayed when user has no tabs that have been synced --> <!-- Text displayed when user has no tabs that have been synced -->
@ -1026,9 +1309,13 @@
<!-- Text displayed on a button in the synced tabs screen to link users to sign in when a user is not signed in to Firefox Sync --> <!-- Text displayed on a button in the synced tabs screen to link users to sign in when a user is not signed in to Firefox Sync -->
<string name="synced_tabs_sign_in_button">لِج إلى «المزامنة»</string> <string name="synced_tabs_sign_in_button">لِج إلى «المزامنة»</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">لإضافة موقع شائع جديد، أزِل واحدًا. انقر مطولًا على الموقع واختر ”أزِل“.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">حسنًا، فهمت</string> <string name="top_sites_max_limit_confirmation_button">حسنًا، فهمت</string>
<!-- depcrecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">استغلّ %s إلى أقصى حد.</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">يمكنك إضافة هذا الموقع إلى شاشة البداية لتصل إليه بسرعة وتتصفحه كأي تطبيق آخر.</string>
</resources> </resources>

@ -478,6 +478,8 @@
<!-- Content description (not visible, for screen readers etc.): "Close button for library settings" --> <!-- Content description (not visible, for screen readers etc.): "Close button for library settings" -->
<string name="content_description_close_button">Закрыць</string> <string name="content_description_close_button">Закрыць</string>
<!-- Option in library for Recently Closed Tabs -->
<string name="library_recently_closed_tabs">Нядаўна закрытыя карткі</string>
<!-- Option in library to open Recently Closed Tabs page --> <!-- Option in library to open Recently Closed Tabs page -->
<string name="recently_closed_show_full_history">Паказаць усю гісторыю</string> <string name="recently_closed_show_full_history">Паказаць усю гісторыю</string>
<!-- Text to show users they have multiple tabs saved in the Recently Closed Tabs section of history. <!-- Text to show users they have multiple tabs saved in the Recently Closed Tabs section of history.
@ -1229,6 +1231,9 @@
<!-- About page link text to open a screen with libraries that are used --> <!-- About page link text to open a screen with libraries that are used -->
<string name="about_other_open_source_libraries">Бібліятэкі, якімі мы карыстаемся</string> <string name="about_other_open_source_libraries">Бібліятэкі, якімі мы карыстаемся</string>
<!-- Toast shown to the user when they are activating the secret dev menu
The first parameter is number of long clicks left to enable the menu -->
<string name="about_debug_menu_toast_progress">Меню адладкі: %1$d націсканняў да ўключэння</string>
<string name="about_debug_menu_toast_done">Меню адладкі ўключана</string> <string name="about_debug_menu_toast_done">Меню адладкі ўключана</string>
<!-- Content description of the tab counter toolbar button when one tab is open --> <!-- Content description of the tab counter toolbar button when one tab is open -->
@ -1395,6 +1400,8 @@
<!-- Text shown when a user leaves the name field empty --> <!-- Text shown when a user leaves the name field empty -->
<string name="search_add_custom_engine_error_empty_name">Увядзіце назву пошукавай сістэмы</string> <string name="search_add_custom_engine_error_empty_name">Увядзіце назву пошукавай сістэмы</string>
<!-- Text shown when a user tries to add a search engine that already exists -->
<string name="search_add_custom_engine_error_existing_name">Пашукавік з назваю “%s” ужо існуе.</string>
<!-- Text shown when a user leaves the search string field empty --> <!-- Text shown when a user leaves the search string field empty -->
<string name="search_add_custom_engine_error_empty_search_string">Увядзіце радок пошуку</string> <string name="search_add_custom_engine_error_empty_search_string">Увядзіце радок пошуку</string>
@ -1445,6 +1452,8 @@
<string name="confirm_clear_permission_site">Ці ўпэўнены, што хочаце выдаліць гэты дазвол для гэтага сайта?</string> <string name="confirm_clear_permission_site">Ці ўпэўнены, што хочаце выдаліць гэты дазвол для гэтага сайта?</string>
<!-- label shown when there are not site exceptions to show in the site exception settings --> <!-- label shown when there are not site exceptions to show in the site exception settings -->
<string name="no_site_exceptions">Няма выняткаў для сайта</string> <string name="no_site_exceptions">Няма выняткаў для сайта</string>
<!-- Label for the Pocket default top site -->
<string name="pocket_top_articles">Папулярныя артыкулы</string>
<!-- Bookmark deletion confirmation --> <!-- Bookmark deletion confirmation -->
<string name="bookmark_deletion_confirmation">Ці ўпэўнены Вы, што хочаце выдаліць гэту закладку?</string> <string name="bookmark_deletion_confirmation">Ці ўпэўнены Вы, што хочаце выдаліць гэту закладку?</string>
<!-- Browser menu button that adds a top site to the home fragment --> <!-- Browser menu button that adds a top site to the home fragment -->
@ -1461,6 +1470,8 @@
<string name="login_deletion_confirmation">Вы сапраўды хочаце выдаліць гэтае лагін?</string> <string name="login_deletion_confirmation">Вы сапраўды хочаце выдаліць гэтае лагін?</string>
<!-- Positive action of a dialog asking to delete --> <!-- Positive action of a dialog asking to delete -->
<string name="dialog_delete_positive">Выдаліць</string> <string name="dialog_delete_positive">Выдаліць</string>
<!-- The saved login options menu description. -->
<string name="login_options_menu">Налады лагіна</string>
<!-- The editable text field for a login's web address. --> <!-- The editable text field for a login's web address. -->
<string name="saved_login_hostname_description">Тэкставае поле для рэдагавання вэб-адраса для ўваходу ў сістэму.</string> <string name="saved_login_hostname_description">Тэкставае поле для рэдагавання вэб-адраса для ўваходу ў сістэму.</string>
<!-- The editable text field for a login's username. --> <!-- The editable text field for a login's username. -->
@ -1491,6 +1502,8 @@
<string name="synced_tabs_reauth">Калі ласка, аўтарызуйцеся яшчэ раз.</string> <string name="synced_tabs_reauth">Калі ласка, аўтарызуйцеся яшчэ раз.</string>
<!-- Text displayed when user has disabled tab syncing in Firefox Sync Account --> <!-- Text displayed when user has disabled tab syncing in Firefox Sync Account -->
<string name="synced_tabs_enable_tab_syncing">Калі ласка, уключыце сінхранізацыю картак.</string> <string name="synced_tabs_enable_tab_syncing">Калі ласка, уключыце сінхранізацыю картак.</string>
<!-- Text displayed when user has no tabs that have been synced -->
<string name="synced_tabs_no_tabs">На іншых вашых прыладах у Firefox не адкрыта ніводнай карткі.</string>
<!-- Text displayed in the synced tabs screen when a user is not signed in to Firefox Sync describing Synced Tabs --> <!-- Text displayed in the synced tabs screen when a user is not signed in to Firefox Sync describing Synced Tabs -->
<string name="synced_tabs_sign_in_message">Пабачыць спіс картак з іншых прылад.</string> <string name="synced_tabs_sign_in_message">Пабачыць спіс картак з іншых прылад.</string>
<!-- Text displayed on a button in the synced tabs screen to link users to sign in when a user is not signed in to Firefox Sync --> <!-- Text displayed on a button in the synced tabs screen to link users to sign in when a user is not signed in to Firefox Sync -->
@ -1499,6 +1512,9 @@
<!-- The text displayed when a synced device has no tabs to show in the list of Synced Tabs. --> <!-- The text displayed when a synced device has no tabs to show in the list of Synced Tabs. -->
<string name="synced_tabs_no_open_tabs">Няма адкрытых картак</string> <string name="synced_tabs_no_open_tabs">Няма адкрытых картак</string>
<!-- Top Sites -->
<!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Дасягнуты ліміт папулярных сайтаў</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">OK, зразумела</string> <string name="top_sites_max_limit_confirmation_button">OK, зразумела</string>
@ -1508,7 +1524,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Выдаліць</string> <string name="remove_home_collection_placeholder_content_description">Выдаліць</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Атрымайце максімум ад %s.</string> <string name="onboarding_firefox_account_header">Атрымайце максімум ад %s.</string>
@ -1516,4 +1532,6 @@
<string name="no_collections_header1">Збірайце важныя для вас рэчы</string> <string name="no_collections_header1">Збірайце важныя для вас рэчы</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Групуйце падобныя пошукі, сайты і карткі для хуткага доступу.</string> <string name="no_collections_description1">Групуйце падобныя пошукі, сайты і карткі для хуткага доступу.</string>
<!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Вы ўвайшлі як %s у іншым браўзеры Firefox на гэтым тэлефоне. Ці хочаце аўтарызавацца з дапамогай гэтага ўліковага запісу?</string>
</resources> </resources>

@ -292,6 +292,8 @@
<string name="preferences_theme">Vzhled</string> <string name="preferences_theme">Vzhled</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Domovská stránka</string> <string name="preferences_home">Domovská stránka</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Gesta</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Přizpůsobení</string> <string name="preferences_customize">Přizpůsobení</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -329,6 +331,8 @@
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Nastavení účtu</string> <string name="preferences_account_settings">Nastavení účtu</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Automaticky doplňovat URL adresy</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Otevírat odkazy v aplikacích</string> <string name="preferences_open_links_in_apps">Otevírat odkazy v aplikacích</string>
@ -470,6 +474,17 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">Podle nastavení zařízení</string> <string name="preference_follow_device_theme">Podle nastavení zařízení</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">Znovu načíst stránku potažením shora</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">Skrýt nástrojovou lištu při posouvání</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">Přepínat panely posunutím nástrojové lišty do stran</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">Zobrazit panely vytažením nástrojové lišty nahoru</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Relace</string> <string name="library_sessions">Relace</string>
@ -1064,6 +1079,10 @@
<string name="onboarding_account_sign_in_header">S účtem Firefoxu můžete synchronizovat záložky, hesla i další svá data.</string> <string name="onboarding_account_sign_in_header">S účtem Firefoxu můžete synchronizovat záložky, hesla i další svá data.</string>
<!-- Text for the button to learn more about signing in to your Firefox account --> <!-- Text for the button to learn more about signing in to your Firefox account -->
<string name="onboarding_manual_sign_in_learn_more">Zjistit více</string> <string name="onboarding_manual_sign_in_learn_more">Zjistit více</string>
<!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_3">V dalším prohlížeči Firefox na tomto zařízení už jste přihlášení jako %s. Chcete se přihlásit tímto účtem?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Ano, přihlásit</string> <string name="onboarding_firefox_account_auto_signin_confirm">Ano, přihlásit</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1305,6 +1324,9 @@
<!-- Placeholder text for the TextView in the Add to Homescreen dialog --> <!-- Placeholder text for the TextView in the Add to Homescreen dialog -->
<string name="add_to_homescreen_text_placeholder">Název zkratky</string> <string name="add_to_homescreen_text_placeholder">Název zkratky</string>
<!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description_2">Tuto stránku si můžete snadno přidat na domovskou obrazovku svého zařázení. Budete k ní mít okamžitý přístup a prohlížení bude rychlejší se zážitkem jako v aplikaci.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Přihlašovací údaje</string> <string name="preferences_passwords_logins_and_passwords">Přihlašovací údaje</string>
<!-- Preference for managing the saving of logins and passwords in Fenix --> <!-- Preference for managing the saving of logins and passwords in Fenix -->
@ -1373,8 +1395,12 @@
<string name="logins_site_copied">Server zkopírován do schránky</string> <string name="logins_site_copied">Server zkopírován do schránky</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Kopírovat heslo</string> <string name="saved_logins_copy_password">Kopírovat heslo</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Vymazat heslo</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Kopírovat uživatelské jméno</string> <string name="saved_login_copy_username">Kopírovat uživatelské jméno</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Vymazat uživatelské jméno</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Kopírovat server</string> <string name="saved_login_copy_site">Kopírovat server</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1553,13 +1579,18 @@
<!-- Top Sites --> <!-- Top Sites -->
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Dosažen limit počtu top stránek</string> <string name="top_sites_max_limit_title">Dosažen limit počtu top stránek</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content_2">Pro přidání další top stránky nejdříve nějakou odeberte. Stačí na ní podržet prst.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">OK, rozumím</string> <string name="top_sites_max_limit_confirmation_button">OK, rozumím</string>
<!-- Label for the show most visited sites preference --> <!-- Label for the show most visited sites preference -->
<string name="top_sites_toggle_top_frecent_sites">Zobrazovat nejnavštěvovanější stránky</string> <string name="top_sites_toggle_top_frecent_sites">Zobrazovat nejnavštěvovanější stránky</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Odstranit</string>
<!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Využijte aplikaci %s naplno.</string> <string name="onboarding_firefox_account_header">Využijte aplikaci %s naplno.</string>
@ -1570,6 +1601,6 @@
<!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to --> <!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">V dalším prohlížeči Firefox na tomto telefonu už jste přihlášení jako %s. Chcete se přihlásit tímto účtem?</string> <string name="onboarding_firefox_account_auto_signin_header_2">V dalším prohlížeči Firefox na tomto telefonu už jste přihlášení jako %s. Chcete se přihlásit tímto účtem?</string>
<!-- Deprecated: Describes the add to homescreen functionality --> <!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Tuto stránku si můžete snadno přidat na domovskou obrazovku vašeho telefonu. Budete k ní mít okamžitý přístup a prohlížení bude rychlejší se zážitkem jako v aplikaci.</string> <string name="add_to_homescreen_description">Tuto stránku si můžete snadno přidat na domovskou obrazovku svého telefonu. Budete k ní mít okamžitý přístup a prohlížení bude rychlejší se zážitkem jako v aplikaci.</string>
</resources> </resources>

@ -267,6 +267,8 @@
<string name="preferences_open_links_in_a_private_tab">Agor dolen mewn tab preifat</string> <string name="preferences_open_links_in_a_private_tab">Agor dolen mewn tab preifat</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">Caniatáu lluniau sgrin o fewn pori preifat</string> <string name="preferences_allow_screenshots_in_private_mode">Caniatáu lluniau sgrin o fewn pori preifat</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">Os fydd yn cael ei ganiatáu, bydd tabiau preifat hefyd yn weladwy pan fydd sawl ap ar agor</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">Ychwanegu llwybr byr pori preifat</string> <string name="preferences_add_private_browsing_shortcut">Ychwanegu llwybr byr pori preifat</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -287,6 +289,8 @@
<string name="preferences_theme">Thema</string> <string name="preferences_theme">Thema</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Cartref</string> <string name="preferences_home">Cartref</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Ystumiau</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Cyfaddasu</string> <string name="preferences_customize">Cyfaddasu</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -321,9 +325,13 @@
<string name="preferences_search_browsing_history">Chwilio hanes pori</string> <string name="preferences_search_browsing_history">Chwilio hanes pori</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">Chwilio nodau tudalen</string> <string name="preferences_search_bookmarks">Chwilio nodau tudalen</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">Chwilio tabiau wediu cydweddu</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Gosodiadau cyfrif</string> <string name="preferences_account_settings">Gosodiadau cyfrif</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Awtogwblhau URLau</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Agor dolenni mewn apiau</string> <string name="preferences_open_links_in_apps">Agor dolenni mewn apiau</string>
@ -461,6 +469,16 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">Dilyn themar ddyfais</string> <string name="preference_follow_device_theme">Dilyn themar ddyfais</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">Tynnu i adnewyddu</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">Sgrolio i guddior bar offer</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">Llusgor bar offer ir ochr i newid tabiau</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">Llusgor bar offer i fyny i agor tabiau</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Fersiynau</string> <string name="library_sessions">Fersiynau</string>
@ -1050,7 +1068,7 @@ Fodd bynnag, gall fod yn llai sefydlog. Llwythwch ein porwr Beta i gael profiad
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">Rydych wedi eich mewngofnodi fel %s ar borwr Firefox arall ar y ffôn hwn. Hoffech chi fewngofnodi gydar cyfrif hwn?</string> <string name="onboarding_firefox_account_auto_signin_header_3">Rydych wedi mewngofnodi fel %s ar borwr Firefox arall ar y ddyfais hon. Hoffech chi fewngofnodi gydar cyfrif hwn?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Iawn, mewngofnodwch fi</string> <string name="onboarding_firefox_account_auto_signin_confirm">Iawn, mewngofnodwch fi</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1295,7 +1313,7 @@ Fodd bynnag, gall fod yn llai sefydlog. Llwythwch ein porwr Beta i gael profiad
<string name="add_to_homescreen_text_placeholder">Enw llwybr byr</string> <string name="add_to_homescreen_text_placeholder">Enw llwybr byr</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Gallwch ychwanegur wefan hon yn hawdd i sgrin Cartref eich ffôn. Byddwch yn cael mynediad ar unwaith a phorin gyflymach gyda phrofiad tebyg i ap.</string> <string name="add_to_homescreen_description_2">Gallwch ychwanegur wefan hon yn hawdd i sgrin Cartref eich ffôn i gael mynediad ar unwaith a phorin gyflymach gyda phrofiad tebyg i ap.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Mewngofnodion a chyfrineiriau</string> <string name="preferences_passwords_logins_and_passwords">Mewngofnodion a chyfrineiriau</string>
@ -1366,8 +1384,12 @@ Fodd bynnag, gall fod yn llai sefydlog. Llwythwch ein porwr Beta i gael profiad
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Copïor cyfrinair</string> <string name="saved_logins_copy_password">Copïor cyfrinair</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Clirior cyfrinair</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Copïor enw defnyddiwr</string> <string name="saved_login_copy_username">Copïor enw defnyddiwr</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Clirior enw defnyddiwr</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Copïor wefan</string> <string name="saved_login_copy_site">Copïor wefan</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1522,7 +1544,7 @@ Fodd bynnag, gall fod yn llai sefydlog. Llwythwch ein porwr Beta i gael profiad
<string name="saved_login_duplicate">Mae mewngofnod gydar enw defnyddiwr yna eisoes yn bodoli</string> <string name="saved_login_duplicate">Mae mewngofnod gydar enw defnyddiwr yna eisoes yn bodoli</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Cysylltu dyfais arall</string> <string name="synced_tabs_connect_another_device">Cysylltu dyfais arall</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Ail-ddilyswch, os gwelwch yn dda.</string> <string name="synced_tabs_reauth">Ail-ddilyswch, os gwelwch yn dda.</string>
@ -1543,7 +1565,7 @@ Fodd bynnag, gall fod yn llai sefydlog. Llwythwch ein porwr Beta i gael profiad
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Wedi cyrraedd terfyn nifer eich hoff wefannau</string> <string name="top_sites_max_limit_title">Wedi cyrraedd terfyn nifer eich hoff wefannau</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">I ychwanegu hoff wefan newydd, tynnwch un. Pwyswch y wefan yn hir a dewis tynnu.</string> <string name="top_sites_max_limit_content_2">I ychwanegu hoff wefan newydd, tynnwch un. Pwyswch a dal y wefan a dewis tynnu.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">Iawn, Wedi deall!</string> <string name="top_sites_max_limit_confirmation_button">Iawn, Wedi deall!</string>
@ -1553,7 +1575,7 @@ Fodd bynnag, gall fod yn llai sefydlog. Llwythwch ein porwr Beta i gael profiad
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Tynnu</string> <string name="remove_home_collection_placeholder_content_description">Tynnu</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Cael y gorau o %s.</string> <string name="onboarding_firefox_account_header">Cael y gorau o %s.</string>
@ -1561,4 +1583,9 @@ Fodd bynnag, gall fod yn llai sefydlog. Llwythwch ein porwr Beta i gael profiad
<string name="no_collections_header1">Casglwch y pethau syn bwysig i chi</string> <string name="no_collections_header1">Casglwch y pethau syn bwysig i chi</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Grwpiwch chwiliadau, gwefannau a thabiau tebyg ar gyfer mynediad cyflym yn y dyfodol.</string> <string name="no_collections_description1">Grwpiwch chwiliadau, gwefannau a thabiau tebyg ar gyfer mynediad cyflym yn y dyfodol.</string>
</resources> <!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Rydych wedi eich mewngofnodi fel %s ar borwr Firefox arall ar y ffôn hwn. Hoffech chi fewngofnodi gydar cyfrif hwn?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Gallwch ychwanegur wefan hon yn hawdd i sgrin Cartref eich ffôn. Byddwch yn cael mynediad ar unwaith a phorin gyflymach gyda phrofiad tebyg i ap.</string>
</resources>

@ -316,7 +316,7 @@
<!-- Preference title for switch preference to show a clipboard suggestion when searching --> <!-- Preference title for switch preference to show a clipboard suggestion when searching -->
<string name="preferences_show_clipboard_suggestions">Vis forslag fra udklipsholder</string> <string name="preferences_show_clipboard_suggestions">Vis forslag fra udklipsholder</string>
<!-- Preference title for switch preference to suggest browsing history when searching --> <!-- Preference title for switch preference to suggest browsing history when searching -->
<string name="preferences_search_browsing_history">Søg i søgehistorik</string> <string name="preferences_search_browsing_history">Søg i browserhistorik</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">Søg i bogmærker</string> <string name="preferences_search_bookmarks">Søg i bogmærker</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
@ -1040,10 +1040,6 @@
<string name="onboarding_account_sign_in_header">Begynd at synkronisere bogmærker, adgangskoder m.m. med din Firefox-konto.</string> <string name="onboarding_account_sign_in_header">Begynd at synkronisere bogmærker, adgangskoder m.m. med din Firefox-konto.</string>
<!-- Text for the button to learn more about signing in to your Firefox account --> <!-- Text for the button to learn more about signing in to your Firefox account -->
<string name="onboarding_manual_sign_in_learn_more">Læs mere</string> <string name="onboarding_manual_sign_in_learn_more">Læs mere</string>
<!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">Du er logget ind som %s i en anden version af Firefox på denne telefon. Vil du logge ind med denne konto?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Ja, log mig ind</string> <string name="onboarding_firefox_account_auto_signin_confirm">Ja, log mig ind</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1284,9 +1280,6 @@
<!-- Placeholder text for the TextView in the Add to Homescreen dialog --> <!-- Placeholder text for the TextView in the Add to Homescreen dialog -->
<string name="add_to_homescreen_text_placeholder">Genvejsnavn</string> <string name="add_to_homescreen_text_placeholder">Genvejsnavn</string>
<!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Du kan nemt føje dette websted til din telefons startskærm for at have hurtig adgang til det og browse hurtigere med en app-lignende oplevelse.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Logins og adgangskoder</string> <string name="preferences_passwords_logins_and_passwords">Logins og adgangskoder</string>
<!-- Preference for managing the saving of logins and passwords in Fenix --> <!-- Preference for managing the saving of logins and passwords in Fenix -->
@ -1511,7 +1504,7 @@
<string name="saved_login_duplicate">Et login med dette brugernavn findes allerede</string> <string name="saved_login_duplicate">Et login med dette brugernavn findes allerede</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Opret forbindelse til en ny enhed.</string> <string name="synced_tabs_connect_another_device">Opret forbindelse til en ny enhed.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Godkend igen.</string> <string name="synced_tabs_reauth">Godkend igen.</string>
@ -1530,8 +1523,6 @@
<!-- Top Sites --> <!-- Top Sites -->
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Grænsen for Mest besøgte websider er nået</string> <string name="top_sites_max_limit_title">Grænsen for Mest besøgte websider er nået</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Hvis du vil tilføje en ny webside, skal du først fjerne én. Tryk og hold på websiden, og vælg så Fjern.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">Ok, forstået</string> <string name="top_sites_max_limit_confirmation_button">Ok, forstået</string>
@ -1541,7 +1532,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Fjern</string> <string name="remove_home_collection_placeholder_content_description">Fjern</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Få det meste ud af %s.</string> <string name="onboarding_firefox_account_header">Få det meste ud af %s.</string>
@ -1549,4 +1540,9 @@
<string name="no_collections_header1">Saml de ting, der betyder noget for dig</string> <string name="no_collections_header1">Saml de ting, der betyder noget for dig</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Saml relaterede søgninger, websteder og faneblade i grupper. Så kan du hurtigt finde dem igen.</string> <string name="no_collections_description1">Saml relaterede søgninger, websteder og faneblade i grupper. Så kan du hurtigt finde dem igen.</string>
<!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Du er logget ind som %s i en anden version af Firefox på denne telefon. Vil du logge ind med denne konto?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Du kan nemt føje dette websted til din telefons startskærm for at have hurtig adgang til det og browse hurtigere med en app-lignende oplevelse.</string>
</resources> </resources>

@ -331,9 +331,13 @@
<string name="preferences_search_browsing_history">Browser-Chronik durchsuchen</string> <string name="preferences_search_browsing_history">Browser-Chronik durchsuchen</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">Lesezeichen durchsuchen</string> <string name="preferences_search_bookmarks">Lesezeichen durchsuchen</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">Synchronisierte Tabs durchsuchen</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Kontoeinstellungen</string> <string name="preferences_account_settings">Kontoeinstellungen</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Autovervollständigung von Adressen</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Links in Apps öffnen</string> <string name="preferences_open_links_in_apps">Links in Apps öffnen</string>
@ -1605,7 +1609,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Entfernen</string> <string name="remove_home_collection_placeholder_content_description">Entfernen</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Machen Sie das Beste aus %s.</string> <string name="onboarding_firefox_account_header">Machen Sie das Beste aus %s.</string>

@ -268,6 +268,8 @@
<string name="preferences_open_links_in_a_private_tab">Wótkaze w priwatnem rejtariku wócyniś</string> <string name="preferences_open_links_in_a_private_tab">Wótkaze w priwatnem rejtariku wócyniś</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">Fota wobrazowki w priwatnem modusu dowóliś</string> <string name="preferences_allow_screenshots_in_private_mode">Fota wobrazowki w priwatnem modusu dowóliś</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">Jolic dowólone, budu priwatne rejtariki teke widobne, gaž někotare nałoženja su wócynjone</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">Skrotconku za priwatny modus pśidaś</string> <string name="preferences_add_private_browsing_shortcut">Skrotconku za priwatny modus pśidaś</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -288,6 +290,8 @@
<string name="preferences_theme">Drastwa</string> <string name="preferences_theme">Drastwa</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Startowy bok</string> <string name="preferences_home">Startowy bok</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Gesty</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Pśiměriś</string> <string name="preferences_customize">Pśiměriś</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -322,8 +326,12 @@
<string name="preferences_search_browsing_history">Pśeglědowańsku historiju pśepytaś</string> <string name="preferences_search_browsing_history">Pśeglědowańsku historiju pśepytaś</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">Cytańske znamjenja pśepytaś</string> <string name="preferences_search_bookmarks">Cytańske znamjenja pśepytaś</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">Synchronizěrowane rejtarki pytaś</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Kontowe nastajenja</string> <string name="preferences_account_settings">Kontowe nastajenja</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">URL awtomatiski wudopołniś</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Wótkaze w nałoženjach wócyniś</string> <string name="preferences_open_links_in_apps">Wótkaze w nałoženjach wócyniś</string>
@ -462,6 +470,16 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">Na rědowu drastwu źiwaś</string> <string name="preference_follow_device_theme">Na rědowu drastwu źiwaś</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">Śěgniśo, aby aktualizěrował</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">Kulniśo, aby symbolowu rědku schował</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">Trějśo symbolowu rědku na bok, aby rejtariki pśešaltował</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">Trějśo symbolowu rědku górjej, aby rejtariki wócynił</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Pósejźenja</string> <string name="library_sessions">Pósejźenja</string>
@ -1052,7 +1070,7 @@
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">Sćo se pśizjawił ako %s w drugem wobglědowaku Firefox na toś tom telefonje. Cośo se z toś tym kontom pśizjawiś?</string> <string name="onboarding_firefox_account_auto_signin_header_3">Sćo se pśizjawił ako %s w drugem wobglědowaku Firefox na toś tom rěźe. Cośo se z toś tym kontom pśizjawiś?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Jo, pśizjawiś</string> <string name="onboarding_firefox_account_auto_signin_confirm">Jo, pśizjawiś</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1299,7 +1317,7 @@
<string name="add_to_homescreen_text_placeholder">Mě skrotconki</string> <string name="add_to_homescreen_text_placeholder">Mě skrotconki</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Móžośo startowej wobrazowce swójogo telefona toś to websedło lažko pśidaś, aby direktny pśistup měł a malsnjej z dožywjenim nałoženja pśeglědował.</string> <string name="add_to_homescreen_description_2">Móžośo startowej wobrazowce swójogo rěda toś to websedło lažko pśidaś, aby direktny pśistup měł a malsnjej z dožywjenim nałoženja pśeglědował.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Pśizjawjenja a gronidła</string> <string name="preferences_passwords_logins_and_passwords">Pśizjawjenja a gronidła</string>
@ -1370,8 +1388,12 @@
<string name="logins_site_copied">Sedło jo se kopěrowało do mjazywótkłada</string> <string name="logins_site_copied">Sedło jo se kopěrowało do mjazywótkłada</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Gronidło kopěrowaś</string> <string name="saved_logins_copy_password">Gronidło kopěrowaś</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Gronidło lašowaś</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Wužywaŕske mě kopěrowaś</string> <string name="saved_login_copy_username">Wužywaŕske mě kopěrowaś</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Wužywaŕske mě lašowaś</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Sedło kopěrowaś</string> <string name="saved_login_copy_site">Sedło kopěrowaś</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1527,7 +1549,7 @@
<string name="saved_login_duplicate">Pśizjawjenje z tym wužywaŕskim mjenim južo esistěrujo</string> <string name="saved_login_duplicate">Pśizjawjenje z tym wužywaŕskim mjenim južo esistěrujo</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Z drugim rědom zwězaś.</string> <string name="synced_tabs_connect_another_device">Z drugim rědom zwězaś.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Pšosym awtentificěrujśo znowego.</string> <string name="synced_tabs_reauth">Pšosym awtentificěrujśo znowego.</string>
@ -1548,7 +1570,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Limit za wažne sedła dostany</string> <string name="top_sites_max_limit_title">Limit za wažne sedła dostany</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Aby nowe wažne sedło pśidał, wótwónoźćo jadno z nich. Tłocćo dłujko na sedło a wubjeŕśo „Wótwónoźeś“.</string> <string name="top_sites_max_limit_content_2">Aby nowe wažne sedło pśidał, wótwónoźćo jadno z nich. Dotykniśo a źaržćo sedło a wubjeŕśo „Wótwónoźeś“.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">W pórěźe, som zrozměł</string> <string name="top_sites_max_limit_confirmation_button">W pórěźe, som zrozměł</string>
@ -1558,7 +1580,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Wótwónoźeś</string> <string name="remove_home_collection_placeholder_content_description">Wótwónoźeś</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Wuwónoźćo nejlěpše z %s.</string> <string name="onboarding_firefox_account_header">Wuwónoźćo nejlěpše z %s.</string>
@ -1566,4 +1588,9 @@
<string name="no_collections_header1">Gromaźćo wěcy, kótarež su wam wažne</string> <string name="no_collections_header1">Gromaźćo wěcy, kótarež su wam wažne</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Zrědujśo pódobne pytanja, sedła a rejtariki za póznjejšy malsny pśistup.</string> <string name="no_collections_description1">Zrědujśo pódobne pytanja, sedła a rejtariki za póznjejšy malsny pśistup.</string>
</resources> <!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Sćo se pśizjawił ako %s w drugem wobglědowaku Firefox na toś tom telefonje. Cośo se z toś tym kontom pśizjawiś?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Móžośo startowej wobrazowce swójogo telefona toś to websedło lažko pśidaś, aby direktny pśistup měł a malsnjej z dožywjenim nałoženja pśeglědował.</string>
</resources>

@ -69,6 +69,9 @@
<!-- Text for the negative button --> <!-- Text for the negative button -->
<string name="cfr_neg_button_text">Όχι, ευχαριστώ</string> <string name="cfr_neg_button_text">Όχι, ευχαριστώ</string>
<!-- Search widget "contextual feature recommendation" (CFR) -->
<!-- Text for the main message. 'Firefox' intentionally hardcoded here.-->
<string name="search_widget_cfr_message">Ταχύτερη μετάβαση στο Firefox. Προσθέστε ένα γραφικό στοιχείο στην αρχική σας οθόνη.</string>
<!-- Text for the positive button --> <!-- Text for the positive button -->
<string name="search_widget_cfr_pos_button_text">Προσθήκη widget</string> <string name="search_widget_cfr_pos_button_text">Προσθήκη widget</string>
<!-- Text for the negative button --> <!-- Text for the negative button -->
@ -281,6 +284,8 @@
<string name="preferences_theme">Θέμα</string> <string name="preferences_theme">Θέμα</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Αρχική σελίδα</string> <string name="preferences_home">Αρχική σελίδα</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Χειρονομίες</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Προσαρμογή</string> <string name="preferences_customize">Προσαρμογή</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -317,6 +322,8 @@
<string name="preferences_search_bookmarks">Αναζήτηση σελιδοδεικτών</string> <string name="preferences_search_bookmarks">Αναζήτηση σελιδοδεικτών</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Ρυθμίσεις λογαριασμού</string> <string name="preferences_account_settings">Ρυθμίσεις λογαριασμού</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Αυτόματη συμπλήρωση URLs</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Άνοιγμα συνδέσμων σε εφαρμογές</string> <string name="preferences_open_links_in_apps">Άνοιγμα συνδέσμων σε εφαρμογές</string>
<!-- Preference for open download with an external download manager app --> <!-- Preference for open download with an external download manager app -->
@ -383,6 +390,8 @@
<string name="preferences_tracking_protection_description">Φραγή περιεχομένου και σεναρίων που σας παρακολουθούν στο διαδίκτυο</string> <string name="preferences_tracking_protection_description">Φραγή περιεχομένου και σεναρίων που σας παρακολουθούν στο διαδίκτυο</string>
<!-- Preference for tracking protection exceptions --> <!-- Preference for tracking protection exceptions -->
<string name="preferences_tracking_protection_exceptions">Εξαιρέσεις</string> <string name="preferences_tracking_protection_exceptions">Εξαιρέσεις</string>
<!-- Preference description for tracking protection exceptions -->
<string name="preferences_tracking_protection_exceptions_description">Η προστασία από καταγραφή είναι ανενεργή για αυτές τις ιστοσελίδες</string>
<!-- Button in Exceptions Preference to turn on tracking protection for all sites (remove all exceptions) --> <!-- Button in Exceptions Preference to turn on tracking protection for all sites (remove all exceptions) -->
<string name="preferences_tracking_protection_exceptions_turn_on_for_all">Ενεργοποίηση για όλες τις σελίδες</string> <string name="preferences_tracking_protection_exceptions_turn_on_for_all">Ενεργοποίηση για όλες τις σελίδες</string>
<!-- Text displayed when there are no exceptions, with learn more link that brings users to a tracking protection SUMO page --> <!-- Text displayed when there are no exceptions, with learn more link that brings users to a tracking protection SUMO page -->
@ -1042,7 +1051,7 @@
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">Έχετε συνδεθεί ως %s σε άλλο πρόγραμμα περιήγησης Firefox σε αυτό το τηλέφωνο. Θέλετε να συνδεθείτε με αυτό το λογαριασμό;</string> <string name="onboarding_firefox_account_auto_signin_header_3">Έχετε συνδεθεί ως %s από άλλο πρόγραμμα περιήγησης Firefox σε αυτή τη συσκευή. Θέλετε να συνδεθείτε με αυτό το λογαριασμό;</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Ναι, σύνδεση</string> <string name="onboarding_firefox_account_auto_signin_confirm">Ναι, σύνδεση</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1276,9 +1285,6 @@
<!-- Placeholder text for the TextView in the Add to Homescreen dialog --> <!-- Placeholder text for the TextView in the Add to Homescreen dialog -->
<string name="add_to_homescreen_text_placeholder">Όνομα συντόμευσης</string> <string name="add_to_homescreen_text_placeholder">Όνομα συντόμευσης</string>
<!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Μπορείτε εύκολα να προσθέσετε αυτή την ιστοσελίδα στην αρχική οθόνη για άμεση πρόσβαση και ταχύτερη περιήγηση, σαν να ήταν εφαρμογή.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Συνδέσεις και κωδικοί πρόσβασης</string> <string name="preferences_passwords_logins_and_passwords">Συνδέσεις και κωδικοί πρόσβασης</string>
<!-- Preference for managing the saving of logins and passwords in Fenix --> <!-- Preference for managing the saving of logins and passwords in Fenix -->
@ -1347,8 +1353,12 @@
<string name="logins_site_copied">Η ιστοσελίδα αντιγράφτηκε στο πρόχειρο</string> <string name="logins_site_copied">Η ιστοσελίδα αντιγράφτηκε στο πρόχειρο</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Αντιγραφή κωδικού πρόσβασης</string> <string name="saved_logins_copy_password">Αντιγραφή κωδικού πρόσβασης</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Εκκαθάριση κωδικού πρόσβασης</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Αντιγραφή ονόματος χρήστη</string> <string name="saved_login_copy_username">Αντιγραφή ονόματος χρήστη</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Εκκαθάριση ονόματος χρήστη</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Αντιγραφή ιστοσελίδας</string> <string name="saved_login_copy_site">Αντιγραφή ιστοσελίδας</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1502,7 +1512,7 @@
<string name="saved_login_duplicate">Υπάρχει ήδη σύνδεση με αυτό το όνομα χρήστη</string> <string name="saved_login_duplicate">Υπάρχει ήδη σύνδεση με αυτό το όνομα χρήστη</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Συνδέστε μια άλλη συσκευή.</string> <string name="synced_tabs_connect_another_device">Συνδέστε μια άλλη συσκευή.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Παρακαλούμε επαληθεύστε ξανά την ταυτότητά σας.</string> <string name="synced_tabs_reauth">Παρακαλούμε επαληθεύστε ξανά την ταυτότητά σας.</string>
@ -1523,7 +1533,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Έχετε φτάσει το ανώτατο όριο κορυφαίων ιστοσελίδων</string> <string name="top_sites_max_limit_title">Έχετε φτάσει το ανώτατο όριο κορυφαίων ιστοσελίδων</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Για να προσθέσετε μια νέα κορυφαία σελίδα, αφαιρέστε μια υπάρχουσα. Πατήστε παρατεταμένα στη σελίδα και επιλέξτε &quot;Αφαίρεση&quot;.</string> <string name="top_sites_max_limit_content_2">Για να προσθέσετε μια νέα κορυφαία σελίδα, αφαιρέστε μια υπάρχουσα. Πατήστε παρατεταμένα τη σελίδα και επιλέξτε &quot;Αφαίρεση&quot;.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">OK, το κατάλαβα</string> <string name="top_sites_max_limit_confirmation_button">OK, το κατάλαβα</string>
@ -1533,7 +1543,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Αφαίρεση</string> <string name="remove_home_collection_placeholder_content_description">Αφαίρεση</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Αξιοποιήστε στο έπακρο το %s.</string> <string name="onboarding_firefox_account_header">Αξιοποιήστε στο έπακρο το %s.</string>
@ -1541,4 +1551,9 @@
<string name="no_collections_header1">Συλλέξτε όλα όσα έχουν σημασία για εσάς</string> <string name="no_collections_header1">Συλλέξτε όλα όσα έχουν σημασία για εσάς</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Ομαδοποιήστε παρόμοιες αναζητήσεις, σελίδες και καρτέλες για γρήγορη πρόσβαση αργότερα.</string> <string name="no_collections_description1">Ομαδοποιήστε παρόμοιες αναζητήσεις, σελίδες και καρτέλες για γρήγορη πρόσβαση αργότερα.</string>
<!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Έχετε συνδεθεί ως %s σε άλλο πρόγραμμα περιήγησης Firefox σε αυτό το τηλέφωνο. Θέλετε να συνδεθείτε με αυτό το λογαριασμό;</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Μπορείτε εύκολα να προσθέσετε αυτή την ιστοσελίδα στην αρχική οθόνη για άμεση πρόσβαση και ταχύτερη περιήγηση, σαν να ήταν εφαρμογή.</string>
</resources> </resources>

@ -324,8 +324,12 @@
<string name="preferences_search_browsing_history">Search browsing history</string> <string name="preferences_search_browsing_history">Search browsing history</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">Search bookmarks</string> <string name="preferences_search_bookmarks">Search bookmarks</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">Search synced tabs</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Account settings</string> <string name="preferences_account_settings">Account settings</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Autocomplete URLs</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Open links in apps</string> <string name="preferences_open_links_in_apps">Open links in apps</string>
@ -1561,7 +1565,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Remove</string> <string name="remove_home_collection_placeholder_content_description">Remove</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Get the most out of %s.</string> <string name="onboarding_firefox_account_header">Get the most out of %s.</string>

@ -286,6 +286,8 @@
<string name="preferences_theme">Etoso</string> <string name="preferences_theme">Etoso</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Eka paĝo</string> <string name="preferences_home">Eka paĝo</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Gestoj</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Personecigi</string> <string name="preferences_customize">Personecigi</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -320,8 +322,12 @@
<string name="preferences_search_browsing_history">Serĉi en retuma historio</string> <string name="preferences_search_browsing_history">Serĉi en retuma historio</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">Serĉi legosignojn</string> <string name="preferences_search_bookmarks">Serĉi legosignojn</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">Serĉi spegulitajn langetojn</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Agordoj de konto</string> <string name="preferences_account_settings">Agordoj de konto</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Aŭtomate kompletigi retadresojn</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Malfermi ligilojn per programoj</string> <string name="preferences_open_links_in_apps">Malfermi ligilojn per programoj</string>
@ -1056,10 +1062,6 @@
<string name="onboarding_account_sign_in_header">Komenci speguli legosignojn, pasvortojn kaj aliajn aferojn per via konto de Firefox.</string> <string name="onboarding_account_sign_in_header">Komenci speguli legosignojn, pasvortojn kaj aliajn aferojn per via konto de Firefox.</string>
<!-- Text for the button to learn more about signing in to your Firefox account --> <!-- Text for the button to learn more about signing in to your Firefox account -->
<string name="onboarding_manual_sign_in_learn_more">Pli da informo</string> <string name="onboarding_manual_sign_in_learn_more">Pli da informo</string>
<!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">Vi komencis seancon kiel %s en alia retumilo Firefox en tiu ĉi poŝaparato. Ĉu vi ŝatus komenci seancon per tiu konto?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Jes, komenci seancon</string> <string name="onboarding_firefox_account_auto_signin_confirm">Jes, komenci seancon</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1303,9 +1305,6 @@ en la reto kaj kion vi dividas kun ni.</string>
<!-- Placeholder text for the TextView in the Add to Homescreen dialog --> <!-- Placeholder text for the TextView in the Add to Homescreen dialog -->
<string name="add_to_homescreen_text_placeholder">Nomo de ŝparvojo</string> <string name="add_to_homescreen_text_placeholder">Nomo de ŝparvojo</string>
<!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Vi povas facile aldoni tiun ĉi retejon al la hejmpaĝo de via telefono, por havi tujan aliron kaj retumi pli rapide per kvazaŭprograma sperto.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Legitimiloj kaj pasvortoj</string> <string name="preferences_passwords_logins_and_passwords">Legitimiloj kaj pasvortoj</string>
<!-- Preference for managing the saving of logins and passwords in Fenix --> <!-- Preference for managing the saving of logins and passwords in Fenix -->
@ -1375,8 +1374,12 @@ en la reto kaj kion vi dividas kun ni.</string>
<string name="logins_site_copied">Retejo kopiita al tondujo</string> <string name="logins_site_copied">Retejo kopiita al tondujo</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Kopii pasvorton</string> <string name="saved_logins_copy_password">Kopii pasvorton</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Viŝi pasvorton</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Kopii nomon de uzanto</string> <string name="saved_login_copy_username">Kopii nomon de uzanto</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Viŝi nomon de uzanto</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Kopii retejon</string> <string name="saved_login_copy_site">Kopii retejon</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1533,7 +1536,7 @@ en la reto kaj kion vi dividas kun ni.</string>
<string name="saved_login_duplicate">Jam ekzistas legitimilo kun tiu nomo de uzanto</string> <string name="saved_login_duplicate">Jam ekzistas legitimilo kun tiu nomo de uzanto</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Konekti alian aparaton</string> <string name="synced_tabs_connect_another_device">Konekti alian aparaton</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
@ -1554,7 +1557,7 @@ en la reto kaj kion vi dividas kun ni.</string>
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Maksimuma nombro de plej vizititaj retejoj atingita</string> <string name="top_sites_max_limit_title">Maksimuma nombro de plej vizititaj retejoj atingita</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Por aldoni novan plej vizititan retejon, forigu alian. Premu longe la forigotan retejon kaj elekti forigi.</string> <string name="top_sites_max_limit_content_2">Por aldoni novan plej vizititan retejon, forigu alian. Longe premu la forigotan retejon kaj elektu forigi.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">En ordo, mi komprenis</string> <string name="top_sites_max_limit_confirmation_button">En ordo, mi komprenis</string>
@ -1564,7 +1567,7 @@ en la reto kaj kion vi dividas kun ni.</string>
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Forigi</string> <string name="remove_home_collection_placeholder_content_description">Forigi</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Eltiru la maksimumon el %s.</string> <string name="onboarding_firefox_account_header">Eltiru la maksimumon el %s.</string>
@ -1572,4 +1575,9 @@ en la reto kaj kion vi dividas kun ni.</string>
<string name="no_collections_header1">Kolekti la aferojn kiu gravas por vi</string> <string name="no_collections_header1">Kolekti la aferojn kiu gravas por vi</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Grupigi similajn serĉojn, retejojn kaj langetojn por pli rapida posta aliro.</string> <string name="no_collections_description1">Grupigi similajn serĉojn, retejojn kaj langetojn por pli rapida posta aliro.</string>
<!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Vi komencis seancon kiel %s en alia retumilo Firefox en tiu ĉi poŝaparato. Ĉu vi ŝatus komenci seancon per tiu konto?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Vi povas facile aldoni tiun ĉi retejon al la hejmpaĝo de via telefono, por havi tujan aliron kaj retumi pli rapide per kvazaŭprograma sperto.</string>
</resources> </resources>

@ -272,6 +272,8 @@
<string name="preferences_open_links_in_a_private_tab">Abrir enlace en una pestaña privada</string> <string name="preferences_open_links_in_a_private_tab">Abrir enlace en una pestaña privada</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">Permitir capturas de pantalla en navegación privada</string> <string name="preferences_allow_screenshots_in_private_mode">Permitir capturas de pantalla en navegación privada</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">Si se permite, las pestañas privadas también serán visibles cuando haya varias aplicaciones abiertas</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">Agregar atajo de navegación privada</string> <string name="preferences_add_private_browsing_shortcut">Agregar atajo de navegación privada</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -292,6 +294,8 @@
<string name="preferences_theme">Tema</string> <string name="preferences_theme">Tema</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Inicio</string> <string name="preferences_home">Inicio</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Gestos</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Personalizar</string> <string name="preferences_customize">Personalizar</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -326,9 +330,13 @@
<string name="preferences_search_browsing_history">Buscar historial de navegación</string> <string name="preferences_search_browsing_history">Buscar historial de navegación</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">Buscar marcadores</string> <string name="preferences_search_bookmarks">Buscar marcadores</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">Buscar pestañas sincronizadas</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Ajustes de la cuenta</string> <string name="preferences_account_settings">Ajustes de la cuenta</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Autocompletar URLs</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Abrir enlaces en aplicaciones</string> <string name="preferences_open_links_in_apps">Abrir enlaces en aplicaciones</string>
@ -474,6 +482,16 @@
<string name="preference_follow_device_theme">Usar el tema del dispositivo</string> <string name="preference_follow_device_theme">Usar el tema del dispositivo</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">Arrastrar para actualizar</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">Desplazar para ocultar la barra</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">Deslizar la barra hacia los costados para cambiar de pestaña</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">Deslizar la barra hacia arriba para abrir pestañas</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Sesiones</string> <string name="library_sessions">Sesiones</string>
@ -1071,7 +1089,7 @@
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">Iniciaste sesión como %s en otro navegador Firefox en este teléfono. ¿Querés iniciar sesión con esta cuenta?</string> <string name="onboarding_firefox_account_auto_signin_header_3">Ingresaste como %s en otro navegador Firefox en este dispositivo. ¿Querés iniciar sesión con esta cuenta?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Sí, iniciá mi sesión</string> <string name="onboarding_firefox_account_auto_signin_confirm">Sí, iniciá mi sesión</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1316,7 +1334,7 @@
<string name="add_to_homescreen_text_placeholder">Nombre de acceso directo</string> <string name="add_to_homescreen_text_placeholder">Nombre de acceso directo</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Podés agregar fácilmente este sitio web a la pantalla de inicio de tu teléfono para tener acceso instantáneo y navegar más rápido con una experiencia similar a la de una aplicación.</string> <string name="add_to_homescreen_description_2">Podés agregar este sitio a la pantalla de inicio del dispositivo fácilmente para tener acceso instantáneo y navegar más rápido con una experiencia similar a la de una aplicación.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Inicios de sesión y contraseñas</string> <string name="preferences_passwords_logins_and_passwords">Inicios de sesión y contraseñas</string>
@ -1386,8 +1404,12 @@
<string name="logins_site_copied">Sitio copiado al portapapeles</string> <string name="logins_site_copied">Sitio copiado al portapapeles</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Copiar contraseña</string> <string name="saved_logins_copy_password">Copiar contraseña</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Borrar contraseña</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Copiar nombre de usuario</string> <string name="saved_login_copy_username">Copiar nombre de usuario</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Borrar nombre de usuario</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Copiar sitio</string> <string name="saved_login_copy_site">Copiar sitio</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1544,7 +1566,7 @@
<string name="saved_login_duplicate">Ya existe un inicio de sesión con ese nombre de usuario</string> <string name="saved_login_duplicate">Ya existe un inicio de sesión con ese nombre de usuario</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Conectar otro dispositivo.</string> <string name="synced_tabs_connect_another_device">Conectar otro dispositivo.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Volver a autenticar.</string> <string name="synced_tabs_reauth">Volver a autenticar.</string>
@ -1565,7 +1587,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Alcanzaste el límite para sitios importantes</string> <string name="top_sites_max_limit_title">Alcanzaste el límite para sitios importantes</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Para agregar un nuevo sitio importante, eliminá uno. Mantené presionado el sitio y seleccioná eliminar.</string> <string name="top_sites_max_limit_content_2">Para agregar un nuevo sitio importante, eliminá uno. Mantené presionado el sitio y seleccioná eliminar.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">Listo, lo entendí.</string> <string name="top_sites_max_limit_confirmation_button">Listo, lo entendí.</string>
@ -1575,7 +1597,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Eliminar</string> <string name="remove_home_collection_placeholder_content_description">Eliminar</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Aprovechá %s al máximo.</string> <string name="onboarding_firefox_account_header">Aprovechá %s al máximo.</string>
@ -1583,4 +1605,9 @@
<string name="no_collections_header1">Recolectá lo que te importa</string> <string name="no_collections_header1">Recolectá lo que te importa</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Agrupar búsquedas, sitios y pestañas similares para acceder rápidamente más tarde.</string> <string name="no_collections_description1">Agrupar búsquedas, sitios y pestañas similares para acceder rápidamente más tarde.</string>
<!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Iniciaste sesión como %s en otro navegador Firefox en este teléfono. ¿Querés iniciar sesión con esta cuenta?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Podés agregar fácilmente este sitio web a la pantalla de inicio de tu teléfono para tener acceso instantáneo y navegar más rápido con una experiencia similar a la de una aplicación.</string>
</resources> </resources>

@ -265,6 +265,8 @@
<string name="preferences_open_links_in_a_private_tab">Abrir enlaces en una pestaña privada</string> <string name="preferences_open_links_in_a_private_tab">Abrir enlaces en una pestaña privada</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">Permitir capturas de pantalla en navegación privada</string> <string name="preferences_allow_screenshots_in_private_mode">Permitir capturas de pantalla en navegación privada</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">Si está permitido, las pestañas privadas también serán visibles cuando hayan varias aplicaciones abiertas</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">Añadir acceso directo a la navegación privada</string> <string name="preferences_add_private_browsing_shortcut">Añadir acceso directo a la navegación privada</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -286,6 +288,8 @@
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Inicio</string> <string name="preferences_home">Inicio</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Gestos</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Personalizar</string> <string name="preferences_customize">Personalizar</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -322,6 +326,8 @@
<string name="preferences_search_bookmarks">Buscar marcadores</string> <string name="preferences_search_bookmarks">Buscar marcadores</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Ajustes de la cuenta</string> <string name="preferences_account_settings">Ajustes de la cuenta</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Autocompletar URLs</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Abrir enlaces en aplicaciones</string> <string name="preferences_open_links_in_apps">Abrir enlaces en aplicaciones</string>
@ -460,6 +466,16 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">Usar el tema del dispositivo</string> <string name="preference_follow_device_theme">Usar el tema del dispositivo</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">Tira para actualizar</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">Desplázate para ocultar la barra de herramientas</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">Desliza sobre la barra de herramientas hacia los lados para cambiar de pestaña</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">Desliza sobre la barra de herramientas hacia arriba para abrir pestañas</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Sesiones</string> <string name="library_sessions">Sesiones</string>
@ -1048,7 +1064,7 @@
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">Te has conectado como %s en otro navegador Firefox en este teléfono. ¿Quieres conectarte con esta cuenta?</string> <string name="onboarding_firefox_account_auto_signin_header_3">Te has conectado como %s en otro navegador Firefox en este dispositivo. ¿Quieres conectarte con esta cuenta?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Sí, conectarme</string> <string name="onboarding_firefox_account_auto_signin_confirm">Sí, conectarme</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1294,7 +1310,7 @@
<string name="add_to_homescreen_text_placeholder">Nombre del acceso directo</string> <string name="add_to_homescreen_text_placeholder">Nombre del acceso directo</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Puedes añadir fácilmente este sitio web a tu pantalla de inicio de tu teléfono para tener acceso instantáneo y navegar rápidamente, consiguiendo una experiencia similar a la de una aplicación real.</string> <string name="add_to_homescreen_description_2">Puedes añadir fácilmente este sitio web a tu pantalla de inicio de tu dispositivo para tener acceso instantáneo y navegar rápidamente, consiguiendo una experiencia similar a la de una aplicación real.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Credenciales y contraseñas</string> <string name="preferences_passwords_logins_and_passwords">Credenciales y contraseñas</string>
@ -1365,8 +1381,12 @@
<string name="logins_site_copied">Sitio copiado al portapapeles</string> <string name="logins_site_copied">Sitio copiado al portapapeles</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Copiar contraseña</string> <string name="saved_logins_copy_password">Copiar contraseña</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Limpiar contraseña</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Copiar nombre de usuario</string> <string name="saved_login_copy_username">Copiar nombre de usuario</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Limpiar nombre de usuario</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Copiar sitio</string> <string name="saved_login_copy_site">Copiar sitio</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1522,7 +1542,7 @@
<string name="saved_login_duplicate">Ya existe una credencial con ese nombre de usuario</string> <string name="saved_login_duplicate">Ya existe una credencial con ese nombre de usuario</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Conectar otro dispositivo.</string> <string name="synced_tabs_connect_another_device">Conectar otro dispositivo.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Por favor, vuelve a autentificarte.</string> <string name="synced_tabs_reauth">Por favor, vuelve a autentificarte.</string>
@ -1542,7 +1562,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Límite de sitios frecuentes alcanzado</string> <string name="top_sites_max_limit_title">Límite de sitios frecuentes alcanzado</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Para añadir un nuevo sitio frecuente, elimina uno. Mantén presionado el sitio y selecciona eliminar.</string> <string name="top_sites_max_limit_content_2">Para añadir un nuevo sitio frecuente, elimina uno. Toca y mantén presionado el sitio y selecciona eliminar.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">Ok, ¡ya caché!</string> <string name="top_sites_max_limit_confirmation_button">Ok, ¡ya caché!</string>
@ -1552,7 +1572,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Eliminar</string> <string name="remove_home_collection_placeholder_content_description">Eliminar</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Saca el máximo provecho a %s.</string> <string name="onboarding_firefox_account_header">Saca el máximo provecho a %s.</string>
@ -1560,4 +1580,9 @@
<string name="no_collections_header1">Recolecta lo que te importa</string> <string name="no_collections_header1">Recolecta lo que te importa</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Agrupa búsquedas, sitios y pestañas similares para acceder a ellos rápidamente.</string> <string name="no_collections_description1">Agrupa búsquedas, sitios y pestañas similares para acceder a ellos rápidamente.</string>
</resources> <!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Te has conectado como %s en otro navegador Firefox en este teléfono. ¿Quieres conectarte con esta cuenta?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Puedes añadir fácilmente este sitio web a tu pantalla de inicio de tu teléfono para tener acceso instantáneo y navegar rápidamente, consiguiendo una experiencia similar a la de una aplicación real.</string>
</resources>

@ -273,6 +273,8 @@
<string name="preferences_open_links_in_a_private_tab">Abrir enlaces en una pestaña privada</string> <string name="preferences_open_links_in_a_private_tab">Abrir enlaces en una pestaña privada</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">Permitir capturas de pantalla en navegación privada</string> <string name="preferences_allow_screenshots_in_private_mode">Permitir capturas de pantalla en navegación privada</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">Si está permitido, las pestañas privadas también serán visibles cuando hayan varias aplicaciones abiertas</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">Agregar acceso directo a navegación privada</string> <string name="preferences_add_private_browsing_shortcut">Agregar acceso directo a navegación privada</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -293,6 +295,8 @@
<string name="preferences_theme">Tema</string> <string name="preferences_theme">Tema</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Inicio</string> <string name="preferences_home">Inicio</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Gestos</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Personalizar</string> <string name="preferences_customize">Personalizar</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -330,6 +334,8 @@
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Ajustes de la cuenta</string> <string name="preferences_account_settings">Ajustes de la cuenta</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Autocompletar URLs</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Abrir enlaces en aplicaciones</string> <string name="preferences_open_links_in_apps">Abrir enlaces en aplicaciones</string>
@ -472,6 +478,16 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">Seguir tema del dispositivo</string> <string name="preference_follow_device_theme">Seguir tema del dispositivo</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">Arrastrar para actualizar</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">Desplazar para ocultar la barra de herramientas</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">Deslizar la barra hacia los lados para cambiar de pestaña</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">Deslizar la barra de herramientas hacia arriba para abrir pestañas</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Sesiones</string> <string name="library_sessions">Sesiones</string>
@ -1086,7 +1102,7 @@
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">Ya has iniciado sesión como %s en otro navegador Firefox de este teléfono. ¿Quieres iniciar sesión con esta cuenta?</string> <string name="onboarding_firefox_account_auto_signin_header_3">Te has conectado como %s en otro navegador Firefox en este dispositivo. ¿Quieres conectarte con esta cuenta?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Sí, iniciar sesión</string> <string name="onboarding_firefox_account_auto_signin_confirm">Sí, iniciar sesión</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1331,7 +1347,7 @@
<string name="add_to_homescreen_text_placeholder">Nombre de acceso directo</string> <string name="add_to_homescreen_text_placeholder">Nombre de acceso directo</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Puedes añadir fácilmente este sitio web a tu página de inicio para tener acceso instantáneo y navegar rápidamente como si fuera una aplicación.</string> <string name="add_to_homescreen_description_2">Puedes añadir fácilmente este sitio web a la pantalla de inicio de tu dispositivo para tener acceso instantáneo y navegar rápidamente, consiguiendo una experiencia similar a la de una aplicación real.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Inicios de sesión y contraseñas</string> <string name="preferences_passwords_logins_and_passwords">Inicios de sesión y contraseñas</string>
@ -1401,8 +1417,12 @@
<string name="logins_site_copied">Sitio copiado al portapapeles</string> <string name="logins_site_copied">Sitio copiado al portapapeles</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Copiar contraseña</string> <string name="saved_logins_copy_password">Copiar contraseña</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Borrar contraseña</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Copiar nombre de usuario</string> <string name="saved_login_copy_username">Copiar nombre de usuario</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Borrar nombre de usuario</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Copiar sitio</string> <string name="saved_login_copy_site">Copiar sitio</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1561,7 +1581,7 @@
<string name="saved_login_duplicate">Ya existe un inicio de sesión con ese nombre de usuario</string> <string name="saved_login_duplicate">Ya existe un inicio de sesión con ese nombre de usuario</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Conectar otro dispositivo.</string> <string name="synced_tabs_connect_another_device">Conectar otro dispositivo.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Por favor, vuelve a autentificarte.</string> <string name="synced_tabs_reauth">Por favor, vuelve a autentificarte.</string>
@ -1582,7 +1602,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Límite de sitios frecuentes alcanzado</string> <string name="top_sites_max_limit_title">Límite de sitios frecuentes alcanzado</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Para añadir un nuevo sitio frecuente, elimina uno. Mantén presionado el sitio y selecciona eliminar.</string> <string name="top_sites_max_limit_content_2">Para añadir un nuevo sitio frecuente, elimina uno. Toca y mantén presionado el sitio y selecciona eliminar.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">Vale, entendido</string> <string name="top_sites_max_limit_confirmation_button">Vale, entendido</string>
@ -1592,7 +1612,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Eliminar</string> <string name="remove_home_collection_placeholder_content_description">Eliminar</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Sácale el mejor provecho a %s.</string> <string name="onboarding_firefox_account_header">Sácale el mejor provecho a %s.</string>
@ -1600,4 +1620,9 @@
<string name="no_collections_header1">Colecciona las cosas que te importan</string> <string name="no_collections_header1">Colecciona las cosas que te importan</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Agrupa búsquedas, sitios y pestañas similares para un acceso rápido más tarde.</string> <string name="no_collections_description1">Agrupa búsquedas, sitios y pestañas similares para un acceso rápido más tarde.</string>
<!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Ya has iniciado sesión como %s en otro navegador Firefox de este teléfono. ¿Quieres iniciar sesión con esta cuenta?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Puedes añadir fácilmente este sitio web a tu página de inicio para tener acceso instantáneo y navegar rápidamente como si fuera una aplicación.</string>
</resources> </resources>

@ -30,6 +30,11 @@
<!-- Content description for checkmark while tab is selected while in multiselect mode in tab tray. The first parameter is the title of the tab selected --> <!-- Content description for checkmark while tab is selected while in multiselect mode in tab tray. The first parameter is the title of the tab selected -->
<string name="tab_tray_item_selected_multiselect_content_description">%1$s seleccionado</string> <string name="tab_tray_item_selected_multiselect_content_description">%1$s seleccionado</string>
<!-- Content description announcement when exiting multiselect mode in tab tray -->
<string name="tab_tray_exit_multiselect_content_description">Has salido del modo de selección múltiple</string>
<!-- Content description announcement when entering multiselect mode in tab tray -->
<string name="tab_tray_enter_multiselect_content_description">Has ingresado al modo de selección múltiple, selecciona pestañas para guardar en una colección</string>
<!-- About content. The first parameter is the name of the application. (For example: Fenix) --> <!-- About content. The first parameter is the name of the application. (For example: Fenix) -->
<string name="about_content">%1$s es producido por @fork-maintainers.</string> <string name="about_content">%1$s es producido por @fork-maintainers.</string>
@ -62,6 +67,17 @@
<!-- Text for the negative button --> <!-- Text for the negative button -->
<string name="search_widget_cfr_neg_button_text">Ahora no</string> <string name="search_widget_cfr_neg_button_text">Ahora no</string>
<!-- Text for the positive action button -->
<string name="open_in_app_cfr_positive_button_text">Ir a ajustes</string>
<!-- Text for the negative action button -->
<string name="open_in_app_cfr_negative_button_text">Descartar</string>
<!-- Text for the negative action button to dismiss the dialog. -->
<string name="camera_permissions_needed_negative_button_text">Descartar</string>
<!-- Text for the banner message to tell users about our auto close feature. -->
<string name="tab_tray_close_tabs_banner_message">Configura que las pestañas abiertas se cierren automáticamente si no han sido vistas en el último día, semana o mes.</string>
<!-- Home screen icons - Long press shortcuts --> <!-- Home screen icons - Long press shortcuts -->
<!-- Shortcut action to open new tab --> <!-- Shortcut action to open new tab -->
<string name="home_screen_shortcut_open_new_tab_2">Nueva pestaña</string> <string name="home_screen_shortcut_open_new_tab_2">Nueva pestaña</string>
@ -248,6 +264,8 @@
<string name="preferences_toolbar">Barra de herramientas</string> <string name="preferences_toolbar">Barra de herramientas</string>
<!-- Preference for changing default theme to dark or light mode --> <!-- Preference for changing default theme to dark or light mode -->
<string name="preferences_theme">Tema</string> <string name="preferences_theme">Tema</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Gestos</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Personalizar</string> <string name="preferences_customize">Personalizar</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -419,6 +437,13 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">Seguir el tema del dispositivo</string> <string name="preference_follow_device_theme">Seguir el tema del dispositivo</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">Desplazar para ocultar la barra</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">Deslizar la barra hacia los lados para cambiar de pestaña</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">Deslizar la barra hacia arriba para abrir pestañas</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Sesiones</string> <string name="library_sessions">Sesiones</string>
@ -724,10 +749,6 @@
<!-- Content description (not visible, for screen readers etc.): Opens the collection menu when pressed --> <!-- Content description (not visible, for screen readers etc.): Opens the collection menu when pressed -->
<string name="collection_menu_button_content_description">Menú de la colección</string> <string name="collection_menu_button_content_description">Menú de la colección</string>
<!-- No Open Tabs Message Header -->
<string name="no_collections_header1">Colecciona las cosas que te importan</string>
<!-- Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Agrupar búsquedas, sitios y pestañas similares para acceder rápidamente más tarde.</string>
<!-- Title for the "select tabs" step of the collection creator --> <!-- Title for the "select tabs" step of the collection creator -->
<string name="create_collection_select_tabs">Seleccionar pestañas</string> <string name="create_collection_select_tabs">Seleccionar pestañas</string>
@ -990,14 +1011,8 @@
<string name="onboarding_whats_new_description">¿Tienes preguntas sobre el rediseño de %s? ¿Quieres saber qué ha cambiado?</string> <string name="onboarding_whats_new_description">¿Tienes preguntas sobre el rediseño de %s? ¿Quieres saber qué ha cambiado?</string>
<!-- text for underlined clickable link that is part of "what's new" onboarding card description that links to an FAQ --> <!-- text for underlined clickable link that is part of "what's new" onboarding card description that links to an FAQ -->
<string name="onboarding_whats_new_description_linktext">Obtén respuestas aquí</string> <string name="onboarding_whats_new_description_linktext">Obtén respuestas aquí</string>
<!-- text for the firefox account onboarding card header -->
<string name="onboarding_firefox_account_header">Sácale el máximo provecho a %s.</string>
<!-- Text for the button to learn more about signing in to your Firefox account --> <!-- Text for the button to learn more about signing in to your Firefox account -->
<string name="onboarding_manual_sign_in_learn_more">Aprender más</string> <string name="onboarding_manual_sign_in_learn_more">Aprender más</string>
<!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">Has iniciado sesión como %s en otro navegador Firefox en este teléfono. ¿Deseas iniciar sesión con esta cuenta?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Sí, iniciar sesión</string> <string name="onboarding_firefox_account_auto_signin_confirm">Sí, iniciar sesión</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1243,9 +1258,6 @@
<!-- Placeholder text for the TextView in the Add to Homescreen dialog --> <!-- Placeholder text for the TextView in the Add to Homescreen dialog -->
<string name="add_to_homescreen_text_placeholder">Nombre del acceso directo</string> <string name="add_to_homescreen_text_placeholder">Nombre del acceso directo</string>
<!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Puedes agregar fácilmente este sitio web a tu página de inicio para tener acceso instantáneo y navegar rápidamente como si fuera una aplicación.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Inicios de sesión y contraseñas</string> <string name="preferences_passwords_logins_and_passwords">Inicios de sesión y contraseñas</string>
<!-- Preference for managing the saving of logins and passwords in Fenix --> <!-- Preference for managing the saving of logins and passwords in Fenix -->
@ -1472,7 +1484,7 @@
<string name="saved_login_duplicate">Ya existe un inicio de sesión con ese nombre de usuario</string> <string name="saved_login_duplicate">Ya existe un inicio de sesión con ese nombre de usuario</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Conectar otro dispositivo.</string> <string name="synced_tabs_connect_another_device">Conectar otro dispositivo.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Por favor, vuelve a autentificarte.</string> <string name="synced_tabs_reauth">Por favor, vuelve a autentificarte.</string>
@ -1491,9 +1503,20 @@
<!-- Top Sites --> <!-- Top Sites -->
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Límite de sitios frecuentes alcanzado</string> <string name="top_sites_max_limit_title">Límite de sitios frecuentes alcanzado</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Para añadir un nuevo sitio frecuente, elimina uno. Mantén presionado el sitio y selecciona eliminar.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">Vale, entendido</string> <string name="top_sites_max_limit_confirmation_button">Vale, entendido</string>
</resources> <!-- depcrecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Sácale el máximo provecho a %s.</string>
<!-- Deprecated: No Open Tabs Message Header -->
<string name="no_collections_header1">Colecciona las cosas que te importan</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Agrupar búsquedas, sitios y pestañas similares para acceder rápidamente más tarde.</string>
<!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Has iniciado sesión como %s en otro navegador Firefox en este teléfono. ¿Deseas iniciar sesión con esta cuenta?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Puedes agregar fácilmente este sitio web a tu página de inicio para tener acceso instantáneo y navegar rápidamente como si fuera una aplicación.</string>
</resources>

@ -272,6 +272,8 @@
<string name="preferences_open_links_in_a_private_tab">Avaa linkit yksityisessä välilehdessä</string> <string name="preferences_open_links_in_a_private_tab">Avaa linkit yksityisessä välilehdessä</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">Salli kuvakaappaukset yksityisen selauksen tilassa</string> <string name="preferences_allow_screenshots_in_private_mode">Salli kuvakaappaukset yksityisen selauksen tilassa</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">Jos sallittu, yksityiset välilehdet ovat näkyvissä kun useita sovelluksia on avoinna</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">Lisää yksityisen selauksen pikakuvake</string> <string name="preferences_add_private_browsing_shortcut">Lisää yksityisen selauksen pikakuvake</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -292,6 +294,8 @@
<string name="preferences_theme">Teema</string> <string name="preferences_theme">Teema</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Koti</string> <string name="preferences_home">Koti</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Eleet</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Mukauta</string> <string name="preferences_customize">Mukauta</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -329,6 +333,8 @@
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Tilin asetukset</string> <string name="preferences_account_settings">Tilin asetukset</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Täydennä osoitteet automaattisesti</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Avaa linkit sovelluksissa</string> <string name="preferences_open_links_in_apps">Avaa linkit sovelluksissa</string>
@ -468,6 +474,17 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">Seuraa laitteen teemaa</string> <string name="preference_follow_device_theme">Seuraa laitteen teemaa</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">Vedä päivittääksesi</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">Viertä piilottaaksesi työkalurivin</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">Pyyhkäise työkaluriviä sivuttain vaihtaaksesi välilehtiä</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">Pyyhkäise työkaluriviä ylös avataksesi välilehdet</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Istunnot</string> <string name="library_sessions">Istunnot</string>
@ -1066,7 +1083,7 @@
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">Olet kirjautunut tilillä %s toiseen Firefox-selaimeen tällä puhelimessa. Haluatko kirjautua sisään tällä tilillä?</string> <string name="onboarding_firefox_account_auto_signin_header_3">Olet kirjautunut tilillä %s toiseen Firefox-selaimeen tällä laitteella. Haluatko kirjautua sisään tällä tilillä?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Kyllä, kirjaa minut sisään</string> <string name="onboarding_firefox_account_auto_signin_confirm">Kyllä, kirjaa minut sisään</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1312,7 +1329,7 @@
<string name="add_to_homescreen_text_placeholder">Pikakuvakkeen nimi</string> <string name="add_to_homescreen_text_placeholder">Pikakuvakkeen nimi</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Voit lisätä tämän sivuston puhelimesi aloitusnäytölle, jolloin sivuston käyttö onnistuu nopeasti ja tarjoaa sovelluksen kaltaisen kokemuksen.</string> <string name="add_to_homescreen_description_2">Voit lisätä tämän sivuston laitteesi aloitusnäytölle, jolloin sivuston käyttö onnistuu nopeasti ja tarjoaa sovelluksen kaltaisen kokemuksen.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Käyttäjätunnukset ja salasanat</string> <string name="preferences_passwords_logins_and_passwords">Käyttäjätunnukset ja salasanat</string>
@ -1382,8 +1399,12 @@
<string name="logins_site_copied">Sivusto kopioitu leikepöydälle</string> <string name="logins_site_copied">Sivusto kopioitu leikepöydälle</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Kopioi salasana</string> <string name="saved_logins_copy_password">Kopioi salasana</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Tyhjennä salasana</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Kopioi käyttäjätunnus</string> <string name="saved_login_copy_username">Kopioi käyttäjätunnus</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Tyhjennä käyttäjätunnus</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Kopioi sivusto</string> <string name="saved_login_copy_site">Kopioi sivusto</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1540,7 +1561,7 @@
<string name="saved_login_duplicate">Kirjautumistieto tällä käyttäjänimellä on jo olemassa</string> <string name="saved_login_duplicate">Kirjautumistieto tällä käyttäjänimellä on jo olemassa</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Yhdistä toinen laite.</string> <string name="synced_tabs_connect_another_device">Yhdistä toinen laite.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Tunnistaudu uudelleen.</string> <string name="synced_tabs_reauth">Tunnistaudu uudelleen.</string>
@ -1560,7 +1581,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Ykkössivustojen määrä täynnä</string> <string name="top_sites_max_limit_title">Ykkössivustojen määrä täynnä</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Lisätäksesi uuden ykkössivuston, poista yksi olemassa oleva. Paina pitkään sivustoa ja valitse poista.</string> <string name="top_sites_max_limit_content_2">Lisätäksesi uuden ykkössivuston, poista yksi olemassa oleva. Kosketa sivustoa ja pidä pohjassa, sitten valitse poista.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">Selvä</string> <string name="top_sites_max_limit_confirmation_button">Selvä</string>
@ -1570,7 +1591,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Poista</string> <string name="remove_home_collection_placeholder_content_description">Poista</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Ota kaikki irti %sista.</string> <string name="onboarding_firefox_account_header">Ota kaikki irti %sista.</string>
@ -1578,4 +1599,9 @@
<string name="no_collections_header1">Kerää yhteen sinulle tärkeät asiat</string> <string name="no_collections_header1">Kerää yhteen sinulle tärkeät asiat</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Kokoa yhteen samanlaiset haut, sivustot ja välilehdet nopeaa käyttöä varten.</string> <string name="no_collections_description1">Kokoa yhteen samanlaiset haut, sivustot ja välilehdet nopeaa käyttöä varten.</string>
</resources> <!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Olet kirjautunut tilillä %s toiseen Firefox-selaimeen tällä puhelimessa. Haluatko kirjautua sisään tällä tilillä?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Voit lisätä tämän sivuston puhelimesi aloitusnäytölle, jolloin sivuston käyttö onnistuu nopeasti ja tarjoaa sovelluksen kaltaisen kokemuksen.</string>
</resources>

@ -271,6 +271,8 @@
<string name="preferences_open_links_in_a_private_tab">Ouvrir les liens dans un onglet privé</string> <string name="preferences_open_links_in_a_private_tab">Ouvrir les liens dans un onglet privé</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">Autoriser les captures décran pendant la navigation privée</string> <string name="preferences_allow_screenshots_in_private_mode">Autoriser les captures décran pendant la navigation privée</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">Si autorisé, les onglets privés seront également visibles lorsque plusieurs applications sont ouvertes</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">Ajouter un raccourci pour la navigation privée</string> <string name="preferences_add_private_browsing_shortcut">Ajouter un raccourci pour la navigation privée</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -291,6 +293,8 @@
<string name="preferences_theme">Thème</string> <string name="preferences_theme">Thème</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Accueil</string> <string name="preferences_home">Accueil</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Mouvements</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Personnaliser</string> <string name="preferences_customize">Personnaliser</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -325,9 +329,13 @@
<string name="preferences_search_browsing_history">Rechercher dans lhistorique de navigation</string> <string name="preferences_search_browsing_history">Rechercher dans lhistorique de navigation</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">Rechercher dans les marque-pages</string> <string name="preferences_search_bookmarks">Rechercher dans les marque-pages</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">Rechercher dans les onglets synchronisés</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Paramètres du compte</string> <string name="preferences_account_settings">Paramètres du compte</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Compléter automatiquement les URL</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Ouvrir les liens dans des applications</string> <string name="preferences_open_links_in_apps">Ouvrir les liens dans des applications</string>
@ -470,6 +478,9 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">Suivre le thème de lappareil</string> <string name="preference_follow_device_theme">Suivre le thème de lappareil</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">Masquer la barre doutils au défilement</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Sessions</string> <string name="library_sessions">Sessions</string>
@ -1086,7 +1097,7 @@ Cependant, il peut être moins stable. Téléchargez la version bêta de notre n
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">Vous êtes connecté·e en tant que %s sur un autre navigateur Firefox avec ce téléphone. Voulez-vous vous connecter avec ce compte ?</string> <string name="onboarding_firefox_account_auto_signin_header_3">Vous êtes connecté·e en tant que %s sur un autre navigateur Firefox avec cet appareil. Voulez-vous vous connecter avec ce compte ?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Oui, connectez-moi</string> <string name="onboarding_firefox_account_auto_signin_confirm">Oui, connectez-moi</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1331,7 +1342,7 @@ Cependant, il peut être moins stable. Téléchargez la version bêta de notre n
<string name="add_to_homescreen_text_placeholder">Nom du raccourci</string> <string name="add_to_homescreen_text_placeholder">Nom du raccourci</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Vous pouvez facilement ajouter ce site à lécran daccueil de votre téléphone pour y avoir accès directement et naviguer plus rapidement, comme si vous utilisiez une application.</string> <string name="add_to_homescreen_description_2">Vous pouvez facilement ajouter ce site à lécran daccueil de votre appareil pour y avoir accès directement et naviguer plus rapidement, comme si vous utilisiez une application.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Identifiants et mots de passe</string> <string name="preferences_passwords_logins_and_passwords">Identifiants et mots de passe</string>
@ -1401,8 +1412,12 @@ Cependant, il peut être moins stable. Téléchargez la version bêta de notre n
<string name="logins_site_copied">Site copié dans le presse-papiers</string> <string name="logins_site_copied">Site copié dans le presse-papiers</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Copier le mot de passe</string> <string name="saved_logins_copy_password">Copier le mot de passe</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Effacer le mot de passe</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Copier le nom dutilisateur</string> <string name="saved_login_copy_username">Copier le nom dutilisateur</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Effacer le nom dutilisateur</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Copier le site</string> <string name="saved_login_copy_site">Copier le site</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1557,7 +1572,7 @@ Cependant, il peut être moins stable. Téléchargez la version bêta de notre n
<string name="saved_login_duplicate">Un identifiant avec ce nom dutilisateur existe déjà</string> <string name="saved_login_duplicate">Un identifiant avec ce nom dutilisateur existe déjà</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Connectez un autre appareil.</string> <string name="synced_tabs_connect_another_device">Connectez un autre appareil.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Veuillez vous authentifier à nouveau.</string> <string name="synced_tabs_reauth">Veuillez vous authentifier à nouveau.</string>
@ -1577,7 +1592,7 @@ Cependant, il peut être moins stable. Téléchargez la version bêta de notre n
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Nombre maximal de sites atteint</string> <string name="top_sites_max_limit_title">Nombre maximal de sites atteint</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Pour ajouter un nouveau site principal, supprimez-en un autre. Faites un appui long sur le site et sélectionnez supprimer.</string> <string name="top_sites_max_limit_content_2">Pour ajouter un nouveau site principal, supprimez-en un autre. Faites un appui long sur le site et sélectionnez supprimer.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">Jai compris</string> <string name="top_sites_max_limit_confirmation_button">Jai compris</string>
@ -1587,7 +1602,7 @@ Cependant, il peut être moins stable. Téléchargez la version bêta de notre n
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Supprimer</string> <string name="remove_home_collection_placeholder_content_description">Supprimer</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Tirez le meilleur parti de %s.</string> <string name="onboarding_firefox_account_header">Tirez le meilleur parti de %s.</string>
@ -1595,4 +1610,9 @@ Cependant, il peut être moins stable. Téléchargez la version bêta de notre n
<string name="no_collections_header1">Rassemblez ce qui compte pour vous</string> <string name="no_collections_header1">Rassemblez ce qui compte pour vous</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Regroupez des recherches, des sites et des onglets similaires pour y accéder rapidement plus tard.</string> <string name="no_collections_description1">Regroupez des recherches, des sites et des onglets similaires pour y accéder rapidement plus tard.</string>
</resources> <!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Vous êtes connecté·e en tant que %s sur un autre navigateur Firefox avec ce téléphone. Voulez-vous vous connecter avec ce compte ?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Vous pouvez facilement ajouter ce site à lécran daccueil de votre téléphone pour y avoir accès directement et naviguer plus rapidement, comme si vous utilisiez une application.</string>
</resources>

@ -269,6 +269,8 @@
<string name="preferences_open_links_in_a_private_tab">Keppelingen iepenje yn in priveeljepblêd</string> <string name="preferences_open_links_in_a_private_tab">Keppelingen iepenje yn in priveeljepblêd</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">Skermôfbyldingen meitsje yn priveenavigaasje tastean</string> <string name="preferences_allow_screenshots_in_private_mode">Skermôfbyldingen meitsje yn priveenavigaasje tastean</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">Wannear tastien, binne priveeljepblêden ek sichtber wannear mear apps iepene binne</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">Fluchkeppeling nei priveenavigaasje tafoegje</string> <string name="preferences_add_private_browsing_shortcut">Fluchkeppeling nei priveenavigaasje tafoegje</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -289,6 +291,8 @@
<string name="preferences_theme">Tema</string> <string name="preferences_theme">Tema</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Startside</string> <string name="preferences_home">Startside</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Bewegingen</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Oanpasse</string> <string name="preferences_customize">Oanpasse</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -323,9 +327,13 @@
<string name="preferences_search_browsing_history">Navigaasjeskiednis trochsykje</string> <string name="preferences_search_browsing_history">Navigaasjeskiednis trochsykje</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">Blêdwizers trochsykje</string> <string name="preferences_search_bookmarks">Blêdwizers trochsykje</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">Syngronisearre ljepblêden trochsykje</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Accountynstellingen</string> <string name="preferences_account_settings">Accountynstellingen</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">URLs automatysk oanfolje</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Keppelingen iepenje yn apps</string> <string name="preferences_open_links_in_apps">Keppelingen iepenje yn apps</string>
@ -462,6 +470,16 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">Apparaattema folgje</string> <string name="preference_follow_device_theme">Apparaattema folgje</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">Lûk om te fernijen</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">Scroll om de wurkbalke te ferstopjen</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">Fei de wurkbalke op side om fan ljepblêd te wikseljen</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">Fei de wurkbalke omheech om ljepblêden te iepenjen</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Sesjes</string> <string name="library_sessions">Sesjes</string>
@ -1050,7 +1068,7 @@
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">Jo binne op in oare Firefox-browser op dizze telefoan oanmeld as %s . Wolle jo oanmelde mei dizze account?</string> <string name="onboarding_firefox_account_auto_signin_header_3">Jo binne oanmeld as %s op in oare Firefox-browser op dit apparaat. Wolle jo oanmelde mei dizze account?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Ja, my oanmelde</string> <string name="onboarding_firefox_account_auto_signin_confirm">Ja, my oanmelde</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1297,7 +1315,7 @@
<string name="add_to_homescreen_text_placeholder">Namme fluchtoets</string> <string name="add_to_homescreen_text_placeholder">Namme fluchtoets</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Jo kinne dizze website ienfâldichwei oan it startskerm fan jo telefoan tafoegje foar daliks tagong en flugger surfe mei in app-eftige ûnderfining.</string> <string name="add_to_homescreen_description_2">Jo kinne dizze website ienfâldich oan it startskerm fan jo apparaat tafoegje, om sa daliks tagong te hawwen en flugger te navigearjen mei in app-eftige ûnderfining.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Oanmeldingen en wachtwurden</string> <string name="preferences_passwords_logins_and_passwords">Oanmeldingen en wachtwurden</string>
@ -1367,8 +1385,12 @@
<string name="logins_site_copied">Website nei klamboerd kopiearre</string> <string name="logins_site_copied">Website nei klamboerd kopiearre</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Wachtwurd kopiearje</string> <string name="saved_logins_copy_password">Wachtwurd kopiearje</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Wachtwurd wiskje</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Brûkersnamme kopiearje</string> <string name="saved_login_copy_username">Brûkersnamme kopiearje</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Brûkersnamme wiskje</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Website kopiearje</string> <string name="saved_login_copy_site">Website kopiearje</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1523,7 +1545,7 @@
<string name="saved_login_duplicate">Der bestiet al in oanmelding mei dy brûkersnamme</string> <string name="saved_login_duplicate">Der bestiet al in oanmelding mei dy brûkersnamme</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">In oar apparaat ferbine.</string> <string name="synced_tabs_connect_another_device">In oar apparaat ferbine.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Graach opnij autentisearje.</string> <string name="synced_tabs_reauth">Graach opnij autentisearje.</string>
@ -1544,7 +1566,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Limyt foar topwebsites berikke</string> <string name="top_sites_max_limit_title">Limyt foar topwebsites berikke</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Smyt in topwebsite fuort om in nije ta te foegjen. Hâld de website yndrukt en selektearje Fuortsmite.</string> <string name="top_sites_max_limit_content_2">Smyt in topwebsite fuort om in nije ta te foegjen. Hâld de website yndrukt en selektearje Fuortsmite.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">OK, begrepen</string> <string name="top_sites_max_limit_confirmation_button">OK, begrepen</string>
@ -1554,7 +1576,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Fuortsmite</string> <string name="remove_home_collection_placeholder_content_description">Fuortsmite</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Helje it measte út %s.</string> <string name="onboarding_firefox_account_header">Helje it measte út %s.</string>
@ -1562,4 +1584,9 @@
<string name="no_collections_header1">Sammelje de dingen dy\'t wichtich foar jo binne</string> <string name="no_collections_header1">Sammelje de dingen dy\'t wichtich foar jo binne</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Groepearje fergelykbere sykopdrachten, websites en ljepblêden foar flugge tagong letter.</string> <string name="no_collections_description1">Groepearje fergelykbere sykopdrachten, websites en ljepblêden foar flugge tagong letter.</string>
</resources> <!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Jo binne op in oare Firefox-browser op dizze telefoan oanmeld as %s . Wolle jo oanmelde mei dizze account?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Jo kinne dizze website ienfâldichwei oan it startskerm fan jo telefoan tafoegje foar daliks tagong en flugger surfe mei in app-eftige ûnderfining.</string>
</resources>

@ -272,6 +272,8 @@
<string name="preferences_open_links_in_a_private_tab">Embojuruja juajuha tendayke ñemíme</string> <string name="preferences_open_links_in_a_private_tab">Embojuruja juajuha tendayke ñemíme</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">Emoneĩ mbaerechaha japyhy kundaha ñemíme</string> <string name="preferences_allow_screenshots_in_private_mode">Emoneĩ mbaerechaha japyhy kundaha ñemíme</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">Oñemoneĩrõ, umi tendayke ñemigua ojehecháta oĩ vove heta tembipurui ijurujáva</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">Embojuaju jeike pyaeha tendayke ñemiguáre</string> <string name="preferences_add_private_browsing_shortcut">Embojuaju jeike pyaeha tendayke ñemiguáre</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -292,6 +294,8 @@
<string name="preferences_theme">Téma</string> <string name="preferences_theme">Téma</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Ñepyrũ</string> <string name="preferences_home">Ñepyrũ</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Ñehaãnga</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Ñemombaete</string> <string name="preferences_customize">Ñemombaete</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -328,6 +332,8 @@
<string name="preferences_search_bookmarks">Eheka techaukaha</string> <string name="preferences_search_bookmarks">Eheka techaukaha</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Mbaete ñemboheko</string> <string name="preferences_account_settings">Mbaete ñemboheko</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Moĩmbajehegui URLs</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Embojuruja juajuha tembipuruípe</string> <string name="preferences_open_links_in_apps">Embojuruja juajuha tembipuruípe</string>
<!-- Preference for open download with an external download manager app --> <!-- Preference for open download with an external download manager app -->
@ -466,6 +472,17 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">Ehapykueho mbaeoka téma</string> <string name="preference_follow_device_theme">Ehapykueho mbaeoka téma</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">Embosyryry hekopyahu hag̃ua</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">Emongue emoñemi hag̃ua mbaerenda</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">Eraha mbaerenda yke gotyo emoambue hag̃ua tendayke</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">Eraha mbaerenda yvate gotyo embojuruja hag̃ua tendayke</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Tembiapo</string> <string name="library_sessions">Tembiapo</string>
@ -1068,7 +1085,7 @@
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">Eñepyrũ tembiapo %s ramo ambue Firefox kundahára ko pumbyry pegua. ¿Eñepyrũse tembiapo ko mbaete ndive?</string> <string name="onboarding_firefox_account_auto_signin_header_3">Eike %s ramo ambue Firefox kundahára ko mbaeoka pegua. ¿Eikese añetépa ko mbaete ndive?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Héẽ, eñepyrũ tembiapo</string> <string name="onboarding_firefox_account_auto_signin_confirm">Héẽ, eñepyrũ tembiapo</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1320,7 +1337,7 @@
<string name="add_to_homescreen_text_placeholder">Jeike pyaeha réra</string> <string name="add_to_homescreen_text_placeholder">Jeike pyaeha réra</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Ikatu embojuaju ko ñanduti renda ne mbaerechaha ñepyrũgua rehe eike hag̃ua ha eikundaha pyaeve rekávo tembipuruícharamo.</string> <string name="add_to_homescreen_description_2">Ikatu embojuaju ko ñanduti renda ne mbaeoka mbaerechaha ñepyrũgua rehe eike hag̃ua ha eikundaha pyaeve, peteĩ tembipuruícharamo.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Tembiapo ñepyrũ ha ñeẽñemi</string> <string name="preferences_passwords_logins_and_passwords">Tembiapo ñepyrũ ha ñeẽñemi</string>
@ -1390,8 +1407,12 @@
<string name="logins_site_copied">Tenda ohasáva kuatiajokohápe</string> <string name="logins_site_copied">Tenda ohasáva kuatiajokohápe</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Emonguatia ñeẽñemi</string> <string name="saved_logins_copy_password">Emonguatia ñeẽñemi</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Embogue ñeẽñemi</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Emonguatia puruhára réra</string> <string name="saved_login_copy_username">Emonguatia puruhára réra</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Embogue puruhára réra</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Emonguatia tenda</string> <string name="saved_login_copy_site">Emonguatia tenda</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1550,7 +1571,7 @@
<string name="saved_login_duplicate">Oĩma tembiapo ñepyrũ puruhára réra peichagua</string> <string name="saved_login_duplicate">Oĩma tembiapo ñepyrũ puruhára réra peichagua</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Emoinge ambue mbaeoka.</string> <string name="synced_tabs_connect_another_device">Emoinge ambue mbaeoka.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Ikatúpiko emoneĩjey.</string> <string name="synced_tabs_reauth">Ikatúpiko emoneĩjey.</string>
@ -1571,7 +1592,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Ehupytýma huã tenda mbaguasúvape g̃uarã</string> <string name="top_sites_max_limit_title">Ehupytýma huã tenda mbaguasúvape g̃uarã</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Embojuaju hag̃ua tenda pyahu, omboguéta peteĩ. Ejopy are tenda ha eiporavo mboguete.</string> <string name="top_sites_max_limit_content_2">Embojuaju hag̃ua tenda pyahu, embogue peteĩ. Ejopy are tenda ha eiporavo mboguete.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">Oĩma, aikumby</string> <string name="top_sites_max_limit_confirmation_button">Oĩma, aikumby</string>
@ -1581,7 +1602,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Mboguete</string> <string name="remove_home_collection_placeholder_content_description">Mboguete</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Eguenohẽ %s-gui eikotevẽva.</string> <string name="onboarding_firefox_account_header">Eguenohẽ %s-gui eikotevẽva.</string>
@ -1589,4 +1610,9 @@
<string name="no_collections_header1">Embyaty umi mbaekuéra ehayhu añetéva</string> <string name="no_collections_header1">Embyaty umi mbaekuéra ehayhu añetéva</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Emboaty hekaha, tenda ha tendayke ojueheguáva eike pyaeve hag̃ua ag̃ave.</string> <string name="no_collections_description1">Emboaty hekaha, tenda ha tendayke ojueheguáva eike pyaeve hag̃ua ag̃ave.</string>
</resources> <!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Eñepyrũ tembiapo %s ramo ambue Firefox kundahára ko pumbyry pegua. ¿Eñepyrũse tembiapo ko mbaete ndive?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Ikatu embojuaju ko ñanduti renda ne mbaerechaha ñepyrũgua rehe eike hag̃ua ha eikundaha pyaeve rekávo tembipuruícharamo.</string>
</resources>

@ -1,5 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<resources> <resources>
<!-- App name for private browsing mode. The first parameter is the name of the app defined in app_name (for example: Fenix)-->
<string name="app_name_private_5">ખાનગી %s</string>
<!-- App name for private browsing mode. The first parameter is the name of the app defined in app_name (for example: Fenix)-->
<string name="app_name_private_4">%s (ખાનગી)</string>
<!-- Home Fragment --> <!-- Home Fragment -->
<!-- Content description (not visible, for screen readers etc.): "Three dot" menu button. --> <!-- Content description (not visible, for screen readers etc.): "Three dot" menu button. -->
<string name="content_description_menu">વધુ વિકલ્પ</string> <string name="content_description_menu">વધુ વિકલ્પ</string>
@ -9,11 +13,29 @@
<string name="content_description_disable_private_browsing_button">ખાનગી બ્રાઉઝિંગ નિષ્ક્રિય કરો</string> <string name="content_description_disable_private_browsing_button">ખાનગી બ્રાઉઝિંગ નિષ્ક્રિય કરો</string>
<!-- Placeholder text shown in the search bar before a user enters text --> <!-- Placeholder text shown in the search bar before a user enters text -->
<string name="search_hint">શોધ અથવા સરનામું દાખલ કરો</string> <string name="search_hint">શોધ અથવા સરનામું દાખલ કરો</string>
<!-- No Open Tabs Message Header -->
<string name="no_open_tabs_header_2">કોઈ ટૅબ્સ ખુલ્લા નથી</string>
<!-- No Open Tabs Message Description --> <!-- No Open Tabs Message Description -->
<string name="no_open_tabs_description">તમારા ખુલ્લા ટેબ અહીં બતાવવામાં આવશે.</string> <string name="no_open_tabs_description">તમારા ખુલ્લા ટેબ અહીં બતાવવામાં આવશે.</string>
<!-- No Private Tabs Message Description -->
<string name="no_private_tabs_description">તમારા ખાનગી ટૅબ્સ અહીં બતાવવામાં આવશે.</string>
<!-- Tab tray multi select title in app bar. The first parameter is the number of tabs selected -->
<string name="tab_tray_multi_select_title">%1$d પસંદ કરેલ</string>
<!-- Label of button in create collection dialog for creating a new collection -->
<string name="tab_tray_add_new_collection">નવો સંગ્રહ ઉમેરો</string>
<!-- Label of editable text in create collection dialog for naming a new collection -->
<string name="tab_tray_add_new_collection_name">નામ</string>
<!-- Label of button in save to collection dialog for selecting a current collection -->
<string name="tab_tray_select_collection">સંગ્રહ પસંદ કરો</string>
<!-- Content description for close button while in multiselect mode in tab tray -->
<string name="tab_tray_close_multiselect_content_description">મલ્ટિસિલેક્ટ મોડમાંથી બહાર નીકળો</string>
<!-- Content description for save to collection button while in multiselect mode in tab tray -->
<string name="tab_tray_collection_button_multiselect_content_description">પસંદ કરેલા ટૅબ્સને સંગ્રહમાં સાચવો</string>
<!-- Content description for checkmark while tab is selected while in multiselect mode in tab tray. The first parameter is the title of the tab selected -->
<string name="tab_tray_item_selected_multiselect_content_description">%1$s પસંદ કરેલ</string>
<!-- Content description on checkmark while tab is selected in multiselect mode in tab tray -->
<string name="tab_tray_multiselect_selected_content_description">પસંદ કરેલ</string>
<!-- Private Browsing --> <!-- Private Browsing -->
<!-- Title for private session option --> <!-- Title for private session option -->
<string name="private_browsing_title">તમે ખાનગી સત્રમાં છો</string> <string name="private_browsing_title">તમે ખાનગી સત્રમાં છો</string>
@ -23,7 +45,7 @@
<!-- Delete session button to erase your history in a private session --> <!-- Delete session button to erase your history in a private session -->
<string name="private_browsing_delete_session">સત્ર કાઢી નાખો </string> <string name="private_browsing_delete_session">સત્ર કાઢી નાખો </string>
<!-- Private mode shortcut "contextual feature recommender" (CFR) --> <!-- Private mode shortcut "contextual feature recommendation" (CFR) -->
<!-- Text for the main message --> <!-- Text for the main message -->
<string name="cfr_message">તમારી હોમ સ્ક્રીનમાંથી ખાનગી ટેબ્સ ખોલવા માટે એક શોર્ટકટ ઉમેરો.</string> <string name="cfr_message">તમારી હોમ સ્ક્રીનમાંથી ખાનગી ટેબ્સ ખોલવા માટે એક શોર્ટકટ ઉમેરો.</string>
<!-- Text for the positive button --> <!-- Text for the positive button -->
@ -32,6 +54,9 @@
<!-- Text for the negative button --> <!-- Text for the negative button -->
<string name="cfr_neg_button_text">ના આભાર</string> <string name="cfr_neg_button_text">ના આભાર</string>
<!-- Text for the negative button -->
<string name="search_widget_cfr_neg_button_text">હમણાં નહિ</string>
<!-- Home screen icons - Long press shortcuts --> <!-- Home screen icons - Long press shortcuts -->
<!-- Shortcut action to open new tab --> <!-- Shortcut action to open new tab -->
<string name="home_screen_shortcut_open_new_tab_2">નવી ટૅબ</string> <string name="home_screen_shortcut_open_new_tab_2">નવી ટૅબ</string>
@ -77,8 +102,6 @@
<string name="browser_menu_new_tab">નવું ટૅબ</string> <string name="browser_menu_new_tab">નવું ટૅબ</string>
<!-- Browser menu button that saves the current tab to a collection --> <!-- Browser menu button that saves the current tab to a collection -->
<string name="browser_menu_save_to_collection_2">સંગ્રહમાં સાચવો</string> <string name="browser_menu_save_to_collection_2">સંગ્રહમાં સાચવો</string>
<!-- Browser menu button that opens a dialog to report issues with the current site -->
<string name="browser_menu_report_issue">સાઈટ ની સમસ્યાની જાણ કરો</string>
<!-- Browser menu button that open a share menu to share the current site --> <!-- Browser menu button that open a share menu to share the current site -->
<string name="browser_menu_share">વહેંચો</string> <string name="browser_menu_share">વહેંચો</string>
<!-- Share menu title, displayed when a user is sharing their current site --> <!-- Share menu title, displayed when a user is sharing their current site -->
@ -92,7 +115,7 @@
<!-- Browser menu text shown in custom tabs to indicate this is a Fenix tab <!-- Browser menu text shown in custom tabs to indicate this is a Fenix tab
The first parameter is the name of the app defined in app_name (for example: Fenix) --> The first parameter is the name of the app defined in app_name (for example: Fenix) -->
<string name="browser_menu_powered_by2">%1$s દ્વારા સંચાલિત</string> <string name="browser_menu_powered_by2">%1$s દ્વારા સંચાલિત</string>
<!-- Browser menu button to put the the current page in reader mode --> <!-- Browser menu button to put the current page in reader mode -->
<string name="browser_menu_read">વાંચકો જુઓ</string> <string name="browser_menu_read">વાંચકો જુઓ</string>
<!-- Browser menu button to open the current page in an external app --> <!-- Browser menu button to open the current page in an external app -->
<string name="browser_menu_open_app_link">એપ્લિકેશનમાં ખોલો</string> <string name="browser_menu_open_app_link">એપ્લિકેશનમાં ખોલો</string>
@ -112,14 +135,10 @@
<!-- Search Fragment --> <!-- Search Fragment -->
<!-- Button in the search view that lets a user search by scanning a QR code --> <!-- Button in the search view that lets a user search by scanning a QR code -->
<string name="search_scan_button">સ્કેન કરો</string> <string name="search_scan_button">સ્કેન કરો</string>
<!-- Button in the search view that lets a user search by using a shortcut -->
<string name="search_shortcuts_button">શૉર્ટકટ્સ</string>
<!-- Button in the search view when shortcuts are displayed that takes a user to the search engine settings --> <!-- Button in the search view when shortcuts are displayed that takes a user to the search engine settings -->
<string name="search_shortcuts_engine_settings">શોધ એન્જિન સેટિંગ્સ</string> <string name="search_shortcuts_engine_settings">શોધ એન્જિન સેટિંગ્સ</string>
<!-- DEPRECATED: Header displayed when selecting a shortcut search engine -->
<string name="search_shortcuts_search_with">સાથે શોધો</string>
<!-- Header displayed when selecting a shortcut search engine --> <!-- Header displayed when selecting a shortcut search engine -->
<string name="search_shortcuts_search_with_2">આ સમયે, આની સાથે શોધો:</string> <string name="search_engines_search_with">આ સમયે, આની સાથે શોધો:</string>
<!-- Button in the search view that lets a user navigate to the site in their clipboard --> <!-- Button in the search view that lets a user navigate to the site in their clipboard -->
<string name="awesomebar_clipboard_title">ક્લિપબોર્ડથી લિંક ભરો</string> <string name="awesomebar_clipboard_title">ક્લિપબોર્ડથી લિંક ભરો</string>
<!-- Button in the search suggestions onboarding that allows search suggestions in private sessions --> <!-- Button in the search suggestions onboarding that allows search suggestions in private sessions -->
@ -216,8 +235,6 @@
<string name="developer_tools_category">ડેવલપર સાધનો</string> <string name="developer_tools_category">ડેવલપર સાધનો</string>
<!-- Preference for developers --> <!-- Preference for developers -->
<string name="preferences_remote_debugging">USB દ્વારા રિમોટ ડિબગીંગ</string> <string name="preferences_remote_debugging">USB દ્વારા રિમોટ ડિબગીંગ</string>
<!-- Preference title for switch preference to show search shortcuts -->
<string name="preferences_show_search_shortcuts">શોધ શોર્ટકટ્સ બતાવો</string>
<!-- Preference title for switch preference to show search suggestions --> <!-- Preference title for switch preference to show search suggestions -->
<string name="preferences_show_search_suggestions">શોધ સૂચનો બતાવો</string> <string name="preferences_show_search_suggestions">શોધ સૂચનો બતાવો</string>
<!-- Preference title for switch preference to show search suggestions also in private mode --> <!-- Preference title for switch preference to show search suggestions also in private mode -->
@ -369,8 +386,6 @@
<string name="library_reading_list">વાંચન યાદી</string> <string name="library_reading_list">વાંચન યાદી</string>
<!-- Menu Item Label for Search in Library --> <!-- Menu Item Label for Search in Library -->
<string name="library_search">શોધો</string> <string name="library_search">શોધો</string>
<!-- Library Page Title -->
<string name="library_title">પુસ્તકાલય</string>
<!-- Settings Page Title --> <!-- Settings Page Title -->
<string name="settings_title">સેટિંગ્સ</string> <string name="settings_title">સેટિંગ્સ</string>
<!-- Content description (not visible, for screen readers etc.): "Menu icon for items on a history item" --> <!-- Content description (not visible, for screen readers etc.): "Menu icon for items on a history item" -->
@ -387,6 +402,18 @@
<string name="tabs_header_private_tabs_title">ખાનગી ટૅબ્સ</string> <string name="tabs_header_private_tabs_title">ખાનગી ટૅબ્સ</string>
<!-- Content description (not visible, for screen readers etc.): Add tab button. Adds a news tab when pressed --> <!-- Content description (not visible, for screen readers etc.): Add tab button. Adds a news tab when pressed -->
<string name="add_tab">ટૅબ ઉમેરો</string> <string name="add_tab">ટૅબ ઉમેરો</string>
<!-- Content description (not visible, for screen readers etc.): Add tab button. Adds a news tab when pressed -->
<string name="add_private_tab">ખાનગી ટેબ ઉમેરો</string>
<!-- Text for the new tab button to indicate adding a new private tab in the tab -->
<string name="tab_drawer_fab_content">ખાનગી</string>
<!-- Text shown as the title of the open tab tray -->
<string name="tab_tray_title">ટૅબ્સ ખોલો</string>
<!-- Text shown in the menu for saving tabs to a collection -->
<string name="tab_tray_menu_item_save">સંગ્રહમાં સાચવો</string>
<!-- Text shown in the menu for closing all tabs -->
<string name="tab_tray_menu_item_close">બધી ટૅબ્સ બંધ કરો</string>
<!-- Shortcut action to open new tab -->
<string name="tab_tray_menu_open_new_tab">નવું ટૅબ</string>
<!-- Content description (not visible, for screen readers etc.): Close tab button. Closes the current session when pressed --> <!-- Content description (not visible, for screen readers etc.): Close tab button. Closes the current session when pressed -->
<string name="close_tab">ટૅબ બંધ કરો</string> <string name="close_tab">ટૅબ બંધ કરો</string>
<!-- Content description (not visible, for screen readers etc.): Close tab <title> button. First parameter is tab title --> <!-- Content description (not visible, for screen readers etc.): Close tab <title> button. First parameter is tab title -->
@ -397,8 +424,6 @@
<string name="tabs_menu_close_all_tabs">બધી ટૅબ્સ બંધ કરો</string> <string name="tabs_menu_close_all_tabs">બધી ટૅબ્સ બંધ કરો</string>
<!-- Open tabs menu item to share all tabs --> <!-- Open tabs menu item to share all tabs -->
<string name="tabs_menu_share_tabs">ટૅબ્સ શેર કરો</string> <string name="tabs_menu_share_tabs">ટૅબ્સ શેર કરો</string>
<!-- Open tabs menu item to save tabs to collection -->
<string name="tabs_menu_save_to_collection">સંગ્રહમાં સાચવો</string>
<!-- Content description (not visible, for screen readers etc.): Opens the tab menu when pressed --> <!-- Content description (not visible, for screen readers etc.): Opens the tab menu when pressed -->
<string name="tab_menu">ટૅબ મેનૂ</string> <string name="tab_menu">ટૅબ મેનૂ</string>
@ -424,11 +449,18 @@
<!-- Text for the menu button to remove a top site --> <!-- Text for the menu button to remove a top site -->
<string name="remove_top_site">દૂર કરો</string> <string name="remove_top_site">દૂર કરો</string>
<!-- Postfix for private WebApp titles, placeholder is replaced with app name -->
<string name="pwa_site_controls_title_private">%1$s (ખાનગી મોડ)</string>
<!-- Button in the current tab tray header in multiselect mode. Saved the selected tabs to a collection when pressed. -->
<string name="tab_tray_save_to_collection">સાચવો</string>
<!-- History --> <!-- History -->
<!-- Text for the button to clear all history --> <!-- Text for the button to clear all history -->
<string name="history_delete_all">ઇતિહાસ કાઢી નાખો</string> <string name="history_delete_all">ઇતિહાસ કાઢી નાખો</string>
<!-- Text for the dialog to confirm clearing all history --> <!-- Text for the dialog to confirm clearing all history -->
<string name="history_delete_all_dialog">શું તમે ખરેખર તમારા ઇતિહાસને સાફ કરવા માંગો છો?</string> <string name="history_delete_all_dialog">શું તમે ખરેખર તમારા ઇતિહાસને સાફ કરવા માંગો છો?</string>
<!-- Text for the snackbar to confirm that a single browsing history item has been deleted. The first parameter is the shortened URL of the deleted history item. -->
<string name="history_delete_single_item_snackbar">%1$s કાઢી નાખ્યું</string>
<!-- Text for positive action to delete history in deleting history dialog --> <!-- Text for positive action to delete history in deleting history dialog -->
<string name="history_clear_dialog">સાફ કરો</string> <string name="history_clear_dialog">સાફ કરો</string>
<!-- History overflow menu copy button --> <!-- History overflow menu copy button -->
@ -483,6 +515,10 @@
<string name="bookmark_edit">બુકમાર્કમાં ફેરફાર કરો</string> <string name="bookmark_edit">બુકમાર્કમાં ફેરફાર કરો</string>
<!-- Screen title for selecting a bookmarks folder --> <!-- Screen title for selecting a bookmarks folder -->
<string name="bookmark_select_folder">ફોલ્ડર પસંદ કરો</string> <string name="bookmark_select_folder">ફોલ્ડર પસંદ કરો</string>
<!-- Confirmation message for a dialog confirming if the user wants to delete the selected folder -->
<string name="bookmark_delete_folder_confirmation_dialog">શું તમે ખરેખર આ ફોલ્ડરને કાઢવા માંગો છો?</string>
<!-- Snackbar title shown after a folder has been deleted. This first parameter is the name of the deleted folder -->
<string name="bookmark_delete_folder_snackbar">%1$s કાઢી નાખ્યું</string>
<!-- Screen title for adding a bookmarks folder --> <!-- Screen title for adding a bookmarks folder -->
<string name="bookmark_add_folder">ફોલ્ડર ઉમેરો</string> <string name="bookmark_add_folder">ફોલ્ડર ઉમેરો</string>
<!-- deprecated: Snackbar title shown after a bookmark has been created. --> <!-- deprecated: Snackbar title shown after a bookmark has been created. -->
@ -535,8 +571,6 @@
<!-- Bookmark snackbar message on deletion <!-- Bookmark snackbar message on deletion
The first parameter is the host part of the URL of the bookmark deleted, if any --> The first parameter is the host part of the URL of the bookmark deleted, if any -->
<string name="bookmark_deletion_snackbar_message">%1$s કાઢી નાખ્યું</string> <string name="bookmark_deletion_snackbar_message">%1$s કાઢી નાખ્યું</string>
<!-- Bookmark snackbar message on deleting multiple bookmarks -->
<string name="bookmark_deletion_multiple_snackbar_message">પસંદ કરેલા બુકમાર્ક્સ કાઢી રહ્યા છીએ</string>
<!-- Bookmark undo button for deletion snackbar action --> <!-- Bookmark undo button for deletion snackbar action -->
<string name="bookmark_undo_deletion">પૂર્વવત્ કરો</string> <string name="bookmark_undo_deletion">પૂર્વવત્ કરો</string>
@ -591,16 +625,10 @@
<string name="delete_browsing_data_quit_off">બંધ</string> <string name="delete_browsing_data_quit_off">બંધ</string>
<!-- Collections --> <!-- Collections -->
<!-- Label to describe what collections are to a new user without any collections -->
<string name="collections_description">તમને જે બાબતો છે તે એકત્રિત કરો. પ્રારંભ કરવા માટે, નવા સંગ્રહમાં ખુલ્લા ટેબ્સ સાચવો.</string>
<!-- Collections header on home fragment --> <!-- Collections header on home fragment -->
<string name="collections_header">સંગ્રહો</string> <string name="collections_header">સંગ્રહો</string>
<!-- Content description (not visible, for screen readers etc.): Opens the collection menu when pressed --> <!-- Content description (not visible, for screen readers etc.): Opens the collection menu when pressed -->
<string name="collection_menu_button_content_description">સંગ્રહ મેનૂ</string> <string name="collection_menu_button_content_description">સંગ્રહ મેનૂ</string>
<!-- No Open Tabs Message Header -->
<string name="no_collections_header">કોઈ સંગ્રહ નથી</string>
<!-- No Open Tabs Message Description -->
<string name="no_collections_description">તમારા સંગ્રહ અહીં બતાવવામાં આવશે.</string>
<!-- Title for the "select tabs" step of the collection creator --> <!-- Title for the "select tabs" step of the collection creator -->
<string name="create_collection_select_tabs">ટેબ્સ પસંદ કરો</string> <string name="create_collection_select_tabs">ટેબ્સ પસંદ કરો</string>
<!-- Title for the "select collection" step of the collection creator --> <!-- Title for the "select collection" step of the collection creator -->
@ -630,6 +658,9 @@
<!-- Button to save currently selected tabs in the "select tabs" step of the collection creator--> <!-- Button to save currently selected tabs in the "select tabs" step of the collection creator-->
<string name="create_collection_save">સાચવો</string> <string name="create_collection_save">સાચવો</string>
<!-- Snackbar action to view the collection the user just created or updated -->
<string name="create_collection_view">દેખાવ</string>
<!-- Default name for a new collection in "name new collection" step of the collection creator. %d is a placeholder for the number of collections--> <!-- Default name for a new collection in "name new collection" step of the collection creator. %d is a placeholder for the number of collections-->
<string name="create_collection_default_name">સંગ્રહો %d</string> <string name="create_collection_default_name">સંગ્રહો %d</string>
@ -725,6 +756,8 @@
<string name="qr_scanner_dialog_negative">નકારો</string> <string name="qr_scanner_dialog_negative">નકારો</string>
<!-- Tab collection deletion prompt dialog message. Placeholder will be replaced with the collection name --> <!-- Tab collection deletion prompt dialog message. Placeholder will be replaced with the collection name -->
<string name="tab_collection_dialog_message">શું તમે ખરેખર %1$s ને કાઢી નાખવા માંગો છો?</string> <string name="tab_collection_dialog_message">શું તમે ખરેખર %1$s ને કાઢી નાખવા માંગો છો?</string>
<!-- Collection and tab deletion prompt dialog title. Placeholder will be replaced with the collection name. This will show when the last tab from a collection is deleted -->
<string name="delete_tab_and_collection_dialog_title">%1$s ને કાઢી નાખીએ?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection --> <!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">કાઢી નાખો</string> <string name="tab_collection_dialog_positive">કાઢી નાખો</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection --> <!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
@ -734,10 +767,18 @@
<!-- Message for copying the URL via long press on the toolbar --> <!-- Message for copying the URL via long press on the toolbar -->
<string name="url_copied">URL નકલ કરી</string> <string name="url_copied">URL નકલ કરી</string>
<!-- Summary for Accessibility Text Size Scaling Preference -->
<string name="preference_accessibility_text_size_summary">વેબસાઇટ્સ પર ટેક્સ્ટ મોટા અથવા નાનાં બનાવો</string>
<!-- Title for Accessibility Text Size Scaling Preference -->
<string name="preference_accessibility_font_size_title">અક્ષર નું કદ</string>
<!-- Summary for Accessibility Text Automatic Size Scaling Preference -->
<string name="preference_accessibility_auto_size_summary">અક્ષર નું કદ તમારી Android સેટિંગ્સ સાથે મેળ ખાશે. અહીં અક્ષર નું કદ સંચાલિત કરવામાં અક્ષમ કરો.</string>
<!-- Title for the Delete browsing data preference --> <!-- Title for the Delete browsing data preference -->
<string name="preferences_delete_browsing_data">બ્રાઉઝિંગ માહિતી કાઢી નાખો</string> <string name="preferences_delete_browsing_data">બ્રાઉઝિંગ માહિતી કાઢી નાખો</string>
<!-- Title for the tabs item in Delete browsing data --> <!-- Title for the tabs item in Delete browsing data -->
<string name="preferences_delete_browsing_data_tabs_title">ટૅબ્સ ખોલો</string> <string name="preferences_delete_browsing_data_tabs_title_2">ટૅબ્સ ખોલો</string>
<!-- Subtitle for the tabs item in Delete browsing data, parameter will be replaced with the number of open tabs --> <!-- Subtitle for the tabs item in Delete browsing data, parameter will be replaced with the number of open tabs -->
<string name="preferences_delete_browsing_data_tabs_subtitle">%d ટૅબ્સ</string> <string name="preferences_delete_browsing_data_tabs_subtitle">%d ટૅબ્સ</string>
<!-- Title for the data and history items in Delete browsing data --> <!-- Title for the data and history items in Delete browsing data -->
@ -762,8 +803,12 @@
<string name="preferences_delete_browsing_data_site_permissions">સાઇટ પરવાનગીઓ</string> <string name="preferences_delete_browsing_data_site_permissions">સાઇટ પરવાનગીઓ</string>
<!-- Text for the button to delete browsing data --> <!-- Text for the button to delete browsing data -->
<string name="preferences_delete_browsing_data_button">બ્રાઉઝિંગ માહિતી કાઢી નાખો</string> <string name="preferences_delete_browsing_data_button">બ્રાઉઝિંગ માહિતી કાઢી નાખો</string>
<!-- Category for history items to delete on quit in delete browsing data on quit --> <!-- Title for the Delete browsing data on quit preference -->
<string name="preferences_delete_browsing_data_on_quit_browsing_history">બ્રાઉઝિંગ ઇતિહાસ</string> <string name="preferences_delete_browsing_data_on_quit">છોડો ત્યારે બ્રાઉઝિંગ ડેટા કાઢી નાખો</string>
<!-- Summary for the Delete browsing data on quit preference. "Quit" translation should match delete_browsing_data_on_quit_action translation. -->
<string name="preference_summary_delete_browsing_data_on_quit">જ્યારે તમે મુખ્ય મેનૂમાંથી &quot;છોડો&quot; પસંદ કરો છો ત્યારે બ્રાઉઝિંગ ડેટા આપમેળે કાઢી નાખે છે</string>
<!-- Summary for the Delete browsing data on quit preference. "Quit" translation should match delete_browsing_data_on_quit_action translation. -->
<string name="preference_summary_delete_browsing_data_on_quit_2">જ્યારે તમે મુખ્ય મેનૂમાંથી \&quot;Quit\&quot; પસંદ કરો છો ત્યારે બ્રાઉઝિંગ ડેટા આપમેળે કાઢી નાખે છે</string>
<!-- Action item in menu for the Delete browsing data on quit feature --> <!-- Action item in menu for the Delete browsing data on quit feature -->
<string name="delete_browsing_data_on_quit_action">બંધ કરો</string> <string name="delete_browsing_data_on_quit_action">બંધ કરો</string>
@ -793,9 +838,6 @@
<string name="onboarding_whats_new_header1">જુઓ નવુ શું છે</string> <string name="onboarding_whats_new_header1">જુઓ નવુ શું છે</string>
<!-- text for underlined clickable link that is part of "what's new" onboarding card description that links to an FAQ --> <!-- text for underlined clickable link that is part of "what's new" onboarding card description that links to an FAQ -->
<string name="onboarding_whats_new_description_linktext">જવાબો અહીં મેળવો</string> <string name="onboarding_whats_new_description_linktext">જવાબો અહીં મેળવો</string>
<!-- text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">%s માંથી સૌથી વધુ મેળવો.</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">હા, મને સાઇન ઇન કરો</string> <string name="onboarding_firefox_account_auto_signin_confirm">હા, મને સાઇન ઇન કરો</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -808,10 +850,8 @@
<string name="onboarding_firefox_account_sync_is_on">સમન્વયન ચાલુ છે</string> <string name="onboarding_firefox_account_sync_is_on">સમન્વયન ચાલુ છે</string>
<!-- text to display in the snackbar if automatic sign-in fails. user may try again --> <!-- text to display in the snackbar if automatic sign-in fails. user may try again -->
<string name="onboarding_firefox_account_automatic_signin_failed">સાઇન ઇન કરવામાં નિષ્ફળ</string> <string name="onboarding_firefox_account_automatic_signin_failed">સાઇન ઇન કરવામાં નિષ્ફળ</string>
<!-- text for the tracking protection onboarding card header --> <!-- text for tracking protection radio button option for strict level of blocking -->
<string name="onboarding_tracking_protection_header">તમારી જાતને સુરક્ષિત કરો</string> <string name="onboarding_tracking_protection_strict_option">સખત</string>
<!-- text for tracking protection radio button option for standard level of blocking -->
<string name="onboarding_tracking_protection_standard_button">પ્રમાણભૂત</string>
<!-- text for the private browsing onboarding card header --> <!-- text for the private browsing onboarding card header -->
<string name="onboarding_private_browsing_header">ખાનગી રૂપે બ્રાઉઝ કરો</string> <string name="onboarding_private_browsing_header">ખાનગી રૂપે બ્રાઉઝ કરો</string>
<!-- text for the private browsing onbording card button, that launches settings --> <!-- text for the private browsing onbording card button, that launches settings -->
@ -832,6 +872,8 @@
<string name="onboarding_theme_picker_header">તમારી થીમ પસંદ કરો</string> <string name="onboarding_theme_picker_header">તમારી થીમ પસંદ કરો</string>
<!-- Automatic theme setting (will follow device setting) --> <!-- Automatic theme setting (will follow device setting) -->
<string name="onboarding_theme_automatic_title">સ્વચાલિત</string> <string name="onboarding_theme_automatic_title">સ્વચાલિત</string>
<!-- Summary of automatic theme setting (will follow device setting) -->
<string name="onboarding_theme_automatic_summary">તમારી ડિવાઇસ સેટિંગ્સમાં અપનાવી છે</string>
<!-- Theme setting for dark mode --> <!-- Theme setting for dark mode -->
<string name="onboarding_theme_dark_title">ડાર્ક થીમ</string> <string name="onboarding_theme_dark_title">ડાર્ક થીમ</string>
<!-- Theme setting for light mode --> <!-- Theme setting for light mode -->
@ -875,32 +917,20 @@
<string name="preference_enhanced_tracking_protection_explanation">તમારી માહિતી તમારી પાસે રાખો. %s તમને ઘણા સામાન્ય ટ્રેકર્સથી સુરક્ષિત રાખે છે જે તમે ઓનલાઇન કરો છો તેનું જાણ રાખે છે.</string> <string name="preference_enhanced_tracking_protection_explanation">તમારી માહિતી તમારી પાસે રાખો. %s તમને ઘણા સામાન્ય ટ્રેકર્સથી સુરક્ષિત રાખે છે જે તમે ઓનલાઇન કરો છો તેનું જાણ રાખે છે.</string>
<!-- Text displayed that links to website about enhanced tracking protection --> <!-- Text displayed that links to website about enhanced tracking protection -->
<string name="preference_enhanced_tracking_protection_explanation_learn_more">વધુ શીખો</string> <string name="preference_enhanced_tracking_protection_explanation_learn_more">વધુ શીખો</string>
<!-- Preference for enhanced tracking protection for the standard protection settings -->
<string name="preference_enhanced_tracking_protection_standard_option">પ્રમાણભૂત</string>
<!-- Preference for enhanced tracking protection for the standard protection settings -->
<string name="preference_enhanced_tracking_protection_standard">પ્રમાણભૂત (ભલામણ કરેલ)</string>
<!-- Preference description for enhanced tracking protection for the standard protection settings -->
<string name="preference_enhanced_tracking_protection_standard_description">સંરક્ષણ અને પ્રદર્શન માટે સંતુલિત.</string>
<!-- Preference description for enhanced tracking protection for the standard protection settings -->
<string name="preference_enhanced_tracking_protection_standard_description_2">પૃષ્ઠો સામાન્ય રીતે લોડ થશે, પરંતુ ઓછા ટ્રેકર્સને અવરોધિત કરશે.</string>
<!-- Accessibility text for the Standard protection information icon --> <!-- Accessibility text for the Standard protection information icon -->
<string name="preference_enhanced_tracking_protection_standard_info_button">પ્રમાણભૂત ટ્રેકિંગ સુરક્ષા દ્વારા શું અવરોધિત છે</string> <string name="preference_enhanced_tracking_protection_standard_info_button">પ્રમાણભૂત ટ્રેકિંગ સુરક્ષા દ્વારા શું અવરોધિત છે</string>
<!-- Preference for enhanced tracking protection for the strict protection settings --> <!-- Preference for enhanced tracking protection for the strict protection settings -->
<string name="preference_enhanced_tracking_protection_strict">સખત</string> <string name="preference_enhanced_tracking_protection_strict">સખત</string>
<!-- Preference for enhanced tracking protection for the strict protection settings, default setting -->
<string name="preference_enhanced_tracking_protection_strict_default">સખત (મૂળભૂત)</string>
<!-- Preference description for enhanced tracking protection for the strict protection settings -->
<string name="preference_enhanced_tracking_protection_strict_default_description">મજબૂત ટ્રેકિંગ સુરક્ષા અને ઝડપી પ્રદર્શન, પરંતુ કેટલીક સાઇટ્સ યોગ્ય રીતે કાર્ય કરી શકશે નહીં.</string>
<!-- Preference for enhanced tracking protection for the standard protection settings -->
<string name="preference_enhanced_tracking_protection_strict_recommended">સખત (ભલામણ કરેલ)</string>
<!-- Preference description for enhanced tracking protection for the strict protection settings -->
<string name="preference_enhanced_tracking_protection_strict_description">મજબૂત સુરક્ષા, પરંતુ કેટલીક સાઇટ્સ અથવા સામગ્રી તૂટી જવાનું કારણ બની શકે છે.</string>
<!-- Accessibility text for the Strict protection information icon --> <!-- Accessibility text for the Strict protection information icon -->
<string name="preference_enhanced_tracking_protection_strict_info_button">સખત ટ્રેકિંગ સુરક્ષા દ્વારા શું અવરોધિત છે</string> <string name="preference_enhanced_tracking_protection_strict_info_button">સખત ટ્રેકિંગ સુરક્ષા દ્વારા શું અવરોધિત છે</string>
<!-- Header for categories that are being blocked by current Enhanced Tracking Protection settings --> <!-- Header for categories that are being blocked by current Enhanced Tracking Protection settings -->
<!-- Preference for enhanced tracking protection for the custom protection settings for cookies--> <!-- Preference for enhanced tracking protection for the custom protection settings for cookies-->
<string name="preference_enhanced_tracking_protection_custom_cookies">કૂકીઝ</string> <string name="preference_enhanced_tracking_protection_custom_cookies">કૂકીઝ</string>
<!-- Option for enhanced tracking protection for the custom protection settings for tracking content-->
<string name="preference_enhanced_tracking_protection_custom_tracking_content_1">બધા ટબ્સમાં</string>
<!-- Option for enhanced tracking protection for the custom protection settings for tracking content-->
<string name="preference_enhanced_tracking_protection_custom_tracking_content_2">ફક્ત ખાનગી ટબ્સમાં</string>
<string name="enhanced_tracking_protection_blocked">અવરોધિત</string> <string name="enhanced_tracking_protection_blocked">અવરોધિત</string>
<!-- Header for categories that are being not being blocked by current Enhanced Tracking Protection settings --> <!-- Header for categories that are being not being blocked by current Enhanced Tracking Protection settings -->
<string name="enhanced_tracking_protection_allowed">મંજૂર</string> <string name="enhanced_tracking_protection_allowed">મંજૂર</string>
@ -924,6 +954,14 @@
<string name="etp_fingerprinters_description">તમારા ઉપકરણ વિશેની વિશિષ્ટ રીતે ઓળખી શકાય તેવી માહિતી કે જે ટ્રેકિંગ હેતુ માટે ઉપયોગમાં લઈ શકાય તેનો સંગ્રહ કરવાથી અટકાવે છે.</string> <string name="etp_fingerprinters_description">તમારા ઉપકરણ વિશેની વિશિષ્ટ રીતે ઓળખી શકાય તેવી માહિતી કે જે ટ્રેકિંગ હેતુ માટે ઉપયોગમાં લઈ શકાય તેનો સંગ્રહ કરવાથી અટકાવે છે.</string>
<!-- Category of trackers (tracking content) that can be blocked by Enhanced Tracking Protection --> <!-- Category of trackers (tracking content) that can be blocked by Enhanced Tracking Protection -->
<string name="etp_tracking_content_title">ટ્રેકિંગ સામગ્રી</string> <string name="etp_tracking_content_title">ટ્રેકિંગ સામગ્રી</string>
<!-- Enhanced Tracking Protection message that protection is currently on for this site -->
<string name="etp_panel_on">આ સાઇટ માટે સંરક્ષણ ચાલુ છે</string>
<!-- Enhanced Tracking Protection message that protection is currently off for this site -->
<string name="etp_panel_off">આ સાઇટ માટે સંરક્ષણ બંધ છે</string>
<!-- Header for exceptions list for which sites enhanced tracking protection is always off -->
<string name="enhanced_tracking_protection_exceptions">આ વેબસાઇટ્સ માટે ઉન્નત ટ્રેકિંગ પ્રોટેક્શન બંધ છે</string>
<!-- About page Your rights link text -->
<string name="about_your_rights">તમારા અધિકારો</string>
<!-- About page link text to open open source licenses screen --> <!-- About page link text to open open source licenses screen -->
<string name="about_open_source_licenses">અમે ઉપયોગ કરીએ છીએ તે ઓપન સોર્સ લાઇબ્રેરીઓ</string> <string name="about_open_source_licenses">અમે ઉપયોગ કરીએ છીએ તે ઓપન સોર્સ લાઇબ્રેરીઓ</string>
<!-- About page link text to open what's new link --> <!-- About page link text to open what's new link -->
@ -1034,6 +1072,8 @@
<string name="saved_login_copy_username">વપરાશકર્તાનામની નકલ કરો</string> <string name="saved_login_copy_username">વપરાશકર્તાનામની નકલ કરો</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">સાઇટની નકલ કરો</string> <string name="saved_login_copy_site">સાઇટની નકલ કરો</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
<string name="saved_login_open_site">બ્રાઉઝરમાં સાઇટ ખોલો</string>
<!-- Content Description (for screenreaders etc) read for the button to reveal a password in logins --> <!-- Content Description (for screenreaders etc) read for the button to reveal a password in logins -->
<string name="saved_login_reveal_password">પાસવર્ડ બતાવો</string> <string name="saved_login_reveal_password">પાસવર્ડ બતાવો</string>
<!-- Content Description (for screenreaders etc) read for the button to hide a password in logins --> <!-- Content Description (for screenreaders etc) read for the button to hide a password in logins -->
@ -1053,6 +1093,11 @@
<!-- Title for Accessibility Force Enable Zoom Preference --> <!-- Title for Accessibility Force Enable Zoom Preference -->
<string name="preference_accessibility_force_enable_zoom">બધી વેબસાઇટ્સ પર ઝૂમ કરો</string> <string name="preference_accessibility_force_enable_zoom">બધી વેબસાઇટ્સ પર ઝૂમ કરો</string>
<!-- Saved logins sorting strategy menu item -by name- (if selected, it will sort saved logins alphabetically) -->
<string name="saved_logins_sort_strategy_alphabetically">નામ (A-Z)</string>
<!-- Saved logins sorting strategy menu item -by last used- (if selected, it will sort saved logins by last used) -->
<string name="saved_logins_sort_strategy_last_used">છેલ્લે વપરાયેલ</string>
<!-- Title of the Add search engine screen --> <!-- Title of the Add search engine screen -->
<string name="search_engine_add_custom_search_engine_title">શોધ એન્જિન ઉમેરો</string> <string name="search_engine_add_custom_search_engine_title">શોધ એન્જિન ઉમેરો</string>
<!-- Title of the Edit search engine screen --> <!-- Title of the Edit search engine screen -->
@ -1094,4 +1139,28 @@
<!-- Text shown when a user successfully deletes a custom search engine --> <!-- Text shown when a user successfully deletes a custom search engine -->
<string name="search_delete_search_engine_success_message">%s કાઢી નાખ્યું</string> <string name="search_delete_search_engine_success_message">%s કાઢી નાખ્યું</string>
<!-- Text on the disabled button while in progress. Placeholder replaced with app name -->
<string name="migration_updating_app_button_text">%s ને અપડેટ કરી રહ્યું છે…</string>
<!-- Text on the enabled button. Placeholder replaced with app name-->
<string name="migration_update_app_button">%s પ્રારંભ કરો</string>
<!--Text on list of migrated items (e.g. Settings, History, etc.)-->
<string name="migration_text_passwords">પાસવર્ડ</string>
<!-- Heading for the instructions to allow a permission -->
<string name="phone_feature_blocked_intro">તેને મંજૂરી આપવા માટે:</string>
<!-- Browser menu button that adds a top site to the home fragment -->
<string name="browser_menu_add_to_top_sites">ટોચની સાઇટ્સ પર ઉમેરો</string>
<!-- text shown before the issuer name to indicate who its verified by, parameter is the name of
the certificate authority that verified the ticket-->
<string name="certificate_info_verified_by">દ્વારા ચકાસાયેલ: %1$s</string>
<!-- Login overflow menu delete button -->
<string name="login_menu_delete_button">કાઢી નાંખો</string>
<!-- depcrecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">%s માંથી સૌથી વધુ મેળવો.</string>
<!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">તમે આ ફોન પરના બીજા Firefox બ્રાઉઝર પર %s તરીકે સાઇન ઇન કર્યું છે. શું તમે આ એકાઉન્ટ સાથે સાઇન ઇન કરવા માંગો છો?</string>
</resources> </resources>

@ -266,6 +266,8 @@
<string name="preferences_open_links_in_a_private_tab">Otvori poveznice u privatnoj kartici</string> <string name="preferences_open_links_in_a_private_tab">Otvori poveznice u privatnoj kartici</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">Dopusti snimanje zaslona u privatnom pretraživanju</string> <string name="preferences_allow_screenshots_in_private_mode">Dopusti snimanje zaslona u privatnom pretraživanju</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">Ako je uključeno, privatne kartice bit će vidljive i kad je otvoreno više aplikacija</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">Dodaj prečac za privatno pregledavanje</string> <string name="preferences_add_private_browsing_shortcut">Dodaj prečac za privatno pregledavanje</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -286,6 +288,8 @@
<string name="preferences_theme">Motiv</string> <string name="preferences_theme">Motiv</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Početna</string> <string name="preferences_home">Početna</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Geste</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Prilagodi</string> <string name="preferences_customize">Prilagodi</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -323,6 +327,8 @@
<string name="preferences_search_bookmarks">Pretraži zabilješke</string> <string name="preferences_search_bookmarks">Pretraži zabilješke</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Postavke računa</string> <string name="preferences_account_settings">Postavke računa</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Automatski dovrši URL-ove</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Otvori poveznice u aplikacijama</string> <string name="preferences_open_links_in_apps">Otvori poveznice u aplikacijama</string>
@ -464,6 +470,16 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">Slijedi motiv uređaja</string> <string name="preference_follow_device_theme">Slijedi motiv uređaja</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">Povuci za osvježavanje</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">Skrivanje alatne trake pomakom stranice</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">Prebacivanje kartica horizontalnim pomakom alatne trake</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">Otvaranje kartica vertikalnim pomakom alatne trake</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Sesije</string> <string name="library_sessions">Sesije</string>
@ -1058,7 +1074,7 @@
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">Prijavljen/a si kao %s na jednom drugom Firefox pregledniku na ovom telefonu. Želiš li se prijaviti s ovim računom?</string> <string name="onboarding_firefox_account_auto_signin_header_3">Prijavljen/a si kao %s u drugom pregledniku Firefox na ovom uređaju. Želiš li se prijaviti s ovim računom?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Da, prijavi me</string> <string name="onboarding_firefox_account_auto_signin_confirm">Da, prijavi me</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1306,7 +1322,7 @@
<string name="add_to_homescreen_text_placeholder">Ime prečaca</string> <string name="add_to_homescreen_text_placeholder">Ime prečaca</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Možete jednostavno dodati ovu web stranicu na početni zaslon uređaja kako biste imali brz pristup i pretraživali brže, kao da ste u aplikaciji.</string> <string name="add_to_homescreen_description_2">Ovu stranicu lako možeš dodati na početni zaslon svog uređaja za brže pretraživanje s iskustvom sličnim aplikacijama.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Prijave i lozinke</string> <string name="preferences_passwords_logins_and_passwords">Prijave i lozinke</string>
@ -1377,8 +1393,12 @@
<string name="logins_site_copied">Web-stranica je kopirana u međuspremnik</string> <string name="logins_site_copied">Web-stranica je kopirana u međuspremnik</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Kopiraj lozinku</string> <string name="saved_logins_copy_password">Kopiraj lozinku</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Očisti lozinku</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Kopiraj korisničko ime</string> <string name="saved_login_copy_username">Kopiraj korisničko ime</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Očisti korisničko ime</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Kopiraj web-stranicu</string> <string name="saved_login_copy_site">Kopiraj web-stranicu</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1538,7 +1558,7 @@
<string name="saved_login_duplicate">Prijava s tim korisničkim imenom već postoji</string> <string name="saved_login_duplicate">Prijava s tim korisničkim imenom već postoji</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Poveži drugi uređaj.</string> <string name="synced_tabs_connect_another_device">Poveži drugi uređaj.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Ponovite autorizaciju.</string> <string name="synced_tabs_reauth">Ponovite autorizaciju.</string>
@ -1559,7 +1579,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Dostignuto ograničenje za omiljene stranice</string> <string name="top_sites_max_limit_title">Dostignuto ograničenje za omiljene stranice</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Za dodavanje nove omiljene stranice, ukloni neku. Pritisni i drži stranicu, zatim odaberi ukloni.</string> <string name="top_sites_max_limit_content_2">Za dodavanje nove omiljene stranice prvo treba ukloniti jednu. Dotakni i drži jednu od njih i odaberi uklanjanje.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">U redu, shvaćam</string> <string name="top_sites_max_limit_confirmation_button">U redu, shvaćam</string>
@ -1569,7 +1589,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Ukloni</string> <string name="remove_home_collection_placeholder_content_description">Ukloni</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Iskoristi sve prednosti aplikacije %s.</string> <string name="onboarding_firefox_account_header">Iskoristi sve prednosti aplikacije %s.</string>
@ -1577,4 +1597,9 @@
<string name="no_collections_header1">Skupi stvari koje su ti bitne</string> <string name="no_collections_header1">Skupi stvari koje su ti bitne</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Grupiraj slične pretrage, stranice i kartice za brži pristup kasnije.</string> <string name="no_collections_description1">Grupiraj slične pretrage, stranice i kartice za brži pristup kasnije.</string>
</resources> <!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Prijavljen/a si kao %s na jednom drugom Firefox pregledniku na ovom telefonu. Želiš li se prijaviti s ovim računom?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Možete jednostavno dodati ovu web stranicu na početni zaslon uređaja kako biste imali brz pristup i pretraživali brže, kao da ste u aplikaciji.</string>
</resources>

@ -326,8 +326,12 @@
<string name="preferences_search_browsing_history">Přehladowanska historija pytanja</string> <string name="preferences_search_browsing_history">Přehladowanska historija pytanja</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">Zapołožki přepytać</string> <string name="preferences_search_bookmarks">Zapołožki přepytać</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">Synchronizowane rajtarki pytać</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Kontowe nastajenja</string> <string name="preferences_account_settings">Kontowe nastajenja</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">URL awtomatisce wudospołnić</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Wotkazy w nałoženjach wočinić</string> <string name="preferences_open_links_in_apps">Wotkazy w nałoženjach wočinić</string>
@ -1576,7 +1580,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Wotstronić</string> <string name="remove_home_collection_placeholder_content_description">Wotstronić</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Wućehńće najlěpše z %s.</string> <string name="onboarding_firefox_account_header">Wućehńće najlěpše z %s.</string>

@ -327,9 +327,13 @@
<string name="preferences_search_browsing_history">Böngészési előzmények keresése</string> <string name="preferences_search_browsing_history">Böngészési előzmények keresése</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">Könyvjelzők keresése</string> <string name="preferences_search_bookmarks">Könyvjelzők keresése</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">Szinkronizált lapok keresése</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Fiókbeállítások</string> <string name="preferences_account_settings">Fiókbeállítások</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Automatikus URL-kiegészítés</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Hivatkozások megnyitása alkalmazásokban</string> <string name="preferences_open_links_in_apps">Hivatkozások megnyitása alkalmazásokban</string>
@ -1585,7 +1589,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Eltávolítás</string> <string name="remove_home_collection_placeholder_content_description">Eltávolítás</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Hozza ki a legtöbbet a %s böngészőből.</string> <string name="onboarding_firefox_account_header">Hozza ki a legtöbbet a %s böngészőből.</string>

@ -267,6 +267,8 @@
<string name="preferences_open_links_in_a_private_tab">Բացել հղումը գաղտնի ներդիրում</string> <string name="preferences_open_links_in_a_private_tab">Բացել հղումը գաղտնի ներդիրում</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">Թույլ տալ էկրանի կորզումը գաղտնի դիտարկումում</string> <string name="preferences_allow_screenshots_in_private_mode">Թույլ տալ էկրանի կորզումը գաղտնի դիտարկումում</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">Թույլատրելու դեպքում գաղտնի ներդիրները նույնպես տեսանելի կլինեն, երբ բազմաթիվ հավելվածներ բաց լինեն</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">Ավելացնել գաղտնի դիտարկման դյուրանցում</string> <string name="preferences_add_private_browsing_shortcut">Ավելացնել գաղտնի դիտարկման դյուրանցում</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -287,6 +289,8 @@
<string name="preferences_theme">Ոճ</string> <string name="preferences_theme">Ոճ</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Տուն</string> <string name="preferences_home">Տուն</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Ժեստեր</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Հարմարեցնել</string> <string name="preferences_customize">Հարմարեցնել</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -325,6 +329,8 @@
<string name="preferences_search_bookmarks">Որոնել էջանիշեր</string> <string name="preferences_search_bookmarks">Որոնել էջանիշեր</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Հաշվի կարգավորումներ</string> <string name="preferences_account_settings">Հաշվի կարգավորումներ</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Ինքնալրացում</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Բացել հղումները հավելվածներում</string> <string name="preferences_open_links_in_apps">Բացել հղումները հավելվածներում</string>
<!-- Preference for open download with an external download manager app --> <!-- Preference for open download with an external download manager app -->
@ -461,6 +467,16 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">Ըստ սարքի ոճի</string> <string name="preference_follow_device_theme">Ըստ սարքի ոճի</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">Քաշեք՝ թարմացնելու համար</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">Ոլորեք՝ գործիքագոտին թաքցնելու համար</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">Սեղմեք գործիքագոտը կողքից՝ ներդիրներին անցնելու համար</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">Սահեցրեք գործիքագոտին վերև՝ ներդիրները բացելու համար</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Աշխատաշրջաններ</string> <string name="library_sessions">Աշխատաշրջաններ</string>
@ -1052,7 +1068,7 @@
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">Դուք մուտք եք գործել որպես %s այլ Firefox դիտարկիչում: Ցանկանո՞ւմ եք մուտք գործել այս հաշիվ:</string> <string name="onboarding_firefox_account_auto_signin_header_3">Դուք մուտք եք գործել որպես %s տվյալ սարքից այլ Firefox դիտարկիչում: Ցանկանո՞ւմ եք մուտք գործել այս հաշիվ:</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Այո, գրանցեք ինձ</string> <string name="onboarding_firefox_account_auto_signin_confirm">Այո, գրանցեք ինձ</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1297,7 +1313,7 @@
<string name="add_to_homescreen_text_placeholder">Դյուրանցման անունը</string> <string name="add_to_homescreen_text_placeholder">Դյուրանցման անունը</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Հեշտությամբ կարող եք ավելացնել այս կայքը ձեր հեռախոսի Տնային էկրանին՝ ակնթարթորեն մատչելու և արագ դիտարկելու համար:</string> <string name="add_to_homescreen_description_2">Հեշտությամբ կարող եք ավելացնել այս կայքը ձեր հեռախոսի Տնային էկրանին՝ ակնթարթորեն մատչելու և արագ դիտարկելու համար:</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Մուտքանուններ և գաղտնաբառեր</string> <string name="preferences_passwords_logins_and_passwords">Մուտքանուններ և գաղտնաբառեր</string>
@ -1368,8 +1384,12 @@
<string name="logins_site_copied">Կայքը պատճենված է</string> <string name="logins_site_copied">Կայքը պատճենված է</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Պատճենել գաղտնաբառը</string> <string name="saved_logins_copy_password">Պատճենել գաղտնաբառը</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Մաքրել գաղտնաբառը</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Պատճենել օգտվողի անունը</string> <string name="saved_login_copy_username">Պատճենել օգտվողի անունը</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Մաքրել օգտվողի անունը</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Պատճենել կայքը</string> <string name="saved_login_copy_site">Պատճենել կայքը</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1525,7 +1545,7 @@
<string name="saved_login_duplicate">Այդ անունով մուտքանուն արդեն գոյություն ունի</string> <string name="saved_login_duplicate">Այդ անունով մուտքանուն արդեն գոյություն ունի</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Կապակցել այլ սարքի:</string> <string name="synced_tabs_connect_another_device">Կապակցել այլ սարքի:</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Խնդրում ենք վերահաստատել:</string> <string name="synced_tabs_reauth">Խնդրում ենք վերահաստատել:</string>
@ -1546,7 +1566,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Լավագույն կայքերի ցանկը լրացել է</string> <string name="top_sites_max_limit_title">Լավագույն կայքերի ցանկը լրացել է</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Նոր լավագույն կայքի ավելացման համար հեռացրեք մեկը: Սեղմած պահեք կայքին և ընտրեք հեռացնել:</string> <string name="top_sites_max_limit_content_2">Նոր լավագույն կայքի ավելացման համար հեռացրեք մեկը: Հպեք և սեղմած պահեք կայքը և ընտրեք հեռացնել:</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">Հասկանալի է</string> <string name="top_sites_max_limit_confirmation_button">Հասկանալի է</string>
@ -1556,7 +1576,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Հեռացնել</string> <string name="remove_home_collection_placeholder_content_description">Հեռացնել</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Ստացեք առավելագույնը %s-ից:</string> <string name="onboarding_firefox_account_header">Ստացեք առավելագույնը %s-ից:</string>
@ -1564,4 +1584,9 @@
<string name="no_collections_header1">Հավաքեք ձեզ համար կարևոր բաները</string> <string name="no_collections_header1">Հավաքեք ձեզ համար կարևոր բաները</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Խմբավորեք համանման որոնումները, կայքերը և ներդիրները՝ հետո արագ մատչելու համար:</string> <string name="no_collections_description1">Խմբավորեք համանման որոնումները, կայքերը և ներդիրները՝ հետո արագ մատչելու համար:</string>
</resources> <!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Դուք մուտք եք գործել որպես %s այլ Firefox դիտարկիչում: Ցանկանո՞ւմ եք մուտք գործել այս հաշիվ:</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Հեշտությամբ կարող եք ավելացնել այս կայքը ձեր հեռախոսի Տնային էկրանին՝ ակնթարթորեն մատչելու և արագ դիտարկելու համար:</string>
</resources>

@ -272,6 +272,8 @@
<string name="preferences_open_links_in_a_private_tab">Apri i link in una scheda anonima</string> <string name="preferences_open_links_in_a_private_tab">Apri i link in una scheda anonima</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">Consenti screenshot in navigazione anonima</string> <string name="preferences_allow_screenshots_in_private_mode">Consenti screenshot in navigazione anonima</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">Se consentito, le schede anonime saranno visibili anche quando sono aperte più app</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">Aggiungi scorciatoia navigazione anonima</string> <string name="preferences_add_private_browsing_shortcut">Aggiungi scorciatoia navigazione anonima</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -292,6 +294,8 @@
<string name="preferences_theme">Tema</string> <string name="preferences_theme">Tema</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Pagina iniziale</string> <string name="preferences_home">Pagina iniziale</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Gesti</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Personalizza</string> <string name="preferences_customize">Personalizza</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -330,8 +334,10 @@
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Impostazioni account</string> <string name="preferences_account_settings">Impostazioni account</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Completamento automatico degli URL</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Apri collegamenti nelle app</string> <string name="preferences_open_links_in_apps">Apri i link nelle app</string>
<!-- Preference for open download with an external download manager app --> <!-- Preference for open download with an external download manager app -->
<string name="preferences_external_download_manager">Gestore download esterno</string> <string name="preferences_external_download_manager">Gestore download esterno</string>
@ -473,6 +479,16 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">Usa il tema del dispositivo</string> <string name="preference_follow_device_theme">Usa il tema del dispositivo</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">Trascinare per aggiornare</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">Scorrere per nascondere la barra degli strumenti</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">Scorrere la barra degli strumenti lateralmente per cambiare scheda</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">Scorrere la barra degli strumenti verso lalto per aprire le schede</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Sessioni</string> <string name="library_sessions">Sessioni</string>
@ -1088,7 +1104,7 @@
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">Sei già connesso come %s in un altro browser Firefox sul dispositivo in uso. Desideri accedere con questo account?</string> <string name="onboarding_firefox_account_auto_signin_header_3">Sei già connesso come %s in un altro browser Firefox sul dispositivo in uso. Desideri accedere con questo account?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Sì, accedi</string> <string name="onboarding_firefox_account_auto_signin_confirm">Sì, accedi</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1331,7 +1347,7 @@
<string name="add_to_homescreen_text_placeholder">Nome scorciatoia</string> <string name="add_to_homescreen_text_placeholder">Nome scorciatoia</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">È possibile aggiungere questo sito web alla schermata principale del telefono per accedervi più rapidamente, come se si trattasse di unapp.</string> <string name="add_to_homescreen_description_2">È possibile aggiungere questo sito web alla schermata principale del dispositivo per accedervi più rapidamente, come se si trattasse di unapp.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Credenziali e password</string> <string name="preferences_passwords_logins_and_passwords">Credenziali e password</string>
@ -1401,8 +1417,12 @@
<string name="logins_site_copied">Sito copiato negli appunti</string> <string name="logins_site_copied">Sito copiato negli appunti</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Copia password</string> <string name="saved_logins_copy_password">Copia password</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Cancella password</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Copia nome utente</string> <string name="saved_login_copy_username">Copia nome utente</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Cancella nome utente</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Copia sito</string> <string name="saved_login_copy_site">Copia sito</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1559,7 +1579,7 @@
<string name="saved_login_duplicate">Esistono già credenziali con questo nome utente</string> <string name="saved_login_duplicate">Esistono già credenziali con questo nome utente</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Connetti un altro dispositivo.</string> <string name="synced_tabs_connect_another_device">Connetti un altro dispositivo.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Esegui nuovamente laccesso.</string> <string name="synced_tabs_reauth">Esegui nuovamente laccesso.</string>
@ -1580,7 +1600,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Raggiunto limite per i siti principali</string> <string name="top_sites_max_limit_title">Raggiunto limite per i siti principali</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Per aggiungere un nuovo sito principale è necessario rimuoverne uno esistente. Per rimuoverlo, tenere premuto a lungo e selezionare “Rimuovi”.</string> <string name="top_sites_max_limit_content_2">Per aggiungere un nuovo sito principale è necessario rimuoverne uno esistente. Toccare il sito da eliminare tenendo premuto e selezionare “Rimuovi”.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">OK, tutto chiaro</string> <string name="top_sites_max_limit_confirmation_button">OK, tutto chiaro</string>
@ -1590,7 +1610,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Elimina</string> <string name="remove_home_collection_placeholder_content_description">Elimina</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Ottieni il massimo da %s.</string> <string name="onboarding_firefox_account_header">Ottieni il massimo da %s.</string>
@ -1598,4 +1618,9 @@
<string name="no_collections_header1">Raggruppa i tuoi interessi</string> <string name="no_collections_header1">Raggruppa i tuoi interessi</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Raggruppa ricerche, siti e schede simili tra loro per ritrovarle più rapidamente.</string> <string name="no_collections_description1">Raggruppa ricerche, siti e schede simili tra loro per ritrovarle più rapidamente.</string>
</resources> <!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Sei già connesso come %s in un altro browser Firefox sul dispositivo in uso. Desideri accedere con questo account?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">È possibile aggiungere questo sito web alla schermata principale del telefono per accedervi più rapidamente, come se si trattasse di unapp.</string>
</resources>

@ -321,9 +321,13 @@
<string name="preferences_search_browsing_history">חיפוש בהיסטוריית הגלישה</string> <string name="preferences_search_browsing_history">חיפוש בהיסטוריית הגלישה</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">חיפוש בסימניות</string> <string name="preferences_search_bookmarks">חיפוש בסימניות</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">חיפוש בלשוניות מסונכרנות</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">הגדרות חשבון</string> <string name="preferences_account_settings">הגדרות חשבון</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">השלמה אוטומטית של כתובות אתרים</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">פתיחת קישורים ביישומונים</string> <string name="preferences_open_links_in_apps">פתיחת קישורים ביישומונים</string>
@ -1550,7 +1554,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">הסרה</string> <string name="remove_home_collection_placeholder_content_description">הסרה</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">להוציא את המיטב מ־%s.</string> <string name="onboarding_firefox_account_header">להוציא את המיטב מ־%s.</string>

@ -59,7 +59,7 @@
<string name="private_browsing_title">プライベートセッションです</string> <string name="private_browsing_title">プライベートセッションです</string>
<!-- Explanation for private browsing displayed to users on home view when they first enable private mode <!-- Explanation for private browsing displayed to users on home view when they first enable private mode
The first parameter is the name of the app defined in app_name (for example: Fenix) --> The first parameter is the name of the app defined in app_name (for example: Fenix) -->
<string name="private_browsing_placeholder_description_2">%1$s のプライベートタブを閉じるかアプリを終了すると、その検索履歴とブラウジング履歴が消去されます。これは、ウェブサイトやインターネットサービスプロバイダーに対して匿名でアクセスしているわけではありません。この機能は、この端末を使用する他者に対してオンライン上のプライベートな行動を隠すものです。</string> <string name="private_browsing_placeholder_description_2">%1$s のプライベートタブを閉じるかアプリを終了すると、その検索履歴と閲覧履歴が消去されます。これは、ウェブサイトやインターネットサービスプロバイダーに対して匿名でアクセスしているわけではありません。この機能は、この端末を使用する他者に対してオンライン上のプライベートな行動を隠すものです。</string>
<string name="private_browsing_common_myths"> <string name="private_browsing_common_myths">
プライベートブラウジングについての誤解 プライベートブラウジングについての誤解
</string> </string>
@ -274,6 +274,8 @@
<string name="preferences_open_links_in_a_private_tab">リンクをプライベートタブで開く</string> <string name="preferences_open_links_in_a_private_tab">リンクをプライベートタブで開く</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">プライベートブラウジングモードでスクリーンショットの撮影を許可する</string> <string name="preferences_allow_screenshots_in_private_mode">プライベートブラウジングモードでスクリーンショットの撮影を許可する</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">許可すると、複数のアプリを開いているときにプライベートタブも表示されます</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">プライベートブラウジングショートカットを追加する</string> <string name="preferences_add_private_browsing_shortcut">プライベートブラウジングショートカットを追加する</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -294,6 +296,8 @@
<string name="preferences_theme">テーマ</string> <string name="preferences_theme">テーマ</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">ホーム画面</string> <string name="preferences_home">ホーム画面</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">ジェスチャー</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">カスタマイズ</string> <string name="preferences_customize">カスタマイズ</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -328,9 +332,13 @@
<string name="preferences_search_browsing_history">閲覧履歴を検索する</string> <string name="preferences_search_browsing_history">閲覧履歴を検索する</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">ブックマークを検索する</string> <string name="preferences_search_bookmarks">ブックマークを検索する</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">同期したタブを検索</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">アカウント設定</string> <string name="preferences_account_settings">アカウント設定</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">自動補完 URL</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">リンクをアプリで開く</string> <string name="preferences_open_links_in_apps">リンクをアプリで開く</string>
@ -471,13 +479,23 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">端末のテーマに従う</string> <string name="preference_follow_device_theme">端末のテーマに従う</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">プルダウンで更新</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">スクロール時にツールバーを隠す</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">ツールバーの横スワイプでタブ切り替え</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">ツールバーの上スワイプでタブ表示</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">セッション</string> <string name="library_sessions">セッション</string>
<!-- Option in Library to open Screenshots page --> <!-- Option in Library to open Screenshots page -->
<string name="library_screenshots">スクリーンショット</string> <string name="library_screenshots">スクリーンショット</string>
<!-- Option in Library to open Downloads page --> <!-- Option in Library to open Downloads page -->
<string name="library_downloads">ダウンロード</string> <string name="library_downloads">ダウンロード一覧</string>
<!-- Option in library to open Bookmarks page --> <!-- Option in library to open Bookmarks page -->
<string name="library_bookmarks">ブックマーク</string> <string name="library_bookmarks">ブックマーク</string>
<!-- Option in library to open Desktop Bookmarks root page --> <!-- Option in library to open Desktop Bookmarks root page -->
@ -615,7 +633,7 @@
<!-- Text for the snackbar to confirm that multiple browsing history items has been deleted --> <!-- Text for the snackbar to confirm that multiple browsing history items has been deleted -->
<string name="history_delete_multiple_items_snackbar">履歴が削除されました</string> <string name="history_delete_multiple_items_snackbar">履歴が削除されました</string>
<!-- Text for the snackbar to confirm that a single browsing history item has been deleted. The first parameter is the shortened URL of the deleted history item. --> <!-- Text for the snackbar to confirm that a single browsing history item has been deleted. The first parameter is the shortened URL of the deleted history item. -->
<string name="history_delete_single_item_snackbar">%1$s のブラウジング履歴が削除されました</string> <string name="history_delete_single_item_snackbar">%1$s を履歴から削除しました</string>
<!-- Text for positive action to delete history in deleting history dialog --> <!-- Text for positive action to delete history in deleting history dialog -->
<string name="history_clear_dialog">消去</string> <string name="history_clear_dialog">消去</string>
<!-- History overflow menu copy button --> <!-- History overflow menu copy button -->
@ -972,13 +990,13 @@
<string name="preference_accessibility_auto_size_summary">フォントサイズは Android の設定に従います。ここでフォントサイズを管理するには無効化してください。</string> <string name="preference_accessibility_auto_size_summary">フォントサイズは Android の設定に従います。ここでフォントサイズを管理するには無効化してください。</string>
<!-- Title for the Delete browsing data preference --> <!-- Title for the Delete browsing data preference -->
<string name="preferences_delete_browsing_data">ブラウジングデータを削除</string> <string name="preferences_delete_browsing_data">閲覧データを削除</string>
<!-- Title for the tabs item in Delete browsing data --> <!-- Title for the tabs item in Delete browsing data -->
<string name="preferences_delete_browsing_data_tabs_title_2">開いているタブ</string> <string name="preferences_delete_browsing_data_tabs_title_2">開いているタブ</string>
<!-- Subtitle for the tabs item in Delete browsing data, parameter will be replaced with the number of open tabs --> <!-- Subtitle for the tabs item in Delete browsing data, parameter will be replaced with the number of open tabs -->
<string name="preferences_delete_browsing_data_tabs_subtitle">%d 個のタブ</string> <string name="preferences_delete_browsing_data_tabs_subtitle">%d 個のタブ</string>
<!-- Title for the data and history items in Delete browsing data --> <!-- Title for the data and history items in Delete browsing data -->
<string name="preferences_delete_browsing_data_browsing_data_title">ブラウジング履歴とサイトデータ</string> <string name="preferences_delete_browsing_data_browsing_data_title">閲覧履歴とサイトデータ</string>
<!-- Subtitle for the data and history items in delete browsing data, parameter will be replaced with the <!-- Subtitle for the data and history items in delete browsing data, parameter will be replaced with the
number of history items the user has --> number of history items the user has -->
<string name="preferences_delete_browsing_data_browsing_data_subtitle">%d 件のアドレス</string> <string name="preferences_delete_browsing_data_browsing_data_subtitle">%d 件のアドレス</string>
@ -990,38 +1008,38 @@
<!-- Title for the cookies item in Delete browsing data --> <!-- Title for the cookies item in Delete browsing data -->
<string name="preferences_delete_browsing_data_cookies">Cookie</string> <string name="preferences_delete_browsing_data_cookies">Cookie</string>
<!-- Subtitle for the cookies item in Delete browsing data --> <!-- Subtitle for the cookies item in Delete browsing data -->
<string name="preferences_delete_browsing_data_cookies_subtitle">ほとんどのサイトからログアウトされます</string> <string name="preferences_delete_browsing_data_cookies_subtitle">ログイン状態がリセットされます</string>
<!-- Title for the cached images and files item in Delete browsing data --> <!-- Title for the cached images and files item in Delete browsing data -->
<string name="preferences_delete_browsing_data_cached_files">キャッシュされた画像とファイル</string> <string name="preferences_delete_browsing_data_cached_files">画像とファイルのキャッシュ</string>
<!-- Subtitle for the cached images and files item in Delete browsing data --> <!-- Subtitle for the cached images and files item in Delete browsing data -->
<string name="preferences_delete_browsing_data_cached_files_subtitle">ストレージ領域を空けます</string> <string name="preferences_delete_browsing_data_cached_files_subtitle">ストレージ領域を空けます</string>
<!-- Title for the site permissions item in Delete browsing data --> <!-- Title for the site permissions item in Delete browsing data -->
<string name="preferences_delete_browsing_data_site_permissions">サイトの許可設定</string> <string name="preferences_delete_browsing_data_site_permissions">サイトの許可設定</string>
<!-- Text for the button to delete browsing data --> <!-- Text for the button to delete browsing data -->
<string name="preferences_delete_browsing_data_button">ブラウジングデータを削除</string> <string name="preferences_delete_browsing_data_button">閲覧データを削除</string>
<!-- Title for the Delete browsing data on quit preference --> <!-- Title for the Delete browsing data on quit preference -->
<string name="preferences_delete_browsing_data_on_quit">終了時にブラウジングデータを削除</string> <string name="preferences_delete_browsing_data_on_quit">終了時に閲覧データを削除</string>
<!-- Summary for the Delete browsing data on quit preference. "Quit" translation should match delete_browsing_data_on_quit_action translation. --> <!-- Summary for the Delete browsing data on quit preference. "Quit" translation should match delete_browsing_data_on_quit_action translation. -->
<string name="preference_summary_delete_browsing_data_on_quit">メインメニューから [終了] を選択すると、ブラウジングデータが自動的に削除されます</string> <string name="preference_summary_delete_browsing_data_on_quit">メインメニューから [終了] を選択すると、閲覧データが自動的に削除されます</string>
<!-- Summary for the Delete browsing data on quit preference. "Quit" translation should match delete_browsing_data_on_quit_action translation. --> <!-- Summary for the Delete browsing data on quit preference. "Quit" translation should match delete_browsing_data_on_quit_action translation. -->
<string name="preference_summary_delete_browsing_data_on_quit_2">メインメニューから [終了] を選択すると、ブラウジングデータが自動的に削除されます</string> <string name="preference_summary_delete_browsing_data_on_quit_2">メインメニューから [終了] を選択すると、閲覧データが自動的に削除されます</string>
<!-- Action item in menu for the Delete browsing data on quit feature --> <!-- Action item in menu for the Delete browsing data on quit feature -->
<string name="delete_browsing_data_on_quit_action">終了</string> <string name="delete_browsing_data_on_quit_action">終了</string>
<!-- Dialog message to the user asking to delete browsing data. --> <!-- Dialog message to the user asking to delete browsing data. -->
<string name="delete_browsing_data_prompt_message">この操作はすべてのブラウジングデータを削除します。</string> <string name="delete_browsing_data_prompt_message">この操作はすべての閲覧データを削除します。</string>
<!-- Dialog message to the user asking to delete browsing data. Parameter will be replaced by app name. --> <!-- Dialog message to the user asking to delete browsing data. Parameter will be replaced by app name. -->
<string name="delete_browsing_data_prompt_message_3">選択したブラウジングデータを %s から削除します。</string> <string name="delete_browsing_data_prompt_message_3">選択した閲覧データを %s から削除します。</string>
<!-- Text for the cancel button for the data deletion dialog --> <!-- Text for the cancel button for the data deletion dialog -->
<string name="delete_browsing_data_prompt_cancel">キャンセル</string> <string name="delete_browsing_data_prompt_cancel">キャンセル</string>
<!-- Text for the allow button for the data deletion dialog --> <!-- Text for the allow button for the data deletion dialog -->
<string name="delete_browsing_data_prompt_allow">削除</string> <string name="delete_browsing_data_prompt_allow">削除</string>
<!-- Text for the snackbar confirmation that the data was deleted --> <!-- Text for the snackbar confirmation that the data was deleted -->
<string name="preferences_delete_browsing_data_snackbar">ブラウジングデータを削除しました</string> <string name="preferences_delete_browsing_data_snackbar">閲覧データを削除しました</string>
<!-- Text for the snackbar to show the user that the deletion of browsing data is in progress --> <!-- Text for the snackbar to show the user that the deletion of browsing data is in progress -->
<string name="deleting_browsing_data_in_progress">ブラウジングデータを削除しています...</string> <string name="deleting_browsing_data_in_progress">閲覧データを削除しています...</string>
<!-- Tips --> <!-- Tips -->
<!-- text for firefox preview moving tip header "Firefox Preview" and "Firefox Nightly" are intentionally hardcoded --> <!-- text for firefox preview moving tip header "Firefox Preview" and "Firefox Nightly" are intentionally hardcoded -->
@ -1072,7 +1090,7 @@
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">すでに、この端末の別の Firefox ブラウザーで %s としてログインしています。このアカウントでログインしますか?</string> <string name="onboarding_firefox_account_auto_signin_header_3">この端末の別の Firefox ブラウザーで %s としてログインしています。このアカウントでログインしますか?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">はい、ログインします</string> <string name="onboarding_firefox_account_auto_signin_confirm">はい、ログインします</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1105,7 +1123,7 @@
but it is ok to make this more literally about "choosing a position in a physical space --> but it is ok to make this more literally about "choosing a position in a physical space -->
<string name="onboarding_toolbar_position_header">ツールバーをお好みの配置に</string> <string name="onboarding_toolbar_position_header">ツールバーをお好みの配置に</string>
<!-- text for the toolbar position card description --> <!-- text for the toolbar position card description -->
<string name="onboarding_toolbar_position_description">ツールバーを下部に置いて片手でブラウジングをお試しください。上部にも移動できます。</string> <string name="onboarding_toolbar_position_description">ツールバーを下部に置いて片手での操作をお試しください。上部にも移動できます。</string>
<!-- text for the private browsing onboarding card header --> <!-- text for the private browsing onboarding card header -->
<string name="onboarding_private_browsing_header">プライベートなブラウジング</string> <string name="onboarding_private_browsing_header">プライベートなブラウジング</string>
<!-- text for the private browsing onboarding card description <!-- text for the private browsing onboarding card description
@ -1162,7 +1180,7 @@
<!-- Text shown for settings option for sign with email --> <!-- Text shown for settings option for sign with email -->
<string name="sign_in_with_email">代わりにメールアドレスを使う</string> <string name="sign_in_with_email">代わりにメールアドレスを使う</string>
<!-- Text shown in confirmation dialog to sign out of account --> <!-- Text shown in confirmation dialog to sign out of account -->
<string name="sign_out_confirmation_message">Firefox はアカウントとの同期を停止しますが、この端末上のブラウジングデータは削除されません。</string> <string name="sign_out_confirmation_message">Firefox はアカウントとの同期を停止しますが、この端末上の閲覧データは削除されません。</string>
<!-- Text shown in confirmation dialog to sign out of account. The first parameter is the name of the app (e.g. Firefox Preview) --> <!-- Text shown in confirmation dialog to sign out of account. The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="sign_out_confirmation_message_2">%s はあなたのアカウントとの同期を中止しますが、この端末上の閲覧履歴は削除されません。</string> <string name="sign_out_confirmation_message_2">%s はあなたのアカウントとの同期を中止しますが、この端末上の閲覧履歴は削除されません。</string>
<!-- Option to continue signing out of account shown in confirmation dialog to sign out of account --> <!-- Option to continue signing out of account shown in confirmation dialog to sign out of account -->
@ -1178,7 +1196,7 @@
<!-- Preference title for enhanced tracking protection settings --> <!-- Preference title for enhanced tracking protection settings -->
<string name="preference_enhanced_tracking_protection">強化されたトラッキング防止</string> <string name="preference_enhanced_tracking_protection">強化されたトラッキング防止</string>
<!-- Title for the description of enhanced tracking protection --> <!-- Title for the description of enhanced tracking protection -->
<string name="preference_enhanced_tracking_protection_explanation_title">ブラウジング中のプライバシーを保護します</string> <string name="preference_enhanced_tracking_protection_explanation_title">閲覧中のプライバシーを保護します</string>
<!-- Description of enhanced tracking protection. The first parameter is the name of the application (For example: Fenix) --> <!-- Description of enhanced tracking protection. The first parameter is the name of the application (For example: Fenix) -->
<string name="preference_enhanced_tracking_protection_explanation">個人データの収集を防止します。%s はオンラインでのあなたの行動を追跡するよく知られた数多くのトラッカーからあなたを守ります。</string> <string name="preference_enhanced_tracking_protection_explanation">個人データの収集を防止します。%s はオンラインでのあなたの行動を追跡するよく知られた数多くのトラッカーからあなたを守ります。</string>
<!-- Text displayed that links to website about enhanced tracking protection --> <!-- Text displayed that links to website about enhanced tracking protection -->
@ -1230,11 +1248,11 @@
<!-- Category of trackers (social media trackers) that can be blocked by Enhanced Tracking Protection --> <!-- Category of trackers (social media trackers) that can be blocked by Enhanced Tracking Protection -->
<string name="etp_social_media_trackers_title">SNS メディアトラッカー</string> <string name="etp_social_media_trackers_title">SNS メディアトラッカー</string>
<!-- Description of social media trackers that can be blocked by Enhanced Tracking Protection --> <!-- Description of social media trackers that can be blocked by Enhanced Tracking Protection -->
<string name="etp_social_media_trackers_description">ソーシャルネットワークによるウェブ上のブラウジング行動追跡を制限します。</string> <string name="etp_social_media_trackers_description">ソーシャルネットワークによるウェブ上の行動追跡を制限します。</string>
<!-- Category of trackers (cross-site tracking cookies) that can be blocked by Enhanced Tracking Protection --> <!-- Category of trackers (cross-site tracking cookies) that can be blocked by Enhanced Tracking Protection -->
<string name="etp_cookies_title">クロスサイトトラッキング Cookie</string> <string name="etp_cookies_title">クロスサイトトラッキング Cookie</string>
<!-- Description of cross-site tracking cookies that can be blocked by Enhanced Tracking Protection --> <!-- Description of cross-site tracking cookies that can be blocked by Enhanced Tracking Protection -->
<string name="etp_cookies_description">広告ネットワークやアクセス解析サービスが様々なサイトからブラウジングデータを収集するために使用する Cookie をブロックします。</string> <string name="etp_cookies_description">広告ネットワークやアクセス解析サービスが様々なサイトから閲覧データを収集するための Cookie をブロックします。</string>
<!-- Category of trackers (cryptominers) that can be blocked by Enhanced Tracking Protection --> <!-- Category of trackers (cryptominers) that can be blocked by Enhanced Tracking Protection -->
<string name="etp_cryptominers_title">暗号通貨マイニング</string> <string name="etp_cryptominers_title">暗号通貨マイニング</string>
<!-- Description of cryptominers that can be blocked by Enhanced Tracking Protection --> <!-- Description of cryptominers that can be blocked by Enhanced Tracking Protection -->
@ -1315,7 +1333,7 @@
<string name="add_to_homescreen_text_placeholder">ショートカット名</string> <string name="add_to_homescreen_text_placeholder">ショートカット名</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">このウェブサイトを簡単な操作で端末のホーム画面に追加しましょう。アプリのような感覚で手軽にアクセスして素早くブラウジングできます</string> <string name="add_to_homescreen_description_2">このウェブサイトを端末のホーム画面に簡単な操作で追加できます。アプリのような感覚で素早くアクセスして閲覧しましょう</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">ログイン情報とパスワード</string> <string name="preferences_passwords_logins_and_passwords">ログイン情報とパスワード</string>
@ -1385,8 +1403,12 @@
<string name="logins_site_copied">サイトをクリップボードにコピーしました</string> <string name="logins_site_copied">サイトをクリップボードにコピーしました</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">パスワードをコピー</string> <string name="saved_logins_copy_password">パスワードをコピー</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">パスワードを消去</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">ユーザー名をコピー</string> <string name="saved_login_copy_username">ユーザー名をコピー</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">ユーザー名を消去</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">サイトをコピー</string> <string name="saved_login_copy_site">サイトをコピー</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1543,7 +1565,7 @@
<string name="saved_login_duplicate">このユーザー名を持つログイン情報がすでに存在します。</string> <string name="saved_login_duplicate">このユーザー名を持つログイン情報がすでに存在します。</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">他の端末を接続してください。</string> <string name="synced_tabs_connect_another_device">他の端末を接続してください。</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">再認証してください。</string> <string name="synced_tabs_reauth">再認証してください。</string>
@ -1564,7 +1586,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">トップサイトの上限に達しました</string> <string name="top_sites_max_limit_title">トップサイトの上限に達しました</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">新しいトップサイトを追加するには、いずれかを削除してください。サイトを長押しして削除を選択します。</string> <string name="top_sites_max_limit_content_2">新しいトップサイトを追加するには、いずれかを削除してください。サイトを長押しして削除を選択します。</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">OK</string> <string name="top_sites_max_limit_confirmation_button">OK</string>
@ -1574,7 +1596,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">削除</string> <string name="remove_home_collection_placeholder_content_description">削除</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">%s を最大限に活用しよう。</string> <string name="onboarding_firefox_account_header">%s を最大限に活用しよう。</string>
@ -1582,4 +1604,9 @@
<string name="no_collections_header1">あなたにとって関心のある事柄を集めましょう</string> <string name="no_collections_header1">あなたにとって関心のある事柄を集めましょう</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">類似の検索結果、サイト、タブをグループ化して、後ですばやくアクセスできます。</string> <string name="no_collections_description1">類似の検索結果、サイト、タブをグループ化して、後ですばやくアクセスできます。</string>
<!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">すでに、この端末の別の Firefox ブラウザーで %s としてログインしています。このアカウントでログインしますか?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">このウェブサイトを簡単な操作で端末のホーム画面に追加しましょう。アプリのような感覚で手軽にアクセスして素早く閲覧できます。</string>
</resources> </resources>

@ -266,6 +266,8 @@
<string name="preferences_open_links_in_a_private_tab">ბმულის პირად ჩანართში გახსნა</string> <string name="preferences_open_links_in_a_private_tab">ბმულის პირად ჩანართში გახსნა</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">ეკრანის გადაღების დაშვება პირადი თვალიერებისას</string> <string name="preferences_allow_screenshots_in_private_mode">ეკრანის გადაღების დაშვება პირადი თვალიერებისას</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">დაშვების შემთხვევაში, პირადი ჩანართები ხილული იქნება რამდენიმე აპის გახსნის დროსაც</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">პირადი თვალიერების მალსახმობის დამატება</string> <string name="preferences_add_private_browsing_shortcut">პირადი თვალიერების მალსახმობის დამატება</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -286,6 +288,8 @@
<string name="preferences_theme">თემა</string> <string name="preferences_theme">თემა</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">მთავარი</string> <string name="preferences_home">მთავარი</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">ჟესტები</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">მორგება</string> <string name="preferences_customize">მორგება</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -323,6 +327,8 @@
<string name="preferences_search_bookmarks">სანიშნების ძიება</string> <string name="preferences_search_bookmarks">სანიშნების ძიება</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">ანგარიშის პარამეტრები</string> <string name="preferences_account_settings">ანგარიშის პარამეტრები</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">ბმულების თვითდასრულება</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">ბმულების გახსნა პროგრამებში</string> <string name="preferences_open_links_in_apps">ბმულების გახსნა პროგრამებში</string>
<!-- Preference for open download with an external download manager app --> <!-- Preference for open download with an external download manager app -->
@ -460,6 +466,17 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">მოწყობილობის თემის მიხედვით</string> <string name="preference_follow_device_theme">მოწყობილობის თემის მიხედვით</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">ჩამოწიეთ გასაახლებლად</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">გადაადგილდით ხელსაწყოების დასამალად</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">გაუსვით ხელსაწყოთა ზოლის გვერდებზე, ჩანართებზე გადასართველად</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">აუსვით ხელსაწყოთა ზოლზე ჩანართების გახსნისთვის</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">სეანსები</string> <string name="library_sessions">სეანსები</string>
@ -1050,7 +1067,7 @@
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">თქვენ შესული ხართ, როგორც %s სხვა Firefox-ბრაუზერზე ამ ტელეფონში. გსურთ ამ ანგარიშით შესვლა?</string> <string name="onboarding_firefox_account_auto_signin_header_3">თქვენ შესული ხართ, როგორც %s სხვა Firefox-ბრაუზერზე ამ მოწყობილობაზე. გსურთ ამ ანგარიშით შესვლა?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">დიახ, შევალ</string> <string name="onboarding_firefox_account_auto_signin_confirm">დიახ, შევალ</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1297,7 +1314,7 @@
<string name="add_to_homescreen_text_placeholder">მალსახმობის სახელი</string> <string name="add_to_homescreen_text_placeholder">მალსახმობის სახელი</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">მარტივად შეგიძლიათ დაამატოთ ეს საიტი ტელეფონის მთავარ ეკრანზე, სწრაფად წვდომისა და გახნისთვის, პროგრამის მსგავსად.</string> <string name="add_to_homescreen_description_2">მარტივად შეგიძლიათ დაამატოთ ეს საიტი მოწყობილობის მთავარ ეკრანზე, სწრაფად წვდომისა და გახნისთვის, პროგრამის მსგავსად.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">ანგარიშები და პაროლები</string> <string name="preferences_passwords_logins_and_passwords">ანგარიშები და პაროლები</string>
@ -1369,8 +1386,12 @@
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">პაროლის ასლი</string> <string name="saved_logins_copy_password">პაროლის ასლი</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">პაროლის გასუფთავება</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">მომხმარებლის ასლი</string> <string name="saved_login_copy_username">მომხმარებლის ასლი</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">სახელის გასუფთავება</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">საიტის ასლი</string> <string name="saved_login_copy_site">საიტის ასლი</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1526,7 +1547,7 @@
<string name="saved_login_duplicate">ანგარიში ამ სახელით უკვე არსებობს</string> <string name="saved_login_duplicate">ანგარიში ამ სახელით უკვე არსებობს</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">სხვა მოწყობილობის დაკავშირება</string> <string name="synced_tabs_connect_another_device">სხვა მოწყობილობის დაკავშირება</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">გთხოვთ, ხელახლა შეხვიდეთ.</string> <string name="synced_tabs_reauth">გთხოვთ, ხელახლა შეხვიდეთ.</string>
@ -1547,7 +1568,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">რჩეული საიტების ზღვარი მიღწეულია</string> <string name="top_sites_max_limit_title">რჩეული საიტების ზღვარი მიღწეულია</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">ახალი რჩეული საიტის დასამატებლად, წაშალეთ წინა. მასზე დიდხანს დაჭერით და მოცილებით.</string> <string name="top_sites_max_limit_content_2">ახალი რჩეული საიტის დასამატებლად, წაშალეთ წინა. მასზე დიდხანს შეხებით და მოცილებით.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">კარგი, გასაგებია</string> <string name="top_sites_max_limit_confirmation_button">კარგი, გასაგებია</string>
@ -1557,7 +1578,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">მოცილება</string> <string name="remove_home_collection_placeholder_content_description">მოცილება</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">სრულყოფილად გამოიყენეთ %s.</string> <string name="onboarding_firefox_account_header">სრულყოფილად გამოიყენეთ %s.</string>
@ -1565,4 +1586,9 @@
<string name="no_collections_header1">შეაგროვეთ, რაც თქვენთვის ღირებულია</string> <string name="no_collections_header1">შეაგროვეთ, რაც თქვენთვის ღირებულია</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">თავი მოუყარეთ მოძიებულ მასალებს, საიტებს, ჩანართებს, სწრაფი წვდომისთვის.</string> <string name="no_collections_description1">თავი მოუყარეთ მოძიებულ მასალებს, საიტებს, ჩანართებს, სწრაფი წვდომისთვის.</string>
</resources> <!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">თქვენ შესული ხართ, როგორც %s სხვა Firefox-ბრაუზერზე ამ ტელეფონში. გსურთ ამ ანგარიშით შესვლა?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">მარტივად შეგიძლიათ დაამატოთ ეს საიტი ტელეფონის მთავარ ეკრანზე, სწრაფად წვდომისა და გახნისთვის, პროგრამის მსგავსად.</string>
</resources>

@ -1057,10 +1057,6 @@ Tiktiwin tigejdanin yuzzlen ur nṣeḥḥi ara
<string name="onboarding_account_sign_in_header">Bdu amtawi n ticraḍ, awalen uffiren, akked waṭas-nniḍen s umiḍan n Firefox.</string> <string name="onboarding_account_sign_in_header">Bdu amtawi n ticraḍ, awalen uffiren, akked waṭas-nniḍen s umiḍan n Firefox.</string>
<!-- Text for the button to learn more about signing in to your Firefox account --> <!-- Text for the button to learn more about signing in to your Firefox account -->
<string name="onboarding_manual_sign_in_learn_more">Issin ugar</string> <string name="onboarding_manual_sign_in_learn_more">Issin ugar</string>
<!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">Aql-ak teqqneḍ s %s ɣef yiminig-nniḍen Firefox s wugur-a. Tenɣiḍ ad teqqneḍ s umiḍan-a?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Ih, qqen-iyi</string> <string name="onboarding_firefox_account_auto_signin_confirm">Ih, qqen-iyi</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1306,9 +1302,6 @@ Tiktiwin tigejdanin yuzzlen ur nṣeḥḥi ara
<!-- Placeholder text for the TextView in the Add to Homescreen dialog --> <!-- Placeholder text for the TextView in the Add to Homescreen dialog -->
<string name="add_to_homescreen_text_placeholder">Isem n unegzum</string> <string name="add_to_homescreen_text_placeholder">Isem n unegzum</string>
<!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Adtizmireḍ s tifses ad ternuḍ asmel-a web ɣer ugdil agejdan n tiliɣri-ik akken ad tesɛuḍ anekcum askudan daɣen ad tinigeḍ s zreb s termit icuban asnas.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Inekcam d wawalen uffiren</string> <string name="preferences_passwords_logins_and_passwords">Inekcam d wawalen uffiren</string>
<!-- Preference for managing the saving of logins and passwords in Fenix --> <!-- Preference for managing the saving of logins and passwords in Fenix -->
@ -1377,6 +1370,8 @@ Tiktiwin tigejdanin yuzzlen ur nṣeḥḥi ara
<string name="logins_site_copied">Asmel yenɣel ɣef aus</string> <string name="logins_site_copied">Asmel yenɣel ɣef aus</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Nɣel awal uffir</string> <string name="saved_logins_copy_password">Nɣel awal uffir</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Sfeḍ awal uffir</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Nɣel isem n useqdac</string> <string name="saved_login_copy_username">Nɣel isem n useqdac</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
@ -1537,7 +1532,7 @@ Tiktiwin tigejdanin yuzzlen ur nṣeḥḥi ara
<string name="saved_login_duplicate">Anekcam s yisem-agi n useqdac yella yakan</string> <string name="saved_login_duplicate">Anekcam s yisem-agi n useqdac yella yakan</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Qqen ibenk-nniḍen.</string> <string name="synced_tabs_connect_another_device">Qqen ibenk-nniḍen.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Ma ulac aɣilif, ales asesteb.</string> <string name="synced_tabs_reauth">Ma ulac aɣilif, ales asesteb.</string>
@ -1557,8 +1552,6 @@ Tiktiwin tigejdanin yuzzlen ur nṣeḥḥi ara
<!-- Top Sites --> <!-- Top Sites -->
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Tewwḍeḍ ɣer talast n usmel</string> <string name="top_sites_max_limit_title">Tewwḍeḍ ɣer talast n usmel</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">I tmerna n usmel afellay amaynut, kkes yiwen. Sit mliḥ ɣef usmel syen fren kkes.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">IH, awi-t-id</string> <string name="top_sites_max_limit_confirmation_button">IH, awi-t-id</string>
@ -1576,4 +1569,9 @@ Tiktiwin tigejdanin yuzzlen ur nṣeḥḥi ara
<string name="no_collections_header1">Lqeḍ tiɣawsiwin i tḥemmleḍ</string> <string name="no_collections_header1">Lqeḍ tiɣawsiwin i tḥemmleḍ</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Segrew akk akken inadiyen, ismal d waccaren yemṣadan akken ad yishil unekcum ɣer-sen mbeεd.</string> <string name="no_collections_description1">Segrew akk akken inadiyen, ismal d waccaren yemṣadan akken ad yishil unekcum ɣer-sen mbeεd.</string>
</resources> <!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Aql-ak teqqneḍ s %s ɣef yiminig-nniḍen Firefox s wugur-a. Tenɣiḍ ad teqqneḍ s umiḍan-a?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Adtizmireḍ s tifses ad ternuḍ asmel-a web ɣer ugdil agejdan n tiliɣri-ik akken ad tesɛuḍ anekcum askudan daɣen ad tinigeḍ s zreb s termit icuban asnas.</string>
</resources>

@ -263,6 +263,8 @@
<string name="preferences_open_links_in_a_private_tab">Сілтемелерді жекелік беттерде ашу</string> <string name="preferences_open_links_in_a_private_tab">Сілтемелерді жекелік беттерде ашу</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">Жекелік шолу режимінде скриншоттарды рұқсат ету</string> <string name="preferences_allow_screenshots_in_private_mode">Жекелік шолу режимінде скриншоттарды рұқсат ету</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">Рұқсат етілсе, жеке беттер бірнеше қолданба ашық болған кезде де көрінеді</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">Жеке шолу жарлығын қосу</string> <string name="preferences_add_private_browsing_shortcut">Жеке шолу жарлығын қосу</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -1042,10 +1044,6 @@
<string name="onboarding_account_sign_in_header">Firefox тіркелгісімен бетбелгілер, парольдер және т.б. синхрондауды бастаңыз.</string> <string name="onboarding_account_sign_in_header">Firefox тіркелгісімен бетбелгілер, парольдер және т.б. синхрондауды бастаңыз.</string>
<!-- Text for the button to learn more about signing in to your Firefox account --> <!-- Text for the button to learn more about signing in to your Firefox account -->
<string name="onboarding_manual_sign_in_learn_more">Көбірек білу</string> <string name="onboarding_manual_sign_in_learn_more">Көбірек білу</string>
<!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">Сіз осы телефондағы басқа Firefox браузерінде %s ретінде кірдіңіз. Осы тіркелгімен кіргіңіз келе ме?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Иә, авторизациялау</string> <string name="onboarding_firefox_account_auto_signin_confirm">Иә, авторизациялау</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1289,8 +1287,6 @@
<string name="add_to_homescreen_continue">Веб-сайтқа өту</string> <string name="add_to_homescreen_continue">Веб-сайтқа өту</string>
<!-- Placeholder text for the TextView in the Add to Homescreen dialog --> <!-- Placeholder text for the TextView in the Add to Homescreen dialog -->
<string name="add_to_homescreen_text_placeholder">Жарлық атауы</string> <string name="add_to_homescreen_text_placeholder">Жарлық атауы</string>
<!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Бұл веб-сайтты жылдам қатынау және қолданба тектес режимде жылдам шолу мақсатымен телефоныңыздың үй бетіңізге қосуға болады.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Логиндер және парольдер</string> <string name="preferences_passwords_logins_and_passwords">Логиндер және парольдер</string>
@ -1517,7 +1513,7 @@
<string name="saved_login_duplicate">Бұл пайдаланушы атын қолданатын логин бар болып тұр</string> <string name="saved_login_duplicate">Бұл пайдаланушы атын қолданатын логин бар болып тұр</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Басқа құрылғыны байланыстыру.</string> <string name="synced_tabs_connect_another_device">Басқа құрылғыны байланыстыру.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Қайта аутентификациялаңыз.</string> <string name="synced_tabs_reauth">Қайта аутентификациялаңыз.</string>
@ -1536,8 +1532,6 @@
<!-- Top Sites --> <!-- Top Sites -->
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Үздік сайттар саны шегіне жетті</string> <string name="top_sites_max_limit_title">Үздік сайттар саны шегіне жетті</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Жаңа үздік сайтын қосу үшін, біреуін өшіріңіз. Сайтқа ұзақ басып, өшіру таңдаңыз.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">Жақсы, түсіндім</string> <string name="top_sites_max_limit_confirmation_button">Жақсы, түсіндім</string>
@ -1547,7 +1541,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Өшіру</string> <string name="remove_home_collection_placeholder_content_description">Өшіру</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">%s өнімін толықтай пайдаланыңыз.</string> <string name="onboarding_firefox_account_header">%s өнімін толықтай пайдаланыңыз.</string>
@ -1555,4 +1549,9 @@
<string name="no_collections_header1">Өзіңізге маңызды заттарды жинаңыз</string> <string name="no_collections_header1">Өзіңізге маңызды заттарды жинаңыз</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Кейінірек жылдам қатынау үшін ұқсас іздеулер, сайттар және беттерді топтастырыңыз.</string> <string name="no_collections_description1">Кейінірек жылдам қатынау үшін ұқсас іздеулер, сайттар және беттерді топтастырыңыз.</string>
<!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Сіз осы телефондағы басқа Firefox браузерінде %s ретінде кірдіңіз. Осы тіркелгімен кіргіңіз келе ме?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Бұл веб-сайтты жылдам қатынау және қолданба тектес режимде жылдам шолу мақсатымен телефоныңыздың үй бетіңізге қосуға болады.</string>
</resources> </resources>

@ -336,9 +336,13 @@
<string name="preferences_search_browsing_history">방문 기록 검색</string> <string name="preferences_search_browsing_history">방문 기록 검색</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">북마크 검색</string> <string name="preferences_search_bookmarks">북마크 검색</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">동기화된 탭 검색</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">계정 설정</string> <string name="preferences_account_settings">계정 설정</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">URL 자동 완성</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">앱에서 링크 열기</string> <string name="preferences_open_links_in_apps">앱에서 링크 열기</string>
@ -445,7 +449,7 @@
<!-- Turn On Sync Preferences --> <!-- Turn On Sync Preferences -->
<!-- Header of the Turn on Sync preference view --> <!-- Header of the Turn on Sync preference view -->
<string name="preferences_sync">동기화 시작하</string> <string name="preferences_sync">Sync 켜</string>
<!-- Preference for pairing --> <!-- Preference for pairing -->
<string name="preferences_sync_pair">데스크톱 Firefox에서 페어링 코드를 스캔하세요</string> <string name="preferences_sync_pair">데스크톱 Firefox에서 페어링 코드를 스캔하세요</string>
<!-- Preference for account login --> <!-- Preference for account login -->
@ -1623,7 +1627,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">삭제</string> <string name="remove_home_collection_placeholder_content_description">삭제</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">%s를 최대한 활용해 보세요.</string> <string name="onboarding_firefox_account_header">%s를 최대한 활용해 보세요.</string>

@ -266,6 +266,8 @@
<string name="preferences_open_links_in_a_private_tab">Atverti saitus privačiojoje kortelėje</string> <string name="preferences_open_links_in_a_private_tab">Atverti saitus privačiojoje kortelėje</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">Leisti ekrano nuotraukas naršant privačiai</string> <string name="preferences_allow_screenshots_in_private_mode">Leisti ekrano nuotraukas naršant privačiai</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">Jei leisite, privačios kortelės bus matomos kartu su kitomis atvertomis programomis</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">Pridėti privačiojo naršymo leistuką</string> <string name="preferences_add_private_browsing_shortcut">Pridėti privačiojo naršymo leistuką</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -286,6 +288,8 @@
<string name="preferences_theme">Grafinis apvalkalas</string> <string name="preferences_theme">Grafinis apvalkalas</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Pradžia</string> <string name="preferences_home">Pradžia</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Gestai</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Tinkinimas</string> <string name="preferences_customize">Tinkinimas</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -323,6 +327,8 @@
<string name="preferences_search_bookmarks">Ieškoti adresyne</string> <string name="preferences_search_bookmarks">Ieškoti adresyne</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Paskyros nuostatos</string> <string name="preferences_account_settings">Paskyros nuostatos</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Automatinis URL užbaigimas</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Atverti saitus programose</string> <string name="preferences_open_links_in_apps">Atverti saitus programose</string>
<!-- Preference for open download with an external download manager app --> <!-- Preference for open download with an external download manager app -->
@ -463,6 +469,16 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">Naudoti įrenginio grafinį apvalkalą</string> <string name="preference_follow_device_theme">Naudoti įrenginio grafinį apvalkalą</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">Įkėlimas iš naujo patraukiant</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">Įrankinės paslėpimas slenkant</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">Perėjimas tarp kortelių braukiant įrankinę į šoną</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">Kortelių atvėrimas braukiant įrankinę į viršų</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Seansai</string> <string name="library_sessions">Seansai</string>
@ -1057,7 +1073,7 @@
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">Esate prisijungę kaip %s kitoje „Firefox“ naršyklėje šiame įrenginyje. Ar norėtumėte prisijungti su šia paskyra?</string> <string name="onboarding_firefox_account_auto_signin_header_3">Esate prisijungę kaip %s kitoje „Firefox“ naršyklėje šiame įrenginyje. Ar norėtumėte prisijungti su šia paskyra?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Taip, prisijungti</string> <string name="onboarding_firefox_account_auto_signin_confirm">Taip, prisijungti</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1304,7 +1320,7 @@
<string name="add_to_homescreen_text_placeholder">Leistuko pavadinimas</string> <string name="add_to_homescreen_text_placeholder">Leistuko pavadinimas</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Galite lengvai pridėti šią svetainę į savo telefono pradžios ekraną, kad turėtumėte greitą priėjimą ir naršytumėte sparčiau, tarsi naudodamiesi programa.</string> <string name="add_to_homescreen_description_2">Galite lengvai pridėti šią svetainę į savo įrenginio pradžios ekraną, kad turėtumėte greitą priėjimą ir naršytumėte sparčiau, tarsi naudodamiesi programa.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Prisijungimai ir slaptažodžiai</string> <string name="preferences_passwords_logins_and_passwords">Prisijungimai ir slaptažodžiai</string>
@ -1375,8 +1391,12 @@
<string name="logins_site_copied">Svetainė nukopijuota į iškarpinę</string> <string name="logins_site_copied">Svetainė nukopijuota į iškarpinę</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Kopijuoti slaptažodį</string> <string name="saved_logins_copy_password">Kopijuoti slaptažodį</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Išvalyti slaptažodį</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Kopijuoti naudotojo vardą</string> <string name="saved_login_copy_username">Kopijuoti naudotojo vardą</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Išvalyti naudotojo vardą</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Kopijuoti svetainę</string> <string name="saved_login_copy_site">Kopijuoti svetainę</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1537,7 +1557,7 @@
<string name="saved_login_duplicate">Prisijungimas su tokiu naudotojo vardu jau yra</string> <string name="saved_login_duplicate">Prisijungimas su tokiu naudotojo vardu jau yra</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Susiekite kitą įrenginį.</string> <string name="synced_tabs_connect_another_device">Susiekite kitą įrenginį.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Prisijunkite iš naujo.</string> <string name="synced_tabs_reauth">Prisijunkite iš naujo.</string>
@ -1558,7 +1578,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Pasiekta lankomiausių svetainių riba</string> <string name="top_sites_max_limit_title">Pasiekta lankomiausių svetainių riba</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Norėdami pridėti naują lankomą svetainę, pašalinkite esamą. Palaikykite nuspaudę ant svetainės, ir pasirinkite „pašalinti“.</string> <string name="top_sites_max_limit_content_2">Norėdami pridėti naują lankomą svetainę, pašalinkite esamą. Palaikykite nuspaudę ant svetainės, ir pasirinkite „pašalinti“.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">Gerai, supratau</string> <string name="top_sites_max_limit_confirmation_button">Gerai, supratau</string>
@ -1568,7 +1588,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Pašalinti</string> <string name="remove_home_collection_placeholder_content_description">Pašalinti</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">išnaudokite daugiau „%s“ galimybių.</string> <string name="onboarding_firefox_account_header">išnaudokite daugiau „%s“ galimybių.</string>
@ -1576,4 +1596,9 @@
<string name="no_collections_header1">Kaupkite jums svarbius dalykus</string> <string name="no_collections_header1">Kaupkite jums svarbius dalykus</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Sugrupuokite panašias paieškas, svetaines, ir korteles patogesniam pasiekimui.</string> <string name="no_collections_description1">Sugrupuokite panašias paieškas, svetaines, ir korteles patogesniam pasiekimui.</string>
<!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Esate prisijungę kaip %s kitoje „Firefox“ naršyklėje šiame įrenginyje. Ar norėtumėte prisijungti su šia paskyra?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Galite lengvai pridėti šią svetainę į savo telefono pradžios ekraną, kad turėtumėte greitą priėjimą ir naršytumėte sparčiau, tarsi naudodamiesi programa.</string>
</resources> </resources>

@ -270,6 +270,8 @@
<string name="preferences_open_links_in_a_private_tab">Åpne lenke i en privat fane</string> <string name="preferences_open_links_in_a_private_tab">Åpne lenke i en privat fane</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">Tillat å ta skjermbilder i privat nettlesing</string> <string name="preferences_allow_screenshots_in_private_mode">Tillat å ta skjermbilder i privat nettlesing</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">Hvis tillatt, vil private faner også være synlige når flere apper er åpne</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">Legg til snarvei for privat nettlesing</string> <string name="preferences_add_private_browsing_shortcut">Legg til snarvei for privat nettlesing</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -327,8 +329,12 @@
<string name="preferences_search_browsing_history">Søk i nettleserhistorikk</string> <string name="preferences_search_browsing_history">Søk i nettleserhistorikk</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">Søk i bokmerker</string> <string name="preferences_search_bookmarks">Søk i bokmerker</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">Søk i synkroniserte faner</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Kontoinnstillinger</string> <string name="preferences_account_settings">Kontoinnstillinger</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Autofullfør nettadresser</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Åpne lenker i apper</string> <string name="preferences_open_links_in_apps">Åpne lenker i apper</string>
<!-- Preference for open download with an external download manager app --> <!-- Preference for open download with an external download manager app -->
@ -472,6 +478,13 @@
<!-- Preferences for using pull to refresh in a webpage --> <!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">Trekk for å oppdatere</string> <string name="preference_gestures_website_pull_to_refresh">Trekk for å oppdatere</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">Bla for å skjule verktøylinjen</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">Sveip verktøylinjen sidelengs for å bytte fane</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">Sveip verktøylinjen opp for å åpne faner</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Økter</string> <string name="library_sessions">Økter</string>
@ -1065,6 +1078,10 @@
<string name="onboarding_account_sign_in_header">Begynn å synkronisere bokmerker, passord og mer med Firefox-kontoen din.</string> <string name="onboarding_account_sign_in_header">Begynn å synkronisere bokmerker, passord og mer med Firefox-kontoen din.</string>
<!-- Text for the button to learn more about signing in to your Firefox account --> <!-- Text for the button to learn more about signing in to your Firefox account -->
<string name="onboarding_manual_sign_in_learn_more">Les mer</string> <string name="onboarding_manual_sign_in_learn_more">Les mer</string>
<!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_3">Du er logget inn som %s på en annen Firefox-nettleser på denne enheten. Vil du logge inn med denne kontoen?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Ja, logg meg inn</string> <string name="onboarding_firefox_account_auto_signin_confirm">Ja, logg meg inn</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1315,6 +1332,9 @@
<!-- Placeholder text for the TextView in the Add to Homescreen dialog --> <!-- Placeholder text for the TextView in the Add to Homescreen dialog -->
<string name="add_to_homescreen_text_placeholder">Navn på snarvei</string> <string name="add_to_homescreen_text_placeholder">Navn på snarvei</string>
<!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description_2">Du kan enkelt legge til dette nettstedet på enhetens startskjerm for å få øyeblikkelig tilgang og surfe raskere med en app-lignende opplevelse.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Innlogginger og passord</string> <string name="preferences_passwords_logins_and_passwords">Innlogginger og passord</string>
<!-- Preference for managing the saving of logins and passwords in Fenix --> <!-- Preference for managing the saving of logins and passwords in Fenix -->
@ -1385,8 +1405,12 @@
<string name="logins_site_copied">Nettsted kopiert til utklippstavlen</string> <string name="logins_site_copied">Nettsted kopiert til utklippstavlen</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Kopier passord</string> <string name="saved_logins_copy_password">Kopier passord</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Tøm passord</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Kopier brukernavn</string> <string name="saved_login_copy_username">Kopier brukernavn</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Tøm brukernavn</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Kopier nettsted</string> <string name="saved_login_copy_site">Kopier nettsted</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1565,6 +1589,8 @@
<!-- Top Sites --> <!-- Top Sites -->
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Grense for populære nettsteder nådd</string> <string name="top_sites_max_limit_title">Grense for populære nettsteder nådd</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content_2">For å legge til et nytt populært nettsted må du fjerne et annet. Trykk og hold på nettstedet, og velg fjern.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">OK, jeg skjønner</string> <string name="top_sites_max_limit_confirmation_button">OK, jeg skjønner</string>
@ -1574,7 +1600,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Fjern</string> <string name="remove_home_collection_placeholder_content_description">Fjern</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Få mest mulig ut av %s.</string> <string name="onboarding_firefox_account_header">Få mest mulig ut av %s.</string>
@ -1585,6 +1611,6 @@
<!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to --> <!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Du er logget inn som %s på en annen Firefox-nettleser på denne telefonen. Vil du logge inn med denne kontoen?</string> <string name="onboarding_firefox_account_auto_signin_header_2">Du er logget inn som %s på en annen Firefox-nettleser på denne telefonen. Vil du logge inn med denne kontoen?</string>
<!-- Deprecated: Describes the add to homescreen functionality --> <!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Du kan enkelt legge til dette nettstedet på telefonens startskjermen for å få øyeblikkelig tilgang og surfe raskere med en app-lignende opplevelse.</string> <string name="add_to_homescreen_description">Du kan enkelt legge til dette nettstedet på telefonens startskjerm for å få øyeblikkelig tilgang og surfe raskere med en app-lignende opplevelse.</string>
</resources> </resources>

@ -274,6 +274,8 @@
<string name="preferences_open_links_in_a_private_tab">Koppelingen openen in een privétabblad</string> <string name="preferences_open_links_in_a_private_tab">Koppelingen openen in een privétabblad</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">Schermafdrukken tijdens privénavigatie toestaan</string> <string name="preferences_allow_screenshots_in_private_mode">Schermafdrukken tijdens privénavigatie toestaan</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">Indien toegestaan, zijn privétabbladen ook zichtbaar wanneer meerdere apps zijn geopend</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">Snelkoppeling naar privénavigatie toevoegen</string> <string name="preferences_add_private_browsing_shortcut">Snelkoppeling naar privénavigatie toevoegen</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -294,6 +296,8 @@
<string name="preferences_theme">Thema</string> <string name="preferences_theme">Thema</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Startpagina</string> <string name="preferences_home">Startpagina</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Bewegingen</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Aanpassen</string> <string name="preferences_customize">Aanpassen</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -328,9 +332,13 @@
<string name="preferences_search_browsing_history">Navigatiegeschiedenis doorzoeken</string> <string name="preferences_search_browsing_history">Navigatiegeschiedenis doorzoeken</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">Bladwijzers doorzoeken</string> <string name="preferences_search_bookmarks">Bladwijzers doorzoeken</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">Gesynchroniseerde tabbladen doorzoeken</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Accountinstellingen</string> <string name="preferences_account_settings">Accountinstellingen</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">URLs automatisch aanvullen</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Koppelingen openen in apps</string> <string name="preferences_open_links_in_apps">Koppelingen openen in apps</string>
@ -467,6 +475,16 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">Apparaatthema volgen</string> <string name="preference_follow_device_theme">Apparaatthema volgen</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">Trek om te vernieuwen</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">Scroll om de werkbalk te verbergen</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">Veeg de werkbalk opzij om van tabblad te wisselen</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">Veeg de werkbalk omhoog om tabbladen te openen</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Sessies</string> <string name="library_sessions">Sessies</string>
@ -1062,7 +1080,7 @@
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">U bent op een andere Firefox-browser op deze telefoon aangemeld als %s. Wilt u zich aanmelden met deze account?</string> <string name="onboarding_firefox_account_auto_signin_header_3">U bent aangemeld als %s op een andere Firefox-browser op dit apparaat. Wilt u aanmelden met deze account?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Ja, mij aanmelden</string> <string name="onboarding_firefox_account_auto_signin_confirm">Ja, mij aanmelden</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1309,7 +1327,7 @@
<string name="add_to_homescreen_text_placeholder">Naam snelkoppeling</string> <string name="add_to_homescreen_text_placeholder">Naam snelkoppeling</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">U kunt deze website eenvoudig aan het startscherm van uw telefoon toevoegen voor directe toegang en sneller surfen met een app-achtige ervaring.</string> <string name="add_to_homescreen_description_2">U kunt deze website eenvoudig aan het startscherm van uw apparaat toevoegen, om zo direct toegang te hebben en sneller te navigeren met een app-achtige ervaring.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Aanmeldingen en wachtwoorden</string> <string name="preferences_passwords_logins_and_passwords">Aanmeldingen en wachtwoorden</string>
@ -1379,8 +1397,12 @@
<string name="logins_site_copied">Website naar klembord gekopieerd</string> <string name="logins_site_copied">Website naar klembord gekopieerd</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Wachtwoord kopiëren</string> <string name="saved_logins_copy_password">Wachtwoord kopiëren</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Wachtwoord wissen</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Gebruikersnaam kopiëren</string> <string name="saved_login_copy_username">Gebruikersnaam kopiëren</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Gebruikersnaam wissen</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Website kopiëren</string> <string name="saved_login_copy_site">Website kopiëren</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1535,7 +1557,7 @@
<string name="saved_login_duplicate">Er bestaat al een aanmelding met die gebruikersnaam</string> <string name="saved_login_duplicate">Er bestaat al een aanmelding met die gebruikersnaam</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Een ander apparaat verbinden.</string> <string name="synced_tabs_connect_another_device">Een ander apparaat verbinden.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Gelieve opnieuw te authenticeren.</string> <string name="synced_tabs_reauth">Gelieve opnieuw te authenticeren.</string>
@ -1556,7 +1578,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Limiet voor topwebsites bereikt</string> <string name="top_sites_max_limit_title">Limiet voor topwebsites bereikt</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Verwijder een topwebsite om een nieuwe toe te voegen. Houd de website ingedrukt en selecteer Verwijderen.</string> <string name="top_sites_max_limit_content_2">Verwijder een topwebsite om er een toe te voegen. Houd de website ingedrukt en selecteer Verwijderen.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">OK, begrepen</string> <string name="top_sites_max_limit_confirmation_button">OK, begrepen</string>
@ -1566,7 +1588,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Verwijderen</string> <string name="remove_home_collection_placeholder_content_description">Verwijderen</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Haal het meeste uit %s.</string> <string name="onboarding_firefox_account_header">Haal het meeste uit %s.</string>
@ -1574,4 +1596,9 @@
<string name="no_collections_header1">Verzamel de dingen die belangrijk voor u zijn</string> <string name="no_collections_header1">Verzamel de dingen die belangrijk voor u zijn</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Groepeer vergelijkbare zoekopdrachten, websites en tabbladen voor snelle toegang later.</string> <string name="no_collections_description1">Groepeer vergelijkbare zoekopdrachten, websites en tabbladen voor snelle toegang later.</string>
</resources> <!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">U bent op een andere Firefox-browser op deze telefoon aangemeld als %s. Wilt u zich aanmelden met deze account?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">U kunt deze website eenvoudig aan het startscherm van uw telefoon toevoegen voor directe toegang en sneller surfen met een app-achtige ervaring.</string>
</resources>

@ -270,6 +270,8 @@
<string name="preferences_open_links_in_a_private_tab">Opne lenker i ei privat fane</string> <string name="preferences_open_links_in_a_private_tab">Opne lenker i ei privat fane</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">Tillat å ta skjermbilde i privat nettlesing</string> <string name="preferences_allow_screenshots_in_private_mode">Tillat å ta skjermbilde i privat nettlesing</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">Dersom tillate, vil private faner òg vere synlege når fleire appar er opne</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">Legg til snarveg for privat nettlesing</string> <string name="preferences_add_private_browsing_shortcut">Legg til snarveg for privat nettlesing</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -291,6 +293,8 @@
<string name="preferences_theme">Tema</string> <string name="preferences_theme">Tema</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Heim</string> <string name="preferences_home">Heim</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Rørsler</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Tilpass</string> <string name="preferences_customize">Tilpass</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -326,8 +330,12 @@
<string name="preferences_search_browsing_history">Søk i nettlesarhistorikk</string> <string name="preferences_search_browsing_history">Søk i nettlesarhistorikk</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">Søk i bokmerke</string> <string name="preferences_search_bookmarks">Søk i bokmerke</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">Søk i synkroniserte faner</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Kontoinnstillingar</string> <string name="preferences_account_settings">Kontoinnstillingar</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Autofullfør nettadresser</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Opne lenker i appar</string> <string name="preferences_open_links_in_apps">Opne lenker i appar</string>
<!-- Preference for open download with an external download manager app --> <!-- Preference for open download with an external download manager app -->
@ -466,6 +474,17 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">Same som tema til eininga</string> <string name="preference_follow_device_theme">Same som tema til eininga</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">Trekk for å oppdatere</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">Bla for å skjule verktøylinja</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">Sveip verktøylinja sidelengs for å byte fane</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">Sveip verktøylinja opp for å opne faner</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Økter</string> <string name="library_sessions">Økter</string>
@ -1063,7 +1082,7 @@
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">Du er logga inn som %s på ein annan Firefox-nettlesar på denne telefonen. Vil du logge inn med denne kontoen?</string> <string name="onboarding_firefox_account_auto_signin_header_3">Du er logga inn som %s på ein annan Firefox-nettlesar på denne eininga. Vil du logge inn med denne kontoen?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Ja, logg meg inn</string> <string name="onboarding_firefox_account_auto_signin_confirm">Ja, logg meg inn</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1310,7 +1329,7 @@
<string name="add_to_homescreen_text_placeholder">Namn på snarveg</string> <string name="add_to_homescreen_text_placeholder">Namn på snarveg</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Du kan enkelt leggje til denne nettstaden på startskjermen til telefonen for å få direkte tilgang, og surfe raskare med ei app-liknande oppleving.</string> <string name="add_to_homescreen_description_2">Du kan enkelt leggje til denne nettstaden på startskjermen til eininga for å, med ein gong, få tilgang og surfe raskare med ei app-liknande oppleving.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Innloggingar og passord</string> <string name="preferences_passwords_logins_and_passwords">Innloggingar og passord</string>
@ -1381,8 +1400,12 @@
<string name="logins_site_copied">Nettstad kopiert til utklippstavle</string> <string name="logins_site_copied">Nettstad kopiert til utklippstavle</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Kopier passord</string> <string name="saved_logins_copy_password">Kopier passord</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Tøm passord</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Kopier brukarnamn</string> <string name="saved_login_copy_username">Kopier brukarnamn</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Tøm brukarnamn</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Kopier nettstad</string> <string name="saved_login_copy_site">Kopier nettstad</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1540,7 +1563,7 @@
<string name="saved_login_duplicate">Ei innlogging med dette brukarnamnet finst allereie</string> <string name="saved_login_duplicate">Ei innlogging med dette brukarnamnet finst allereie</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Kople til ei anna eining.</string> <string name="synced_tabs_connect_another_device">Kople til ei anna eining.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Godkjenn på nytt.</string> <string name="synced_tabs_reauth">Godkjenn på nytt.</string>
@ -1560,7 +1583,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Grense for populære nettstadar nådd</string> <string name="top_sites_max_limit_title">Grense for populære nettstadar nådd</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">For å leggje til ein ny populær nettstad må du fjern ein. Langtrykk på nettstaden og vel fjern.</string> <string name="top_sites_max_limit_content_2">For å leggje til ein ny populær nettstad må du fjerne ein annan. Trykk og hald på nettstaden, og vel fjern.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">OK, eg forstår det</string> <string name="top_sites_max_limit_confirmation_button">OK, eg forstår det</string>
@ -1570,7 +1593,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Fjern</string> <string name="remove_home_collection_placeholder_content_description">Fjern</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Få mest muleg ut av %s.</string> <string name="onboarding_firefox_account_header">Få mest muleg ut av %s.</string>
@ -1578,4 +1601,9 @@
<string name="no_collections_header1">Samle dei tinga som betyr noko for deg</string> <string name="no_collections_header1">Samle dei tinga som betyr noko for deg</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Grupper saman liknande søk, nettstadar og faner for rask tilgang seinare.</string> <string name="no_collections_description1">Grupper saman liknande søk, nettstadar og faner for rask tilgang seinare.</string>
</resources> <!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Du er logga inn som %s på ein annan Firefox-nettlesar på denne telefonen. Vil du logge inn med denne kontoen?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Du kan enkelt leggje til denne nettstaden på startskjermen til telefonen for å få direkte tilgang, og surfe raskare med ei app-liknande oppleving.</string>
</resources>

@ -282,6 +282,8 @@
<string name="preferences_theme">Tèma</string> <string name="preferences_theme">Tèma</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Acuèlh</string> <string name="preferences_home">Acuèlh</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Gèstes</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Personalizacion</string> <string name="preferences_customize">Personalizacion</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -319,6 +321,8 @@
<string name="preferences_search_bookmarks">Cercar dins los marcapaginas</string> <string name="preferences_search_bookmarks">Cercar dins los marcapaginas</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Paramètres del compte</string> <string name="preferences_account_settings">Paramètres del compte</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Autocomplecion URL</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Dobrir los ligams dins las aplicacions</string> <string name="preferences_open_links_in_apps">Dobrir los ligams dins las aplicacions</string>
<!-- Preference for open download with an external download manager app --> <!-- Preference for open download with an external download manager app -->
@ -458,6 +462,12 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">Segon lo tèma del periferic</string> <string name="preference_follow_device_theme">Segon lo tèma del periferic</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">Tirar per actualizar</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">Desfilar per amagar la barra daisinas</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Sessions</string> <string name="library_sessions">Sessions</string>
@ -1319,8 +1329,12 @@
<string name="logins_site_copied">Site copiat al quichapapièrs</string> <string name="logins_site_copied">Site copiat al quichapapièrs</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Copiar lo senhal</string> <string name="saved_logins_copy_password">Copiar lo senhal</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Escafar senhal</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Copiar lo nom dutilizaire</string> <string name="saved_login_copy_username">Copiar lo nom dutilizaire</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Escafar identificant</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Copiar lo site</string> <string name="saved_login_copy_site">Copiar lo site</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1461,7 +1475,7 @@
<string name="saved_login_duplicate">Un identificant amb aqueste nom dutilizaire existís ja</string> <string name="saved_login_duplicate">Un identificant amb aqueste nom dutilizaire existís ja</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Connectatz un autre periferic.</string> <string name="synced_tabs_connect_another_device">Connectatz un autre periferic.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Tornatz vos autentificar.</string> <string name="synced_tabs_reauth">Tornatz vos autentificar.</string>
@ -1480,8 +1494,6 @@
<!-- Top Sites --> <!-- Top Sites -->
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Arribat a la limita dels sites principals</string> <string name="top_sites_max_limit_title">Arribat a la limita dels sites principals</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Per ajustar un site principal novèl, suprimissètz-ne un autre. Tocatz longament sul site e causissètz suprimir.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">Òc, plan comprés</string> <string name="top_sites_max_limit_confirmation_button">Òc, plan comprés</string>
@ -1491,7 +1503,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Suprimir</string> <string name="remove_home_collection_placeholder_content_description">Suprimir</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Ne fasètz mai amb %s.</string> <string name="onboarding_firefox_account_header">Ne fasètz mai amb %s.</string>

@ -82,6 +82,21 @@
<!-- Text for the negative button --> <!-- Text for the negative button -->
<string name="search_widget_cfr_neg_button_text">ਹੁਣੇ ਨਹੀਂ</string> <string name="search_widget_cfr_neg_button_text">ਹੁਣੇ ਨਹੀਂ</string>
<!-- Text for the positive action button -->
<string name="open_in_app_cfr_positive_button_text">ਸੈਟਿੰਗਾਂ ਉੱਤੇ ਜਾਓ</string>
<!-- Text for the negative action button -->
<string name="open_in_app_cfr_negative_button_text">ਖ਼ਾਰਜ ਕਰੋ</string>
<!-- Text for the positive action button to go to Android Settings to grant permissions. -->
<string name="camera_permissions_needed_positive_button_text">ਸੈਟਿੰਗਾਂ ਉੱਤੇ ਜਾਓ</string>
<!-- Text for the negative action button to dismiss the dialog. -->
<string name="camera_permissions_needed_negative_button_text">ਖ਼ਾਰਜ ਕਰੋ</string>
<!-- Text for the positive action button to go to Settings for auto close tabs. -->
<string name="tab_tray_close_tabs_banner_positive_button_text">ਚੋਣਾਂ ਵੇਖੋ</string>
<!-- Text for the negative action button to dismiss the Close Tabs Banner. -->
<string name="tab_tray_close_tabs_banner_negative_button_text">ਖ਼ਾਰਜ ਕਰੋ</string>
<!-- Home screen icons - Long press shortcuts --> <!-- Home screen icons - Long press shortcuts -->
<!-- Shortcut action to open new tab --> <!-- Shortcut action to open new tab -->
<string name="home_screen_shortcut_open_new_tab_2">ਨਵੀਂ ਟੈਬ</string> <string name="home_screen_shortcut_open_new_tab_2">ਨਵੀਂ ਟੈਬ</string>
@ -268,6 +283,10 @@
<string name="preferences_toolbar">ਟੂਲਬਾਰ</string> <string name="preferences_toolbar">ਟੂਲਬਾਰ</string>
<!-- Preference for changing default theme to dark or light mode --> <!-- Preference for changing default theme to dark or light mode -->
<string name="preferences_theme">ਥੀਮ</string> <string name="preferences_theme">ਥੀਮ</string>
<!-- Preference for customizing the home screen -->
<string name="preferences_home">ਮੁੱਖ ਸਫ਼ਾ</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">ਇਸ਼ਾਰੇ</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">ਪਸੰਦੀਦਾ</string> <string name="preferences_customize">ਪਸੰਦੀਦਾ</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -305,6 +324,8 @@
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">ਖਾਤਾ ਸੈਟਿੰਗਾਂ</string> <string name="preferences_account_settings">ਖਾਤਾ ਸੈਟਿੰਗਾਂ</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">ਆਪੇ-ਪੂਰਨ URL</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">ਲਿੰਕ ਐਪਾਂ ਵਿੱਚ ਖੋਲ੍ਹੋ</string> <string name="preferences_open_links_in_apps">ਲਿੰਕ ਐਪਾਂ ਵਿੱਚ ਖੋਲ੍ਹੋ</string>
@ -313,6 +334,9 @@
<!-- Preference for add_ons --> <!-- Preference for add_ons -->
<string name="preferences_addons">ਐਡ-ਆਨ</string> <string name="preferences_addons">ਐਡ-ਆਨ</string>
<!-- Preference for notifications -->
<string name="preferences_notifications">ਨੋਟੀਫਿਕੇਸ਼ਨ</string>
<!-- Account Preferences --> <!-- Account Preferences -->
<!-- Preference for triggering sync --> <!-- Preference for triggering sync -->
<string name="preferences_sync_now">ਹੁਣੇ ਸਿੰਕ ਕਰੋ</string> <string name="preferences_sync_now">ਹੁਣੇ ਸਿੰਕ ਕਰੋ</string>
@ -442,6 +466,10 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">ਡਿਵਾਈਸ ਥੀਮ ਦੇ ਮੁਤਾਬਕ</string> <string name="preference_follow_device_theme">ਡਿਵਾਈਸ ਥੀਮ ਦੇ ਮੁਤਾਬਕ</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">ਤਾਜ਼ਾ ਕਰਨ ਲਈ ਖਿੱਚੋ</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">ਸ਼ੈਸ਼ਨ</string> <string name="library_sessions">ਸ਼ੈਸ਼ਨ</string>
@ -476,6 +504,27 @@
<!-- Content description (not visible, for screen readers etc.): "Close button for library settings" --> <!-- Content description (not visible, for screen readers etc.): "Close button for library settings" -->
<string name="content_description_close_button">ਬੰਦ ਕਰੋ</string> <string name="content_description_close_button">ਬੰਦ ਕਰੋ</string>
<!-- Option in library to open Recently Closed Tabs page -->
<string name="recently_closed_show_full_history">ਸਾਰੇ ਅਤੀਤ ਨੂੰ ਵੇਖੋ</string>
<!-- Text to show users they have multiple tabs saved in the Recently Closed Tabs section of history.
%d is a placeholder for the number of tabs selected. -->
<string name="recently_closed_tabs">%d ਟੈਬਾਂ</string>
<!-- Text to show users they have one tab saved in the Recently Closed Tabs section of history.
%d is a placeholder for the number of tabs selected. -->
<string name="recently_closed_tab">%d ਟੈਬ</string>
<!-- Tab Management -->
<!-- Title of preference that allows a user to auto close tabs after a specified amount of time -->
<string name="preferences_close_tabs">ਟੈਬਾਂ ਨੂੰ ਬੰਦ ਕਰੋ</string>
<!-- Option for auto closing tabs that will never auto close tabs, always allows user to manually close tabs -->
<string name="close_tabs_manually">ਖੁਦ</string>
<!-- Option for auto closing tabs that will auto close tabs after one day -->
<string name="close_tabs_after_one_day">ਇੱਕ ਦਿਨ ਬਾਅਦ</string>
<!-- Option for auto closing tabs that will auto close tabs after one week -->
<string name="close_tabs_after_one_week">ਇੱਕ ਹਫ਼ਤੇ ਬਾਅਦ</string>
<!-- Option for auto closing tabs that will auto close tabs after one month -->
<string name="close_tabs_after_one_month">ਇੱਕ ਮਹੀਨੇ ਬਾਅਦ</string>
<!-- Sessions --> <!-- Sessions -->
<!-- Title for the list of tabs --> <!-- Title for the list of tabs -->
<string name="tab_header_label">ਟੈਬਾਂ ਖੋਲ੍ਹੋ</string> <string name="tab_header_label">ਟੈਬਾਂ ਖੋਲ੍ਹੋ</string>
@ -495,6 +544,10 @@
<string name="tab_tray_menu_item_save">ਭੰਡਾਰ ਵਿੱਚ ਸੰਭਾਲੋ</string> <string name="tab_tray_menu_item_save">ਭੰਡਾਰ ਵਿੱਚ ਸੰਭਾਲੋ</string>
<!-- Text shown in the menu for sharing all tabs --> <!-- Text shown in the menu for sharing all tabs -->
<string name="tab_tray_menu_item_share">ਸਾਰੀਆਂ ਟੈਬਾਂ ਸਾਂਝੀਆਂ ਕਰੋ</string> <string name="tab_tray_menu_item_share">ਸਾਰੀਆਂ ਟੈਬਾਂ ਸਾਂਝੀਆਂ ਕਰੋ</string>
<!-- Text shown in the menu to view recently closed tabs -->
<string name="tab_tray_menu_recently_closed">ਤਾਜ਼ਾ ਬੰਦ ਕੀਤੀਆਂ ਟੈਬਾਂ</string>
<!-- Text shown in the menu to view tab settings -->
<string name="tab_tray_menu_tab_settings">ਟੈਬ ਸੈਟਿੰਗਾਂ</string>
<!-- Text shown in the menu for closing all tabs --> <!-- Text shown in the menu for closing all tabs -->
<string name="tab_tray_menu_item_close">ਸਾਰੀਆਂ ਟੈਬਾਂ ਬੰਦ ਕਰੋ</string> <string name="tab_tray_menu_item_close">ਸਾਰੀਆਂ ਟੈਬਾਂ ਬੰਦ ਕਰੋ</string>
<!-- Shortcut action to open new tab --> <!-- Shortcut action to open new tab -->
@ -542,6 +595,8 @@
<!-- Text for the menu button to remove a top site --> <!-- Text for the menu button to remove a top site -->
<string name="remove_top_site">ਹਟਾਓ</string> <string name="remove_top_site">ਹਟਾਓ</string>
<!-- Text for the menu button to delete a top site from history -->
<string name="delete_from_history">ਅਤੀਤ ਵਿੱਚੋਂ ਹਟਾਓ</string>
<!-- Postfix for private WebApp titles, placeholder is replaced with app name --> <!-- Postfix for private WebApp titles, placeholder is replaced with app name -->
<string name="pwa_site_controls_title_private">%1$s (ਪ੍ਰਾਈਵੇਟ ਮੋਡ)</string> <string name="pwa_site_controls_title_private">%1$s (ਪ੍ਰਾਈਵੇਟ ਮੋਡ)</string>
@ -587,6 +642,13 @@
<!-- Text shown when no history exists --> <!-- Text shown when no history exists -->
<string name="history_empty_message">ਇ਼ੱਥੇ ਕੋਈ ਅਤੀਤ ਨਹੀਂ ਹੈ</string> <string name="history_empty_message">ਇ਼ੱਥੇ ਕੋਈ ਅਤੀਤ ਨਹੀਂ ਹੈ</string>
<!-- Downloads -->
<!-- Text shown when no download exists -->
<string name="download_empty_message">ਡਾਊਨਲੋਡ ਨਹੀਂ ਹੈ</string>
<!-- History multi select title in app bar
The first parameter is the number of downloads selected -->
<string name="download_multi_select_title">%1$d ਚੁਣੇ</string>
<!-- Crashes --> <!-- Crashes -->
<!-- Title text displayed on the tab crash page. This first parameter is the name of the application (For example: Fenix) --> <!-- Title text displayed on the tab crash page. This first parameter is the name of the application (For example: Fenix) -->
<string name="tab_crash_title_2">ਅਫ਼ਸੋਸ ਹੈ। %1$s ਉਸ ਸਫ਼ੇ ਨੂੰ ਲੋਡ ਨਹੀਂ ਕਰ ਸਕਦਾ ਹੈ।</string> <string name="tab_crash_title_2">ਅਫ਼ਸੋਸ ਹੈ। %1$s ਉਸ ਸਫ਼ੇ ਨੂੰ ਲੋਡ ਨਹੀਂ ਕਰ ਸਕਦਾ ਹੈ।</string>
@ -741,10 +803,6 @@
<string name="collections_header">ਭੰਡਾਰ</string> <string name="collections_header">ਭੰਡਾਰ</string>
<!-- Content description (not visible, for screen readers etc.): Opens the collection menu when pressed --> <!-- Content description (not visible, for screen readers etc.): Opens the collection menu when pressed -->
<string name="collection_menu_button_content_description">ਭੰਡਾਰ ਮੇਨੂ</string> <string name="collection_menu_button_content_description">ਭੰਡਾਰ ਮੇਨੂ</string>
<!-- No Open Tabs Message Header -->
<string name="no_collections_header1">ਚੀਜ਼ਾਂ ਇਕੱਤਰ ਕਰੋ, ਜੋ ਤੁਹਾਡੇ ਲਈ ਜ਼ਰੂਰੀ ਹਨ</string>
<!-- Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">ਬਾਅਦ ਵਿੱਚ ਫ਼ੌਰੀ ਵਰਤਣ ਲਈ ਰਲਦੀਆਂ ਖੋਜਾਂ, ਸਾਈਤਾਂ ਤੇ ਟੈਬਾਂ ਨੂੰ ਗਰੁੱਪ ਵਿੱਚ ਇਕੱਠੀਆਂ ਕਰੋ।</string>
<!-- Title for the "select tabs" step of the collection creator --> <!-- Title for the "select tabs" step of the collection creator -->
<string name="create_collection_select_tabs">ਟੈਬਾਂ ਚੁਣੋ</string> <string name="create_collection_select_tabs">ਟੈਬਾਂ ਚੁਣੋ</string>
<!-- Title for the "select collection" step of the collection creator --> <!-- Title for the "select collection" step of the collection creator -->
@ -996,13 +1054,8 @@
<string name="onboarding_whats_new_description">%s ਮੁੜ-ਡਿਜ਼ਾਈਨ ਬਾਰੇ ਕੋਈ ਸਵਾਲ ਹੈ? ਲੱਭ ਰਹੇ ਕੋ ਕਿ ਕੀ ਬਦਲਿਆ ਹੈ?</string> <string name="onboarding_whats_new_description">%s ਮੁੜ-ਡਿਜ਼ਾਈਨ ਬਾਰੇ ਕੋਈ ਸਵਾਲ ਹੈ? ਲੱਭ ਰਹੇ ਕੋ ਕਿ ਕੀ ਬਦਲਿਆ ਹੈ?</string>
<!-- text for underlined clickable link that is part of "what's new" onboarding card description that links to an FAQ --> <!-- text for underlined clickable link that is part of "what's new" onboarding card description that links to an FAQ -->
<string name="onboarding_whats_new_description_linktext">ਜਵਾਬ ਇੱਥੇ ਲਵੋ</string> <string name="onboarding_whats_new_description_linktext">ਜਵਾਬ ਇੱਥੇ ਲਵੋ</string>
<!-- text for the firefox account onboarding card header <!-- Text for the button to learn more about signing in to your Firefox account -->
The first parameter is the name of the app (e.g. Firefox Preview) --> <string name="onboarding_manual_sign_in_learn_more">ਹੋਰ ਜਾਣੋ</string>
<string name="onboarding_firefox_account_header">%s ਤੋਂ ਪੂਰਾ ਪੂਰਾ ਫਾਇਦਾ ਲਵੋ।</string>
<!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">ਤੁਸੀਂ ਇਸ ਫ਼ੋਨ ‘ਤੇ ਹੋਰ ਫਾਇਰਫਾਕਸ ਬਰਾਊਜ਼ਰ ਉੱਤੇ %s ਵਜੋਂ ਸਾਈਨ ਇਨ ਹੋ। ਕੀ ਤੁਸੀਂ ਇਸ ਖਾਤੇ ਨਾਲ ਸਾਈਨ ਇਨ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">ਹਾਂ, ਮੈਨੂੰ ਸਾਈਨ ਇਨ ਕਰੋ</string> <string name="onboarding_firefox_account_auto_signin_confirm">ਹਾਂ, ਮੈਨੂੰ ਸਾਈਨ ਇਨ ਕਰੋ</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1245,9 +1298,6 @@
<!-- Placeholder text for the TextView in the Add to Homescreen dialog --> <!-- Placeholder text for the TextView in the Add to Homescreen dialog -->
<string name="add_to_homescreen_text_placeholder">ਸ਼ਾਰਟਕੱਟ ਨਾਂ</string> <string name="add_to_homescreen_text_placeholder">ਸ਼ਾਰਟਕੱਟ ਨਾਂ</string>
<!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">ਤੁਸੀਂ ਇਸ ਵੈੱਬਸਾਈਟ ਨੂੰ ਸੌਖੀ ਤਰ੍ਹਾਂ ਆਪਣੀ ਫ਼ੋਨ ਦੀ ਮੁੱਖ ਸਕਰੀਨ ‘ਤੇ ਜੋੜ ਸਕਦੇ ਹੋ ਤਾਂ ਕਿ ਐਪ ਵਰਗੇ ਤਜਰਬੇ ਵਾਸਤੇ ਤੁਰੰਤ ਪਹੁੰਚ ਅਤੇ ਤੇਜ਼ੀ ਨਾਲ ਬਰਾਊਜ਼ ਕਰਨ ਲਈ ਵਰਤਿਆ ਜਾ ਸਕੇ।</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">ਲਾਗਇਨ ਅਤੇ ਪਾਸਵਰਡ</string> <string name="preferences_passwords_logins_and_passwords">ਲਾਗਇਨ ਅਤੇ ਪਾਸਵਰਡ</string>
<!-- Preference for managing the saving of logins and passwords in Fenix --> <!-- Preference for managing the saving of logins and passwords in Fenix -->
@ -1316,8 +1366,12 @@
<string name="logins_site_copied">ਸਾਈਟ ਨੂੰ ਕਲਿੱਪਬੋਰਡ ਲਈ ਕਾਪੀ ਕੀਤਾ</string> <string name="logins_site_copied">ਸਾਈਟ ਨੂੰ ਕਲਿੱਪਬੋਰਡ ਲਈ ਕਾਪੀ ਕੀਤਾ</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">ਪਾਸਵਰਡ ਨੂੰ ਕਾਪੀ ਕਰੋ</string> <string name="saved_logins_copy_password">ਪਾਸਵਰਡ ਨੂੰ ਕਾਪੀ ਕਰੋ</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">ਪਾਸਵਰਡ ਨੂੰ ਮਿਟਾਓ</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">ਵਰਤੋਂਕਾਰ-ਨਾਂ ਨੂੰ ਕਾਪੀ ਕਰੋ</string> <string name="saved_login_copy_username">ਵਰਤੋਂਕਾਰ-ਨਾਂ ਨੂੰ ਕਾਪੀ ਕਰੋ</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">ਵਰਤੋਂਕਾਰ-ਨਾਂ ਨੂੰ ਮਟਾਓ</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">ਸਾਈਟ ਨੂੰ ਕਾਪੀ ਕਰੋ</string> <string name="saved_login_copy_site">ਸਾਈਟ ਨੂੰ ਕਾਪੀ ਕਰੋ</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1473,7 +1527,7 @@
<string name="saved_login_duplicate">ਉਸ ਵਰਤੋਂਕਾਰ ਨਾਲ ਲਾਗਇਨ ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦ ਹੈ</string> <string name="saved_login_duplicate">ਉਸ ਵਰਤੋਂਕਾਰ ਨਾਲ ਲਾਗਇਨ ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦ ਹੈ</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">ਹੋਰ ਡਿਵਾਈਸ ਨਾਲ ਕਨੈਕਟ ਕਰੋ।</string> <string name="synced_tabs_connect_another_device">ਹੋਰ ਡਿਵਾਈਸ ਨਾਲ ਕਨੈਕਟ ਕਰੋ।</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">ਮੁੜ-ਪ੍ਰਮਾਣਿਤ ਕਰੋ।</string> <string name="synced_tabs_reauth">ਮੁੜ-ਪ੍ਰਮਾਣਿਤ ਕਰੋ।</string>
@ -1486,12 +1540,29 @@
<!-- Text displayed on a button in the synced tabs screen to link users to sign in when a user is not signed in to Firefox Sync --> <!-- Text displayed on a button in the synced tabs screen to link users to sign in when a user is not signed in to Firefox Sync -->
<string name="synced_tabs_sign_in_button">ਸਿੰਕ ਕਰਨ ਲਈ ਸਾਈਨ ਇਨ ਕਰੋ</string> <string name="synced_tabs_sign_in_button">ਸਿੰਕ ਕਰਨ ਲਈ ਸਾਈਨ ਇਨ ਕਰੋ</string>
<!-- The text displayed when a synced device has no tabs to show in the list of Synced Tabs. -->
<string name="synced_tabs_no_open_tabs">ਕੋਈ ਖੁੱਲ੍ਹੀ ਟੈਬ ਨਹੀਂ</string>
<!-- Top Sites --> <!-- Top Sites -->
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">ਸਿਖਰਲੀ ਸਾਈਟ ਦੀ ਲਿਮਟ ਅੱਪੜੀ</string> <string name="top_sites_max_limit_title">ਸਿਖਰਲੀ ਸਾਈਟ ਦੀ ਲਿਮਟ ਅੱਪੜੀ</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">ਨਵੀਂ ਸਿਖਰਲੀ ਸਾਈਟ ਜੋੜਨ ਲਈ ਪਹਿਲਾਂ ਇੱਕ ਨੂੰ ਹਟਾਓ। ਸਾਈਟ ਨੂੰ ਲੰਮਾ ਸਮਾਂ ਦਬਾਓ ਤੇ ਹਟਾਓ ਨੂੰ ਚੁਣੋ।</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">ਠੀਕ ਹੈ, ਸਮਝ ਗਏ</string> <string name="top_sites_max_limit_confirmation_button">ਠੀਕ ਹੈ, ਸਮਝ ਗਏ</string>
<!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">ਹਟਾਓ</string>
<!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">%s ਤੋਂ ਪੂਰਾ ਪੂਰਾ ਫਾਇਦਾ ਲਵੋ।</string>
<!-- Deprecated: No Open Tabs Message Header -->
<string name="no_collections_header1">ਚੀਜ਼ਾਂ ਇਕੱਤਰ ਕਰੋ, ਜੋ ਤੁਹਾਡੇ ਲਈ ਜ਼ਰੂਰੀ ਹਨ</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">ਬਾਅਦ ਵਿੱਚ ਫ਼ੌਰੀ ਵਰਤਣ ਲਈ ਰਲਦੀਆਂ ਖੋਜਾਂ, ਸਾਈਤਾਂ ਤੇ ਟੈਬਾਂ ਨੂੰ ਗਰੁੱਪ ਵਿੱਚ ਇਕੱਠੀਆਂ ਕਰੋ।</string>
<!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">ਤੁਸੀਂ ਇਸ ਫ਼ੋਨ ‘ਤੇ ਹੋਰ ਫਾਇਰਫਾਕਸ ਬਰਾਊਜ਼ਰ ਉੱਤੇ %s ਵਜੋਂ ਸਾਈਨ ਇਨ ਹੋ। ਕੀ ਤੁਸੀਂ ਇਸ ਖਾਤੇ ਨਾਲ ਸਾਈਨ ਇਨ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">ਤੁਸੀਂ ਇਸ ਵੈੱਬਸਾਈਟ ਨੂੰ ਸੌਖੀ ਤਰ੍ਹਾਂ ਆਪਣੀ ਫ਼ੋਨ ਦੀ ਮੁੱਖ ਸਕਰੀਨ ‘ਤੇ ਜੋੜ ਸਕਦੇ ਹੋ ਤਾਂ ਕਿ ਐਪ ਵਰਗੇ ਤਜਰਬੇ ਵਾਸਤੇ ਤੁਰੰਤ ਪਹੁੰਚ ਅਤੇ ਤੇਜ਼ੀ ਨਾਲ ਬਰਾਊਜ਼ ਕਰਨ ਲਈ ਵਰਤਿਆ ਜਾ ਸਕੇ।</string>
</resources> </resources>

@ -270,6 +270,8 @@
<string name="preferences_open_links_in_a_private_tab">Otwieranie odnośników w prywatnej karcie</string> <string name="preferences_open_links_in_a_private_tab">Otwieranie odnośników w prywatnej karcie</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">Zezwalanie na zrzuty ekranu w trybie prywatnym</string> <string name="preferences_allow_screenshots_in_private_mode">Zezwalanie na zrzuty ekranu w trybie prywatnym</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">Zezwolenie spowoduje, że karty w trybie prywatnym także będą widoczne, kiedy otwartych jest wiele aplikacji</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">Dodaj skrót do trybu prywatnego</string> <string name="preferences_add_private_browsing_shortcut">Dodaj skrót do trybu prywatnego</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -290,6 +292,8 @@
<string name="preferences_theme">Motyw</string> <string name="preferences_theme">Motyw</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Strona startowa</string> <string name="preferences_home">Strona startowa</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Gesty</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Dostosuj</string> <string name="preferences_customize">Dostosuj</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -327,6 +331,8 @@
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Ustawienia konta</string> <string name="preferences_account_settings">Ustawienia konta</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Automatyczne uzupełnianie adresów</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Otwieranie odnośników w aplikacjach</string> <string name="preferences_open_links_in_apps">Otwieranie odnośników w aplikacjach</string>
@ -465,6 +471,16 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">Motyw urządzenia</string> <string name="preference_follow_device_theme">Motyw urządzenia</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">Pociągnięcie w dół odświeża</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">Przewinięcie ukrywa pasek narzędzi</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">Przeciągnięcie paska narzędzi w bok przełącza karty</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">Przeciągnięcie paska narzędzi do góry wyświetla otwarte karty</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Sesje</string> <string name="library_sessions">Sesje</string>
@ -1060,7 +1076,7 @@
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">Zalogowano jako %s w innej przeglądarce Firefox na tym telefonie. Czy chcesz się zalogować na tym koncie?</string> <string name="onboarding_firefox_account_auto_signin_header_3">Zalogowano jako %s w innej przeglądarce Firefox na tym urządzeniu. Czy chcesz się zalogować na tym koncie?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Tak, zaloguj mnie</string> <string name="onboarding_firefox_account_auto_signin_confirm">Tak, zaloguj mnie</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1305,7 +1321,7 @@
<string name="add_to_homescreen_text_placeholder">Nazwa skrótu</string> <string name="add_to_homescreen_text_placeholder">Nazwa skrótu</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Można łatwo dodać tę stronę do ekranu głównego telefonu, aby mieć do niej bezpośredni dostęp i używać jej jak aplikację.</string> <string name="add_to_homescreen_description_2">Można łatwo dodać tę stronę do ekranu głównego urządzenia, aby mieć do niej bezpośredni dostęp i używać jej jak aplikację.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Dane logowania i hasła</string> <string name="preferences_passwords_logins_and_passwords">Dane logowania i hasła</string>
@ -1375,8 +1391,12 @@
<string name="logins_site_copied">Skopiowano witrynę do schowka</string> <string name="logins_site_copied">Skopiowano witrynę do schowka</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Kopiuj hasło</string> <string name="saved_logins_copy_password">Kopiuj hasło</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Wyczyść pole hasła</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Kopiuj nazwę użytkownika</string> <string name="saved_login_copy_username">Kopiuj nazwę użytkownika</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Wyczyść pole nazwy użytkownika</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Kopiuj witrynę</string> <string name="saved_login_copy_site">Kopiuj witrynę</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1533,7 +1553,7 @@
<string name="saved_login_duplicate">Dane logowania z tą nazwą użytkownika już istnieją</string> <string name="saved_login_duplicate">Dane logowania z tą nazwą użytkownika już istnieją</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Połącz inne urządzenie.</string> <string name="synced_tabs_connect_another_device">Połącz inne urządzenie.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Proszę uwierzytelnić się ponownie.</string> <string name="synced_tabs_reauth">Proszę uwierzytelnić się ponownie.</string>
@ -1554,7 +1574,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Osiągnięto limit popularnych stron</string> <string name="top_sites_max_limit_title">Osiągnięto limit popularnych stron</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Aby dodać nową popularną stronę, usuń istniejącą. Przytrzymaj którąś i wybierz „Usuń”.</string> <string name="top_sites_max_limit_content_2">Aby dodać nową popularną stronę, usuń istniejącą. Dotknij i przytrzymaj którąś i wybierz „Usuń”.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">OK</string> <string name="top_sites_max_limit_confirmation_button">OK</string>
@ -1564,7 +1584,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Usuń</string> <string name="remove_home_collection_placeholder_content_description">Usuń</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Zacznij synchronizować zakładki, hasła i nie tylko za pomocą konta Firefoksa.</string> <string name="onboarding_firefox_account_header">Zacznij synchronizować zakładki, hasła i nie tylko za pomocą konta Firefoksa.</string>
@ -1572,4 +1592,9 @@
<string name="no_collections_header1">Zbierz rzeczy, które są dla Ciebie ważne</string> <string name="no_collections_header1">Zbierz rzeczy, które są dla Ciebie ważne</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Połącz ze sobą podobne wyszukiwania, witryny i karty, aby szybciej do nich wracać.</string> <string name="no_collections_description1">Połącz ze sobą podobne wyszukiwania, witryny i karty, aby szybciej do nich wracać.</string>
<!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Zalogowano jako %s w innej przeglądarce Firefox na tym telefonie. Czy chcesz się zalogować na tym koncie?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Można łatwo dodać tę stronę do ekranu głównego telefonu, aby mieć do niej bezpośredni dostęp i używać jej jak aplikację.</string>
</resources> </resources>

@ -326,8 +326,12 @@
<string name="preferences_search_browsing_history">Pesquisar no histórico de navegação</string> <string name="preferences_search_browsing_history">Pesquisar no histórico de navegação</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">Pesquisar nos favoritos</string> <string name="preferences_search_bookmarks">Pesquisar nos favoritos</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">Pesquisar em abas sincronizadas</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Configurações da conta</string> <string name="preferences_account_settings">Configurações da conta</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Completar URLs automaticamente</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Abrir links em aplicativos</string> <string name="preferences_open_links_in_apps">Abrir links em aplicativos</string>
@ -1575,7 +1579,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Remover</string> <string name="remove_home_collection_placeholder_content_description">Remover</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Aproveite ao máximo o %s.</string> <string name="onboarding_firefox_account_header">Aproveite ao máximo o %s.</string>

@ -268,6 +268,8 @@
<string name="preferences_open_links_in_a_private_tab">Abrir ligações num separador privado</string> <string name="preferences_open_links_in_a_private_tab">Abrir ligações num separador privado</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">Permitir capturas de ecrã na navegação privada</string> <string name="preferences_allow_screenshots_in_private_mode">Permitir capturas de ecrã na navegação privada</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">Se permitido, os separadores privados também ficarão visíveis quando várias aplicações estiverem abertas</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">Adicionar um atalho de navegação privada</string> <string name="preferences_add_private_browsing_shortcut">Adicionar um atalho de navegação privada</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -288,6 +290,8 @@
<string name="preferences_theme">Tema</string> <string name="preferences_theme">Tema</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Início</string> <string name="preferences_home">Início</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Gestos</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Personalizar</string> <string name="preferences_customize">Personalizar</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -323,8 +327,12 @@
<string name="preferences_search_browsing_history">Pesquisar no histórico de navegação</string> <string name="preferences_search_browsing_history">Pesquisar no histórico de navegação</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">Pesquisar marcadores</string> <string name="preferences_search_bookmarks">Pesquisar marcadores</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">Pesquisar separadores sincronizados</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Definições da conta</string> <string name="preferences_account_settings">Definições da conta</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Conclusão automática de endereços</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Abrir ligações em aplicações</string> <string name="preferences_open_links_in_apps">Abrir ligações em aplicações</string>
<!-- Preference for open download with an external download manager app --> <!-- Preference for open download with an external download manager app -->
@ -464,6 +472,16 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">Seguir tema do dispositivo</string> <string name="preference_follow_device_theme">Seguir tema do dispositivo</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">Puxe para atualizar</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">Desloque para ocultar a barra de ferramentas</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">Deslize a barra de ferramentas para o lado para alternar entre separadores</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">Deslize a barra de ferramentas para cima para abrir separadores</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Sessões</string> <string name="library_sessions">Sessões</string>
@ -1055,7 +1073,7 @@
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">Está autenticado como %s noutro navegador Firefox neste telefone. Deseja iniciar sessão com esta conta?</string> <string name="onboarding_firefox_account_auto_signin_header_3">Está autenticado como %s noutro navegador Firefox neste dispositivo. Deseja iniciar sessão com esta conta?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Sim, iniciar sessão</string> <string name="onboarding_firefox_account_auto_signin_confirm">Sim, iniciar sessão</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1303,7 +1321,7 @@
<string name="add_to_homescreen_text_placeholder">Nome do atalho</string> <string name="add_to_homescreen_text_placeholder">Nome do atalho</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Pode adicionar facilmente este site ao seu ecrã inicial do seu telemóvel para ter acesso instantâneo e navegar mais rápido, com uma experiência semelhante ao de uma aplicação.</string> <string name="add_to_homescreen_description_2">Pode adicionar facilmente este site ao ecrã inicial do seu dispositivo para ter acesso instantâneo e navegar mais rápido, com uma experiência semelhante ao de uma aplicação.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Credenciais e palavras-passe</string> <string name="preferences_passwords_logins_and_passwords">Credenciais e palavras-passe</string>
@ -1375,8 +1393,12 @@
<string name="logins_site_copied">Site copiado para a área de transferência</string> <string name="logins_site_copied">Site copiado para a área de transferência</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Copiar palavra-passe</string> <string name="saved_logins_copy_password">Copiar palavra-passe</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Limpar palavra-passe</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Copiar nome de utilizador</string> <string name="saved_login_copy_username">Copiar nome de utilizador</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Limpar nome de utilizador</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Copiar site</string> <string name="saved_login_copy_site">Copiar site</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1532,7 +1554,7 @@
<string name="saved_login_duplicate">Já existe uma credencial com este nome.</string> <string name="saved_login_duplicate">Já existe uma credencial com este nome.</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Associar outro dispositivo.</string> <string name="synced_tabs_connect_another_device">Associar outro dispositivo.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Por favor, autentique-se novamente.</string> <string name="synced_tabs_reauth">Por favor, autentique-se novamente.</string>
@ -1552,7 +1574,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Atingido o limite dos sites principais</string> <string name="top_sites_max_limit_title">Atingido o limite dos sites principais</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Para poder adicionar um novo site principal, remova outro. Pressione e aguarde sob o site pretendido e selecione remover.</string> <string name="top_sites_max_limit_content_2">Para poder adicionar um novo site principal, remova um. Toque e aguarde sobre o site e selecione remover.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">OK, percebi</string> <string name="top_sites_max_limit_confirmation_button">OK, percebi</string>
@ -1562,7 +1584,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Remover</string> <string name="remove_home_collection_placeholder_content_description">Remover</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Tire o máximo proveito do %s.</string> <string name="onboarding_firefox_account_header">Tire o máximo proveito do %s.</string>
@ -1570,4 +1592,9 @@
<string name="no_collections_header1">Colecione as coisas que são importantes para si</string> <string name="no_collections_header1">Colecione as coisas que são importantes para si</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Agrupe pesquisas, sites e separadores semelhantes para um acesso rápido mais tarde.</string> <string name="no_collections_description1">Agrupe pesquisas, sites e separadores semelhantes para um acesso rápido mais tarde.</string>
</resources> <!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Está autenticado como %s noutro navegador Firefox neste telefone. Deseja iniciar sessão com esta conta?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Pode adicionar facilmente este site ao seu ecrã inicial do seu telemóvel para ter acesso instantâneo e navegar mais rápido, com uma experiência semelhante ao de uma aplicação.</string>
</resources>

@ -281,7 +281,7 @@
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">Разрешить скриншоты при приватном просмотре</string> <string name="preferences_allow_screenshots_in_private_mode">Разрешить скриншоты при приватном просмотре</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option --> <!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">Если разрешено, приватные вкладки будут видны, когда открыто несколько приложений.</string> <string name="preferences_screenshots_in_private_mode_disclaimer">В случае, если разрешено, приватные вкладки будут видны при просмотре нескольких приложений</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">Добавить ярлык приватного просмотра</string> <string name="preferences_add_private_browsing_shortcut">Добавить ярлык приватного просмотра</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -342,10 +342,12 @@
<string name="preferences_search_browsing_history">Поиск по истории сёрфинга</string> <string name="preferences_search_browsing_history">Поиск по истории сёрфинга</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">Поиск закладок</string> <string name="preferences_search_bookmarks">Поиск закладок</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">Поиск облачных вкладок</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Настройки Аккаунта</string> <string name="preferences_account_settings">Настройки Аккаунта</string>
<!-- Preference for enabling url autocomplete--> <!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Автозаполнение URL-адресов</string> <string name="preferences_enable_autocomplete_urls">Автозаполнение URL</string>
<!-- Preference for add-ons custom source --> <!-- Preference for add-ons custom source -->
<string name="preferences_addons_customization">Настройка источника пользовательских дополнений</string> <string name="preferences_addons_customization">Настройка источника пользовательских дополнений</string>
<!-- Placeholder text shown in the search bar before a user enters text --> <!-- Placeholder text shown in the search bar before a user enters text -->
@ -489,17 +491,17 @@
<string name="preference_auto_battery_theme">Учитывать режим экономии батареи</string> <string name="preference_auto_battery_theme">Учитывать режим экономии батареи</string>
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">Использовать тему устройства</string> <string name="preference_follow_device_theme">Использовать тему устройства</string>
<!-- Gestures Preferences--> <!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage --> <!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">Потянуть, чтобы обновить</string> <string name="preference_gestures_website_pull_to_refresh">Потяните, чтобы обновить</string>
<!-- Preference for using the dynamic toolbar --> <!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">Прокрутить, чтобы скрыть панель инструментов</string> <string name="preference_gestures_dynamic_toolbar">Прокрутите страницу, чтобы скрыть панель инструментов</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar --> <!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">Провести по панели инструментов в сторону для переключения вкладок</string> <string name="preference_gestures_swipe_toolbar_switch_tabs">Проведите в сторону по панели инструментов, чтобы переключить вкладки</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar--> <!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">Провести по панели инструментов вверх, чтобы открыть вкладки</string> <string name="preference_gestures_swipe_toolbar_show_tabs">Проведите вверх по панели инструментов, чтобы открыть вкладки</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Сессии</string> <string name="library_sessions">Сессии</string>
@ -1113,7 +1115,7 @@
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">В другом браузере Firefox на этом устройстве вы вошли как %s. Вы хотите авторизоваться с помощью этого аккаунта?</string> <string name="onboarding_firefox_account_auto_signin_header_3">В другом браузере Firefox на этом устройстве вы вошли как %s. Вы хотите авторизоваться с помощью этого аккаунта?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Да, авторизоваться</string> <string name="onboarding_firefox_account_auto_signin_confirm">Да, авторизоваться</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1370,7 +1372,7 @@
<string name="add_to_homescreen_text_placeholder">Название ярлыка</string> <string name="add_to_homescreen_text_placeholder">Название ярлыка</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Вы можете легко добавить этот веб-сайт на домашний экран вашего телефона, чтобы иметь к нему мгновенный доступ и сёрфить быстрее со скоростью нативного приложения.</string> <string name="add_to_homescreen_description_2">Вы можете легко добавить этот веб-сайт на домашний экран вашего устройства, чтобы иметь к нему мгновенный доступ и сёрфить быстрее со скоростью нативного приложения.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Логины и пароли</string> <string name="preferences_passwords_logins_and_passwords">Логины и пароли</string>
@ -1604,7 +1606,7 @@
<string name="saved_login_duplicate">Логин с таким именем пользователя уже существует</string> <string name="saved_login_duplicate">Логин с таким именем пользователя уже существует</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Подключить другое устройство.</string> <string name="synced_tabs_connect_another_device">Подключить другое устройство.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Пожалуйста, авторизуйтесь повторно.</string> <string name="synced_tabs_reauth">Пожалуйста, авторизуйтесь повторно.</string>
@ -1624,7 +1626,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Достигнут лимит топа сайтов</string> <string name="top_sites_max_limit_title">Достигнут лимит топа сайтов</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Чтобы добавить новый сайт в топ, удалите другой. Долгим нажатием по нему откройте меню и нажмите удалить.</string> <string name="top_sites_max_limit_content_2">Чтобы добавить новый сайт в топ, удалите другой. Нажмите и удерживайте карточку с сайтом, затем откройте меню и нажмите удалить.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">OK, понятно</string> <string name="top_sites_max_limit_confirmation_button">OK, понятно</string>
@ -1664,4 +1666,9 @@
<string name="no_collections_header1">Собирайте то, что важно для вас</string> <string name="no_collections_header1">Собирайте то, что важно для вас</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Объединяйте похожие запросы, сайты и вкладки, для быстрого доступа к ним в будущем.</string> <string name="no_collections_description1">Объединяйте похожие запросы, сайты и вкладки, для быстрого доступа к ним в будущем.</string>
</resources> <!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">В другом браузере Firefox на этом устройстве вы вошли как %s. Вы хотите авторизоваться с помощью этого аккаунта?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Вы можете легко добавить этот веб-сайт на домашний экран вашего телефона, чтобы иметь к нему мгновенный доступ и сёрфить быстрее со скоростью нативного приложения.</string>
</resources>

@ -139,7 +139,7 @@
<!-- Browser menu button that opens a user's library --> <!-- Browser menu button that opens a user's library -->
<string name="browser_menu_library">Knižnica</string> <string name="browser_menu_library">Knižnica</string>
<!-- Browser menu toggle that requests a desktop site --> <!-- Browser menu toggle that requests a desktop site -->
<string name="browser_menu_desktop_site">Verzia stránky pre stolné počítače</string> <string name="browser_menu_desktop_site">Web pre počítače</string>
<!-- Browser menu toggle that adds a shortcut to the site on the device home screen. --> <!-- Browser menu toggle that adds a shortcut to the site on the device home screen. -->
<string name="browser_menu_add_to_homescreen">Pridať na úvodnú obrazovku</string> <string name="browser_menu_add_to_homescreen">Pridať na úvodnú obrazovku</string>
<!-- Browser menu toggle that installs a Progressive Web App shortcut to the site on the device home screen. --> <!-- Browser menu toggle that installs a Progressive Web App shortcut to the site on the device home screen. -->
@ -292,6 +292,8 @@
<string name="preferences_theme">Téma vzhľadu</string> <string name="preferences_theme">Téma vzhľadu</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Domov</string> <string name="preferences_home">Domov</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Gestá</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Prispôsobenie</string> <string name="preferences_customize">Prispôsobenie</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -329,6 +331,8 @@
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Nastavenia účtu</string> <string name="preferences_account_settings">Nastavenia účtu</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Automaticky dokončovať URL adresy</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Otvárať odkazy v aplikáciách</string> <string name="preferences_open_links_in_apps">Otvárať odkazy v aplikáciách</string>
@ -433,7 +437,7 @@
<!-- Turn On Sync Preferences --> <!-- Turn On Sync Preferences -->
<!-- Header of the Turn on Sync preference view --> <!-- Header of the Turn on Sync preference view -->
<string name="preferences_sync">Zapnite si synchronizáciu</string> <string name="preferences_sync">Zapnúť synchronizáciu</string>
<!-- Preference for pairing --> <!-- Preference for pairing -->
<string name="preferences_sync_pair">Naskenujte párovací kód zobrazený vo Firefoxe na počítači</string> <string name="preferences_sync_pair">Naskenujte párovací kód zobrazený vo Firefoxe na počítači</string>
<!-- Preference for account login --> <!-- Preference for account login -->
@ -1058,10 +1062,6 @@
<string name="onboarding_account_sign_in_header">S účtom Firefox môžete synchronizovať záložky, históriu prehliadania a omnoho viac.</string> <string name="onboarding_account_sign_in_header">S účtom Firefox môžete synchronizovať záložky, históriu prehliadania a omnoho viac.</string>
<!-- Text for the button to learn more about signing in to your Firefox account --> <!-- Text for the button to learn more about signing in to your Firefox account -->
<string name="onboarding_manual_sign_in_learn_more">Ďalšie informácie</string> <string name="onboarding_manual_sign_in_learn_more">Ďalšie informácie</string>
<!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">V inom Firefoxe na tomto telefóne ste prihlásení ako %s. Chceli by ste sa prihlásiť s týmto účtom?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Prihlásiť sa</string> <string name="onboarding_firefox_account_auto_signin_confirm">Prihlásiť sa</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1305,9 +1305,6 @@
<!-- Placeholder text for the TextView in the Add to Homescreen dialog --> <!-- Placeholder text for the TextView in the Add to Homescreen dialog -->
<string name="add_to_homescreen_text_placeholder">Názov skratky</string> <string name="add_to_homescreen_text_placeholder">Názov skratky</string>
<!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Túto webovú stránku si môžete jednoducho pridať na svoju úvodnú obrazovku a mať tak okamžitý prístup k prehliadaniu.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Prihlasovacie údaje</string> <string name="preferences_passwords_logins_and_passwords">Prihlasovacie údaje</string>
<!-- Preference for managing the saving of logins and passwords in Fenix --> <!-- Preference for managing the saving of logins and passwords in Fenix -->
@ -1376,8 +1373,12 @@
<string name="logins_site_copied">Stránka bola skopírovaná do schránky</string> <string name="logins_site_copied">Stránka bola skopírovaná do schránky</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Kopírovať heslo</string> <string name="saved_logins_copy_password">Kopírovať heslo</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Vymazať heslo</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Kopírovať používateľské meno</string> <string name="saved_login_copy_username">Kopírovať používateľské meno</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Vymazať používateľské meno</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Kopírovať stránku</string> <string name="saved_login_copy_site">Kopírovať stránku</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1532,7 +1533,7 @@
<string name="saved_login_duplicate">Prihlasovacie údaje s týmto používateľským menom už existujú</string> <string name="saved_login_duplicate">Prihlasovacie údaje s týmto používateľským menom už existujú</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Pripojiť ďalšie zariadenie.</string> <string name="synced_tabs_connect_another_device">Pripojiť ďalšie zariadenie.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Prosím, znova overte totožnosť.</string> <string name="synced_tabs_reauth">Prosím, znova overte totožnosť.</string>
@ -1553,7 +1554,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Bol dosiahnutý limit top stránok</string> <string name="top_sites_max_limit_title">Bol dosiahnutý limit top stránok</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Ak chcete pridať novú top stránku, musíte jednu odstrániť. Podržte na nej prst a vyberte možnosť Odstrániť.</string> <string name="top_sites_max_limit_content_2">Ak chcete pridať novú top stránku, musíte jednu odstrániť. Podržte na nej prst a vyberte možnosť Odstrániť.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">Ok, rozumiem</string> <string name="top_sites_max_limit_confirmation_button">Ok, rozumiem</string>
@ -1563,7 +1564,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Odstrániť</string> <string name="remove_home_collection_placeholder_content_description">Odstrániť</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Využite %s naplno.</string> <string name="onboarding_firefox_account_header">Využite %s naplno.</string>
@ -1571,4 +1572,9 @@
<string name="no_collections_header1">Zbierajte veci, na ktorých vám záleží</string> <string name="no_collections_header1">Zbierajte veci, na ktorých vám záleží</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Zoskupte podobné vyhľadávania, weby a karty, aby ste k nim mali rýchly prístup neskôr.</string> <string name="no_collections_description1">Zoskupte podobné vyhľadávania, weby a karty, aby ste k nim mali rýchly prístup neskôr.</string>
</resources> <!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">V inom Firefoxe na tomto telefóne ste prihlásení ako %s. Chceli by ste sa prihlásiť s týmto účtom?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Túto webovú stránku si môžete jednoducho pridať na svoju úvodnú obrazovku a mať tak okamžitý prístup k prehliadaniu.</string>
</resources>

@ -288,6 +288,8 @@
<string name="preferences_theme">Tema</string> <string name="preferences_theme">Tema</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Domača stran</string> <string name="preferences_home">Domača stran</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Poteze</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Prilagodi</string> <string name="preferences_customize">Prilagodi</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -467,6 +469,10 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">Sledi temi naprave</string> <string name="preference_follow_device_theme">Sledi temi naprave</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">Povlecite za osvežitev</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Seje</string> <string name="library_sessions">Seje</string>
@ -1061,7 +1067,7 @@
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">V drugem brskalniku Firefox na tem telefonu ste prijavljeni kot %s. Ali se želite prijaviti s tem računom?</string> <string name="onboarding_firefox_account_auto_signin_header_3">V drugem brskalniku Firefox na tej napravi ste prijavljeni kot %s. Ali se želite prijaviti s tem računom?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Da, prijavi me</string> <string name="onboarding_firefox_account_auto_signin_confirm">Da, prijavi me</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1308,7 +1314,7 @@
<string name="add_to_homescreen_text_placeholder">Ime bližnjice</string> <string name="add_to_homescreen_text_placeholder">Ime bližnjice</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">To stran lahko preprosto dodate na svoj domači zaslon telefona za lažji dostop in hitrejše brskanje v načinu, podobnem aplikaciji.</string> <string name="add_to_homescreen_description_2">To stran lahko preprosto dodate na svoj domači zaslon naprave za lažji dostop in hitrejše brskanje v načinu, podobnem aplikaciji.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Prijave in gesla</string> <string name="preferences_passwords_logins_and_passwords">Prijave in gesla</string>
@ -1378,8 +1384,12 @@
<string name="logins_site_copied">Spletno mesto kopirano v odložišče</string> <string name="logins_site_copied">Spletno mesto kopirano v odložišče</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Kopiraj geslo</string> <string name="saved_logins_copy_password">Kopiraj geslo</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Počisti geslo</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Kopiraj uporabniško ime</string> <string name="saved_login_copy_username">Kopiraj uporabniško ime</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Počisti uporabniško ime</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Kopiraj spletno mesto</string> <string name="saved_login_copy_site">Kopiraj spletno mesto</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1540,7 +1550,7 @@
<string name="saved_login_duplicate">Prijava s tem uporabniškim imenom že obstaja</string> <string name="saved_login_duplicate">Prijava s tem uporabniškim imenom že obstaja</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Poveži drugo napravo.</string> <string name="synced_tabs_connect_another_device">Poveži drugo napravo.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Ponovno se prijavite.</string> <string name="synced_tabs_reauth">Ponovno se prijavite.</string>
@ -1561,7 +1571,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Omejitev glavnih strani je dosežena</string> <string name="top_sites_max_limit_title">Omejitev glavnih strani je dosežena</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Če želite dodati novo glavno stran, eno odstranite. Podržite prst na njej in izberite &quot;Odstrani&quot;.</string> <string name="top_sites_max_limit_content_2">Če želite dodati novo glavno stran, eno odstranite. Podržite prst na njej in izberite &quot;Odstrani&quot;.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">V redu, razumem</string> <string name="top_sites_max_limit_confirmation_button">V redu, razumem</string>
@ -1571,7 +1581,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Odstrani</string> <string name="remove_home_collection_placeholder_content_description">Odstrani</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Kar najbolje izkoristite %s.</string> <string name="onboarding_firefox_account_header">Kar najbolje izkoristite %s.</string>
@ -1579,4 +1589,9 @@
<string name="no_collections_header1">Zbirajte stvari, ki vam kaj pomenijo</string> <string name="no_collections_header1">Zbirajte stvari, ki vam kaj pomenijo</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Združite podobna iskanja, spletne strani in zavihke za hitrejši dostop.</string> <string name="no_collections_description1">Združite podobna iskanja, spletne strani in zavihke za hitrejši dostop.</string>
</resources> <!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">V drugem brskalniku Firefox na tem telefonu ste prijavljeni kot %s. Ali se želite prijaviti s tem računom?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">To stran lahko preprosto dodate na svoj domači zaslon telefona za lažji dostop in hitrejše brskanje v načinu, podobnem aplikaciji.</string>
</resources>

@ -266,6 +266,8 @@
<string name="preferences_open_links_in_a_private_tab">Hapi lidhjet në skedë private</string> <string name="preferences_open_links_in_a_private_tab">Hapi lidhjet në skedë private</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">Lejo foto ekrani nën shfletim privat</string> <string name="preferences_allow_screenshots_in_private_mode">Lejo foto ekrani nën shfletim privat</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">Në u lejoftë, skedat private do të jenë të dukshme edhe kur janë hapur aplikacione të shumtë</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">Shtoni shkurtore shfletimi privat</string> <string name="preferences_add_private_browsing_shortcut">Shtoni shkurtore shfletimi privat</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -286,6 +288,8 @@
<string name="preferences_theme">Temë</string> <string name="preferences_theme">Temë</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Kreu</string> <string name="preferences_home">Kreu</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Gjeste</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Përshtateni</string> <string name="preferences_customize">Përshtateni</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -322,6 +326,8 @@
<string name="preferences_search_bookmarks">Kërkoni te faqerojtësit</string> <string name="preferences_search_bookmarks">Kërkoni te faqerojtësit</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Rregullime llogarie</string> <string name="preferences_account_settings">Rregullime llogarie</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Vetëplotësim URL-sh</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Hapi lidhjet në aplikacione</string> <string name="preferences_open_links_in_apps">Hapi lidhjet në aplikacione</string>
@ -459,6 +465,16 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">Ndiq temën e pajisjes</string> <string name="preference_follow_device_theme">Ndiq temën e pajisjes</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">Tërhiqeni, që të rifreskohet</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">Rrëshqiteni, që të fshihet paneli</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">Fërkojeni panelin anash, që të këmbeni skeda</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">Fërkoni panelin për sipër, që të hapen skeda</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Sesione</string> <string name="library_sessions">Sesione</string>
@ -1050,7 +1066,7 @@
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">Jeni i futur si %s në një tjetër shfletues Firefox në këtë telefon. Doni të hyhet me këtë llogari?</string> <string name="onboarding_firefox_account_auto_signin_header_3">Jeni i futur si %s në një shfletues tjetër Firefox në këtë pajisje. Do të donit të bënit hyrjen me këtë llogari?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Po, futmë</string> <string name="onboarding_firefox_account_auto_signin_confirm">Po, futmë</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1297,7 +1313,7 @@
<string name="add_to_homescreen_text_placeholder">Emër shkurtoreje</string> <string name="add_to_homescreen_text_placeholder">Emër shkurtoreje</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Këtë sajt mund ta shtoni lehtë te skena Kreu e telefonit tuaj, që ta hapni në çast dhe të shfletoni më shpejt, si të ish aplikacion.</string> <string name="add_to_homescreen_description_2">Këtë sajt mund ta shtoni lehtë te skena Kreu e pajisjes tuaj, që ta hapni në çast dhe të shfletoni më shpejt, si të ish aplikacion.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Kredenciale hyrjesh dhe fjalëkalime</string> <string name="preferences_passwords_logins_and_passwords">Kredenciale hyrjesh dhe fjalëkalime</string>
@ -1367,8 +1383,12 @@
<string name="logins_site_copied">Sajti u kopjua në të papastër</string> <string name="logins_site_copied">Sajti u kopjua në të papastër</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Kopjoje fjalëkalimin</string> <string name="saved_logins_copy_password">Kopjoje fjalëkalimin</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Spastroje fjalëkalimin</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Kopjo emër përdoruesi</string> <string name="saved_login_copy_username">Kopjo emër përdoruesi</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Spastroje emrin e përdoruesit</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Kopjo sajtin</string> <string name="saved_login_copy_site">Kopjo sajtin</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1526,7 +1546,7 @@
<string name="saved_login_duplicate">Ka tashmë një palë kredenciale me këtë emër përdoruesi</string> <string name="saved_login_duplicate">Ka tashmë një palë kredenciale me këtë emër përdoruesi</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Lidhni pajisje tjetër.</string> <string name="synced_tabs_connect_another_device">Lidhni pajisje tjetër.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Ju lutemi, ribëni mirëfilltësimin.</string> <string name="synced_tabs_reauth">Ju lutemi, ribëni mirëfilltësimin.</string>
@ -1546,7 +1566,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">U mbërrit te kufi sajtesh</string> <string name="top_sites_max_limit_title">U mbërrit te kufi sajtesh</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Që të shtoni një sajt të ri kryesues, hiqni një të tillë. Mbajeni të shtypur mbi sajtin dhe përzgjidhni Hiqe.</string> <string name="top_sites_max_limit_content_2">Që të shtoni një sajt të ri kryesues, hiqni një të tillë. Prekeni dhe mbajeni të shtypur sajtin dhe përzgjidhni Hiqe.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">OK, e mora vesh</string> <string name="top_sites_max_limit_confirmation_button">OK, e mora vesh</string>
@ -1556,7 +1576,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Hiqe</string> <string name="remove_home_collection_placeholder_content_description">Hiqe</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Përfitoni maksimumin nga %s.</string> <string name="onboarding_firefox_account_header">Përfitoni maksimumin nga %s.</string>
@ -1564,4 +1584,9 @@
<string name="no_collections_header1">Koleksiononi gjërat që kanë rëndësi për ju</string> <string name="no_collections_header1">Koleksiononi gjërat që kanë rëndësi për ju</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Gruponi tok kërkime, sajte dhe skeda të ngjashme, për përdorim të shpejtë më pas.</string> <string name="no_collections_description1">Gruponi tok kërkime, sajte dhe skeda të ngjashme, për përdorim të shpejtë më pas.</string>
<!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Jeni i futur si %s në një tjetër shfletues Firefox në këtë telefon. Doni të hyhet me këtë llogari?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Këtë sajt mund ta shtoni lehtë te skena Kreu e telefonit tuaj, që ta hapni në çast dhe të shfletoni më shpejt, si të ish aplikacion.</string>
</resources> </resources>

@ -330,9 +330,13 @@
<string name="preferences_search_browsing_history">Sök webbläsarhistorik</string> <string name="preferences_search_browsing_history">Sök webbläsarhistorik</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">Sök bokmärken</string> <string name="preferences_search_bookmarks">Sök bokmärken</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">Sök i synkroniserade flikar</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Kontoinställningar</string> <string name="preferences_account_settings">Kontoinställningar</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Autokomplettera URL:ar</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Öppna länkar i appar</string> <string name="preferences_open_links_in_apps">Öppna länkar i appar</string>
@ -1590,7 +1594,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Ta bort</string> <string name="remove_home_collection_placeholder_content_description">Ta bort</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Få ut det mesta av %s.</string> <string name="onboarding_firefox_account_header">Få ut det mesta av %s.</string>

@ -281,6 +281,8 @@
<string name="preferences_theme">అలంకారం</string> <string name="preferences_theme">అలంకారం</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">ముంగిలి</string> <string name="preferences_home">ముంగిలి</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">సైగలు</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">అభిమతీకరణ</string> <string name="preferences_customize">అభిమతీకరణ</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -459,6 +461,10 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">పరికరపు అలంకారాన్ని అనుసరించు</string> <string name="preference_follow_device_theme">పరికరపు అలంకారాన్ని అనుసరించు</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">రిఫ్రెష్ చేయడానికి లాగండి</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">సెషనులు</string> <string name="library_sessions">సెషనులు</string>
@ -1060,10 +1066,6 @@
<string name="onboarding_account_sign_in_header">మీ Firefox ఖాతాతో ఇష్టాంశాలను, సంకేతపదాలను, ఇంకా మరెన్నిటినో సింక్రనించుకోవడం మొదలుపెట్టండి.</string> <string name="onboarding_account_sign_in_header">మీ Firefox ఖాతాతో ఇష్టాంశాలను, సంకేతపదాలను, ఇంకా మరెన్నిటినో సింక్రనించుకోవడం మొదలుపెట్టండి.</string>
<!-- Text for the button to learn more about signing in to your Firefox account --> <!-- Text for the button to learn more about signing in to your Firefox account -->
<string name="onboarding_manual_sign_in_learn_more">ఇంకా తెలుసుకోండి</string> <string name="onboarding_manual_sign_in_learn_more">ఇంకా తెలుసుకోండి</string>
<!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">ఈ ఫోను లోని మరో Firefox విహారిణిలో మీరు %sగా ప్రవేశించారు. మీరు అదే ఖాతాతో ప్రవేశించాలనుకుంటున్నారా?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">అవును, నన్ను ప్రవేశింపజేయి</string> <string name="onboarding_firefox_account_auto_signin_confirm">అవును, నన్ను ప్రవేశింపజేయి</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1313,9 +1315,6 @@
<!-- Placeholder text for the TextView in the Add to Homescreen dialog --> <!-- Placeholder text for the TextView in the Add to Homescreen dialog -->
<string name="add_to_homescreen_text_placeholder">సత్వరమార్గం పేరు</string> <string name="add_to_homescreen_text_placeholder">సత్వరమార్గం పేరు</string>
<!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">తక్షణం చేరుకొని, అనువర్తనం-వంటి అనుభూతితో వేగంగా విహరించడానికి, ఈ వెబ్‌సైటును మీ చరవాణి ముంగిలి తెరకు తేలికగా చేర్చుకోవచ్చు.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">ప్రవేశాలు, సంకేతపదాలు</string> <string name="preferences_passwords_logins_and_passwords">ప్రవేశాలు, సంకేతపదాలు</string>
<!-- Preference for managing the saving of logins and passwords in Fenix --> <!-- Preference for managing the saving of logins and passwords in Fenix -->
@ -1385,8 +1384,12 @@
<string name="logins_site_copied">సైటు క్లిప్‌బోర్డుకి కాపీ అయ్యింది</string> <string name="logins_site_copied">సైటు క్లిప్‌బోర్డుకి కాపీ అయ్యింది</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">సంకేతపదాన్ని కాపీచెయ్యి</string> <string name="saved_logins_copy_password">సంకేతపదాన్ని కాపీచెయ్యి</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">సంకేతపదాన్ని తుడిచివేయి</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">వాడుకరి పేరుని కాపీచెయ్యి</string> <string name="saved_login_copy_username">వాడుకరి పేరుని కాపీచెయ్యి</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">వాడుకరి పేరుని తుడిచివేయి</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">సైటును కాపీచెయ్యి</string> <string name="saved_login_copy_site">సైటును కాపీచెయ్యి</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1542,7 +1545,7 @@
<string name="saved_login_duplicate">ఆ వాడుకరి పేరుతో ఒక ప్రవేశం ఇప్పటికే ఉంది</string> <string name="saved_login_duplicate">ఆ వాడుకరి పేరుతో ఒక ప్రవేశం ఇప్పటికే ఉంది</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">మరొక పరికరాన్ని అనుసంధానించండి.</string> <string name="synced_tabs_connect_another_device">మరొక పరికరాన్ని అనుసంధానించండి.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">దయచేసి పునరధీకరణ చేయండి.</string> <string name="synced_tabs_reauth">దయచేసి పునరధీకరణ చేయండి.</string>
@ -1561,8 +1564,6 @@
<!-- Top Sites --> <!-- Top Sites -->
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">మేటి సైట్ల పరిమితి చేరుకున్నారు</string> <string name="top_sites_max_limit_title">మేటి సైట్ల పరిమితి చేరుకున్నారు</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">కొత్త మేటి సైటును చేర్చడానికి, ఒకదాన్ని తీసివేయండి. సైటు మీద ఎక్కువసేపు తట్టి, తీసివేయిను ఎంచుకోండి.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">సరే, అర్థమయ్యింది</string> <string name="top_sites_max_limit_confirmation_button">సరే, అర్థమయ్యింది</string>
@ -1572,10 +1573,15 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">తొలగించు</string> <string name="remove_home_collection_placeholder_content_description">తొలగించు</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">%s నుండి ఎక్కువగా పొందండి.</string> <string name="onboarding_firefox_account_header">%s నుండి ఎక్కువగా పొందండి.</string>
<!-- Deprecated: No Open Tabs Message Header --> <!-- Deprecated: No Open Tabs Message Header -->
<string name="no_collections_header1">మీకు ముఖ్యమైన విషయాలను సేకరించండి</string> <string name="no_collections_header1">మీకు ముఖ్యమైన విషయాలను సేకరించండి</string>
<!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">ఈ ఫోను లోని మరో Firefox విహారిణిలో మీరు %sగా ప్రవేశించారు. మీరు అదే ఖాతాతో ప్రవేశించాలనుకుంటున్నారా?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">తక్షణం చేరుకొని, అనువర్తనం-వంటి అనుభూతితో వేగంగా విహరించడానికి, ఈ వెబ్‌సైటును మీ చరవాణి ముంగిలి తెరకు తేలికగా చేర్చుకోవచ్చు.</string>
</resources> </resources>

@ -77,16 +77,25 @@
<!-- Text for the negative button --> <!-- Text for the negative button -->
<string name="search_widget_cfr_neg_button_text">ไม่ใช่ตอนนี้</string> <string name="search_widget_cfr_neg_button_text">ไม่ใช่ตอนนี้</string>
<!-- Open in App "contextual feature recommendation" (CFR) -->
<!-- Text for the info message. 'Firefox' intentionally hardcoded here.-->
<string name="open_in_app_cfr_info_message">คุณสามารถตั้งค่าให้ Firefox เปิดลิงก์ในแอปโดยอัตโนมัติได้</string>
<!-- Text for the positive action button --> <!-- Text for the positive action button -->
<string name="open_in_app_cfr_positive_button_text">ไปยังการตั้งค่า</string> <string name="open_in_app_cfr_positive_button_text">ไปยังการตั้งค่า</string>
<!-- Text for the negative action button --> <!-- Text for the negative action button -->
<string name="open_in_app_cfr_negative_button_text">ยกเลิก</string> <string name="open_in_app_cfr_negative_button_text">ยกเลิก</string>
<!-- Text for the info dialog when camera permissions have been denied but user tries to access a camera feature. -->
<string name="camera_permissions_needed_message">จำเป็นต้องมีการเข้าถึงกล้อง ไปที่การตั้งค่า Android แตะสิทธิอนุญาต แล้วแตะอนุญาต</string>
<!-- Text for the positive action button to go to Android Settings to grant permissions. --> <!-- Text for the positive action button to go to Android Settings to grant permissions. -->
<string name="camera_permissions_needed_positive_button_text">ไปยังการตั้งค่า</string> <string name="camera_permissions_needed_positive_button_text">ไปยังการตั้งค่า</string>
<!-- Text for the negative action button to dismiss the dialog. --> <!-- Text for the negative action button to dismiss the dialog. -->
<string name="camera_permissions_needed_negative_button_text">ยกเลิก</string> <string name="camera_permissions_needed_negative_button_text">ยกเลิก</string>
<!-- Text for the banner message to tell users about our auto close feature. -->
<string name="tab_tray_close_tabs_banner_message">ตั้งค่าแท็บที่เปิดอยู่ให้ปิดโดยอัตโนมัติที่ไม่ได้เข้าดูในวัน สัปดาห์ หรือเดือนที่ผ่านมา</string>
<!-- Text for the positive action button to go to Settings for auto close tabs. -->
<string name="tab_tray_close_tabs_banner_positive_button_text">ดูตัวเลือก</string>
<!-- Text for the negative action button to dismiss the Close Tabs Banner. --> <!-- Text for the negative action button to dismiss the Close Tabs Banner. -->
<string name="tab_tray_close_tabs_banner_negative_button_text">ยกเลิก</string> <string name="tab_tray_close_tabs_banner_negative_button_text">ยกเลิก</string>
@ -258,6 +267,8 @@
<string name="preferences_open_links_in_a_private_tab">เปิดลิงก์ในแท็บส่วนตัว</string> <string name="preferences_open_links_in_a_private_tab">เปิดลิงก์ในแท็บส่วนตัว</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">อนุญาตภาพหน้าจอในการเรียกดูแบบส่วนตัว</string> <string name="preferences_allow_screenshots_in_private_mode">อนุญาตภาพหน้าจอในการเรียกดูแบบส่วนตัว</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">ถ้าอนุญาต แท็บส่วนตัวจะปรากฏให้เห็นเมื่อมีหลายแอปที่เปิดอยู่</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">เพิ่มทางลัดการเรียกดูแบบส่วนตัว</string> <string name="preferences_add_private_browsing_shortcut">เพิ่มทางลัดการเรียกดูแบบส่วนตัว</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -278,6 +289,8 @@
<string name="preferences_theme">ชุดตกแต่ง</string> <string name="preferences_theme">ชุดตกแต่ง</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">หน้าแรก</string> <string name="preferences_home">หน้าแรก</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">ท่าทาง</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">ปรับแต่ง</string> <string name="preferences_customize">ปรับแต่ง</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -314,6 +327,8 @@
<string name="preferences_search_bookmarks">ค้นหาที่คั่นหน้า</string> <string name="preferences_search_bookmarks">ค้นหาที่คั่นหน้า</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">การตั้งค่าบัญชี</string> <string name="preferences_account_settings">การตั้งค่าบัญชี</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">เติม URL อัตโนมัติ</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">เปิดลิงก์ในแอป</string> <string name="preferences_open_links_in_apps">เปิดลิงก์ในแอป</string>
@ -451,6 +466,16 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">ตามชุดตกแต่งอุปกรณ์</string> <string name="preference_follow_device_theme">ตามชุดตกแต่งอุปกรณ์</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">ดึงเพื่อรีเฟรช</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">เลื่อนเพื่อซ่อนแถบเครื่องมือ</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">ปัดแถบเครื่องมือไปด้านข้างเพื่อสลับแท็บ</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">ปัดแถบเครื่องมือไปด้านบนเพื่อเปิดแท็บ</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">วาระ</string> <string name="library_sessions">วาระ</string>
@ -785,6 +810,8 @@
<string name="collections_header">ชุดสะสม</string> <string name="collections_header">ชุดสะสม</string>
<!-- Content description (not visible, for screen readers etc.): Opens the collection menu when pressed --> <!-- Content description (not visible, for screen readers etc.): Opens the collection menu when pressed -->
<string name="collection_menu_button_content_description">เมนูชุดสะสม</string> <string name="collection_menu_button_content_description">เมนูชุดสะสม</string>
<!-- Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description2">รวบรวมสิ่งที่สำคัญต่อคุณ\nรวมกลุ่มการค้นหา ไซต์ และแท็บที่คล้ายกันให้อยู่ด้วยกันเพื่อให้เข้าถึงได้อย่างรวดเร็วในภายหลัง</string>
<!-- Title for the "select tabs" step of the collection creator --> <!-- Title for the "select tabs" step of the collection creator -->
<string name="create_collection_select_tabs">เลือกแท็บ</string> <string name="create_collection_select_tabs">เลือกแท็บ</string>
<!-- Title for the "select collection" step of the collection creator --> <!-- Title for the "select collection" step of the collection creator -->
@ -1031,12 +1058,14 @@
<string name="onboarding_whats_new_description">มีคำถามเกี่ยวกับ %s ที่ออกแบบใหม่หรือไม่? ต้องการรู้ว่ามีอะไรเปลี่ยนไปบ้างหรือไม่?</string> <string name="onboarding_whats_new_description">มีคำถามเกี่ยวกับ %s ที่ออกแบบใหม่หรือไม่? ต้องการรู้ว่ามีอะไรเปลี่ยนไปบ้างหรือไม่?</string>
<!-- text for underlined clickable link that is part of "what's new" onboarding card description that links to an FAQ --> <!-- text for underlined clickable link that is part of "what's new" onboarding card description that links to an FAQ -->
<string name="onboarding_whats_new_description_linktext">พบคำตอบได้ที่นี่</string> <string name="onboarding_whats_new_description_linktext">พบคำตอบได้ที่นี่</string>
<!-- text for the Firefox account onboarding sign in card header -->
<string name="onboarding_account_sign_in_header">เริ่มซิงค์ที่คั่นหน้า รหัสผ่าน และอื่น ๆ ด้วยบัญชี Firefox ของคุณ</string>
<!-- Text for the button to learn more about signing in to your Firefox account --> <!-- Text for the button to learn more about signing in to your Firefox account -->
<string name="onboarding_manual_sign_in_learn_more">เรียนรู้เพิ่มเติม</string> <string name="onboarding_manual_sign_in_learn_more">เรียนรู้เพิ่มเติม</string>
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">คุณลงชื่อเข้าในชื่อ %s บนเบราว์เซอร์ Firefox อื่นบนโทรศัพท์นี้ คุณต้องการลงชื่อเข้าด้วยบัญชีนี้หรือไม่?</string> <string name="onboarding_firefox_account_auto_signin_header_3">คุณลงชื่อเข้าในชื่อ %s บนเบราว์เซอร์ Firefox อื่นบนอุปกรณ์นี้ คุณต้องการลงชื่อเข้าด้วยบัญชีนี้หรือไม่?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">ใช่ ให้ฉันลงชื่อเข้า</string> <string name="onboarding_firefox_account_auto_signin_confirm">ใช่ ให้ฉันลงชื่อเข้า</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1280,7 +1309,7 @@
<string name="add_to_homescreen_text_placeholder">ชื่อทางลัด</string> <string name="add_to_homescreen_text_placeholder">ชื่อทางลัด</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">คุณสามารถเพิ่มเว็บไซต์นี้ลงในหน้าจอหลักของโทรศัพท์ของคุณเพื่อเข้าถึงและเรียกดูได้เร็วขึ้นด้วยประสบการณ์ที่เหมือนแอป</string> <string name="add_to_homescreen_description_2">คุณสามารถเพิ่มเว็บไซต์นี้ลงในหน้าจอหลักของอุปกรณ์ของคุณเพื่อเข้าถึงและเรียกดูได้เร็วขึ้นด้วยประสบการณ์ที่เหมือนแอป</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">การเข้าสู่ระบบและรหัสผ่าน</string> <string name="preferences_passwords_logins_and_passwords">การเข้าสู่ระบบและรหัสผ่าน</string>
@ -1351,8 +1380,12 @@
<string name="logins_site_copied">คัดลอกไซต์ไปยังคลิปบอร์ดแล้ว</string> <string name="logins_site_copied">คัดลอกไซต์ไปยังคลิปบอร์ดแล้ว</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">คัดลอกรหัสผ่าน</string> <string name="saved_logins_copy_password">คัดลอกรหัสผ่าน</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">ล้างรหัสผ่าน</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">คัดลอกชื่อผู้ใช้</string> <string name="saved_login_copy_username">คัดลอกชื่อผู้ใช้</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">ล้างชื่อผู้ใช้</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">คัดลอกไซต์</string> <string name="saved_login_copy_site">คัดลอกไซต์</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1508,7 +1541,7 @@
<string name="saved_login_duplicate">การเข้าสู่ระบบที่มีชื่อผู้ใช้นี้มีอยู่แล้ว</string> <string name="saved_login_duplicate">การเข้าสู่ระบบที่มีชื่อผู้ใช้นี้มีอยู่แล้ว</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">เชื่อมต่ออุปกรณ์อื่น</string> <string name="synced_tabs_connect_another_device">เชื่อมต่ออุปกรณ์อื่น</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
@ -1529,14 +1562,17 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">ถึงขีดจำกัดของไซต์เด่นแล้ว</string> <string name="top_sites_max_limit_title">ถึงขีดจำกัดของไซต์เด่นแล้ว</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">การเพิ่มไซต์ยอดนิยมต้องลบอันเก่าออก แตะค้างที่ไซต์และเลือกลบ</string> <string name="top_sites_max_limit_content_2">การเพิ่มไซต์ยอดนิยมต้องลบอันเก่าออก แตะค้างที่ไซต์และเลือกลบ</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">ตกลง เข้าใจแล้ว</string> <string name="top_sites_max_limit_confirmation_button">ตกลง เข้าใจแล้ว</string>
<!-- Label for the show most visited sites preference -->
<string name="top_sites_toggle_top_frecent_sites">แสดงไซต์ที่เยี่ยมชมบ่อยที่สุด</string>
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">ลบ</string> <string name="remove_home_collection_placeholder_content_description">ลบ</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">รับประโยชน์สูงสุดจาก %s</string> <string name="onboarding_firefox_account_header">รับประโยชน์สูงสุดจาก %s</string>
@ -1544,4 +1580,9 @@
<string name="no_collections_header1">รวบรวมสิ่งที่สำคัญสำหรับคุณ</string> <string name="no_collections_header1">รวบรวมสิ่งที่สำคัญสำหรับคุณ</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">จัดกลุ่มการค้นหา ไซต์ และแท็บที่คล้ายกันเพื่อการเข้าถึงอย่างรวดเร็วในภายหลัง</string> <string name="no_collections_description1">จัดกลุ่มการค้นหา ไซต์ และแท็บที่คล้ายกันเพื่อการเข้าถึงอย่างรวดเร็วในภายหลัง</string>
<!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">คุณลงชื่อเข้าในชื่อ %s บนเบราว์เซอร์ Firefox อื่นบนโทรศัพท์นี้ คุณต้องการลงชื่อเข้าด้วยบัญชีนี้หรือไม่?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">คุณสามารถเพิ่มเว็บไซต์นี้ลงในหน้าจอหลักของโทรศัพท์ของคุณเพื่อเข้าถึงและเรียกดูได้เร็วขึ้นด้วยประสบการณ์ที่เหมือนแอป</string>
</resources> </resources>

@ -268,6 +268,8 @@
<string name="preferences_open_links_in_a_private_tab">Bağlantıları gizli sekmede aç</string> <string name="preferences_open_links_in_a_private_tab">Bağlantıları gizli sekmede aç</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">Gizli gezintide ekran görüntüsü almaya izin ver</string> <string name="preferences_allow_screenshots_in_private_mode">Gizli gezintide ekran görüntüsü almaya izin ver</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">İzin verirseniz gizli sekmeler birden fazla uygulama açıkken de görünür olacak</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">Gizli gezinti kısayolu ekle</string> <string name="preferences_add_private_browsing_shortcut">Gizli gezinti kısayolu ekle</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -288,6 +290,8 @@
<string name="preferences_theme">Tema</string> <string name="preferences_theme">Tema</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Giriş sayfası</string> <string name="preferences_home">Giriş sayfası</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Parmak hareketleri</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Özelleştir</string> <string name="preferences_customize">Özelleştir</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -322,9 +326,13 @@
<string name="preferences_search_browsing_history">Gezinti geçmişinde ara</string> <string name="preferences_search_browsing_history">Gezinti geçmişinde ara</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">Yer imlerinde ara</string> <string name="preferences_search_bookmarks">Yer imlerinde ara</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">Eşitlenmiş sekmelerde ara</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Hesap ayarları</string> <string name="preferences_account_settings">Hesap ayarları</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Adresleri otomatik tamamla</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Bağlantıları uygulamalarda aç</string> <string name="preferences_open_links_in_apps">Bağlantıları uygulamalarda aç</string>
@ -462,6 +470,17 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">Cihaz temasına uy</string> <string name="preference_follow_device_theme">Cihaz temasına uy</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">Tazelemek için çek</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">Araç çubuğunu gizlemek için kaydır</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">Sekme değiştirmek için araç çubuğunu yana kaydır</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">Sekmeleri açmak için araç çubuğunu yukarı kaydır</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Oturumlar</string> <string name="library_sessions">Oturumlar</string>
@ -1052,7 +1071,7 @@
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">Bu telefondaki başka bir Firefox tarayıcısına %s olarak giriş yapmışsınız. Bu hesapla giriş yapmak ister misiniz?</string> <string name="onboarding_firefox_account_auto_signin_header_3">Bu cihazdaki başka bir Firefox tarayıcısına %s olarak giriş yapmışsınız. Bu hesapla giriş yapmak ister misiniz?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Evet, giriş yap</string> <string name="onboarding_firefox_account_auto_signin_confirm">Evet, giriş yap</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1295,7 +1314,7 @@
<string name="add_to_homescreen_text_placeholder">Kısayol adı</string> <string name="add_to_homescreen_text_placeholder">Kısayol adı</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Bu siteyi telefonunuzun ana ekranına ekleyerek ona hızlıca erişebilir, site bir uygulamaymış gibi daha hızlı gezinti yapabilirsiniz.</string> <string name="add_to_homescreen_description_2">Bu siteyi cihazınızın ana ekranına ekleyerek ona hızlıca erişebilir, site bir uygulamaymış gibi daha hızlı gezinti yapabilirsiniz.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Hesaplar ve parolalar</string> <string name="preferences_passwords_logins_and_passwords">Hesaplar ve parolalar</string>
@ -1365,8 +1384,12 @@
<string name="logins_site_copied">Site panoya kopyalandı</string> <string name="logins_site_copied">Site panoya kopyalandı</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Parolayı kopyala</string> <string name="saved_logins_copy_password">Parolayı kopyala</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Parolayı temizle</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Kullanıcı adını kopyala</string> <string name="saved_login_copy_username">Kullanıcı adını kopyala</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Kullanıcı adını temizle</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Siteyi kopyala</string> <string name="saved_login_copy_site">Siteyi kopyala</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1522,7 +1545,7 @@
<string name="saved_login_duplicate">Bu kullanıcı adına sahip bir hesap zaten var</string> <string name="saved_login_duplicate">Bu kullanıcı adına sahip bir hesap zaten var</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Başka bir cihaz bağlayın.</string> <string name="synced_tabs_connect_another_device">Başka bir cihaz bağlayın.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Lütfen yeniden giriş yapın.</string> <string name="synced_tabs_reauth">Lütfen yeniden giriş yapın.</string>
@ -1542,7 +1565,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Sık kullanılan site sınırına ulaşıldı</string> <string name="top_sites_max_limit_title">Sık kullanılan site sınırına ulaşıldı</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Yeni bir sık kullanılan site eklemek için bir siteyi kaldırın. Siteye basılı tutup kaldırı seçin.</string> <string name="top_sites_max_limit_content_2">Yeni bir sık kullanılan site eklemek için bir siteyi kaldırın. Siteye dokunup basılı tutun ve kaldırı seçin.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">Tamam</string> <string name="top_sites_max_limit_confirmation_button">Tamam</string>
@ -1552,7 +1575,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Kaldır</string> <string name="remove_home_collection_placeholder_content_description">Kaldır</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">%s tarayıcınızdan en iyi şekilde yararlanın.</string> <string name="onboarding_firefox_account_header">%s tarayıcınızdan en iyi şekilde yararlanın.</string>
@ -1560,4 +1583,9 @@
<string name="no_collections_header1">Sizin için önemli olan şeyleri toplayın</string> <string name="no_collections_header1">Sizin için önemli olan şeyleri toplayın</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Benzer aramaları, siteleri ve sekmeleri gruplandırarak daha sonra onlara hızlıca erişebilirsiniz.</string> <string name="no_collections_description1">Benzer aramaları, siteleri ve sekmeleri gruplandırarak daha sonra onlara hızlıca erişebilirsiniz.</string>
<!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Bu telefondaki başka bir Firefox tarayıcısına %s olarak giriş yapmışsınız. Bu hesapla giriş yapmak ister misiniz?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Bu siteyi telefonunuzun ana ekranına ekleyerek ona hızlıca erişebilir, site bir uygulamaymış gibi daha hızlı gezinti yapabilirsiniz.</string>
</resources> </resources>

@ -270,6 +270,8 @@
<string name="preferences_open_links_in_a_private_tab">Відкривати посилання в приватній вкладці</string> <string name="preferences_open_links_in_a_private_tab">Відкривати посилання в приватній вкладці</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">Дозволити знімки екрана в приватному перегляді</string> <string name="preferences_allow_screenshots_in_private_mode">Дозволити знімки екрана в приватному перегляді</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">Якщо дозволено, приватні вкладки також будуть видимі, коли відкрито декілька програм</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">Додати ярлик приватного перегляду</string> <string name="preferences_add_private_browsing_shortcut">Додати ярлик приватного перегляду</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -291,6 +293,8 @@
<string name="preferences_theme">Тема</string> <string name="preferences_theme">Тема</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Домівка</string> <string name="preferences_home">Домівка</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Жести</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Пристосування</string> <string name="preferences_customize">Пристосування</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -327,8 +331,12 @@
<string name="preferences_search_browsing_history">Шукати в історії перегляду</string> <string name="preferences_search_browsing_history">Шукати в історії перегляду</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">Шукати закладки</string> <string name="preferences_search_bookmarks">Шукати закладки</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">Шукати синхронізовані вкладки</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Обліковий запис</string> <string name="preferences_account_settings">Обліковий запис</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Автозавершення URL-адрес</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Відкривати посилання в програмах</string> <string name="preferences_open_links_in_apps">Відкривати посилання в програмах</string>
@ -469,6 +477,16 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">Тема пристрою</string> <string name="preference_follow_device_theme">Тема пристрою</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">Потягнути для оновлення</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">Прокрутити для приховання панелі інструментів</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">Провести вбік на панелі інструментів для перемикання вкладок</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">Провести вгору на панелі інструментів вгору для відкриття вкладок</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Сеанси</string> <string name="library_sessions">Сеанси</string>
@ -1062,7 +1080,7 @@
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">Ви увійшли як %s в іншому браузері Firefox на цьому пристрої. Бажаєте увійти в цей обліковий запис?</string> <string name="onboarding_firefox_account_auto_signin_header_3">Ви увійшли як %s в іншому браузері Firefox на цьому пристрої. Бажаєте увійти в цей обліковий запис?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Так, увійти</string> <string name="onboarding_firefox_account_auto_signin_confirm">Так, увійти</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1309,7 +1327,7 @@
<string name="add_to_homescreen_text_placeholder">Назва ярлика</string> <string name="add_to_homescreen_text_placeholder">Назва ярлика</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Ви можете легко додати цей вебсайт на головний екран вашого телефону, щоб мати миттєвий доступ до нього і працювати швидше, неначе зі звичайною програмою.</string> <string name="add_to_homescreen_description_2">Ви можете легко додати цей вебсайт на головний екран вашого пристрою, щоб мати миттєвий доступ до нього і працювати швидше.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Паролі</string> <string name="preferences_passwords_logins_and_passwords">Паролі</string>
@ -1381,8 +1399,12 @@
<string name="logins_site_copied">Сайт скопійовано в буфер обміну</string> <string name="logins_site_copied">Сайт скопійовано в буфер обміну</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Копіювати пароль</string> <string name="saved_logins_copy_password">Копіювати пароль</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Стерти пароль</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Копіювати ім’я користувача</string> <string name="saved_login_copy_username">Копіювати ім’я користувача</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Стерти ім’я користувача</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Копіювати сайт</string> <string name="saved_login_copy_site">Копіювати сайт</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1539,7 +1561,7 @@
<string name="saved_login_duplicate">Запис з таким іменем користувача вже існує</string> <string name="saved_login_duplicate">Запис з таким іменем користувача вже існує</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Під’єднати інший пристрій.</string> <string name="synced_tabs_connect_another_device">Під’єднати інший пристрій.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Повторіть автентифікацію.</string> <string name="synced_tabs_reauth">Повторіть автентифікацію.</string>
@ -1559,7 +1581,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Досягнуто ліміту популярних сайтів</string> <string name="top_sites_max_limit_title">Досягнуто ліміту популярних сайтів</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Щоб додати новий популярний сайт, вилучіть один інший тривалим дотиком.</string> <string name="top_sites_max_limit_content_2">Щоб додати новий популярний сайт, вилучіть один. Торкніться й утримуйте сайт, потім виберіть вилучити.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">Гаразд, зрозуміло</string> <string name="top_sites_max_limit_confirmation_button">Гаразд, зрозуміло</string>
@ -1569,7 +1591,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Вилучити</string> <string name="remove_home_collection_placeholder_content_description">Вилучити</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Отримайте якнайбільше від %s.</string> <string name="onboarding_firefox_account_header">Отримайте якнайбільше від %s.</string>
@ -1577,4 +1599,9 @@
<string name="no_collections_header1">Зберігайте важливе для вас</string> <string name="no_collections_header1">Зберігайте важливе для вас</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Групуйте подібні пошуки, сайти та вкладки для швидкого доступу.</string> <string name="no_collections_description1">Групуйте подібні пошуки, сайти та вкладки для швидкого доступу.</string>
</resources> <!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Ви увійшли як %s в іншому браузері Firefox на цьому пристрої. Бажаєте увійти в цей обліковий запис?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Ви можете легко додати цей вебсайт на головний екран вашого телефону, щоб мати миттєвий доступ до нього і працювати швидше, неначе зі звичайною програмою.</string>
</resources>

@ -267,6 +267,8 @@
<string name="preferences_open_links_in_a_private_tab">Mở liên kết trong thẻ riêng tư</string> <string name="preferences_open_links_in_a_private_tab">Mở liên kết trong thẻ riêng tư</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">Cho phép chụp ảnh màn hình trong trình duyệt riêng tư</string> <string name="preferences_allow_screenshots_in_private_mode">Cho phép chụp ảnh màn hình trong trình duyệt riêng tư</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">Nếu được phép, các thẻ riêng tư cũng sẽ hiển thị khi nhiều ứng dụng đang mở</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">Thêm lối tắt duyệt web riêng tư</string> <string name="preferences_add_private_browsing_shortcut">Thêm lối tắt duyệt web riêng tư</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -287,6 +289,8 @@
<string name="preferences_theme">Chủ đề</string> <string name="preferences_theme">Chủ đề</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">Trang chủ</string> <string name="preferences_home">Trang chủ</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Cử chỉ</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">Tùy biến</string> <string name="preferences_customize">Tùy biến</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -321,8 +325,12 @@
<string name="preferences_search_browsing_history">Tìm kiếm lịch sử duyệt web</string> <string name="preferences_search_browsing_history">Tìm kiếm lịch sử duyệt web</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">Tìm kiếm dấu trang</string> <string name="preferences_search_bookmarks">Tìm kiếm dấu trang</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">Tìm kiếm các thẻ đã đồng bộ hóa</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Cài đặt tài khoản</string> <string name="preferences_account_settings">Cài đặt tài khoản</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Tự động điền URL</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Mở liên kết trong ứng dụng</string> <string name="preferences_open_links_in_apps">Mở liên kết trong ứng dụng</string>
@ -460,6 +468,16 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">Đặt theo chủ đề thiết bị</string> <string name="preference_follow_device_theme">Đặt theo chủ đề thiết bị</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">Kéo để làm mới</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">Cuộn để ẩn thanh công cụ</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">Vuốt thanh công cụ sang hai bên để chuyển đổi các thẻ</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">Vuốt thanh công cụ lên để mở các thẻ</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">Phiên</string> <string name="library_sessions">Phiên</string>
@ -1046,7 +1064,7 @@
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">Bạn đã đăng nhập dưới dạng %s trên một trình duyệt Firefox khác trên điện thoại này. Bạn có muốn đăng nhập bằng tài khoản này không?</string> <string name="onboarding_firefox_account_auto_signin_header_3">Bạn đã đăng nhập dưới dạng %s trên trình duyệt Firefox khác trên điện thoại này. Bạn có muốn đăng nhập bằng tài khoản này không?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">Có, đăng nhập cho tôi</string> <string name="onboarding_firefox_account_auto_signin_confirm">Có, đăng nhập cho tôi</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1290,7 +1308,7 @@
<string name="add_to_homescreen_text_placeholder">Tên lối tắt</string> <string name="add_to_homescreen_text_placeholder">Tên lối tắt</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Bạn có thể dễ dàng thêm trang web vào màn hình chính của điện thoại của bạn để có thể truy cập và duyệt web nhanh hơn với trải nghiệm giống như trên ứng dụng.</string> <string name="add_to_homescreen_description_2">Bạn có thể dễ dàng thêm trang web vào màn hình chính thiết bị của bạn để có thể truy cập và duyệt web nhanh hơn với trải nghiệm giống như trên ứng dụng.</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">Đăng nhập và mật khẩu</string> <string name="preferences_passwords_logins_and_passwords">Đăng nhập và mật khẩu</string>
@ -1360,8 +1378,12 @@
<string name="logins_site_copied">Đã sao chép trang web vào bộ nhớ tạm</string> <string name="logins_site_copied">Đã sao chép trang web vào bộ nhớ tạm</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">Sao chép mật khẩu</string> <string name="saved_logins_copy_password">Sao chép mật khẩu</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">Xóa mật khẩu</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">Sao chép tên người dùng</string> <string name="saved_login_copy_username">Sao chép tên người dùng</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">Xóa tên người dùng</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">Sao chép URL trang web</string> <string name="saved_login_copy_site">Sao chép URL trang web</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1516,7 +1538,7 @@
<string name="saved_login_duplicate">Một thông tin đăng nhập với tên người dùng đó đã tồn tại</string> <string name="saved_login_duplicate">Một thông tin đăng nhập với tên người dùng đó đã tồn tại</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">Kết nối thiết bị khác.</string> <string name="synced_tabs_connect_another_device">Kết nối thiết bị khác.</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">Vui lòng xác thực lại.</string> <string name="synced_tabs_reauth">Vui lòng xác thực lại.</string>
@ -1536,7 +1558,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">Đã đạt đến giới hạn trang web hàng đầu</string> <string name="top_sites_max_limit_title">Đã đạt đến giới hạn trang web hàng đầu</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">Để thêm một trang web hàng đầu mới, loại bỏ một cái cũ trước. Chạm và giữ trang web và chọn xóa.</string> <string name="top_sites_max_limit_content_2">Để thêm một trang web hàng đầu mới, loại bỏ một cái cũ trước. Chạm và giữ trang web và chọn xóa.</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">OK, đã hiểu</string> <string name="top_sites_max_limit_confirmation_button">OK, đã hiểu</string>
@ -1546,7 +1568,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">Xóa</string> <string name="remove_home_collection_placeholder_content_description">Xóa</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">Tận dụng tối đa %s.</string> <string name="onboarding_firefox_account_header">Tận dụng tối đa %s.</string>
@ -1554,4 +1576,9 @@
<string name="no_collections_header1">Thu thập những thứ quan trọng với bạn</string> <string name="no_collections_header1">Thu thập những thứ quan trọng với bạn</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">Nhóm các tìm kiếm, trang web và thẻ tương tự để truy cập nhanh sau này.</string> <string name="no_collections_description1">Nhóm các tìm kiếm, trang web và thẻ tương tự để truy cập nhanh sau này.</string>
</resources> <!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">Bạn đã đăng nhập dưới dạng %s trên một trình duyệt Firefox khác trên điện thoại này. Bạn có muốn đăng nhập bằng tài khoản này không?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">Bạn có thể dễ dàng thêm trang web vào màn hình chính của điện thoại của bạn để có thể truy cập và duyệt web nhanh hơn với trải nghiệm giống như trên ứng dụng.</string>
</resources>

@ -277,6 +277,8 @@
<string name="preferences_open_links_in_a_private_tab">新建隐私标签页打开链接</string> <string name="preferences_open_links_in_a_private_tab">新建隐私标签页打开链接</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">允许在隐私浏览中截屏</string> <string name="preferences_allow_screenshots_in_private_mode">允许在隐私浏览中截屏</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">若允许,隐私标签页内容将在多任务切换界面可见</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">添加隐私浏览快捷方式</string> <string name="preferences_add_private_browsing_shortcut">添加隐私浏览快捷方式</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -297,6 +299,8 @@
<string name="preferences_theme">主题</string> <string name="preferences_theme">主题</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">主页</string> <string name="preferences_home">主页</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">手势</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">定制</string> <string name="preferences_customize">定制</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -331,9 +335,13 @@
<string name="preferences_search_browsing_history">搜索浏览历史</string> <string name="preferences_search_browsing_history">搜索浏览历史</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">搜索书签</string> <string name="preferences_search_bookmarks">搜索书签</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">搜索受同步的标签页</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">账户设置</string> <string name="preferences_account_settings">账户设置</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">自动补全网址</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">用外部应用打开链接</string> <string name="preferences_open_links_in_apps">用外部应用打开链接</string>
@ -476,6 +484,18 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">跟随设备主题</string> <string name="preference_follow_device_theme">跟随设备主题</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">下拉刷新</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">滚动时隐藏工具栏</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">横向滑动工具栏切换标签页</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">上滑工具栏显示打开的标签页</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">浏览阶段</string> <string name="library_sessions">浏览阶段</string>
@ -525,13 +545,13 @@
<!-- Title of preference that allows a user to auto close tabs after a specified amount of time --> <!-- Title of preference that allows a user to auto close tabs after a specified amount of time -->
<string name="preferences_close_tabs">关闭标签页</string> <string name="preferences_close_tabs">关闭标签页</string>
<!-- Option for auto closing tabs that will never auto close tabs, always allows user to manually close tabs --> <!-- Option for auto closing tabs that will never auto close tabs, always allows user to manually close tabs -->
<string name="close_tabs_manually">手动关闭</string> <string name="close_tabs_manually">手动</string>
<!-- Option for auto closing tabs that will auto close tabs after one day --> <!-- Option for auto closing tabs that will auto close tabs after one day -->
<string name="close_tabs_after_one_day">天后</string> <string name="close_tabs_after_one_day">1 天后</string>
<!-- Option for auto closing tabs that will auto close tabs after one week --> <!-- Option for auto closing tabs that will auto close tabs after one week -->
<string name="close_tabs_after_one_week">周后</string> <string name="close_tabs_after_one_week">1 周后</string>
<!-- Option for auto closing tabs that will auto close tabs after one month --> <!-- Option for auto closing tabs that will auto close tabs after one month -->
<string name="close_tabs_after_one_month">个月后</string> <string name="close_tabs_after_one_month">1 个月后</string>
<!-- Sessions --> <!-- Sessions -->
<!-- Title for the list of tabs --> <!-- Title for the list of tabs -->
@ -1092,7 +1112,7 @@
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">您已在此手机上的其他 Firefox 浏览器上以 %s 身份登录。也要使用此账号登录吗?</string> <string name="onboarding_firefox_account_auto_signin_header_3">您已在此设备上的其他 Firefox 浏览器上以 %s 身份登录。也要使用此账号登录吗?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">是的,我要登录</string> <string name="onboarding_firefox_account_auto_signin_confirm">是的,我要登录</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1335,7 +1355,7 @@
<string name="add_to_homescreen_text_placeholder">快捷方式名称</string> <string name="add_to_homescreen_text_placeholder">快捷方式名称</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">您可以轻松将此网站添加到手机主屏幕,以便迅捷访问并以类似应用的体验畅享浏览。</string> <string name="add_to_homescreen_description_2">您可以轻松将此网站添加到设备主屏幕,以便迅捷访问并以类似应用的体验畅享浏览。</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">我的密码</string> <string name="preferences_passwords_logins_and_passwords">我的密码</string>
@ -1405,8 +1425,12 @@
<string name="logins_site_copied">网站已复制到剪贴板</string> <string name="logins_site_copied">网站已复制到剪贴板</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">复制密码</string> <string name="saved_logins_copy_password">复制密码</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">清除密码</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">复制用户名</string> <string name="saved_login_copy_username">复制用户名</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">清除用户名</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">复制网站</string> <string name="saved_login_copy_site">复制网站</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1561,7 +1585,7 @@
<string name="saved_login_duplicate">已有同用户名的登录信息存在</string> <string name="saved_login_duplicate">已有同用户名的登录信息存在</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">绑定其他设备</string> <string name="synced_tabs_connect_another_device">绑定其他设备</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">请重新验证。</string> <string name="synced_tabs_reauth">请重新验证。</string>
@ -1581,7 +1605,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">超出常用网站限制</string> <string name="top_sites_max_limit_title">超出常用网站限制</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">若要添加新的常用站点,需先移除一个。请长按网站,然后选择移除。</string> <string name="top_sites_max_limit_content_2">若要添加新的常用站点,需先移除一个。请轻触并按住,然后选择移除。</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">我知道了</string> <string name="top_sites_max_limit_confirmation_button">我知道了</string>
@ -1591,7 +1615,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">移除</string> <string name="remove_home_collection_placeholder_content_description">移除</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">全面体验 %s。</string> <string name="onboarding_firefox_account_header">全面体验 %s。</string>
@ -1599,4 +1623,9 @@
<string name="no_collections_header1">有用的东西收藏在这</string> <string name="no_collections_header1">有用的东西收藏在这</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">将相似的搜索查询、网站和标签页归入一组,方便以后快速访问。</string> <string name="no_collections_description1">将相似的搜索查询、网站和标签页归入一组,方便以后快速访问。</string>
</resources> <!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">您已在此手机上的其他 Firefox 浏览器上以 %s 身份登录。也要使用此账号登录吗?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">您可以轻松将此网站添加到手机主屏幕,以便迅捷访问并以类似应用的体验畅享浏览。</string>
</resources>

@ -272,6 +272,8 @@
<string name="preferences_open_links_in_a_private_tab">用隱私分頁開啟鏈結</string> <string name="preferences_open_links_in_a_private_tab">用隱私分頁開啟鏈結</string>
<!-- Preference for allowing screenshots to be taken while in a private tab--> <!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">允許在隱私瀏覽模式中拍攝畫面擷圖</string> <string name="preferences_allow_screenshots_in_private_mode">允許在隱私瀏覽模式中拍攝畫面擷圖</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">若允許,隱私分頁內容將在切換應用程式時顯示</string>
<!-- Preference for adding private browsing shortcut --> <!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">新增隱私瀏覽模式捷徑</string> <string name="preferences_add_private_browsing_shortcut">新增隱私瀏覽模式捷徑</string>
<!-- Preference for accessibility --> <!-- Preference for accessibility -->
@ -292,6 +294,8 @@
<string name="preferences_theme">佈景主題</string> <string name="preferences_theme">佈景主題</string>
<!-- Preference for customizing the home screen --> <!-- Preference for customizing the home screen -->
<string name="preferences_home">主畫面</string> <string name="preferences_home">主畫面</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">手勢</string>
<!-- Preference for settings related to visual options --> <!-- Preference for settings related to visual options -->
<string name="preferences_customize">自訂</string> <string name="preferences_customize">自訂</string>
<!-- Preference description for banner about signing in --> <!-- Preference description for banner about signing in -->
@ -327,9 +331,13 @@
<string name="preferences_search_browsing_history">搜尋瀏覽紀錄</string> <string name="preferences_search_browsing_history">搜尋瀏覽紀錄</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">搜尋書籤</string> <string name="preferences_search_bookmarks">搜尋書籤</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">搜尋同步的分頁</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">帳號設定</string> <string name="preferences_account_settings">帳號設定</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">自動完成網址</string>
<!-- Preference for open links in third party apps --> <!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">用 App 開啟鏈結</string> <string name="preferences_open_links_in_apps">用 App 開啟鏈結</string>
@ -470,6 +478,16 @@
<!-- Preference for using following device theme --> <!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">依照裝置佈景主題顯示</string> <string name="preference_follow_device_theme">依照裝置佈景主題顯示</string>
<!-- Gestures Preferences-->
<!-- Preferences for using pull to refresh in a webpage -->
<string name="preference_gestures_website_pull_to_refresh">向下滑動即可重新整理</string>
<!-- Preference for using the dynamic toolbar -->
<string name="preference_gestures_dynamic_toolbar">滾動畫面即可隱藏工具列</string>
<!-- Preference for switching tabs by swiping horizontally on the toolbar -->
<string name="preference_gestures_swipe_toolbar_switch_tabs">橫向滑動工具列來切換分頁</string>
<!-- Preference for showing the opened tabs by swiping up on the toolbar-->
<string name="preference_gestures_swipe_toolbar_show_tabs">向上滑動工具列來開新分頁</string>
<!-- Library --> <!-- Library -->
<!-- Option in Library to open Sessions page --> <!-- Option in Library to open Sessions page -->
<string name="library_sessions">瀏覽階段</string> <string name="library_sessions">瀏覽階段</string>
@ -1082,7 +1100,7 @@
<!-- text for the firefox account onboarding card header when we detect you're already signed in to <!-- text for the firefox account onboarding card header when we detect you're already signed in to
another Firefox browser. (The word `Firefox` should not be translated) another Firefox browser. (The word `Firefox` should not be translated)
The first parameter is the email of the detected user's account --> The first parameter is the email of the detected user's account -->
<string name="onboarding_firefox_account_auto_signin_header_2">您已經在這支手機的其他 Firefox 瀏覽器以 %s 登入。也要使用此帳號登入嗎?</string> <string name="onboarding_firefox_account_auto_signin_header_3">您已經在此裝置的另一套 Firefox 瀏覽器以 %s 登入。也要使用此帳號登入嗎?</string>
<!-- text for the button to confirm automatic sign-in --> <!-- text for the button to confirm automatic sign-in -->
<string name="onboarding_firefox_account_auto_signin_confirm">好,請幫我登入</string> <string name="onboarding_firefox_account_auto_signin_confirm">好,請幫我登入</string>
<!-- text for the automatic sign-in button while signing in is in process --> <!-- text for the automatic sign-in button while signing in is in process -->
@ -1325,7 +1343,7 @@
<string name="add_to_homescreen_text_placeholder">捷徑名稱</string> <string name="add_to_homescreen_text_placeholder">捷徑名稱</string>
<!-- Describes the add to homescreen functionality --> <!-- Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">您可將此網站加到手機主畫面,方便快速開啟,或是以類似 App 的方式使用。</string> <string name="add_to_homescreen_description_2">您可將此網站加到裝置主畫面,方便快速開啟,或是以類似 App 的方式使用。</string>
<!-- Preference for managing the settings for logins and passwords in Fenix --> <!-- Preference for managing the settings for logins and passwords in Fenix -->
<string name="preferences_passwords_logins_and_passwords">登入資訊與密碼</string> <string name="preferences_passwords_logins_and_passwords">登入資訊與密碼</string>
@ -1395,8 +1413,12 @@
<string name="logins_site_copied">已將網站複製至剪貼簿</string> <string name="logins_site_copied">已將網站複製至剪貼簿</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a password in logins--> <!-- Content Description (for screenreaders etc) read for the button to copy a password in logins-->
<string name="saved_logins_copy_password">複製密碼</string> <string name="saved_logins_copy_password">複製密碼</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a password while editing a login-->
<string name="saved_logins_clear_password">清除密碼</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a username in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a username in logins -->
<string name="saved_login_copy_username">複製使用者名稱</string> <string name="saved_login_copy_username">複製使用者名稱</string>
<!-- Content Description (for screenreaders etc) read for the button to clear a username while editing a login -->
<string name="saved_login_clear_username">清除使用者名稱</string>
<!-- Content Description (for screenreaders etc) read for the button to copy a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to copy a site in logins -->
<string name="saved_login_copy_site">複製網站</string> <string name="saved_login_copy_site">複製網站</string>
<!-- Content Description (for screenreaders etc) read for the button to open a site in logins --> <!-- Content Description (for screenreaders etc) read for the button to open a site in logins -->
@ -1551,7 +1573,7 @@
<string name="saved_login_duplicate">已有該使用者名稱的登入資訊</string> <string name="saved_login_duplicate">已有該使用者名稱的登入資訊</string>
<!-- Synced Tabs --> <!-- Synced Tabs -->
<!-- Text displayed to ask user to connect another device as no devices found with account --> <!-- Text displayed to ask user to connect another device as no devices found with account -->
<string name="synced_tabs_connect_another_device">連結另一部裝置。</string> <string name="synced_tabs_connect_another_device">連結另一部裝置。</string>
<!-- Text displayed asking user to re-authenticate --> <!-- Text displayed asking user to re-authenticate -->
<string name="synced_tabs_reauth">請重新登入。</string> <string name="synced_tabs_reauth">請重新登入。</string>
@ -1571,7 +1593,7 @@
<!-- Title text displayed in the dialog when top sites limit is reached. --> <!-- Title text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_title">超出熱門網站限制</string> <string name="top_sites_max_limit_title">超出熱門網站限制</string>
<!-- Content description text displayed in the dialog when top sites limit is reached. --> <!-- Content description text displayed in the dialog when top sites limit is reached. -->
<string name="top_sites_max_limit_content">請先移除現有的熱門網站才能再新增。請按住網站,然後選擇移除。</string> <string name="top_sites_max_limit_content_2">請先移除現有的熱門網站才能再新增。請按住網站,然後選擇移除。</string>
<!-- Confirmation dialog button text when top sites limit is reached. --> <!-- Confirmation dialog button text when top sites limit is reached. -->
<string name="top_sites_max_limit_confirmation_button">好,知道了!</string> <string name="top_sites_max_limit_confirmation_button">好,知道了!</string>
@ -1581,7 +1603,7 @@
<!-- Content description for close button in collection placeholder. --> <!-- Content description for close button in collection placeholder. -->
<string name="remove_home_collection_placeholder_content_description">移除</string> <string name="remove_home_collection_placeholder_content_description">移除</string>
<!-- depcrecated: text for the firefox account onboarding card header <!-- Deprecated: text for the firefox account onboarding card header
The first parameter is the name of the app (e.g. Firefox Preview) --> The first parameter is the name of the app (e.g. Firefox Preview) -->
<string name="onboarding_firefox_account_header">發揮 %s 的最大威力。</string> <string name="onboarding_firefox_account_header">發揮 %s 的最大威力。</string>
@ -1589,4 +1611,9 @@
<string name="no_collections_header1">收集對您而言重要的東西</string> <string name="no_collections_header1">收集對您而言重要的東西</string>
<!-- Deprecated: Label to describe what collections are to a new user without any collections --> <!-- Deprecated: Label to describe what collections are to a new user without any collections -->
<string name="no_collections_description1">將類似的搜尋、網站、分頁放在一起,方便之後快速使用。</string> <string name="no_collections_description1">將類似的搜尋、網站、分頁放在一起,方便之後快速使用。</string>
</resources> <!-- Deprecated: text for the firefox account onboarding card header when we detect you're already signed in to -->
<string name="onboarding_firefox_account_auto_signin_header_2">您已經在這支手機的其他 Firefox 瀏覽器以 %s 登入。也要使用此帳號登入嗎?</string>
<!-- Deprecated: Describes the add to homescreen functionality -->
<string name="add_to_homescreen_description">您可將此網站加到手機主畫面,方便快速開啟,或是以類似 App 的方式使用。</string>
</resources>

@ -94,6 +94,7 @@
<string name="pref_key_show_clipboard_suggestions" translatable="false">pref_key_show_clipboard_suggestions</string> <string name="pref_key_show_clipboard_suggestions" translatable="false">pref_key_show_clipboard_suggestions</string>
<string name="pref_key_search_browsing_history" translatable="false">pref_key_search_browsing_history</string> <string name="pref_key_search_browsing_history" translatable="false">pref_key_search_browsing_history</string>
<string name="pref_key_search_bookmarks" translatable="false">pref_key_search_bookmarks</string> <string name="pref_key_search_bookmarks" translatable="false">pref_key_search_bookmarks</string>
<string name="pref_key_search_synced_tabs" translatable="false">pref_key_search_synced_tabs</string>
<string name="pref_key_show_search_suggestions_in_private" translatable="false">pref_key_show_search_suggestions_in_private</string> <string name="pref_key_show_search_suggestions_in_private" translatable="false">pref_key_show_search_suggestions_in_private</string>
<string name="pref_key_show_search_suggestions_in_private_onboarding" translatable="false">pref_key_show_search_suggestions_in_privateonboarding</string> <string name="pref_key_show_search_suggestions_in_private_onboarding" translatable="false">pref_key_show_search_suggestions_in_privateonboarding</string>
<string name="pref_key_show_voice_search" translatable="false">pref_key_show_voice_search</string> <string name="pref_key_show_voice_search" translatable="false">pref_key_show_voice_search</string>

@ -326,6 +326,8 @@
<string name="preferences_search_browsing_history">Search browsing history</string> <string name="preferences_search_browsing_history">Search browsing history</string>
<!-- Preference title for switch preference to suggest bookmarks when searching --> <!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">Search bookmarks</string> <string name="preferences_search_bookmarks">Search bookmarks</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">Search synced tabs</string>
<!-- Preference for account settings --> <!-- Preference for account settings -->
<string name="preferences_account_settings">Account settings</string> <string name="preferences_account_settings">Account settings</string>
<!-- Preference for enabling url autocomplete--> <!-- Preference for enabling url autocomplete-->

@ -44,6 +44,10 @@
android:defaultValue="true" android:defaultValue="true"
android:key="@string/pref_key_search_bookmarks" android:key="@string/pref_key_search_bookmarks"
android:title='@string/preferences_search_bookmarks' /> android:title='@string/preferences_search_bookmarks' />
<SwitchPreference
android:defaultValue="true"
android:key="@string/pref_key_search_synced_tabs"
android:title='@string/preferences_search_synced_tabs' />
<SwitchPreference <SwitchPreference
android:defaultValue="true" android:defaultValue="true"
android:key="@string/pref_key_show_voice_search" android:key="@string/pref_key_show_voice_search"

@ -72,6 +72,7 @@ class SearchFragmentStoreTest {
showClipboardSuggestions = false, showClipboardSuggestions = false,
showHistorySuggestions = false, showHistorySuggestions = false,
showBookmarkSuggestions = false, showBookmarkSuggestions = false,
showSyncedTabsSuggestions = false,
tabId = null, tabId = null,
pastedText = "pastedText", pastedText = "pastedText",
searchAccessPoint = SearchAccessPoint.ACTION searchAccessPoint = SearchAccessPoint.ACTION
@ -128,6 +129,7 @@ class SearchFragmentStoreTest {
showClipboardSuggestions = false, showClipboardSuggestions = false,
showHistorySuggestions = false, showHistorySuggestions = false,
showBookmarkSuggestions = false, showBookmarkSuggestions = false,
showSyncedTabsSuggestions = false,
tabId = "tabId", tabId = "tabId",
pastedText = "", pastedText = "",
searchAccessPoint = SearchAccessPoint.SHORTCUT searchAccessPoint = SearchAccessPoint.SHORTCUT
@ -234,6 +236,7 @@ class SearchFragmentStoreTest {
showClipboardSuggestions = false, showClipboardSuggestions = false,
showHistorySuggestions = false, showHistorySuggestions = false,
showBookmarkSuggestions = false, showBookmarkSuggestions = false,
showSyncedTabsSuggestions = false,
searchAccessPoint = SearchAccessPoint.NONE searchAccessPoint = SearchAccessPoint.NONE
) )
} }

@ -56,6 +56,7 @@ class ToolbarViewTest {
showClipboardSuggestions = false, showClipboardSuggestions = false,
showHistorySuggestions = false, showHistorySuggestions = false,
showBookmarkSuggestions = false, showBookmarkSuggestions = false,
showSyncedTabsSuggestions = false,
searchAccessPoint = Event.PerformedSearch.SearchAccessPoint.NONE searchAccessPoint = Event.PerformedSearch.SearchAccessPoint.NONE
) )

@ -3,5 +3,5 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
object AndroidComponents { object AndroidComponents {
const val VERSION = "59.0.20200911130559" const val VERSION = "59.0.20200916130055"
} }

@ -21,6 +21,7 @@ job-defaults:
apk-artifact-template: apk-artifact-template:
type: file type: file
name: public/build/{abi}/target.apk name: public/build/{abi}/target.apk
github-name: 'fenix-{version}-{abi}.apk'
path: '/builds/worker/checkouts/src/app/build/outputs/apk/{gradle_build_type}/{fileName}' path: '/builds/worker/checkouts/src/app/build/outputs/apk/{gradle_build_type}/{fileName}'
description: Build Fenix from source code. description: Build Fenix from source code.
fetches: fetches:

@ -43,6 +43,11 @@ workers:
implementation: scriptworker-signing implementation: scriptworker-signing
os: scriptworker os: scriptworker
worker-type: mobile-t-signing worker-type: mobile-t-signing
github:
provisioner: scriptworker-k8s
implementation: scriptworker-github
os: scriptworker
worker-type: 'mobile-{level}-github'
images: images:
provisioner: 'mobile-{level}' provisioner: 'mobile-{level}'
implementation: docker-worker implementation: docker-worker

@ -0,0 +1,44 @@
# 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/.
---
loader: fenix_taskgraph.loader.multi_dep:loader
transforms:
- fenix_taskgraph.transforms.multi_dep:transforms
- fenix_taskgraph.transforms.github_release:transforms
- taskgraph.transforms.task:transforms
kind-dependencies:
- signing
primary-dependency: signing
group-by: build-type
only-for-build-types:
- beta
- release
job-template:
description: Create/Update Github release and upload APKs
worker-type: github
worker:
action: release
github-project:
by-level:
'3': fenix
default: mock
is-prerelease:
by-build-type:
beta: true
release: false
default: true
release-name:
by-build-type:
beta: Firefox Beta {version}
release: Firefox {version}
treeherder:
job-symbol: gh-r
kind: build

@ -30,9 +30,10 @@ def add_variants(config, tasks):
if build_type not in only_types: if build_type not in only_types:
continue continue
for abi, apk_path in dep_task.attributes["apks"].items(): for abi, apk_metadata in dep_task.attributes["apks"].items():
if abi not in only_abis: if abi not in only_abis:
continue continue
apk_path = apk_metadata["name"]
for test in tests: for test in tests:
test = copy.deepcopy(test) test = copy.deepcopy(test)
attributes = copy.deepcopy(dep_task.attributes) attributes = copy.deepcopy(dep_task.attributes)

@ -121,7 +121,13 @@ def add_artifacts(config, tasks):
**apk **apk
), ),
}) })
apks[apk["abi"]] = apk_name apks[apk["abi"]] = {
"name": apk_name,
"github-name": artifact_template["github-name"].format(
version=config.params["version"],
**apk
)
}
yield task yield task

@ -0,0 +1,64 @@
# 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/.
"""
Apply some defaults and minor modifications to the jobs defined in the github_release
kind.
"""
from __future__ import absolute_import, print_function, unicode_literals
from taskgraph.transforms.base import TransformSequence
from taskgraph.util.schema import resolve_keyed_by
transforms = TransformSequence()
@transforms.add
def resolve_keys(config, tasks):
for task in tasks:
for key in ("worker.github-project", "worker.is-prerelease", "worker.release-name"):
resolve_keyed_by(
task,
key,
item_name=task["name"],
**{
'build-type': task["attributes"]["build-type"],
'level': config.params["level"],
}
)
yield task
@transforms.add
def build_worker_definition(config, tasks):
for task in tasks:
worker_definition = {
"artifact-map": _build_artifact_map(task),
"git-tag": config.params["head_tag"].decode("utf-8"),
"git-revision": config.params["head_rev"].decode("utf-8"),
"release-name": task["worker"]["release-name"].format(version=config.params["version"]),
}
task["worker"].update(worker_definition)
yield task
def _build_artifact_map(task):
artifact_map = []
github_names_per_path = {
apk_metadata["name"]: apk_metadata["github-name"]
for apk_metadata in task["attributes"]["apks"].values()
}
for upstream_artifact_metadata in task["worker"]["upstream-artifacts"]:
artifacts = {"paths": {}, "taskId": upstream_artifact_metadata["taskId"]}
for path in upstream_artifact_metadata["paths"]:
artifacts["paths"][path] = {
"destinations": [github_names_per_path[path]]
}
artifact_map.append(artifacts)
return artifact_map

@ -66,7 +66,10 @@ def build_upstream_artifacts(config, tasks):
} }
for dep in _get_all_deps(task).values(): for dep in _get_all_deps(task).values():
paths = sorted(dep.attributes.get("apks", {}).values()) paths = sorted([
apk_metadata["name"]
for apk_metadata in dep.attributes.get("apks", {}).values()
])
if paths: if paths:
worker_definition["upstream-artifacts"].append({ worker_definition["upstream-artifacts"].append({
"taskId": {"task-reference": "<{}>".format(dep.kind)}, "taskId": {"task-reference": "<{}>".format(dep.kind)},

@ -30,9 +30,10 @@ def add_variants(config, tasks):
if build_type not in only_types: if build_type not in only_types:
continue continue
for abi, apk_path in dep_task.attributes["apks"].items(): for abi, apk_metadata in dep_task.attributes["apks"].items():
if abi not in only_abis: if abi not in only_abis:
continue continue
apk_path = apk_metadata["name"]
for test in tests: for test in tests:
test = copy.deepcopy(test) test = copy.deepcopy(test)
attributes = copy.deepcopy(dep_task.attributes) attributes = copy.deepcopy(dep_task.attributes)

@ -109,7 +109,7 @@ def build_push_apk_payload(config, task, task_def):
Required("release-name"): text_type, Required("release-name"): text_type,
}, },
) )
def build_push_apk_payload(config, task, task_def): def build_shipit_payload(config, task, task_def):
worker = task["worker"] worker = task["worker"]
task_def["tags"]["worker-implementation"] = "scriptworker" task_def["tags"]["worker-implementation"] = "scriptworker"
@ -117,3 +117,43 @@ def build_push_apk_payload(config, task, task_def):
task_def['payload'] = { task_def['payload'] = {
'release_name': worker['release-name'] 'release_name': worker['release-name']
} }
@payload_builder(
"scriptworker-github",
schema={
Required("upstream-artifacts"): [
{
Required("taskId"): taskref_or_string,
Required("taskType"): text_type,
Required("paths"): [text_type],
}
],
Required("artifact-map"): [object],
Required("action"): text_type,
Required("git-tag"): text_type,
Required("git-revision"): text_type,
Required("github-project"): text_type,
Required("is-prerelease"): bool,
Required("release-name"): text_type,
},
)
def build_github_release_payload(config, task, task_def):
worker = task["worker"]
task_def["tags"]["worker-implementation"] = "scriptworker"
task_def["payload"] = {
"artifactMap": worker["artifact-map"],
"gitTag": worker["git-tag"],
"gitRevision": worker["git-revision"],
"isPrerelease": worker["is-prerelease"],
"releaseName": worker["release-name"],
"upstreamArtifacts": worker["upstream-artifacts"],
}
scope_prefix = config.graph_config["scriptworker"]["scope-prefix"]
task_def["scopes"].extend([
"{}:github:project:{}".format(scope_prefix, worker["github-project"]),
"{}:github:action:{}".format(scope_prefix, worker["action"]),
])

Loading…
Cancel
Save