|
| 1 | +<resources> |
| 2 | + <string name="example_bean_default_label">FunnySaltyFish</string> |
| 3 | + <string name="example_string_initial_value">FunnySaltyFish, tap to input</string> |
| 4 | + <string name="section_basic_states_title">Basic States</string> |
| 5 | + <string name="section_basic_states_description">Examples for saving String, Boolean, Bean, and Parcelable values.</string> |
| 6 | + <string name="saving_string_title">Saving String</string> |
| 7 | + <string name="saving_string_description">Changes are saved immediately after input.</string> |
| 8 | + <string name="string_value_label">String Value</string> |
| 9 | + <string name="saving_boolean_title">Saving Boolean</string> |
| 10 | + <string name="saving_boolean_description">The state is persisted automatically after toggling.</string> |
| 11 | + <string name="current_boolean_value">Current value: %1$s</string> |
| 12 | + <string name="saving_custom_bean_title">Saving Custom Bean</string> |
| 13 | + <string name="saving_custom_bean_description">Persist a custom object with a type converter.</string> |
| 14 | + <string name="add_bean_id">Add bean id</string> |
| 15 | + <string name="section_collections_title">Collections And Types</string> |
| 16 | + <string name="section_collections_description">Review how lists, nullable values, custom converters, and sealed classes are persisted.</string> |
| 17 | + <string name="section_behavior_title">Behavior Samples</string> |
| 18 | + <string name="section_behavior_description">Includes external data change sensing and save-on-dispose behavior.</string> |
| 19 | + <string name="section_scope_title">Scope And Async</string> |
| 20 | + <string name="section_scope_description">Includes ViewModel, custom coroutine scope, and long-running task examples.</string> |
| 21 | + <string name="list_example_item_name">Name %1$s</string> |
| 22 | + <string name="list_example_title">List Example</string> |
| 23 | + <string name="list_example_description">Additions and removals in the list are fully persisted.</string> |
| 24 | + <string name="action_add">Add</string> |
| 25 | + <string name="action_remove">Remove</string> |
| 26 | + <string name="save_when_disposed_dialog_title">Save When Disposed</string> |
| 27 | + <string name="save_when_disposed_initial_value">This one will be saved only when disposed</string> |
| 28 | + <string name="dialog_value_label">Dialog Value</string> |
| 29 | + <string name="action_close">Close</string> |
| 30 | + <string name="save_when_disposed_description">Saving is triggered only when the dialog closes, which is useful for batch edits.</string> |
| 31 | + <string name="action_open_dialog">Open Dialog</string> |
| 32 | + <string name="nullable_bean_title">Nullable Bean</string> |
| 33 | + <string name="nullable_bean_description">Nullable objects can also be saved and restored.</string> |
| 34 | + <string name="nullable_bean_not_null_label">I'm not null</string> |
| 35 | + <string name="action_set_not_null">Set Not Null</string> |
| 36 | + <string name="action_set_null">Set Null</string> |
| 37 | + <string name="sense_external_data_change_title">Sense External Data Change</string> |
| 38 | + <string name="sense_external_data_change_description">Update the underlying storage directly and the UI will react to the change.</string> |
| 39 | + <string name="sense_external_data_change_value_1">Hello World(1)</string> |
| 40 | + <string name="sense_external_data_change_value_2">Hello World(2)</string> |
| 41 | + <string name="sense_external_data_change_var1">var1: %1$s</string> |
| 42 | + <string name="sense_external_data_change_var2">var2: %1$s</string> |
| 43 | + <string name="sense_external_data_change_new_value">Hello World %1$s</string> |
| 44 | + <string name="action_change_local_data">Change Local Data</string> |
| 45 | + <string name="action_not_null">Not Null</string> |
| 46 | + <string name="action_add_id">Add Id</string> |
| 47 | + <string name="sense_external_data_change_bean_label">not null</string> |
| 48 | + <string name="sense_external_data_change_list_initial_label">initial</string> |
| 49 | + <string name="sense_external_data_change_list_added_label">add</string> |
| 50 | + <string name="custom_type_converter_title">Custom Type Converter</string> |
| 51 | + <string name="custom_type_converter_description">Define custom serialization logic for unsupported types.</string> |
| 52 | + <string name="action_randomly_change">Randomly Change</string> |
| 53 | + <string name="saving_sealed_class_title">Saving Sealed Class</string> |
| 54 | + <string name="saving_sealed_class_description">Sealed classes can also be persisted reliably through a converter.</string> |
| 55 | + <string name="theme_label">Theme</string> |
| 56 | + <string name="theme_default">Default</string> |
| 57 | + <string name="theme_dynamic">Dynamic</string> |
| 58 | + <string name="custom_scope_view_model_title">Custom CoroutineScope And ViewModel</string> |
| 59 | + <string name="custom_scope_view_model_description">State is created inside the ViewModel, and coroutines follow the ViewModel lifecycle.</string> |
| 60 | + <string name="username_label">Username</string> |
| 61 | + <string name="password_label">Password</string> |
| 62 | + <string name="time_consuming_log_start">Start saving data. This will take 5 seconds...</string> |
| 63 | + <string name="time_consuming_log_finish">Finish saving data. key=%1$s, data=%2$s</string> |
| 64 | + <string name="time_consuming_save_title">Time Consuming Save</string> |
| 65 | + <string name="time_consuming_save_description">Simulates slow storage and blocks the back action until saving finishes.</string> |
| 66 | + <string name="action_submit_with_value">Submit (current value: %1$s)</string> |
| 67 | + <string name="time_consuming_wait_message">The current job is not finished. Please wait until it completes.</string> |
| 68 | + <string name="hero_title">ComposeDataSaver Examples</string> |
| 69 | + <string name="hero_description">A compact showcase of common ComposeDataSaver persistence scenarios with live interaction.</string> |
| 70 | + <string name="hero_log_drawer_title">Log Drawer</string> |
| 71 | + <string name="hero_log_drawer_description">Open it here, or swipe right from the left edge to inspect logs.</string> |
| 72 | + <string name="action_open">Open</string> |
| 73 | + <string name="hero_preview_mode_notice">Preview mode is active. Using in-memory storage.</string> |
| 74 | + <string name="log_drawer_title">Runtime Logs</string> |
| 75 | + <string name="log_drawer_description">Inspect read/write logs and the manual logs emitted by these examples.</string> |
| 76 | + <string name="action_clear">Clear</string> |
| 77 | + <string name="action_test_debug">Test Debug</string> |
| 78 | + <string name="action_test_info">Test Info</string> |
| 79 | + <string name="test_debug_log_message">Test Debug log</string> |
| 80 | + <string name="test_info_log_message">Test Info log</string> |
| 81 | + <string name="log_console_empty_text">No logs yet. Interact with the examples on the main page to inspect them here.</string> |
| 82 | + <string name="log_level_label">Log Level: %1$s</string> |
| 83 | + <string name="log_console_empty_text_default">No logs yet. Use the examples on the left to inspect output here.</string> |
| 84 | + <string name="log_level_off">Off</string> |
| 85 | + <string name="log_level_error">Error</string> |
| 86 | + <string name="log_level_warn">Warn</string> |
| 87 | + <string name="log_level_info">Info</string> |
| 88 | + <string name="log_level_debug">Debug</string> |
| 89 | + <string name="log_level_verbose">Verbose</string> |
| 90 | + <string name="saving_parcelable_title">Saving Parcelable</string> |
| 91 | + <string name="saving_parcelable_android_description">Only MMKV supports Parcelable in the base implementation.</string> |
| 92 | + <string name="parcelable_name">FunnySaltyFish</string> |
| 93 | + <string name="action_add_age">Add age by 1</string> |
| 94 | + <string name="saving_parcelable_unsupported_description">This platform does not provide a Parcelable persistence sample.</string> |
| 95 | + <string name="saving_parcelable_unsupported_message">Run the Android target if you want to try Parcelable persistence.</string> |
| 96 | +</resources> |
0 commit comments