1<?xml version="1.0" encoding="utf-8"?> 2<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> 3 <!-- application name and title of error dialogs--> 4 <string name="app_name">Sound Recorder</string> 5 6 <!-- Screen title before and during recording --> 7 <string name="record_your_message">Record your message</string> 8 <!-- Screen title after recording --> 9 <string name="message_recorded">Message recorded</string> 10 <!-- Screen title while playing back a recording --> 11 <string name="review_message">Review message</string> 12 <!-- Label shown during recording --> 13 <string name="recording">Recording</string> 14 <!-- Label shown when the recording is stopped for a reason other than the user stopping it (e.g. the sd card was removed) --> 15 <string name="recording_stopped">Recording stopped</string> 16 <!-- label shown when there is not enough space to record something --> 17 <string name="storage_is_full">Storage is full</string> 18 <!-- label shown when the recording has reached maximum allowed file size --> 19 <string name="max_length_reached">Maximum length reached</string> 20 <!-- label shown when there is no sd card available to record to --> 21 <string name="insert_sd_card">Please insert an SD card</string> 22 <!-- label shown when there is more than 1 minute but less than 9 minutes of space left to record --> 23 <string name="min_available"><xliff:g id="minutes">%d</xliff:g> min available</string> 24 <!-- label shown when there is less than 1 minute of space left to record --> 25 <string name="sec_available"><xliff:g id="seconds">%d</xliff:g>s available</string> 26 27 <!-- button to accept the current recording and return it to the caller --> 28 <string name="accept">Use this recording</string> 29 <!-- button to discard the current recording and return to the caller --> 30 <string name="discard">Discard</string> 31 <!-- acknowlegement button in a number of dialogs --> 32 <string name="button_ok">OK</string> 33 <!-- Do not translate. Format of the timer that shows how much has been recorded so far --> 34 <string name="timer_format"><xliff:g id="format">%02d:%02d</xliff:g></string> 35 <!-- label shown before the user has recorded anything --> 36 <string name="press_record">Press record</string> 37 38 <!-- the name under which recordings will be visible in the media database is formatted like this --> 39 <string name="audio_db_title_format"><xliff:g id="format">yyyy-MM-dd HH:mm:ss</xliff:g></string> 40 <!-- all recordings will show up in the media database with this 'artist' name --> 41 <string name="audio_db_artist_name">Your recordings</string> 42 <!-- all recordings will show up in the media database with this 'album' name --> 43 <string name="audio_db_album_name">Audio recordings</string> 44 <!-- all recordings will show up in the media database in a playlist with this name --> 45 <string name="audio_db_playlist_name">My recordings</string> 46 47 <!-- shown as the message in a dialog when an error occured because of an error accessing the sd card --> 48 <string name="error_sdcard_access">Unable to access SD card</string> 49 <!-- shown as the message in a dialog when the app encountered an unspecified internal error --> 50 <string name="error_app_internal">Internal application error</string> 51 <!-- shown as the message in a dialog when the recording could not be added to the media database --> 52 <string name="error_mediadb_new_record">Unable to save recorded audio</string> 53</resources> 54