Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/platform/android/java/lib/res/values/strings.xml
10287 views
1
<?xml version="1.0" encoding="utf-8"?>
2
<resources>
3
<string name="godot_project_name_string">godot-project-name</string>
4
<string name="text_paused_cellular">Would you like to enable downloading over cellular connections? Depending on your data plan, this may cost you money.</string>
5
<string name="text_paused_cellular_2">If you choose not to enable downloading over cellular connections, the download will automatically resume when wi-fi is available.</string>
6
<string name="text_button_resume_cellular">Resume download</string>
7
<string name="text_button_wifi_settings">Wi-Fi settings</string>
8
<string name="text_verifying_download">Verifying Download</string>
9
<string name="text_validation_complete">XAPK File Validation Complete. Select OK to exit.</string>
10
<string name="text_validation_failed">XAPK File Validation Failed.</string>
11
<string name="text_button_pause">Pause Download</string>
12
<string name="text_button_resume">Resume Download</string>
13
<string name="text_button_cancel">Cancel</string>
14
<string name="text_button_cancel_verify">Cancel Verification</string>
15
<string name="text_error_title">Error!</string>
16
<string name="error_engine_setup_message">Unable to setup the Godot Engine! Aborting…</string>
17
<string name="error_missing_vulkan_requirements_message">Warning - this device does not meet the requirements for Vulkan support</string>
18
19
<!-- APK Expansion Strings -->
20
21
<!-- When a download completes, a notification is displayed, and this
22
string is used to indicate that the download successfully completed.
23
Note that such a download could have been initiated by a variety of
24
applications, including (but not limited to) the browser, an email
25
application, a content marketplace. -->
26
<string name="notification_download_complete">Download complete</string>
27
28
<!-- When a download completes, a notification is displayed, and this
29
string is used to indicate that the download failed.
30
Note that such a download could have been initiated by a variety of
31
applications, including (but not limited to) the browser, an email
32
application, a content marketplace. -->
33
<string name="notification_download_failed">Download unsuccessful</string>
34
35
36
<string name="state_unknown">Starting…</string>
37
<string name="state_idle">Waiting for download to start</string>
38
<string name="state_fetching_url">Looking for resources to download</string>
39
<string name="state_connecting">Connecting to the download server</string>
40
<string name="state_downloading">Downloading resources</string>
41
<string name="state_completed">Download finished</string>
42
<string name="state_paused_network_unavailable">Download paused because no network is available</string>
43
<string name="state_paused_network_setup_failure">Download paused. Test a website in browser</string>
44
<string name="state_paused_by_request">Download paused</string>
45
<string name="state_paused_wifi_unavailable">Download paused because wifi is unavailable</string>
46
<string name="state_paused_wifi_disabled">Download paused because wifi is disabled</string>
47
<string name="state_paused_roaming">Download paused because you are roaming</string>
48
<string name="state_paused_sdcard_unavailable">Download paused because the external storage is unavailable</string>
49
<string name="state_failed_unlicensed">Download failed because you may not have purchased this app</string>
50
<string name="state_failed_fetching_url">Download failed because the resources could not be found</string>
51
<string name="state_failed_sdcard_full">Download failed because the external storage is full</string>
52
<string name="state_failed_cancelled">Download canceled</string>
53
<string name="state_failed">Download failed</string>
54
55
<string name="kilobytes_per_second">%1$s KB/s</string>
56
<string name="time_remaining">Time remaining: %1$s</string>
57
<string name="time_remaining_notification">%1$s left</string>
58
59
<!-- Labels for the dialog action buttons -->
60
<string name="dialog_ok">OK</string>
61
</resources>
62
63