Skip to content

Commit

Permalink
Updated translations
Browse files Browse the repository at this point in the history
  • Loading branch information
Waboodoo committed Feb 12, 2023
1 parent b0f365b commit 01171df
Show file tree
Hide file tree
Showing 3 changed files with 138 additions and 1 deletion.
42 changes: 42 additions & 0 deletions HTTPShortcuts/app/src/main/res/values-es/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -862,6 +862,12 @@ Consulte la documentación en la sección de variables para más información."<
<!-- Section subtitle, shown in shortcut editor when the shortcut has no custom HTTP headers -->
<string name="subtitle_request_headers_none">"No hay cabeceras establecidas"</string>

<!-- Section subtitle, shown in shortcut editor when the shortcut has one or more custom HTTP headers -->
<plurals name="subtitle_request_headers_pattern">
<item quantity="one">"1 encabezado configurado"</item>
<item quantity="other">"%d encabezados configurados"</item>
</plurals>

<!-- Section subtitle, shown in shortcut editor when no authentication behavior is defined -->
<string name="subtitle_authentication_none">"No hay autentificación"</string>

Expand All @@ -877,6 +883,12 @@ Consulte la documentación en la sección de variables para más información."<
<!-- Section subtitle, shown in shortcut editor when no (POST) parameters are set -->
<string name="subtitle_request_body_params_none">"No hay parámetros establecidos"</string>

<!-- Section subtitle, shown in shortcut editor when one or more (POST) parameters are set -->
<plurals name="subtitle_request_body_params_pattern">
<item quantity="one">"1 parámetro configurado"</item>
<item quantity="other">"%d parámetros configurados"</item>
</plurals>

<!-- Section subtitle, shown in shortcut editor when no custom request body is set -->
<string name="subtitle_request_body_none">"No se ha establecido el cuerpo de la solicitud"</string>

Expand Down Expand Up @@ -2033,4 +2045,34 @@ Puedes excluir atajos individuales de aparecer aquí a través de una opción qu

<!-- Text displayed in details of "Shortcut triggered" event in Event History, to denote a specific type of shortcut trigger/origin: -->
<string name="label_event_history_trigger_type_scripting">"Scripting"</string>

<!-- Generic dialog button: Configure (e.g. some settings) -->
<string name="dialog_configure">"Configurar"</string>

<!-- Dialog message, shown when selecting a shortcut to run from an external app (e.g. Tasker), to prompt the user to enable the "Draw over apps" option -->
<string name="message_plugin_dialog_configure_app_overlay">"Para poder activar un acceso directo desde otra aplicación, primero debe permitir que la aplicación de accesos directos HTTP dibuje sobre otras aplicaciones.

Toque el botón \“%s\” a continuación para configurar esto ahora."</string>

<!-- Label for option in shortcut editor, selecting it will cause a secondary app to appear in the device's launcher. This app will trigger the shortcut -->
<string name="label_secondary_launcher_shortcut">"Permitir la activación a través de la aplicación de inicio secundaria"</string>

<!-- Shortcut Action Title: Action that allows to share text to another app -->
<string name="action_share_text_title">"Compartir texto"</string>

<!-- Label, for dropdown picker, allowing to configure a shortcut to be executed repeatedly. The picker allows to select the interval -->
<string name="label_run_repeatedly">"Ejecutar repetidamente"</string>

<!-- Dialog message, shown when configuring a shortcut to run repeatedly, to prompt the user to enable the "Draw over apps" option -->
<string name="message_run_repeatedly_dialog_configure_app_overlay">"Para que un atajo pueda ejecutarse repetidamente de manera confiable, primero debe permitir que la aplicación Atajos HTTP se dibuje sobre otras aplicaciones.

Toque el botón \“%s\” a continuación para configurar esto ahora.

Es posible que también deba excluir la aplicación de Optimizaciones de batería. Puede encontrar esto en la configuración de la aplicación."</string>

<!-- Instructions: shown below settings for configuring a shortcut to run repeatedly, to inform the user about the limitations of the feature -->
<string name="instructions_repetitions">"El momento de la repetición no es exacto, pero puede variar unos minutos, ya que está sujeto a las optimizaciones de energía de Android. Tenga en cuenta que el uso de esta función puede aumentar significativamente el uso de la batería de la aplicación."</string>

<!-- Label: Option in dropdown menu for configuring a shortcut's repetition pattern: don't repeat -->
<string name="label_no_repetition">"Sin repetición"</string>
</resources>
62 changes: 61 additions & 1 deletion HTTPShortcuts/app/src/main/res/values-fr/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2014,7 +2014,7 @@ Vous pouvez empêcher les raccourcis individuels d'apparaître ici grâce à une
<string name="label_exclude_from_history">"Exclusion de l'historique des événements"</string>

<!-- Title of event history entry, which states that a shortcut was triggered. %s is a placeholder for the shortcut's name -->
<string name="event_history_title_shortcut_triggered">"déclenché par \"%s\"."</string>
<string name="event_history_title_shortcut_triggered">"\"%s\" déclenché."</string>

<!-- Title of event history entry, which states that an HTTP request was sent. %s is a placeholder for the shortcut's name -->
<string name="event_history_title_http_request_sent">"Demande HTTP envoyée pour \"%s\""</string>
Expand Down Expand Up @@ -2060,4 +2060,64 @@ Vous pouvez empêcher les raccourcis individuels d'apparaître ici grâce à une

<!-- Text displayed in details of "Shortcut triggered" event in Event History, to denote a specific type of shortcut trigger/origin: -->
<string name="label_event_history_trigger_type_scripting">"Scripting"</string>

<!-- Message shown in snackbar to let the user know that the details of a (selected) history event were copied to the clipboard -->
<string name="message_history_event_details_copied">"Les détails de l'événement ont été copiés."</string>

<!-- Shortcut Action Title: Sets a custom result, which is returned to the parent shortcut (i.e. the one that called executeShortcut) or to Tasker -->
<string name="action_type_set_result_title">"Résultat du jeu"</string>

<!-- Shortcut Action Description: Sets a custom result, which is returned to the parent shortcut (i.e. the one that called executeShortcut) or to Tasker -->
<string name="action_type_set_result_description">"Définir une chaîne personnalisée qui sera renvoyée au raccourci qui a appelé executeShortcut, ou à Tasker."</string>

<!-- Label/description for the "result" data object which allows the user to pass arbitrary data from a shortcut at the end of execution back to Tasker (or other 3rd party apps) -->
<string name="label_plugin_result">"Résultat"</string>

<!-- Description for the "result" data object which allows the user to pass arbitrary data from a shortcut at the end of execution back to Tasker (or other 3rd party apps) -->
<string name="label_plugin_result_detail">"Chaîne de données personnalisée telle que définie par la fonction `setResult()`."</string>

<!-- Generic dialog button: Configure (e.g. some settings) -->
<string name="dialog_configure">"Configurer"</string>

<!-- Dialog message, shown when selecting a shortcut to run from an external app (e.g. Tasker), to prompt the user to enable the "Draw over apps" option -->
<string name="message_plugin_dialog_configure_app_overlay">"Pour pouvoir déclencher un raccourci à partir d'une autre application, vous devez d'abord autoriser l'application Raccourcis HTTP à dessiner sur d'autres applications.

Appuyez sur le bouton \\"%s\\" ci-dessous pour configurer ceci maintenant."</string>

<!-- Label for option in shortcut editor, selecting it will cause a secondary app to appear in the device's launcher. This app will trigger the shortcut -->
<string name="label_secondary_launcher_shortcut">"Permettre le déclenchement via une application de lancement secondaire"</string>

<!-- Name of secondary app, which can be enabled to trigger specific shortcuts when clicked -->
<string name="title_activity_secondary_launcher_trigger">"Raccourci de déclenchement"</string>

<!-- Dialog option: shown in code snippet picker, option to get the meta data of a selected file -->
<string name="dialog_code_snippet_get_file_meta">"Obtenir les métadonnées du fichier sélectionné"</string>

<!-- Shortcut Action Title: log (i.e., track/record) a custom user-specified event, consisting of a title and a message, for debugging purposes -->
<string name="action_type_log_event">"Enregistrer un événement"</string>

<!-- Shortcut Action Title: Action that allows to share text to another app -->
<string name="action_share_text_title">"Partager du texte"</string>

<!-- Label, for dropdown picker, allowing to configure a shortcut to be executed repeatedly. The picker allows to select the interval -->
<string name="label_run_repeatedly">"Exécuter à plusieurs reprises"</string>

<!-- Dialog message, shown when configuring a shortcut to run repeatedly, to prompt the user to enable the "Draw over apps" option -->
<string name="message_run_repeatedly_dialog_configure_app_overlay">"Pour qu'un raccourci puisse être exécuté de manière répétée et fiable, vous devez d'abord permettre à l'application Raccourcis HTTP de prendre le dessus sur d'autres applications.

Appuyez sur le bouton \\"%s\\" ci-dessous pour configurer cela maintenant.

Vous devrez peut-être aussi exclure l'application des optimisations de la batterie. Vous pouvez trouver cela dans les paramètres de l'application."</string>

<!-- Instructions: shown below settings for configuring a shortcut to run repeatedly, to inform the user about the limitations of the feature -->
<string name="instructions_repetitions">"Le moment de la répétition n'est pas exact mais peut varier de quelques minutes, car il est soumis aux optimisations de puissance d'Android. Veuillez noter que l'utilisation de cette fonction peut augmenter considérablement l'utilisation de la batterie par l'application."</string>

<!-- Label: Option in dropdown menu for configuring a shortcut's repetition pattern: don't repeat -->
<string name="label_no_repetition">"Pas de répétition"</string>

<!-- Title of setting that allows the user to have the app ignore battery optimization modes. This is a troubleshooting option, to prevent scheduled requests from failing -->
<string name="settings_ignore_battery_optimizations">"Exclure de l'optimisation de la batterie"</string>

<!-- Subtitle of setting that allows the user to have the app ignore battery optimization modes. This is a troubleshooting option, to prevent scheduled requests from failing -->
<string name="settings_ignore_battery_optimizations_summary">"Activez cette option si vous rencontrez des problèmes de programmation ou d'exécution répétée des raccourcis."</string>
</resources>
35 changes: 35 additions & 0 deletions HTTPShortcuts/app/src/main/res/values-zh-rCN/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2082,4 +2082,39 @@

<!-- Shortcut Action Title: log (i.e., track/record) a custom user-specified event, consisting of a title and a message, for debugging purposes -->
<string name="action_type_log_event">"记录事件"</string>

<!-- Shortcut Action Title: Action that allows to share text to another app -->
<string name="action_share_text_title">"分享文本"</string>

<!-- Label, for dropdown picker, allowing to configure a shortcut to be executed repeatedly. The picker allows to select the interval -->
<string name="label_run_repeatedly">"重复运行"</string>

<!-- Dialog message, shown when configuring a shortcut to run repeatedly, to prompt the user to enable the "Draw over apps" option -->
<string name="message_run_repeatedly_dialog_configure_app_overlay">"要让快捷方式可靠地重复运行,你首先需要允许本应用出现在其他应用上方。

轻按下方的 \“%s\” 按钮立即进行配置。

你可能还需要将本应用排除在电量优化之外。你可以在应用的设置中找到这个。"</string>

<!-- Instructions: shown below settings for configuring a shortcut to run repeatedly, to inform the user about the limitations of the feature -->
<string name="instructions_repetitions">"收到安卓系统电源优化的影响,重复的时间不会一成不变,可能会相差几分钟。请注意,使用本功能可能大幅增加本应用的耗电。"</string>

<!-- Label: Option in dropdown menu for configuring a shortcut's repetition pattern: don't repeat -->
<string name="label_no_repetition">"不重复"</string>

<!-- Label: Option in dropdown menu for configuring a shortcut's repetition pattern: repeat every %d minutes -->
<plurals name="label_repeat_every_x_minutes">
<item quantity="other">"每 %d 分钟"</item>
</plurals>

<!-- Label: Option in dropdown menu for configuring a shortcut's repetition pattern: repeat every %d hours -->
<plurals name="label_repeat_every_x_hours">
<item quantity="other">"每 %d 小时"</item>
</plurals>

<!-- Title of setting that allows the user to have the app ignore battery optimization modes. This is a troubleshooting option, to prevent scheduled requests from failing -->
<string name="settings_ignore_battery_optimizations">"排除在电量优化之外"</string>

<!-- Subtitle of setting that allows the user to have the app ignore battery optimization modes. This is a troubleshooting option, to prevent scheduled requests from failing -->
<string name="settings_ignore_battery_optimizations_summary">"如果你遇到快捷方式定期或重复执行方面的问题,可以考虑开启本选项。"</string>
</resources>

0 comments on commit 01171df

Please sign in to comment.