2017-01-03 10:30:27 +11:00
|
|
|
<resources>
|
|
|
|
<string name="app_name">Tusky</string>
|
2017-02-07 18:05:50 +11:00
|
|
|
<string name="app_website">http://tusky.keylesspalace.com</string>
|
2017-01-03 10:30:27 +11:00
|
|
|
|
|
|
|
<string name="oauth_scheme">com.keylesspalace.tusky</string>
|
|
|
|
<string name="oauth_redirect_host">oauth2redirect</string>
|
|
|
|
<string name="preferences_file_key">com.keylesspalace.tusky.PREFERENCES</string>
|
|
|
|
|
2017-01-08 09:24:02 +11:00
|
|
|
<string name="endpoint_status">/api/v1/statuses</string>
|
|
|
|
<string name="endpoint_media">/api/v1/media</string>
|
|
|
|
<string name="endpoint_timelines_home">/api/v1/timelines/home</string>
|
|
|
|
<string name="endpoint_timelines_mentions">/api/v1/timelines/mentions</string>
|
|
|
|
<string name="endpoint_timelines_public">/api/v1/timelines/public</string>
|
|
|
|
<string name="endpoint_timelines_tag">/api/v1/timelines/tag/%s</string>
|
|
|
|
<string name="endpoint_notifications">/api/v1/notifications</string>
|
|
|
|
<string name="endpoint_follows">/api/v1/follows</string>
|
|
|
|
<string name="endpoint_get_status">/api/v1/statuses/%s</string>
|
|
|
|
<string name="endpoint_accounts">/api/v1/accounts/%s</string>
|
|
|
|
<string name="endpoint_verify_credentials">/api/v1/accounts/verify_credentials</string>
|
|
|
|
<string name="endpoint_statuses">/api/v1/accounts/%s/statuses</string>
|
|
|
|
<string name="endpoint_following">/api/v1/accounts/%s/following</string>
|
|
|
|
<string name="endpoint_followers">/api/v1/accounts/%s/followers</string>
|
|
|
|
<string name="endpoint_relationships">/api/v1/accounts/relationships</string>
|
|
|
|
<string name="endpoint_blocks">/api/v1/blocks</string>
|
|
|
|
<string name="endpoint_favourites">/api/v1/favourites</string>
|
|
|
|
<string name="endpoint_delete">/api/v1/statuses/%s</string>
|
|
|
|
<string name="endpoint_reblog">/api/v1/statuses/%s/reblog</string>
|
|
|
|
<string name="endpoint_unreblog">/api/v1/statuses/%s/unreblog</string>
|
|
|
|
<string name="endpoint_favourite">/api/v1/statuses/%s/favourite</string>
|
|
|
|
<string name="endpoint_unfavourite">/api/v1/statuses/%s/unfavourite</string>
|
|
|
|
<string name="endpoint_context">/api/v1/statuses/%s/context</string>
|
|
|
|
<string name="endpoint_reblogged_by">/api/v1/statuses/%s/reblogged_by</string>
|
|
|
|
<string name="endpoint_favourited_by">/api/v1/statuses/%s/favourited_by</string>
|
|
|
|
<string name="endpoint_follow">/api/v1/accounts/%s/follow</string>
|
|
|
|
<string name="endpoint_unfollow">/api/v1/accounts/%s/unfollow</string>
|
|
|
|
<string name="endpoint_block">/api/v1/accounts/%s/block</string>
|
|
|
|
<string name="endpoint_unblock">/api/v1/accounts/%s/unblock</string>
|
|
|
|
<string name="endpoint_apps">/api/v1/apps</string>
|
2017-01-03 10:30:27 +11:00
|
|
|
<string name="endpoint_authorize">/oauth/authorize</string>
|
|
|
|
<string name="endpoint_token">/oauth/token</string>
|
2017-01-31 15:51:02 +11:00
|
|
|
<string name="endpoint_devices_register">/api/v1/devices/register</string>
|
|
|
|
<string name="endpoint_devices_unregister">/api/v1/devices/unregister</string>
|
2017-01-03 10:30:27 +11:00
|
|
|
|
2017-02-17 05:52:55 +11:00
|
|
|
<string name="error_authorization_unknown">An unidentified authorization error occurred.</string>
|
2017-01-08 09:24:02 +11:00
|
|
|
<string name="error_fetching_notifications">Notifications could not be fetched.</string>
|
2017-01-28 14:33:43 +11:00
|
|
|
<string name="error_compose_character_limit">The status is too long!</string>
|
|
|
|
<string name="error_sending_status">The status failed to be sent.</string>
|
2017-01-17 05:15:42 +11:00
|
|
|
<string name="error_media_upload_size">The file must be less than 4MB.</string>
|
|
|
|
<string name="error_media_upload_type">That type of file is not able to be uploaded.</string>
|
|
|
|
<string name="error_media_upload_opening">That file could not be opened.</string>
|
|
|
|
<string name="error_media_upload_permission">Permission to read media is required to upload it.</string>
|
2017-01-28 14:33:43 +11:00
|
|
|
<string name="error_media_upload_image_or_video">Images and videos cannot both be attached to the same status.</string>
|
2017-01-17 05:15:42 +11:00
|
|
|
<string name="error_media_upload_sending">The media could not be uploaded.</string>
|
2017-01-31 15:51:02 +11:00
|
|
|
<string name="error_following">That user wasn\'t followed.</string>
|
|
|
|
<string name="error_unfollowing">That user wasn\'t unfollowed.</string>
|
|
|
|
<string name="error_blocking">That user wasn\'t blocked.</string>
|
|
|
|
<string name="error_unblocking">That user wasn\'t unblocked.</string>
|
2017-01-08 09:24:02 +11:00
|
|
|
|
|
|
|
<string name="title_home">Home</string>
|
|
|
|
<string name="title_notifications">Notifications</string>
|
|
|
|
<string name="title_public">Public</string>
|
2017-01-23 16:19:30 +11:00
|
|
|
<string name="title_thread">Thread</string>
|
2017-01-27 11:34:32 +11:00
|
|
|
<string name="title_tag">#%s</string>
|
2017-01-28 14:33:43 +11:00
|
|
|
<string name="title_statuses">Posts</string>
|
|
|
|
<string name="title_follows">Follows</string>
|
|
|
|
<string name="title_followers">Followers</string>
|
2017-02-21 13:32:10 +11:00
|
|
|
<string name="title_favourites">Favourites</string>
|
2017-01-03 10:30:27 +11:00
|
|
|
|
|
|
|
<string name="status_username_format">\@%s</string>
|
|
|
|
<string name="status_boosted_format">%s boosted</string>
|
2017-01-11 07:41:50 +11:00
|
|
|
<string name="status_sensitive_media_title">Sensitive Media</string>
|
|
|
|
<string name="status_sensitive_media_directions">Click to view.</string>
|
2017-02-01 10:42:05 +11:00
|
|
|
<string name="status_content_warning_show_more">Show More</string>
|
|
|
|
<string name="status_content_warning_show_less">Show Less</string>
|
2017-01-03 10:30:27 +11:00
|
|
|
|
2017-01-31 15:51:02 +11:00
|
|
|
<string name="footer_retry_statuses">Could not load the rest of the statuses.</string>
|
|
|
|
<string name="footer_retry_notifications">Could not load the rest of the statuses.</string>
|
|
|
|
<string name="footer_retry_accounts">Could not load the rest of the accounts.</string>
|
2017-02-08 08:47:05 +11:00
|
|
|
<string name="footer_end_of_statuses">end of the statuses</string>
|
|
|
|
<string name="footer_end_of_notifications">end of the notifications</string>
|
|
|
|
<string name="footer_end_of_accounts">end of the accounts</string>
|
2017-01-19 05:35:07 +11:00
|
|
|
|
2017-01-28 14:33:43 +11:00
|
|
|
<string name="notification_reblog_format">%s boosted your status</string>
|
|
|
|
<string name="notification_favourite_format">%s favourited your status</string>
|
2017-01-08 09:24:02 +11:00
|
|
|
<string name="notification_follow_format">%s followed you</string>
|
|
|
|
|
|
|
|
<string name="action_compose">Compose</string>
|
2017-01-17 05:15:42 +11:00
|
|
|
<string name="action_login">Log In</string>
|
2017-01-03 10:30:27 +11:00
|
|
|
<string name="action_logout">Log Out</string>
|
2017-01-08 09:24:02 +11:00
|
|
|
<string name="action_follow">Follow</string>
|
2017-01-28 14:33:43 +11:00
|
|
|
<string name="action_unfollow">Unfollow</string>
|
2017-01-08 09:24:02 +11:00
|
|
|
<string name="action_block">Block</string>
|
2017-01-28 14:33:43 +11:00
|
|
|
<string name="action_unblock">Unblock</string>
|
2017-01-08 09:24:02 +11:00
|
|
|
<string name="action_delete">Delete</string>
|
2017-01-17 05:15:42 +11:00
|
|
|
<string name="action_send">TOOT</string>
|
|
|
|
<string name="action_retry">Retry</string>
|
2017-02-04 11:53:33 +11:00
|
|
|
<string name="action_mark_sensitive">Mark media sensitive</string>
|
|
|
|
<string name="action_hide_text">Hide text behind warning</string>
|
|
|
|
<string name="action_ok">Ok</string>
|
2017-01-19 05:35:07 +11:00
|
|
|
<string name="action_cancel">Cancel</string>
|
2017-02-05 15:20:19 +11:00
|
|
|
<string name="action_close">Close</string>
|
2017-01-23 16:19:30 +11:00
|
|
|
<string name="action_back">Back</string>
|
2017-01-28 14:33:43 +11:00
|
|
|
<string name="action_profile">Profile</string>
|
2017-01-31 15:51:02 +11:00
|
|
|
<string name="action_open_in_web">Open In Web</string>
|
2017-02-05 18:34:55 +11:00
|
|
|
<string name="action_preferences">Preferences</string>
|
|
|
|
<string name="action_set_time">Set</string>
|
2017-02-21 13:32:10 +11:00
|
|
|
<string name="action_favourites">Favourites</string>
|
2017-01-23 16:19:30 +11:00
|
|
|
|
|
|
|
<string name="confirmation_send">Toot!</string>
|
2017-01-17 05:15:42 +11:00
|
|
|
|
2017-02-05 15:20:19 +11:00
|
|
|
<string name="hint_domain">example.com</string>
|
|
|
|
<string name="hint_compose">What\'s Happening?</string>
|
|
|
|
<string name="hint_content_warning">Beware, folks</string>
|
|
|
|
|
|
|
|
<string name="link_no_account">No account?</string>
|
|
|
|
|
|
|
|
<string name="dialog_no_account">
|
|
|
|
Similar to an email address, a Mastodon account can be provided by any one of many
|
|
|
|
websites.\n\nSo, find the address of one you\'d like to join and enter it here. This will
|
|
|
|
direct you there to either make an account or log in.
|
|
|
|
</string>
|
2017-02-07 18:05:50 +11:00
|
|
|
<string name="dialog_title_finishing_media_upload">Finishing Media Upload</string>
|
|
|
|
<string name="dialog_message_uploading_media">Uploading…</string>
|
2017-01-08 09:24:02 +11:00
|
|
|
|
2017-02-04 11:53:33 +11:00
|
|
|
<string name="visibility_public">Show on public timeline</string>
|
|
|
|
<string name="visibility_unlisted">Do not display on public timeline</string>
|
|
|
|
<string name="visibility_private">Mark as private</string>
|
2017-01-08 09:24:02 +11:00
|
|
|
|
2017-01-25 15:35:54 +11:00
|
|
|
<string name="notification_service_description">Allows Tusky to check for Mastodon notifications.</string>
|
|
|
|
<string name="notification_service_several_mentions">%d new mentions</string>
|
|
|
|
<string name="notification_service_one_mention">Mention from %s</string>
|
|
|
|
|
2017-02-05 18:34:55 +11:00
|
|
|
<string name="pref_title_notification_settings">Notifications</string>
|
|
|
|
<string name="pref_title_pull_notifications">Enable Pull Notifcations</string>
|
|
|
|
<string name="pref_summary_pull_notifications">check for notifications periodically</string>
|
|
|
|
<string name="pref_title_pull_notification_check_interval">Check Interval</string>
|
|
|
|
<string name="pref_summary_pull_notification_check_interval">how often to pull</string>
|
|
|
|
<string name="pref_title_notification_alert_sound">Notify with a sound</string>
|
|
|
|
<string name="pref_title_notification_style_vibrate">Notify with vibration</string>
|
|
|
|
<string name="pref_title_notification_style_light">Notify with light</string>
|
2017-02-17 05:52:55 +11:00
|
|
|
<string name="pref_title_appearance_settings">Appearance</string>
|
|
|
|
<string name="pref_title_light_theme">Use The Light Theme</string>
|
2017-02-05 18:34:55 +11:00
|
|
|
|
2017-01-03 10:30:27 +11:00
|
|
|
</resources>
|