mirror of
https://github.com/vitorpamplona/amethyst.git
synced 2026-08-12 17:23:21 +00:00
AGP 9.2.1 treats resources defined in both an app module and a library module with the same key (qualifiers="") as an error in non-debug builds. `browser_address_hint`, `browser_console_title_short`, `browser_console_title`, `browser_console_clear`, and `napplet_untitled` were defined in both `:amethyst/values/strings.xml` and `:nappletHost/values/strings.xml`. Both `:amethyst` and `:nappletHost` depend on `:commons`, so the canonical home for these shared strings is `commons/src/androidMain/res/values/strings.xml`. Update callers in both modules to use `com.vitorpamplona.amethyst.commons.R as CommonsR`. Locale translations in amethyst's `values-*/` directories remain as Android resource overlays (app module overrides library module at merge time). Fixes: Found item String/browser_console_clear more than one time (packageFdroidBenchmarkResources)
41 lines
2.9 KiB
XML
41 lines
2.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources>
|
|
<!-- Sandbox host (`:napplet` process) UI. Kept here so the sandbox module needs no app resources. -->
|
|
<string name="napplet_invalid">Invalid nApplet.</string>
|
|
<string name="napplet_webview_too_old">This device\'s WebView is too old to run nApplets safely.</string>
|
|
|
|
|
|
<!-- Trusted chrome (top bar + live action notices) -->
|
|
<string name="napplet_chrome_access_title">What “%1$s” can access</string>
|
|
<string name="napplet_chrome_keys_safe">It can never read your keys, and every sign, publish, upload, or payment was approved by you. Manage access in Settings ▸ nApplets.</string>
|
|
<string name="napplet_chrome_static_site">Static site — it has no special access to your account.</string>
|
|
<string name="napplet_chrome_permissions_desc">What this app can access</string>
|
|
<string name="napplet_chrome_reload">Reload</string>
|
|
<!-- Browser address bar and developer console strings are in :commons -->
|
|
<string name="napplet_action_published">“%1$s” published a note as you</string>
|
|
<string name="napplet_action_uploaded">“%1$s” uploaded a file</string>
|
|
<string name="napplet_action_paid">“%1$s” made a payment</string>
|
|
|
|
<!-- nSite network routing (Tor vs open web) -->
|
|
<string name="napplet_net_tor_desc">This site loads over Tor. Tap to change.</string>
|
|
<string name="napplet_net_open_desc">This site loads over the open web. Tap to change.</string>
|
|
<string name="napplet_net_tor_title">“%1$s” loads over Tor</string>
|
|
<string name="napplet_net_tor_message">This site\'s traffic is routed through Tor, so it can\'t see your IP address. Some sites are slow or broken over Tor — you can switch this site to the open web. Your choice is remembered for this site.</string>
|
|
<string name="napplet_net_open_title">“%1$s” loads over the open web</string>
|
|
<string name="napplet_net_open_message">This site loads directly, so it (and the servers it contacts) can see your IP address. Switch it back to Tor to keep your IP private. Your choice is remembered for this site.</string>
|
|
<string name="napplet_net_switch_open">Use open web</string>
|
|
<string name="napplet_net_switch_tor">Use Tor</string>
|
|
<!-- Short labels for the pull-down sheet's network row -->
|
|
<string name="napplet_net_tor_label">Loads over Tor</string>
|
|
<string name="napplet_net_open_label">Loads over the open web</string>
|
|
|
|
<!-- Favorite toggle in the pull-down sheet -->
|
|
<string name="browser_favorite_add">Add to favorites</string>
|
|
<string name="browser_favorite_remove">Remove from favorites</string>
|
|
|
|
<!-- Loading / unavailable screens -->
|
|
<string name="napplet_unavailable_title">Couldn\'t load “%1$s”</string>
|
|
<string name="napplet_unavailable_subtitle">The publisher\'s servers may be offline, or you\'re not connected. You can try again.</string>
|
|
<string name="napplet_unavailable_retry">Try again</string>
|
|
</resources>
|