Merge branch 'main' of github.com:MM2-0/Kvaesitso

This commit is contained in:
MM20 2024-02-18 23:24:27 +01:00
commit ae1c60a11c
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389
2 changed files with 5 additions and 4 deletions

View File

@ -423,7 +423,7 @@
<string name="preference_hidden_items">Résultats de recherche cachés</string>
<string name="preference_hidden_items_summary">Gérer les applications et recherches cachées</string>
<string name="backup_select_components">Sélectionnez ce que vous voulez sauvegarder :</string>
<string name="backup_not_included">Les comptes connectés ne seront pas sauvegardés. Seuls les applications et les widgets externes peuvent être restaurés sur cet appareil</string>
<string name="backup_not_included">Les comptes connectés ne seront pas sauvegardés. Seuls les applications et les widgets externes peuvent être restaurés sur cet appareil.</string>
<string name="backup_component_favorites">Favoris et applications cachées</string>
<string name="backup_component_websearches">Raccourcis de recherches Internet</string>
<string name="backup_component_widgets">Widgets intégrés</string>
@ -691,7 +691,7 @@
<string name="backup_component_themes">Thème de couleur</string>
<string name="action_import">Importer</string>
<string name="file_type_launchertheme">Thème %1$s</string>
<string name="missing_permission_plugins">La permission d\'accès aux plugins est nécessaire pour utiliser ces derniers</string>
<string name="missing_permission_plugins">La permission d\'accès aux plugins est nécessaire pour utiliser ces derniers.</string>
<string name="preference_screen_plugins">Plugins</string>
<string name="preference_screen_plugins_summary">Gérer les extensions installées</string>
<string name="no_plugins_installed">Aucun plugins installés</string>
@ -707,4 +707,5 @@
<string name="plugin_state_error">Ce plugin ne fonctionne pas correctement</string>
<string name="preference_plugin_badges">Insignes de plugin</string>
<string name="preference_plugin_badges_summary">Indique par quel plugin un résultat de recherche a été créé</string>
<string name="plugin_badge_official">Officiel</string>
</resources>

View File

@ -6,7 +6,7 @@ fun knownWebsearchByHostname(hostname: String): CustomWebsearchActionBuilder? {
// List of popular web search engines that do not implement the OpenSearch standard
return when(hostname) {
"google.com" -> CustomWebsearchActionBuilder(label = "Google", urlTemplate = "https://google.com/search?q=\${1}")
"bing.com" -> CustomWebsearchActionBuilder(label = "Google", urlTemplate = "https://bing.com/search?q=\${1}")
"bing.com" -> CustomWebsearchActionBuilder(label = "Bing", urlTemplate = "https://bing.com/search?q=\${1}")
"amazon.com" -> CustomWebsearchActionBuilder(label = "Amazon", urlTemplate = "https://www.amazon.com/s?k=\${1}")
"amazon.de" -> CustomWebsearchActionBuilder(label = "Amazon DE", urlTemplate = "https://www.amazon.de/s?k=\${1}")
"amazon.co.uk" -> CustomWebsearchActionBuilder(label = "Amazon UK", urlTemplate = "https://www.amazon.co.uk/s?k=\${1}")
@ -18,4 +18,4 @@ fun knownWebsearchByHostname(hostname: String): CustomWebsearchActionBuilder? {
"yahoo.com" -> CustomWebsearchActionBuilder(label = "Yahoo", urlTemplate = "https://search.yahoo.com/search?p=\${1}")
else -> null
}
}
}