├── .github └── FUNDING.yml ├── .gitignore ├── .idea ├── assetWizardSettings.xml ├── codeStyles │ └── Project.xml ├── compiler.xml ├── copyright │ ├── GPL.xml │ └── profiles_settings.xml ├── dictionaries │ └── r.xml ├── gradle.xml ├── inspectionProfiles │ └── Project_Default.xml ├── jarRepositories.xml ├── kotlinc.xml ├── markdown-navigator-enh.xml ├── markdown-navigator.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── FAQ.md ├── LICENSE ├── Privacy-Policy.md ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── de │ │ └── rampro │ │ └── activitydiary │ │ └── MainActivityInstrumentedTest.java │ ├── debug │ └── res │ │ ├── values-de │ │ └── strings.xml │ │ └── values │ │ └── strings.xml │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-web.png │ ├── java │ │ └── de │ │ │ └── rampro │ │ │ └── activitydiary │ │ │ ├── ActivityDiaryApplication.java │ │ │ ├── db │ │ │ ├── ActivityDiaryContentProvider.java │ │ │ ├── ActivityDiaryContract.java │ │ │ └── LocalDBHelper.java │ │ │ ├── helpers │ │ │ ├── ActivityHelper.java │ │ │ ├── DateHelper.java │ │ │ ├── GraphicsHelper.java │ │ │ ├── JaroWinkler.java │ │ │ ├── LocationHelper.java │ │ │ ├── RefreshService.java │ │ │ └── TimeSpanFormatter.java │ │ │ ├── model │ │ │ ├── DetailViewModel.java │ │ │ ├── DiaryActivity.java │ │ │ └── conditions │ │ │ │ ├── AlphabeticalCondition.java │ │ │ │ ├── Condition.java │ │ │ │ ├── DayTimeCondition.java │ │ │ │ ├── GlobalOccurrenceCondition.java │ │ │ │ ├── PausedCondition.java │ │ │ │ └── PredecessorCondition.java │ │ │ └── ui │ │ │ ├── generic │ │ │ ├── AboutActivity.java │ │ │ ├── BaseActivity.java │ │ │ ├── DetailRecyclerViewAdapter.java │ │ │ ├── DetailViewHolders.java │ │ │ ├── EditActivity.java │ │ │ ├── ManageActivity.java │ │ │ └── PrivacyPolicyActivity.java │ │ │ ├── history │ │ │ ├── HistoryActivity.java │ │ │ ├── HistoryDetailActivity.java │ │ │ ├── HistoryRecyclerViewAdapter.java │ │ │ └── HistoryViewHolders.java │ │ │ ├── location │ │ │ └── MapActivity.java │ │ │ ├── main │ │ │ ├── DetailNoteFragment.java │ │ │ ├── DetailPictureFragement.java │ │ │ ├── DetailStatFragement.java │ │ │ ├── MainActivity.java │ │ │ ├── NoteEditDialog.java │ │ │ ├── SelectRecyclerViewAdapter.java │ │ │ └── SelectViewHolders.java │ │ │ ├── settings │ │ │ ├── SettingsActivity.java │ │ │ └── SettingsFragment.java │ │ │ └── statistics │ │ │ └── StatisticsActivity.java │ ├── play │ │ ├── contact-email.txt │ │ ├── contact-website.txt │ │ ├── default-language.txt │ │ ├── listings │ │ │ ├── cs-CZ │ │ │ │ ├── full-description.txt │ │ │ │ ├── short-description.txt │ │ │ │ └── title.txt │ │ │ ├── da-DK │ │ │ │ ├── full-description.txt │ │ │ │ ├── short-description.txt │ │ │ │ └── title.txt │ │ │ ├── de-DE │ │ │ │ ├── full-description.txt │ │ │ │ ├── graphics │ │ │ │ │ ├── large-tablet-screenshots │ │ │ │ │ │ ├── 1.png │ │ │ │ │ │ ├── 2.png │ │ │ │ │ │ └── 3.png │ │ │ │ │ └── phone-screenshots │ │ │ │ │ │ ├── 1.png │ │ │ │ │ │ ├── 2.png │ │ │ │ │ │ ├── 3.png │ │ │ │ │ │ ├── 4.png │ │ │ │ │ │ ├── 5.png │ │ │ │ │ │ ├── 6.png │ │ │ │ │ │ └── 7.png │ │ │ │ ├── short-description.txt │ │ │ │ └── title.txt │ │ │ ├── el-GR │ │ │ │ ├── full-description.txt │ │ │ │ ├── short-description.txt │ │ │ │ └── title.txt │ │ │ ├── en-US │ │ │ │ ├── full-description.txt │ │ │ │ ├── graphics │ │ │ │ │ ├── feature-graphic │ │ │ │ │ │ └── 1.png │ │ │ │ │ ├── icon │ │ │ │ │ │ └── 1.png │ │ │ │ │ ├── large-tablet-screenshots │ │ │ │ │ │ ├── 1.png │ │ │ │ │ │ ├── 2.png │ │ │ │ │ │ └── 3.png │ │ │ │ │ └── phone-screenshots │ │ │ │ │ │ ├── 1.png │ │ │ │ │ │ ├── 2.png │ │ │ │ │ │ ├── 3.png │ │ │ │ │ │ ├── 4.png │ │ │ │ │ │ ├── 5.png │ │ │ │ │ │ └── 6.png │ │ │ │ ├── short-description.txt │ │ │ │ └── title.txt │ │ │ ├── es-ES │ │ │ │ ├── full-description.txt │ │ │ │ ├── short-description.txt │ │ │ │ └── title.txt │ │ │ ├── fi-FI │ │ │ │ ├── full-description.txt │ │ │ │ ├── short-description.txt │ │ │ │ └── title.txt │ │ │ ├── fr-FR │ │ │ │ ├── full-description.txt │ │ │ │ ├── short-description.txt │ │ │ │ └── title.txt │ │ │ ├── hu-HU │ │ │ │ ├── full-description.txt │ │ │ │ ├── short-description.txt │ │ │ │ └── title.txt │ │ │ ├── id-ID │ │ │ │ ├── full-description.txt │ │ │ │ ├── short-description.txt │ │ │ │ └── title.txt │ │ │ ├── id │ │ │ │ ├── full-description.txt │ │ │ │ ├── short-description.txt │ │ │ │ └── title.txt │ │ │ ├── it-IT │ │ │ │ ├── full-description.txt │ │ │ │ ├── short-description.txt │ │ │ │ └── title.txt │ │ │ ├── ja-JP │ │ │ │ ├── full-description.txt │ │ │ │ ├── short-description.txt │ │ │ │ └── title.txt │ │ │ ├── ko-KR │ │ │ │ ├── full-description.txt │ │ │ │ ├── short-description.txt │ │ │ │ └── title.txt │ │ │ ├── nl-NL │ │ │ │ ├── full-description.txt │ │ │ │ ├── short-description.txt │ │ │ │ └── title.txt │ │ │ ├── no-NO │ │ │ │ ├── full-description.txt │ │ │ │ ├── short-description.txt │ │ │ │ └── title.txt │ │ │ ├── pl-PL │ │ │ │ ├── full-description.txt │ │ │ │ ├── short-description.txt │ │ │ │ └── title.txt │ │ │ ├── pt-PT │ │ │ │ ├── full-description.txt │ │ │ │ ├── short-description.txt │ │ │ │ └── title.txt │ │ │ ├── ru-RU │ │ │ │ ├── full-description.txt │ │ │ │ ├── graphics │ │ │ │ │ └── phone-screenshots │ │ │ │ │ │ ├── 1.png │ │ │ │ │ │ └── 2.png │ │ │ │ ├── short-description.txt │ │ │ │ └── title.txt │ │ │ ├── sv-SE │ │ │ │ ├── full-description.txt │ │ │ │ ├── short-description.txt │ │ │ │ └── title.txt │ │ │ ├── tr-TR │ │ │ │ ├── full-description.txt │ │ │ │ ├── short-description.txt │ │ │ │ └── title.txt │ │ │ └── yo-NG │ │ │ │ ├── full-description.txt │ │ │ │ ├── short-description.txt │ │ │ │ └── title.txt │ │ └── release-notes │ │ │ ├── cs-CZ │ │ │ ├── beta.txt │ │ │ └── production.txt │ │ │ ├── da-DK │ │ │ ├── beta.txt │ │ │ └── production.txt │ │ │ ├── de-DE │ │ │ ├── beta.txt │ │ │ └── production.txt │ │ │ ├── el-GR │ │ │ ├── beta.txt │ │ │ └── production.txt │ │ │ ├── en-US │ │ │ ├── beta.txt │ │ │ └── production.txt │ │ │ ├── es-ES │ │ │ ├── beta.txt │ │ │ └── production.txt │ │ │ ├── fi-FI │ │ │ ├── beta.txt │ │ │ └── production.txt │ │ │ ├── fr-FR │ │ │ ├── beta.txt │ │ │ └── production.txt │ │ │ ├── hu-HU │ │ │ ├── beta.txt │ │ │ └── production.txt │ │ │ ├── id-ID │ │ │ ├── beta.txt │ │ │ └── production.txt │ │ │ ├── id │ │ │ ├── beta.txt │ │ │ └── production.txt │ │ │ ├── it-IT │ │ │ ├── beta.txt │ │ │ └── production.txt │ │ │ ├── ja-JP │ │ │ ├── beta.txt │ │ │ └── production.txt │ │ │ ├── ko-KR │ │ │ ├── beta.txt │ │ │ └── production.txt │ │ │ ├── nl-NL │ │ │ ├── beta.txt │ │ │ └── production.txt │ │ │ ├── no-NO │ │ │ ├── beta.txt │ │ │ └── production.txt │ │ │ ├── pl-PL │ │ │ ├── beta.txt │ │ │ └── production.txt │ │ │ ├── pt-PT │ │ │ ├── beta.txt │ │ │ └── production.txt │ │ │ ├── ru-RU │ │ │ ├── beta.txt │ │ │ └── production.txt │ │ │ ├── sv-SE │ │ │ ├── beta.txt │ │ │ └── production.txt │ │ │ ├── tr-TR │ │ │ ├── beta.txt │ │ │ └── production.txt │ │ │ └── yo-NG │ │ │ ├── beta.txt │ │ │ └── production.txt │ └── res │ │ ├── anim │ │ ├── slide_in_left_animation.xml │ │ ├── slide_in_right_animation.xml │ │ ├── slide_out_left_animation.xml │ │ └── slide_out_right_animation.xml │ │ ├── arrays-cs │ │ └── arrays.xml │ │ ├── arrays-da │ │ └── arrays.xml │ │ ├── arrays-de │ │ └── arrays.xml │ │ ├── arrays-el │ │ └── arrays.xml │ │ ├── arrays-es │ │ └── arrays.xml │ │ ├── arrays-fi │ │ └── arrays.xml │ │ ├── arrays-fr │ │ └── arrays.xml │ │ ├── arrays-hu │ │ └── arrays.xml │ │ ├── arrays-it │ │ └── arrays.xml │ │ ├── arrays-ja │ │ └── arrays.xml │ │ ├── arrays-ko │ │ └── arrays.xml │ │ ├── arrays-nl │ │ └── arrays.xml │ │ ├── arrays-no │ │ └── arrays.xml │ │ ├── arrays-pl │ │ └── arrays.xml │ │ ├── arrays-pt │ │ └── arrays.xml │ │ ├── arrays-ru │ │ └── arrays.xml │ │ ├── arrays-sv │ │ └── arrays.xml │ │ ├── arrays-tr │ │ └── arrays.xml │ │ ├── arrays-yo │ │ └── arrays.xml │ │ ├── drawable-hdpi │ │ ├── ic_action_privacy.png │ │ ├── ic_activities.png │ │ ├── ic_add.png │ │ ├── ic_add_image.png │ │ ├── ic_add_note.png │ │ ├── ic_calendar.png │ │ ├── ic_close_cancel.png │ │ ├── ic_delete.png │ │ ├── ic_done.png │ │ ├── ic_edit.png │ │ ├── ic_filter.png │ │ ├── ic_help.png │ │ ├── ic_hide_deleted.png │ │ ├── ic_history.png │ │ ├── ic_nav_add_activity.png │ │ ├── ic_nav_history.png │ │ ├── ic_nav_left.png │ │ ├── ic_nav_map.png │ │ ├── ic_nav_right.png │ │ ├── ic_nav_select.png │ │ ├── ic_nav_stats.png │ │ ├── ic_rename_deleted.png │ │ ├── ic_search.png │ │ ├── ic_setting.png │ │ ├── ic_show_deleted.png │ │ └── ic_undelete.png │ │ ├── drawable-mdpi │ │ ├── ic_action_privacy.png │ │ ├── ic_activities.png │ │ ├── ic_add.png │ │ ├── ic_add_image.png │ │ ├── ic_add_note.png │ │ ├── ic_calendar.png │ │ ├── ic_close_cancel.png │ │ ├── ic_delete.png │ │ ├── ic_done.png │ │ ├── ic_edit.png │ │ ├── ic_filter.png │ │ ├── ic_help.png │ │ ├── ic_hide_deleted.png │ │ ├── ic_history.png │ │ ├── ic_nav_add_activity.png │ │ ├── ic_nav_history.png │ │ ├── ic_nav_left.png │ │ ├── ic_nav_map.png │ │ ├── ic_nav_right.png │ │ ├── ic_nav_select.png │ │ ├── ic_nav_stats.png │ │ ├── ic_rename_deleted.png │ │ ├── ic_search.png │ │ ├── ic_setting.png │ │ ├── ic_show_deleted.png │ │ └── ic_undelete.png │ │ ├── drawable-xhdpi │ │ ├── ic_action_privacy.png │ │ ├── ic_activities.png │ │ ├── ic_add.png │ │ ├── ic_add_image.png │ │ ├── ic_add_note.png │ │ ├── ic_calendar.png │ │ ├── ic_close_cancel.png │ │ ├── ic_delete.png │ │ ├── ic_done.png │ │ ├── ic_edit.png │ │ ├── ic_filter.png │ │ ├── ic_help.png │ │ ├── ic_hide_deleted.png │ │ ├── ic_history.png │ │ ├── ic_nav_add_activity.png │ │ ├── ic_nav_history.png │ │ ├── ic_nav_left.png │ │ ├── ic_nav_map.png │ │ ├── ic_nav_right.png │ │ ├── ic_nav_select.png │ │ ├── ic_nav_stats.png │ │ ├── ic_rename_deleted.png │ │ ├── ic_search.png │ │ ├── ic_setting.png │ │ ├── ic_show_deleted.png │ │ └── ic_undelete.png │ │ ├── drawable-xxhdpi │ │ ├── feature_graphic.png │ │ ├── ic_action_privacy.png │ │ ├── ic_activities.png │ │ ├── ic_add.png │ │ ├── ic_add_image.png │ │ ├── ic_add_note.png │ │ ├── ic_calendar.png │ │ ├── ic_close_cancel.png │ │ ├── ic_delete.png │ │ ├── ic_done.png │ │ ├── ic_edit.png │ │ ├── ic_filter.png │ │ ├── ic_help.png │ │ ├── ic_hide_deleted.png │ │ ├── ic_history.png │ │ ├── ic_nav_add_activity.png │ │ ├── ic_nav_history.png │ │ ├── ic_nav_left.png │ │ ├── ic_nav_map.png │ │ ├── ic_nav_right.png │ │ ├── ic_nav_select.png │ │ ├── ic_nav_stats.png │ │ ├── ic_rename_deleted.png │ │ ├── ic_search.png │ │ ├── ic_setting.png │ │ ├── ic_show_deleted.png │ │ └── ic_undelete.png │ │ ├── drawable-xxxhdpi │ │ └── ic_action_privacy.png │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ └── ic_launcher_foreground.xml │ │ ├── layout │ │ ├── activity_about.xml │ │ ├── activity_base.xml │ │ ├── activity_edit_content.xml │ │ ├── activity_history_content.xml │ │ ├── activity_history_detail_content.xml │ │ ├── activity_history_entry.xml │ │ ├── activity_main_content.xml │ │ ├── activity_manage_content.xml │ │ ├── activity_map.xml │ │ ├── activity_privacy_policy.xml │ │ ├── activity_row.xml │ │ ├── activity_settings.xml │ │ ├── activity_statistics.xml │ │ ├── detail_recycler_item.xml │ │ ├── dialog_note_editor.xml │ │ ├── drawer_header.xml │ │ ├── fragment_detail_note.xml │ │ ├── fragment_detail_pictures.xml │ │ ├── fragment_detail_stats.xml │ │ └── select_recycler_item.xml │ │ ├── menu │ │ ├── edit_diary_entry_menu.xml │ │ ├── edit_menu.xml │ │ ├── history_menu.xml │ │ ├── main_drawer.xml │ │ ├── main_menu.xml │ │ └── manage_menu.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_history.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_history.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_history.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_history.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_history.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap.xcf │ │ ├── mipmap_round.xcf │ │ ├── values-cs │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-da │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-de │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-el │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-es │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-fi │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-fr │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-hu │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-id │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-in │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-it │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-ja │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-ko │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-nl │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-no │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-pl │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-pt │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-ru │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-sv │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-tr │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-yo │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values │ │ ├── arrays.xml │ │ ├── colors.xml │ │ ├── constants.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ ├── app_preferences.xml │ │ ├── file_paths.xml │ │ └── searchable.xml │ └── test │ └── java │ └── de │ └── rampro │ └── activitydiary │ ├── db │ ├── ActivityDiaryContentProviderTest.java │ └── LocalDBHelperTest.java │ ├── helpers │ ├── GraphicsHelperUnitTest.java │ └── JaroWinklerTest.java │ ├── model │ └── conditions │ │ ├── AlphabeticalConditionUnitTest.java │ │ └── PredecessorConditionUnitTest.java │ └── ui │ └── MainActivityTest.java ├── artwork ├── attic │ ├── ic_launcher.png │ ├── ic_launcher.svg │ ├── teaser.png │ └── teaser.svg ├── ic_nav_history.png ├── ic_nav_history.svg ├── ic_nav_select.png ├── ic_nav_select.svg ├── icons │ ├── ic_hide_deleted_48px.svg │ ├── ic_rename_deleted_48px.svg │ ├── ic_show_deleted_48px.svg │ └── ic_undelete_48px.svg └── logo │ ├── adaptive-background.png │ ├── adaptive-background.svg │ ├── adaptive-foreground.png │ ├── adaptive-foreground.svg │ ├── feature-graphic.png │ ├── feature-graphic.svg │ ├── icon.png │ ├── icon.svg │ ├── logotype-a.png │ ├── logotype-a.svg │ ├── logotype-b.png │ └── logotype-b.svg ├── build.gradle ├── crowdin.yml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username e.g., user1 5 | open_collective: # Replace with a single Open Collective username e.g., user1 6 | ko_fi: # Replace with a single Ko-fi username e.g., user1 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: ActivityDiary 10 | issuehunt: # Replace with a single IssueHunt username e.g., user1 11 | otechie: # Replace with a single Otechie username e.g., user1 12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | /.idea/caches 7 | /.idea/assetWizardSettings.xml 8 | .DS_Store 9 | /build 10 | /captures 11 | .externalNativeBuild 12 | ActivityDiarySigning.properties 13 | gplay-developer-9607db552238.p12 14 | -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 15 | 16 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/copyright/GPL.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/dictionaries/r.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | activitydiary 5 | rampro 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 18 | 19 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: android 2 | 3 | jdk: 4 | - oraclejdk8 5 | 6 | android: 7 | components: 8 | - tools 9 | - platform-tools 10 | - build-tools-28.0.3 11 | - android-28 12 | - extra-android-support 13 | - extra-android-m2repository 14 | 15 | script: 16 | - ./gradlew assembleDebug 17 | # - ./gradlew lint 18 | # - ./gradlew test 19 | # - ./gradlew check --stacktrace 20 | 21 | # blocklist 22 | branches: 23 | except: 24 | - l10n_master 25 | 26 | -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- 1 | ## What is activity diary? 2 | Activity diary is a fast android open source and free software developed on Github and published on both Google play store and F-Droid. 3 | 4 | ## What’s Activity diary license? 5 | Activity Diary is published under GPLv3+. Without going into the Legal Jibber Jabber, this indicates that the application can be changed, updated, packaged and distributed as long as the resulting change and the resulting work is also distributed under the same terms. 6 | 7 | ## What’s a diary? 8 | A diary is a personal record of life’s event including personal thoughts and observations. 9 | 10 | ## Who is building this application? 11 | Activity diary is developed on Github [here](https://github.com/ramack/ActivityDiary) from multiple contributors. 12 | 13 | ## How does Activity diary works? 14 | Activity diary works by recording the list, sequence and duration of activities that happened whenever an activity is been clicked on. 15 | 16 | ## How do I add new activity on Activity Diary? 17 | Click the + sign on the top right corner of the application, or click the menu icon on the top left corner of the application and select **Add activity** then type the new activity title, thereafter you can chose a preferred colour for the new activity just below the activity title. 18 | 19 | ## How do I edit or delete an activity among the activity list? 20 | Click on the menu icon on the top left corner, click on **Select Activity**, thereafter, Click and hold the preferred activity from the list of activities, then edit the activity name in the space provided or select the delete sign on the top right corner for deletion of the activity. 21 | 22 | ## How do I add notes to a particular activity? 23 | Click on the menu icon on the top left corner, click on **Diary**, click and hold on which ever activity of your choice, the note space comes up, then type the note in the space, and click on **ok**. 24 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /home/r/Android/Sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | 19 | # Uncomment this to preserve the line number information for 20 | # debugging stack traces. 21 | -keepattributes SourceFile,LineNumberTable 22 | 23 | -keepattributes InnerClasses,EnclosingMethod 24 | 25 | -keepattributes Signature 26 | 27 | -keep public class * extends java.lang.Exception 28 | 29 | # If you keep the line number information, uncomment this to 30 | # hide the original source file name. 31 | #-renamesourcefileattribute SourceFile 32 | 33 | # ACRA needs "annotations" so add this... 34 | # Note: This may already be defined in the default "proguard-android-optimize.txt" 35 | # file in the SDK. If it is, then you don't need to duplicate it. See your 36 | # "project.properties" file to get the path to the default "proguard-android-optimize.txt". 37 | -keepattributes *Annotation* 38 | 39 | # Keep all the ACRA classes 40 | -keep class org.acra.** { *; } 41 | 42 | # Don't warn about removed methods from AppCompat 43 | -keep android.support.v4.app.NotificationCompat* 44 | 45 | -keep public class android.support.v7.widget.GridLayoutManager { 46 | public protected *; 47 | } 48 | 49 | #we do not want to obfuscate at all, just the optimization of proguard is of interest 50 | -dontobfuscate -------------------------------------------------------------------------------- /app/src/androidTest/java/de/rampro/activitydiary/MainActivityInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package de.rampro.activitydiary; 2 | 3 | import android.content.Context; 4 | import android.support.test.InstrumentationRegistry; 5 | import androidx.test.ext.junit.runners.AndroidJUnit4; 6 | 7 | import org.junit.Test; 8 | import org.junit.runner.RunWith; 9 | 10 | import static org.junit.Assert.assertEquals; 11 | 12 | /** 13 | * Instrumentation test, which will execute on an Android device. 14 | * 15 | * @see Testing documentation 16 | */ 17 | @RunWith(AndroidJUnit4.class) 18 | public class MainActivityInstrumentedTest { 19 | 20 | @Test 21 | public void useAppContext() throws Exception { 22 | // Context of the app under test. 23 | Context appContext = InstrumentationRegistry.getTargetContext(); 24 | 25 | assertEquals("de.rampro.activitydiary.debug", appContext.getPackageName()); 26 | } 27 | 28 | @Test 29 | public void createMainActivity() throws Exception { 30 | /* final Menu menu = shadowOf(activity).getOptionsMenu(); 31 | assertNotNull(activity); 32 | 33 | assertTrue(menu.findItem(R.id.action_add_activity).isEnabled());*/ 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /app/src/debug/res/values-de/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Activity Diary Debug 4 | de.rampro.activitydiary.debug.provider 5 | -------------------------------------------------------------------------------- /app/src/debug/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 19 | 20 | Activity Diary Debug 21 | de.rampro.activitydiary.debug.provider 22 | 23 | 24 | -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/java/de/rampro/activitydiary/ui/settings/SettingsFragment.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ActivityDiary 3 | * 4 | * Copyright (C) 2017 Raphael Mack http://www.raphael-mack.de 5 | * 6 | * This program is free software: you can redistribute it and/or modify 7 | * it under the terms of the GNU General Public License as published by 8 | * the Free Software Foundation, either version 3 of the License, or 9 | * (at your option) any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program. If not, see . 18 | */ 19 | 20 | package de.rampro.activitydiary.ui.settings; 21 | 22 | import android.os.Bundle; 23 | import androidx.preference.PreferenceFragmentCompat; 24 | 25 | import de.rampro.activitydiary.R; 26 | 27 | public class SettingsFragment extends PreferenceFragmentCompat { 28 | 29 | @Override 30 | public void onCreatePreferences(Bundle savedInstanceState, String rootKey) { 31 | // Load the Preferences from the XML file 32 | addPreferencesFromResource(R.xml.app_preferences); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /app/src/main/play/contact-email.txt: -------------------------------------------------------------------------------- 1 | activity-diary@rampro.de 2 | -------------------------------------------------------------------------------- /app/src/main/play/contact-website.txt: -------------------------------------------------------------------------------- 1 | https://github.com/ramack/ActivityDiary 2 | -------------------------------------------------------------------------------- /app/src/main/play/default-language.txt: -------------------------------------------------------------------------------- 1 | en-US 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/cs-CZ/full-description.txt: -------------------------------------------------------------------------------- 1 | Activity Diary allows to record a diary for your activities. You can attach notes and pictures to the activies and by that record details like the kind of vegetables you seeded while gardening. The diary and statistics views provide an overview of what you did and when. 2 | The functions to categorize activites and get a reminder for recurrent actions are planned. 3 | 4 | Activity Diary is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. 5 | 6 | This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 7 | 8 | For legal details see https://www.gnu.org/licenses/. 9 | -------------------------------------------------------------------------------- /app/src/main/play/listings/cs-CZ/short-description.txt: -------------------------------------------------------------------------------- 1 | Track and organize your activities. 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/cs-CZ/title.txt: -------------------------------------------------------------------------------- 1 | Activity Diary 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/da-DK/full-description.txt: -------------------------------------------------------------------------------- 1 | Activity Diary allows to record a diary for your activities. You can attach notes and pictures to the activies and by that record details like the kind of vegetables you seeded while gardening. The diary and statistics views provide an overview of what you did and when. 2 | The functions to categorize activites and get a reminder for recurrent actions are planned. 3 | 4 | Activity Diary is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. 5 | 6 | This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 7 | 8 | For legal details see https://www.gnu.org/licenses/. 9 | -------------------------------------------------------------------------------- /app/src/main/play/listings/da-DK/short-description.txt: -------------------------------------------------------------------------------- 1 | Track and organize your activities. 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/da-DK/title.txt: -------------------------------------------------------------------------------- 1 | Activity Diary 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/de-DE/full-description.txt: -------------------------------------------------------------------------------- 1 | Das Aktivitätstagebuch ermöglicht deine Tätigkeiten aufzuzeichnen. Du kannst Notizen und Bilder an die Tagebucheinträge heften und dadurch allerlei Details hinterlegen wie z. B. welches Gemüse bei der Gartenarbeit gesät wurde. Die Ansichten Tagebuch und Statistik bieten einen Überblick darüber, was du zu welchem Zeitpunkt getan hast. 2 | Funktionalität um die Aktivitäten in Kategorien einzuteilen und an wiederkehrende Aktivitäten erinnert zu werden sind geplant. 3 | 4 | Activity Diary ist Freie Software: Es ist dir gestattet diese weiterzugeben und/oder zu verändern solange die Anforderungen der GNU General Public License in Version 3 oder (nach Ihrem Wunsch) einer späteren Version, welche durch die Free Software Foundation veröffentlicht wird, eingehalten werden. 5 | 6 | Dieses Programm wurde veröffentlicht in der Hoffnung nützlich zu sein, die Autoren und Bereitsteller übernehmen jedoch KEINERLEI GEWÄHRLEISTUNG oder GARANTIE dafür für einen bestimmten Zweck verwendet werden zu können. Für Details sei auf die GNU General Public License verwiesen. 7 | 8 | Rechtliche Informationen sind unter https://www.gnu.org/licenses/ zu finden. 9 | -------------------------------------------------------------------------------- /app/src/main/play/listings/de-DE/graphics/large-tablet-screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/play/listings/de-DE/graphics/large-tablet-screenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/listings/de-DE/graphics/large-tablet-screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/play/listings/de-DE/graphics/large-tablet-screenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/listings/de-DE/graphics/large-tablet-screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/play/listings/de-DE/graphics/large-tablet-screenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/listings/de-DE/graphics/phone-screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/play/listings/de-DE/graphics/phone-screenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/listings/de-DE/graphics/phone-screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/play/listings/de-DE/graphics/phone-screenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/listings/de-DE/graphics/phone-screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/play/listings/de-DE/graphics/phone-screenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/listings/de-DE/graphics/phone-screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/play/listings/de-DE/graphics/phone-screenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/listings/de-DE/graphics/phone-screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/play/listings/de-DE/graphics/phone-screenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/listings/de-DE/graphics/phone-screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/play/listings/de-DE/graphics/phone-screenshots/6.png -------------------------------------------------------------------------------- /app/src/main/play/listings/de-DE/graphics/phone-screenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/play/listings/de-DE/graphics/phone-screenshots/7.png -------------------------------------------------------------------------------- /app/src/main/play/listings/de-DE/short-description.txt: -------------------------------------------------------------------------------- 1 | Notiere und organisiere deine Tätigkeiten. 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/de-DE/title.txt: -------------------------------------------------------------------------------- 1 | Aktivitätstagebuch 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/el-GR/full-description.txt: -------------------------------------------------------------------------------- 1 | Activity Diary allows to record a diary for your activities. You can attach notes and pictures to the activies and by that record details like the kind of vegetables you seeded while gardening. The diary and statistics views provide an overview of what you did and when. 2 | The functions to categorize activites and get a reminder for recurrent actions are planned. 3 | 4 | Activity Diary is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. 5 | 6 | This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 7 | 8 | For legal details see https://www.gnu.org/licenses/. 9 | -------------------------------------------------------------------------------- /app/src/main/play/listings/el-GR/short-description.txt: -------------------------------------------------------------------------------- 1 | Track and organize your activities. 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/el-GR/title.txt: -------------------------------------------------------------------------------- 1 | Activity Diary 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/en-US/full-description.txt: -------------------------------------------------------------------------------- 1 | Activity Diary allows to record a diary for your activities. You can attach notes and pictures to the activies and by that record details like the kind of vegetables you seeded while gardening. The diary and statistics views provide an overview of what you did and when. 2 | The functions to categorize activites and get a reminder for recurrent actions are planned. 3 | 4 | Activity Diary is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. 5 | 6 | This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 7 | 8 | For legal details see https://www.gnu.org/licenses/. 9 | -------------------------------------------------------------------------------- /app/src/main/play/listings/en-US/graphics/feature-graphic/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/play/listings/en-US/graphics/feature-graphic/1.png -------------------------------------------------------------------------------- /app/src/main/play/listings/en-US/graphics/icon/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/play/listings/en-US/graphics/icon/1.png -------------------------------------------------------------------------------- /app/src/main/play/listings/en-US/graphics/large-tablet-screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/play/listings/en-US/graphics/large-tablet-screenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/listings/en-US/graphics/large-tablet-screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/play/listings/en-US/graphics/large-tablet-screenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/listings/en-US/graphics/large-tablet-screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/play/listings/en-US/graphics/large-tablet-screenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/listings/en-US/graphics/phone-screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/play/listings/en-US/graphics/phone-screenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/listings/en-US/graphics/phone-screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/play/listings/en-US/graphics/phone-screenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/listings/en-US/graphics/phone-screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/play/listings/en-US/graphics/phone-screenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/listings/en-US/graphics/phone-screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/play/listings/en-US/graphics/phone-screenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/listings/en-US/graphics/phone-screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/play/listings/en-US/graphics/phone-screenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/listings/en-US/graphics/phone-screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/play/listings/en-US/graphics/phone-screenshots/6.png -------------------------------------------------------------------------------- /app/src/main/play/listings/en-US/short-description.txt: -------------------------------------------------------------------------------- 1 | Track and organize your activities. 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Activity Diary 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/es-ES/full-description.txt: -------------------------------------------------------------------------------- 1 | Activity Diary le permite grabar un diario para sus actividades. Puede adjuntar notas e imágenes a las actividades y, mediante ese registro, detalles como el tipo de verduras que sembradas durante la jardinería. The diary and statistics views provide an overview of what you did and when. 2 | Se planean las funciones para categorizar actividades y obtener un recordatorio de acciones recurrentes. 3 | 4 | Activity Diary es software libre: puede redistribuirlo y / o modificarlo bajo los términos de la Licencia Pública General de GNU publicada por la Free Software Foundation, ya sea la versión 3 de la Licencia, o (a su elección) cualquier versión posterior. 5 | 6 | Este programa se distribuye con la esperanza de que sea útil, pero SIN NINGUNA GARANTÍA; sin siquiera la garantía implícita de COMERCIABILIDAD o IDONEIDAD PARA UN PROPÓSITO PARTICULAR. Ver la Licencia Pública General de GNU para más detalles. 7 | 8 | Para obtener detalles legales, consulte https://www.gnu.org/licenses/. 9 | -------------------------------------------------------------------------------- /app/src/main/play/listings/es-ES/short-description.txt: -------------------------------------------------------------------------------- 1 | Rastrea y organiza tus actividades. 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/es-ES/title.txt: -------------------------------------------------------------------------------- 1 | Diario de actividad 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/fi-FI/full-description.txt: -------------------------------------------------------------------------------- 1 | Activity Diary allows to record a diary for your activities. You can attach notes and pictures to the activies and by that record details like the kind of vegetables you seeded while gardening. The diary and statistics views provide an overview of what you did and when. 2 | The functions to categorize activites and get a reminder for recurrent actions are planned. 3 | 4 | Activity Diary is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. 5 | 6 | This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 7 | 8 | For legal details see https://www.gnu.org/licenses/. 9 | -------------------------------------------------------------------------------- /app/src/main/play/listings/fi-FI/short-description.txt: -------------------------------------------------------------------------------- 1 | Track and organize your activities. 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/fi-FI/title.txt: -------------------------------------------------------------------------------- 1 | Activity Diary 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/fr-FR/full-description.txt: -------------------------------------------------------------------------------- 1 | Activity Diary permet d'enregistrer un journal pour vos activités. Vous pouvez joindre des notes et des images aux activies et par ces détails d'enregistrement comme le type de légumes que vous avez ensemencés en jardinant. The diary and statistics views provide an overview of what you did and when. 2 | Les fonctions de catégorisation des activités et de rappel des actions récurrentes sont prévues. 3 | 4 | Activity Diary est un logiciel libre: vous pouvez le redistribuer et / ou le modifier selon les termes de la Licence Publique Générale GNU publiée par la Free Software Foundation, soit la version 3 de la Licence, soit (selon votre choix) toute version ultérieure. 5 | 6 | Ce programme est distribué dans l'espoir qu'il sera utile, mais SANS AUCUNE GARANTIE; sans même la garantie implicite de QUALITÉ MARCHANDE ou d'ADÉQUATION À UN USAGE PARTICULIER. Voir la Licence publique générale GNU pour plus de détails. 7 | 8 | Pour les détails légaux, voir https://www.gnu.org/licenses/. 9 | -------------------------------------------------------------------------------- /app/src/main/play/listings/fr-FR/short-description.txt: -------------------------------------------------------------------------------- 1 | Suivre et organiser vos activités. 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/fr-FR/title.txt: -------------------------------------------------------------------------------- 1 | Journal d'activité 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/hu-HU/full-description.txt: -------------------------------------------------------------------------------- 1 | Activity Diary allows to record a diary for your activities. You can attach notes and pictures to the activies and by that record details like the kind of vegetables you seeded while gardening. The diary and statistics views provide an overview of what you did and when. 2 | The functions to categorize activites and get a reminder for recurrent actions are planned. 3 | 4 | Activity Diary is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. 5 | 6 | This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 7 | 8 | For legal details see https://www.gnu.org/licenses/. 9 | -------------------------------------------------------------------------------- /app/src/main/play/listings/hu-HU/short-description.txt: -------------------------------------------------------------------------------- 1 | Track and organize your activities. 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/hu-HU/title.txt: -------------------------------------------------------------------------------- 1 | Activity Diary 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/id-ID/full-description.txt: -------------------------------------------------------------------------------- 1 | Activity Diary allows to record a diary for your activities. You can attach notes and pictures to the activies and by that record details like the kind of vegetables you seeded while gardening. The diary and statistics views provide an overview of what you did and when. 2 | The functions to categorize activites and get a reminder for recurrent actions are planned. 3 | 4 | Activity Diary is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. 5 | 6 | This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 7 | 8 | For legal details see https://www.gnu.org/licenses/. 9 | -------------------------------------------------------------------------------- /app/src/main/play/listings/id-ID/short-description.txt: -------------------------------------------------------------------------------- 1 | Track and organize your activities. 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/id-ID/title.txt: -------------------------------------------------------------------------------- 1 | Activity Diary 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/id/full-description.txt: -------------------------------------------------------------------------------- 1 | Activity Diary memungkinkan untuk mencatat aktivitas Anda pada buku harian. Anda dapat menyematkan catatan dan gambar ke aktivitas dan rincian catatan seperti jenis dari sayuran yang telah Anda hasilkan saat berkebun. The diary and statistics views provide an overview of what you did and when. 2 | Fungsi untuk mengkategorikan kegiatan dan mengingat ulang akan kegiatan yang telah direncanakan. 3 | 4 | Activity Diary adalah perangkat lunak bebas: Anda bisa membagikan dan/atau mengubahnya menurut ketentuan dari GNU General Public License yang dikeluarkan oleh Lembaga Perangkat lunak Bebas, salah satu lisensi versi ke-3, atau (sesuai dengan pilihan Anda) versi yang lebih baru. 5 | 6 | Program ini dibagikan dengan harapan akan bermamfaat, akan tetapi TAMPA JAMINAN APAPUN; bahkan tanpa ada jaminan tersirat atas KELAYAKAN UNTUK DIPERDAGANGKAN atau KESESUAIAN UNTUK TUJUAN TERTENTU. Untuk lebih jelasnya lihat GNU General Public License. 7 | 8 | Untuk rincian hukumnya lihat 9 | https://www.gnu.org/licenses/. 10 | -------------------------------------------------------------------------------- /app/src/main/play/listings/id/short-description.txt: -------------------------------------------------------------------------------- 1 | Cari dan atur aktivitas Anda. 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/id/title.txt: -------------------------------------------------------------------------------- 1 | Buku Catatan Aktifitas Harian 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/it-IT/full-description.txt: -------------------------------------------------------------------------------- 1 | Activity Diary consente di registrare un diario per le tue attività. Puoi allegare note e immagini alle attività e da quei dettagli del record come il tipo di verdure che hai seminato durante il giardinaggio. La visualizzazione del diario fornisce una panoramica di ciò che hai fatto e quando l'hai fatto. 2 | Sono pianificate le funzioni per categorizzare le attività e ottenere un promemoria per le azioni ricorrenti. 3 | 4 | Activity Diary è un software libero: è possibile ridistribuirlo e / o modificarlo secondo i termini della GNU General Public License pubblicata dalla Free Software Foundation, o la versione 3 della Licenza, o (a propria discrezione) qualsiasi versione successiva. 5 | 6 | Questo programma è distribuito nella speranza che sia utile, ma SENZA ALCUNA GARANZIA; senza nemmeno la garanzia implicita di COMMERCIABILITÀ o IDONEITÀ PER UN PARTICOLARE SCOPO. Per maggiori dettagli vedi la GNU General Public License. 7 | 8 | Per maggiori dettagli legali consulta il sito https://www.gnu.org/licenses/. 9 | -------------------------------------------------------------------------------- /app/src/main/play/listings/it-IT/short-description.txt: -------------------------------------------------------------------------------- 1 | Traccia e/o organizza le tue attività. 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/it-IT/title.txt: -------------------------------------------------------------------------------- 1 | Diario attività 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/ja-JP/full-description.txt: -------------------------------------------------------------------------------- 1 | 活動日記はあなたの活動の日記を記録することができます。 メモや写真をアクティビティに添付することができます。また、ガーデニング中に播種した野菜のような記録の詳細情報を添付することもできます。 The diary and statistics views provide an overview of what you did and when. You can attach notes and pictures to the activies and by that record details like the kind of vegetables you seeded while gardening. The diary and statistics views provide an overview of what you did and when. 2 | アクティビティを分類し、反復アクションのリマインダーを取得する機能が計画されています。 3 | 4 | Activity Diaryはフリーソフトウェアです。フリーソフトウェア財団が発行したGNU一般公衆利用許諾契約書(バージョン3のライセンス)またはそれ以降のバージョンのいずれかを使用して、再配布および/または改変することができます。 5 | 6 | このプログラムは有用であることを期待して配布されていますが、いかなる保証もありません。商品性または特定目的への適合性の暗黙の保証さえも含みません。 詳細については、GNU General Public Licenseを参照してください。 法的な詳細については、https://www.gnu.org/licenses/を参照してください。 7 | 8 | For legal details see https://www.gnu.org/licenses/. 9 | -------------------------------------------------------------------------------- /app/src/main/play/listings/ja-JP/short-description.txt: -------------------------------------------------------------------------------- 1 | 活動を追跡し、整理する。 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/ja-JP/title.txt: -------------------------------------------------------------------------------- 1 | 活動日記 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/ko-KR/full-description.txt: -------------------------------------------------------------------------------- 1 | 활동 일기는 활동에 대한 일기를 기록 할 수 있습니다. 메모와 그림을 액티비티에 첨부 할 수 있으며 원예를하는 동안 채소에 든 야채와 같은 세부 정보를 기록 할 수 있습니다. The diary and statistics views provide an overview of what you did and when. 2 | 활동을 범주화하고 반복되는 활동에 대한 알림을 얻는 기능이 계획되어 있습니다. 3 | 4 | Free Software Foundation에서 발행 한 GNU 일반 공중 사용 허가서, 버전 3 라이센스 또는 귀하의 선택에 따라 이후 버전에서 GNU 일반 공중 사용 허가서의 조건에 따라 재배포 및 / 또는 수정할 수 있습니다. 5 | 6 | 이 프로그램은 유용 할 것이라는 희망으로 배포되었지만 어떠한 보증도하지 않습니다. 자세한 내용은 GNU General Public License를 참조하십시오. 7 | 8 | 법적 세부 사항은 https://www.gnu.org/licenses/를 참조하십시오. 9 | -------------------------------------------------------------------------------- /app/src/main/play/listings/ko-KR/short-description.txt: -------------------------------------------------------------------------------- 1 | 활동을 추적하고 정리하십시오. 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/ko-KR/title.txt: -------------------------------------------------------------------------------- 1 | 활동 일기 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/nl-NL/full-description.txt: -------------------------------------------------------------------------------- 1 | Activity Diary maakt het mogelijk om een ​​dagboek bij te houden voor uw activiteiten. U kunt notities en afbeeldingen bijvoegen bij de activiteiten en daarmee gegevens vastleggen zoals het soort groenten dat u hebt gezaaid tijdens het tuinieren. The diary and statistics views provide an overview of what you did and when. 2 | De functies om activiteiten te categoriseren en een herinnering te krijgen voor terugkerende acties zijn gepland. 3 | 4 | Activity Diary is gratis software: je kunt het herdistribueren en / of wijzigen onder de voorwaarden van de GNU General Public License zoals gepubliceerd door de Free Software Foundation, ofwel versie 3 van de Licentie, of (naar jouw keuze) elke latere versie. 5 | 6 | Dit programma wordt verspreid in de hoop dat het nuttig zal zijn, maar ZONDER ENIGE GARANTIE; zelfs zonder de impliciete garantie van VERKOOPBAARHEID of GESCHIKTHEID VOOR EEN BEPAALD DOEL. Zie de GNU General Public License voor meer details. 7 | 8 | Voor juridische details, zie https://www.gnu.org/licenses/. 9 | -------------------------------------------------------------------------------- /app/src/main/play/listings/nl-NL/short-description.txt: -------------------------------------------------------------------------------- 1 | Volg en organiseer uw activiteiten. 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/nl-NL/title.txt: -------------------------------------------------------------------------------- 1 | Activiteitsdagboek 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/no-NO/full-description.txt: -------------------------------------------------------------------------------- 1 | Activity Diary allows to record a diary for your activities. You can attach notes and pictures to the activies and by that record details like the kind of vegetables you seeded while gardening. The diary and statistics views provide an overview of what you did and when. 2 | The functions to categorize activites and get a reminder for recurrent actions are planned. 3 | 4 | Activity Diary is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. 5 | 6 | This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 7 | 8 | For legal details see https://www.gnu.org/licenses/. 9 | -------------------------------------------------------------------------------- /app/src/main/play/listings/no-NO/short-description.txt: -------------------------------------------------------------------------------- 1 | Track and organize your activities. 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/no-NO/title.txt: -------------------------------------------------------------------------------- 1 | Activity Diary 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/pl-PL/full-description.txt: -------------------------------------------------------------------------------- 1 | Dziennik aktywności pozwala rejestrować dziennik dla twoich działań. Do załączników można dołączać notatki i zdjęcia, a także szczegóły rekordów, takie jak rodzaj warzyw, które zasiałeś podczas ogrodnictwa. The diary and statistics views provide an overview of what you did and when. 2 | Zaplanowano funkcje kategoryzacji działań i otrzymania przypomnienia o powtarzających się działaniach. 3 | 4 | Dziennik aktywności jest wolnym oprogramowaniem: możesz go redystrybuować i / lub modyfikować zgodnie z warunkami Powszechnej Licencji Publicznej GNU opublikowanej przez Free Software Foundation, albo wersję 3 Licencji, albo (według twojego wyboru) jakąkolwiek późniejszą wersją. 5 | 6 | Ten program jest rozpowszechniany z nadzieją, że będzie przydatny, ale BEZ JAKIEJKOLWIEK GWARANCJI; nawet domyślnej gwarancji PRZYDATNOŚCI HANDLOWEJ lub PRZYDATNOŚCI DO OKREŚLONYCH CELÓW. Więcej informacji można znaleźć w Powszechnej Licencji Publicznej GNU. 7 | 8 | Informacje prawne znajdują się na stronie https://www.gnu.org/licenses/. 9 | -------------------------------------------------------------------------------- /app/src/main/play/listings/pl-PL/short-description.txt: -------------------------------------------------------------------------------- 1 | Śledź i organizuj swoje działania. 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/pl-PL/title.txt: -------------------------------------------------------------------------------- 1 | Dziennik czynności 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/pt-PT/full-description.txt: -------------------------------------------------------------------------------- 1 | Diário de atividade permite gravar um diário para suas atividades. Você pode anexar notas e fotos às atividades e por esses detalhes de registro, como o tipo de vegetais que você semeou durante a jardinagem. The diary and statistics views provide an overview of what you did and when. 2 | As funções para categorizar atividades e obter um lembrete para ações recorrentes estão planejadas. 3 | 4 | Activity Diary é um software livre: você pode redistribuí-lo e / ou modificá-lo de acordo com os termos da Licença Pública Geral GNU, conforme publicado pela Free Software Foundation, seja a versão 3 da Licença, quanto (a sua escolha) qualquer versão posterior. 5 | 6 | Este programa é distribuído na esperança de que seja útil, mas SEM QUALQUER GARANTIA; sem a garantia implícita de COMERCIALIZAÇÃO ou ADEQUAÇÃO A UM DETERMINADO PROPÓSITO. Consulte a Licença Pública Geral GNU para obter mais detalhes. 7 | 8 | Para detalhes legais, consulte https://www.gnu.org/licenses/. 9 | -------------------------------------------------------------------------------- /app/src/main/play/listings/pt-PT/short-description.txt: -------------------------------------------------------------------------------- 1 | Acompanhe e organize suas atividades. 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/pt-PT/title.txt: -------------------------------------------------------------------------------- 1 | Diário de atividades 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/ru-RU/full-description.txt: -------------------------------------------------------------------------------- 1 | Дневник Активности позволяет вам отслеживать дела, которыми вы занимаетесь. К каждой записи в дневнике можно прикреплять картинки и подробные заметки, например, о том, какие культуры вы высаживали, занимаясь садоводством. На экранах статистики и в окне дневника можно посмотреть краткий обзор того, чем именно вы занимались и когда. 2 | В будущем планируется добавить классификацию видов деятельности и напоминания для повторяющихся занятий. 3 | 4 | Вы можете распространять и/или модифицировать её согласно условиям Стандартной Общественной Лицензии GNU, опубликованной Фондом Свободного Программного Обеспечения, версии 3 или, по Вашему желанию, любой более поздней версии. 5 | 6 | Эта программа распространяется в надежде, что она будет полезна, но БЕЗ КАКИХ-ЛИБО ГАРАНТИЙ; даже без подразумеваемой гарантии КОММЕРЧЕСКОЙ ЦЕННОСТИ или ПРИГОДНОСТИ ДЛЯ ОПРЕДЕЛЕННОЙ ЦЕЛИ. В GNU General Public License. 7 | 8 | https://www.gnu.org/licenses/. 9 | -------------------------------------------------------------------------------- /app/src/main/play/listings/ru-RU/graphics/phone-screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/play/listings/ru-RU/graphics/phone-screenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/listings/ru-RU/graphics/phone-screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/play/listings/ru-RU/graphics/phone-screenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/listings/ru-RU/short-description.txt: -------------------------------------------------------------------------------- 1 | Отслеживайте и организуйте свою деятельность. 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/ru-RU/title.txt: -------------------------------------------------------------------------------- 1 | Дневник активности 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/sv-SE/full-description.txt: -------------------------------------------------------------------------------- 1 | Activity Diary allows to record a diary for your activities. You can attach notes and pictures to the activies and by that record details like the kind of vegetables you seeded while gardening. The diary and statistics views provide an overview of what you did and when. 2 | The functions to categorize activites and get a reminder for recurrent actions are planned. 3 | 4 | Activity Diary is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. 5 | 6 | This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 7 | 8 | For legal details see https://www.gnu.org/licenses/. 9 | -------------------------------------------------------------------------------- /app/src/main/play/listings/sv-SE/short-description.txt: -------------------------------------------------------------------------------- 1 | Track and organize your activities. 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/sv-SE/title.txt: -------------------------------------------------------------------------------- 1 | Activity Diary 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/tr-TR/full-description.txt: -------------------------------------------------------------------------------- 1 | Etkinlik Günlüğü, etkinlikleriniz için bir günlük tutmanıza olanak tanır. Etkinliklere notlar ve resimler ekleyebilir, ve bahçenizde çalışırken ektiğiniz sebze türü gibi ayrıntıları kaydedebilirsiniz. The diary and statistics views provide an overview of what you did and when. 2 | Etkinlikleri sınıflandırma ve tekrar eden eylemler için bir hatırlatma alma işlevleri planlanmaktadır. 3 | 4 | Etkinlik Günlüğü ücretsiz bir yazılımdır: GNU Genel Kamu Lisansı uyarınca, Lisansın sürüm 3'ünü veya (isteğe bağlı olarak) sonraki herhangi bir sürümünü Free Software Foundation tarafından yayınlanan şartlara göre yeniden dağıtabilir ve / veya değiştirebilirsiniz. 5 | 6 | Bu program, yararlı olacağı umuduyla dağıtılır ancak HERHANGİ BİR GARANTİ olmadan; hatta BELİRLİ BİR AMACA UYGUNLUK VEYA SATILABİLİRLİK HAKKINDA zımni garanti olmaksızın. Daha çok ayrıntı için GNU Genel Kamu Lisansı'na bakın. 7 | 8 | Yasal ayrıntılar için https://www.gnu.org/licenses/ adresine bakın. 9 | -------------------------------------------------------------------------------- /app/src/main/play/listings/tr-TR/short-description.txt: -------------------------------------------------------------------------------- 1 | Etkinliklerinizi takip edin ve düzenleyin. 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/tr-TR/title.txt: -------------------------------------------------------------------------------- 1 | Etkinlik Günlüğü 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/yo-NG/full-description.txt: -------------------------------------------------------------------------------- 1 | Activity Diary allows to record a diary for your activities. You can attach notes and pictures to the activies and by that record details like the kind of vegetables you seeded while gardening. The diary and statistics views provide an overview of what you did and when. 2 | The functions to categorize activites and get a reminder for recurrent actions are planned. 3 | 4 | Activity Diary is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. 5 | 6 | This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 7 | 8 | For legal details see https://www.gnu.org/licenses/. 9 | -------------------------------------------------------------------------------- /app/src/main/play/listings/yo-NG/short-description.txt: -------------------------------------------------------------------------------- 1 | Track and organize your activities. 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/yo-NG/title.txt: -------------------------------------------------------------------------------- 1 | Activity Diary 2 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/cs-CZ/beta.txt: -------------------------------------------------------------------------------- 1 | - Added privacy policy, please read! 2 | - Detect similar activity names on creation 3 | - Added statistics for current activity 4 | - Improved statistics view: add 'day' option and selectable format 5 | - Completed Russian translation 6 | - Several bugfixes 7 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/cs-CZ/production.txt: -------------------------------------------------------------------------------- 1 | - upgrade of several dependencies 2 | - correct map view 3 | - minor bugfixes 4 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/da-DK/beta.txt: -------------------------------------------------------------------------------- 1 | - Added privacy policy, please read! 2 | - Detect similar activity names on creation 3 | - Added statistics for current activity 4 | - Improved statistics view: add 'day' option and selectable format 5 | - Completed Russian translation 6 | - Several bugfixes 7 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/da-DK/production.txt: -------------------------------------------------------------------------------- 1 | - upgrade of several dependencies 2 | - correct map view 3 | - minor bugfixes 4 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/de-DE/beta.txt: -------------------------------------------------------------------------------- 1 | - Datenschutzerklärung hinzugefügt, bitte lesen! 2 | - Erkennung von ähnlichen Aktivitätsnamen 3 | - Statisitsche Daten für die aktuell laufende Aktivität hinzugefügt 4 | - Statistikanzeige verbessert: Option 'Tag' hinzugefügt und benutzerdefinierte Formate 5 | - Russische Übersetzung vervollständigt 6 | - Verschiedene Fehler wurden behoben 7 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/de-DE/production.txt: -------------------------------------------------------------------------------- 1 | - Update verschiedener Abhängigkeiten 2 | - Korrektur der Kartenansicht 3 | - Kleinere Fehlerbehebungen 4 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/el-GR/beta.txt: -------------------------------------------------------------------------------- 1 | - Added privacy policy, please read! 2 | - Detect similar activity names on creation 3 | - Added statistics for current activity 4 | - Improved statistics view: add 'day' option and selectable format 5 | - Completed Russian translation 6 | - Several bugfixes 7 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/el-GR/production.txt: -------------------------------------------------------------------------------- 1 | - upgrade of several dependencies 2 | - correct map view 3 | - minor bugfixes 4 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/en-US/beta.txt: -------------------------------------------------------------------------------- 1 | - Added privacy policy, please read! 2 | - Detect similar activity names on creation 3 | - Added statistics for current activity 4 | - Improved statistics view: add 'day' option and selectable format 5 | - Completed Russian translation 6 | - Several bugfixes 7 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/en-US/production.txt: -------------------------------------------------------------------------------- 1 | - upgrade of several dependencies 2 | - correct map view 3 | - minor bugfixes 4 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/es-ES/beta.txt: -------------------------------------------------------------------------------- 1 | - Added privacy policy, please read! 2 | - Detect similar activity names on creation 3 | - Added statistics for current activity 4 | - Improved statistics view: add 'day' option and selectable format 5 | - Completed Russian translation 6 | - Several bugfixes 7 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/es-ES/production.txt: -------------------------------------------------------------------------------- 1 | - upgrade of several dependencies 2 | - correct map view 3 | - minor bugfixes 4 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/fi-FI/beta.txt: -------------------------------------------------------------------------------- 1 | - Added privacy policy, please read! 2 | - Detect similar activity names on creation 3 | - Added statistics for current activity 4 | - Improved statistics view: add 'day' option and selectable format 5 | - Completed Russian translation 6 | - Several bugfixes 7 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/fi-FI/production.txt: -------------------------------------------------------------------------------- 1 | - upgrade of several dependencies 2 | - correct map view 3 | - minor bugfixes 4 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/fr-FR/beta.txt: -------------------------------------------------------------------------------- 1 | - Added privacy policy, please read! 2 | - Detect similar activity names on creation 3 | - Added statistics for current activity 4 | - Improved statistics view: add 'day' option and selectable format 5 | - Completed Russian translation 6 | - Several bugfixes 7 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/fr-FR/production.txt: -------------------------------------------------------------------------------- 1 | - upgrade of several dependencies 2 | - correct map view 3 | - minor bugfixes 4 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/hu-HU/beta.txt: -------------------------------------------------------------------------------- 1 | - Added privacy policy, please read! 2 | - Detect similar activity names on creation 3 | - Added statistics for current activity 4 | - Improved statistics view: add 'day' option and selectable format 5 | - Completed Russian translation 6 | - Several bugfixes 7 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/hu-HU/production.txt: -------------------------------------------------------------------------------- 1 | - upgrade of several dependencies 2 | - correct map view 3 | - minor bugfixes 4 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/id-ID/beta.txt: -------------------------------------------------------------------------------- 1 | - Added privacy policy, please read! 2 | - Detect similar activity names on creation 3 | - Added statistics for current activity 4 | - Improved statistics view: add 'day' option and selectable format 5 | - Completed Russian translation 6 | - Several bugfixes 7 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/id-ID/production.txt: -------------------------------------------------------------------------------- 1 | - upgrade of several dependencies 2 | - correct map view 3 | - minor bugfixes 4 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/id/beta.txt: -------------------------------------------------------------------------------- 1 | - Added privacy policy, please read! 2 | - Detect similar activity names on creation 3 | - Added statistics for current activity 4 | - Improved statistics view: add 'day' option and selectable format 5 | - Completed Russian translation 6 | - Several bugfixes 7 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/id/production.txt: -------------------------------------------------------------------------------- 1 | - Added privacy policy, please read! 2 | - Detect similar activity names on creation 3 | - Added statistics for current activity 4 | - Improved statistics view: add 'day' option and selectable format 5 | - Completed Russian translation 6 | - Several bugfixes 7 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/it-IT/beta.txt: -------------------------------------------------------------------------------- 1 | - Aggiunta la politica sulla privacy, si prega di leggere! 2 | - Rileva i nomi di attività simili sulla creazione 3 | - Aggiunte statistiche per l'attività corrente 4 | - Vista statistica migliorata: aggiunta l'opzione "giorno" e il formato selezionabile 5 | -Completata la traduzione in Russo 6 | - Diverse correzioni di bug 7 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/it-IT/production.txt: -------------------------------------------------------------------------------- 1 | - aggiornamento di diverse dipendenze 2 | - visualizzazione mappa corretta 3 | - correzioni minori 4 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/ja-JP/beta.txt: -------------------------------------------------------------------------------- 1 | - Added privacy policy, please read! 2 | - Detect similar activity names on creation 3 | - Added statistics for current activity 4 | - Improved statistics view: add 'day' option and selectable format 5 | - Completed Russian translation 6 | - Several bugfixes 7 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/ja-JP/production.txt: -------------------------------------------------------------------------------- 1 | - upgrade of several dependencies 2 | - correct map view 3 | - minor bugfixes 4 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/ko-KR/beta.txt: -------------------------------------------------------------------------------- 1 | - Added privacy policy, please read! 2 | - Detect similar activity names on creation 3 | - Added statistics for current activity 4 | - Improved statistics view: add 'day' option and selectable format 5 | - Completed Russian translation 6 | - Several bugfixes 7 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/ko-KR/production.txt: -------------------------------------------------------------------------------- 1 | - upgrade of several dependencies 2 | - correct map view 3 | - minor bugfixes 4 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/nl-NL/beta.txt: -------------------------------------------------------------------------------- 1 | - Added privacy policy, please read! 2 | - Detect similar activity names on creation 3 | - Added statistics for current activity 4 | - Improved statistics view: add 'day' option and selectable format 5 | - Completed Russian translation 6 | - Several bugfixes 7 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/nl-NL/production.txt: -------------------------------------------------------------------------------- 1 | - upgrade of several dependencies 2 | - correct map view 3 | - minor bugfixes 4 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/no-NO/beta.txt: -------------------------------------------------------------------------------- 1 | - Added privacy policy, please read! 2 | - Detect similar activity names on creation 3 | - Added statistics for current activity 4 | - Improved statistics view: add 'day' option and selectable format 5 | - Completed Russian translation 6 | - Several bugfixes 7 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/no-NO/production.txt: -------------------------------------------------------------------------------- 1 | - upgrade of several dependencies 2 | - correct map view 3 | - minor bugfixes 4 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/pl-PL/beta.txt: -------------------------------------------------------------------------------- 1 | - Added privacy policy, please read! 2 | - Detect similar activity names on creation 3 | - Added statistics for current activity 4 | - Improved statistics view: add 'day' option and selectable format 5 | - Completed Russian translation 6 | - Several bugfixes 7 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/pl-PL/production.txt: -------------------------------------------------------------------------------- 1 | - upgrade of several dependencies 2 | - correct map view 3 | - minor bugfixes 4 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/pt-PT/beta.txt: -------------------------------------------------------------------------------- 1 | - Added privacy policy, please read! 2 | - Detect similar activity names on creation 3 | - Added statistics for current activity 4 | - Improved statistics view: add 'day' option and selectable format 5 | - Completed Russian translation 6 | - Several bugfixes 7 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/pt-PT/production.txt: -------------------------------------------------------------------------------- 1 | - upgrade of several dependencies 2 | - correct map view 3 | - minor bugfixes 4 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/ru-RU/beta.txt: -------------------------------------------------------------------------------- 1 | - Добавлена политика конфиденциальности, пожалуйста, прочитайте! 2 | - Обнаружение похожих названий для видов деятельности при их создании 3 | - Добавлена статистика для текущей деятельности 4 | - Улучшенный просмотр статистики: добавлен просмотр по дням и выбор формата 5 | - Добавлен перевод на русский язык 6 | - Другие исправления 7 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/ru-RU/production.txt: -------------------------------------------------------------------------------- 1 | - upgrade of several dependencies 2 | - correct map view 3 | - minor bugfixes 4 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/sv-SE/beta.txt: -------------------------------------------------------------------------------- 1 | - Added privacy policy, please read! 2 | - Detect similar activity names on creation 3 | - Added statistics for current activity 4 | - Improved statistics view: add 'day' option and selectable format 5 | - Completed Russian translation 6 | - Several bugfixes 7 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/sv-SE/production.txt: -------------------------------------------------------------------------------- 1 | - upgrade of several dependencies 2 | - correct map view 3 | - minor bugfixes 4 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/tr-TR/beta.txt: -------------------------------------------------------------------------------- 1 | - Added privacy policy, please read! 2 | - Detect similar activity names on creation 3 | - Added statistics for current activity 4 | - Improved statistics view: add 'day' option and selectable format 5 | - Completed Russian translation 6 | - Several bugfixes 7 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/tr-TR/production.txt: -------------------------------------------------------------------------------- 1 | - upgrade of several dependencies 2 | - correct map view 3 | - minor bugfixes 4 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/yo-NG/beta.txt: -------------------------------------------------------------------------------- 1 | - Added privacy policy, please read! 2 | - Detect similar activity names on creation 3 | - Added statistics for current activity 4 | - Improved statistics view: add 'day' option and selectable format 5 | - Completed Russian translation 6 | - Several bugfixes 7 | -------------------------------------------------------------------------------- /app/src/main/play/release-notes/yo-NG/production.txt: -------------------------------------------------------------------------------- 1 | - upgrade of several dependencies 2 | - correct map view 3 | - minor bugfixes 4 | -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_in_left_animation.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | 23 | 30 | -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_in_right_animation.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | 23 | 30 | -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_out_left_animation.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | 29 | -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_out_right_animation.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | 29 | -------------------------------------------------------------------------------- /app/src/main/res/arrays-cs/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 23 | OFF 24 | Network 25 | GPS (and network) 26 | 27 | 28 | All 29 | Last 7 Days 30 | Last 30 Days 31 | Week 32 | Month 33 | Year 34 | 35 | 36 | -------------------------------------------------------------------------------- /app/src/main/res/arrays-da/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 23 | OFF 24 | Network 25 | GPS (and network) 26 | 27 | 28 | All 29 | Last 7 Days 30 | Last 30 Days 31 | Week 32 | Month 33 | Year 34 | 35 | 36 | -------------------------------------------------------------------------------- /app/src/main/res/arrays-de/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 23 | AUS 24 | Netzwerk 25 | GPS (und Netzwerk) 26 | 27 | 28 | Alle 29 | Die Letzten 7 Tage 30 | Die Letzten 30 Tage 31 | Woche 32 | Monat 33 | Jahr 34 | 35 | 36 | -------------------------------------------------------------------------------- /app/src/main/res/arrays-el/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 23 | OFF 24 | Network 25 | GPS (and network) 26 | 27 | 28 | All 29 | Last 7 Days 30 | Last 30 Days 31 | Week 32 | Month 33 | Year 34 | 35 | 36 | -------------------------------------------------------------------------------- /app/src/main/res/arrays-es/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 23 | OFF 24 | Network 25 | GPS (and network) 26 | 27 | 28 | All 29 | Last 7 Days 30 | Last 30 Days 31 | Week 32 | Month 33 | Year 34 | 35 | 36 | -------------------------------------------------------------------------------- /app/src/main/res/arrays-fi/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 23 | OFF 24 | Network 25 | GPS (and network) 26 | 27 | 28 | All 29 | Last 7 Days 30 | Last 30 Days 31 | Week 32 | Month 33 | Year 34 | 35 | 36 | -------------------------------------------------------------------------------- /app/src/main/res/arrays-fr/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 23 | OFF 24 | Network 25 | GPS (and network) 26 | 27 | 28 | All 29 | Last 7 Days 30 | Last 30 Days 31 | Week 32 | Month 33 | Year 34 | 35 | 36 | -------------------------------------------------------------------------------- /app/src/main/res/arrays-hu/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 23 | KI 24 | Network 25 | GPS (and network) 26 | 27 | 28 | All 29 | Last 7 Days 30 | Last 30 Days 31 | Week 32 | Month 33 | Year 34 | 35 | 36 | -------------------------------------------------------------------------------- /app/src/main/res/arrays-it/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 23 | OFF 24 | Network 25 | GPS (and network) 26 | 27 | 28 | All 29 | Last 7 Days 30 | Last 30 Days 31 | Week 32 | Month 33 | Year 34 | 35 | 36 | -------------------------------------------------------------------------------- /app/src/main/res/arrays-ja/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 23 | OFF 24 | Network 25 | GPS (and network) 26 | 27 | 28 | All 29 | Last 7 Days 30 | Last 30 Days 31 | Week 32 | Month 33 | Year 34 | 35 | 36 | -------------------------------------------------------------------------------- /app/src/main/res/arrays-ko/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 23 | OFF 24 | Network 25 | GPS (and network) 26 | 27 | 28 | All 29 | Last 7 Days 30 | Last 30 Days 31 | Week 32 | Month 33 | Year 34 | 35 | 36 | -------------------------------------------------------------------------------- /app/src/main/res/arrays-nl/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 23 | OFF 24 | Network 25 | GPS (and network) 26 | 27 | 28 | All 29 | Last 7 Days 30 | Last 30 Days 31 | Week 32 | Month 33 | Year 34 | 35 | 36 | -------------------------------------------------------------------------------- /app/src/main/res/arrays-no/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 23 | OFF 24 | Network 25 | GPS (and network) 26 | 27 | 28 | All 29 | Last 7 Days 30 | Last 30 Days 31 | Week 32 | Month 33 | Year 34 | 35 | 36 | -------------------------------------------------------------------------------- /app/src/main/res/arrays-pl/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 23 | OFF 24 | Network 25 | GPS (and network) 26 | 27 | 28 | All 29 | Last 7 Days 30 | Last 30 Days 31 | Week 32 | Month 33 | Year 34 | 35 | 36 | -------------------------------------------------------------------------------- /app/src/main/res/arrays-pt/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 23 | OFF 24 | Network 25 | GPS (and network) 26 | 27 | 28 | All 29 | Last 7 Days 30 | Last 30 Days 31 | Week 32 | Month 33 | Year 34 | 35 | 36 | -------------------------------------------------------------------------------- /app/src/main/res/arrays-ru/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 23 | OFF 24 | Network 25 | GPS (and network) 26 | 27 | 28 | All 29 | Last 7 Days 30 | Last 30 Days 31 | Week 32 | Month 33 | Year 34 | 35 | 36 | -------------------------------------------------------------------------------- /app/src/main/res/arrays-sv/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 23 | OFF 24 | Network 25 | GPS (and network) 26 | 27 | 28 | All 29 | Last 7 Days 30 | Last 30 Days 31 | Week 32 | Month 33 | Year 34 | 35 | 36 | -------------------------------------------------------------------------------- /app/src/main/res/arrays-tr/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 23 | OFF 24 | Network 25 | GPS (and network) 26 | 27 | 28 | All 29 | Last 7 Days 30 | Last 30 Days 31 | Week 32 | Month 33 | Year 34 | 35 | 36 | -------------------------------------------------------------------------------- /app/src/main/res/arrays-yo/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 23 | PA 24 | Network 25 | GPS (and network) 26 | 27 | 28 | All 29 | Last 7 Days 30 | Last 30 Days 31 | Week 32 | Month 33 | Year 34 | 35 | 36 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_privacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-hdpi/ic_action_privacy.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_activities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-hdpi/ic_activities.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-hdpi/ic_add.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_add_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-hdpi/ic_add_image.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_add_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-hdpi/ic_add_note.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-hdpi/ic_calendar.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_close_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-hdpi/ic_close_cancel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-hdpi/ic_delete.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-hdpi/ic_done.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-hdpi/ic_edit.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-hdpi/ic_filter.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-hdpi/ic_help.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_hide_deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-hdpi/ic_hide_deleted.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-hdpi/ic_history.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_nav_add_activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-hdpi/ic_nav_add_activity.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_nav_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-hdpi/ic_nav_history.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_nav_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-hdpi/ic_nav_left.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_nav_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-hdpi/ic_nav_map.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_nav_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-hdpi/ic_nav_right.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_nav_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-hdpi/ic_nav_select.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_nav_stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-hdpi/ic_nav_stats.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_rename_deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-hdpi/ic_rename_deleted.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-hdpi/ic_search.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-hdpi/ic_setting.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_show_deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-hdpi/ic_show_deleted.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_undelete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-hdpi/ic_undelete.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_privacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-mdpi/ic_action_privacy.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_activities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-mdpi/ic_activities.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-mdpi/ic_add.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_add_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-mdpi/ic_add_image.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_add_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-mdpi/ic_add_note.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-mdpi/ic_calendar.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_close_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-mdpi/ic_close_cancel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-mdpi/ic_delete.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-mdpi/ic_done.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-mdpi/ic_edit.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-mdpi/ic_filter.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-mdpi/ic_help.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_hide_deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-mdpi/ic_hide_deleted.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-mdpi/ic_history.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_nav_add_activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-mdpi/ic_nav_add_activity.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_nav_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-mdpi/ic_nav_history.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_nav_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-mdpi/ic_nav_left.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_nav_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-mdpi/ic_nav_map.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_nav_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-mdpi/ic_nav_right.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_nav_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-mdpi/ic_nav_select.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_nav_stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-mdpi/ic_nav_stats.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_rename_deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-mdpi/ic_rename_deleted.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-mdpi/ic_search.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-mdpi/ic_setting.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_show_deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-mdpi/ic_show_deleted.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_undelete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-mdpi/ic_undelete.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_privacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xhdpi/ic_action_privacy.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_activities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xhdpi/ic_activities.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xhdpi/ic_add.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_add_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xhdpi/ic_add_image.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_add_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xhdpi/ic_add_note.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xhdpi/ic_calendar.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_close_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xhdpi/ic_close_cancel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xhdpi/ic_delete.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xhdpi/ic_done.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xhdpi/ic_edit.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xhdpi/ic_filter.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xhdpi/ic_help.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_hide_deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xhdpi/ic_hide_deleted.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xhdpi/ic_history.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_nav_add_activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xhdpi/ic_nav_add_activity.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_nav_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xhdpi/ic_nav_history.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_nav_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xhdpi/ic_nav_left.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_nav_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xhdpi/ic_nav_map.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_nav_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xhdpi/ic_nav_right.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_nav_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xhdpi/ic_nav_select.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_nav_stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xhdpi/ic_nav_stats.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_rename_deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xhdpi/ic_rename_deleted.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xhdpi/ic_search.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xhdpi/ic_setting.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_show_deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xhdpi/ic_show_deleted.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_undelete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xhdpi/ic_undelete.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/feature_graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/feature_graphic.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_privacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/ic_action_privacy.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_activities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/ic_activities.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/ic_add.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_add_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/ic_add_image.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_add_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/ic_add_note.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/ic_calendar.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_close_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/ic_close_cancel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/ic_delete.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/ic_done.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/ic_edit.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/ic_filter.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/ic_help.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_hide_deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/ic_hide_deleted.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/ic_history.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_nav_add_activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/ic_nav_add_activity.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_nav_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/ic_nav_history.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_nav_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/ic_nav_left.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_nav_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/ic_nav_map.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_nav_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/ic_nav_right.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_nav_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/ic_nav_select.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_nav_stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/ic_nav_stats.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_rename_deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/ic_rename_deleted.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/ic_search.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/ic_setting.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_show_deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/ic_show_deleted.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_undelete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxhdpi/ic_undelete.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_action_privacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/drawable-xxxhdpi/ic_action_privacy.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 19 | 20 | 25 | 28 | 29 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_history_content.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 27 | 28 | 36 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_manage_content.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 26 | 27 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_map.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 25 | 26 | 34 | 35 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 27 | 28 | 33 | 34 | -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_note_editor.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 24 | 25 | 33 | 34 | -------------------------------------------------------------------------------- /app/src/main/res/layout/drawer_header.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 25 | 26 | 32 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_detail_pictures.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | 29 | 30 | -------------------------------------------------------------------------------- /app/src/main/res/layout/select_recycler_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /app/src/main/res/menu/edit_diary_entry_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 23 | 28 | 33 | 34 | -------------------------------------------------------------------------------- /app/src/main/res/menu/edit_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 23 | 28 | 33 | 34 | -------------------------------------------------------------------------------- /app/src/main/res/menu/history_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 23 | 31 | -------------------------------------------------------------------------------- /app/src/main/res/menu/main_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 23 | 31 | 36 | 37 | -------------------------------------------------------------------------------- /app/src/main/res/menu/manage_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 23 | 28 | 29 | 34 | 35 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/mipmap-hdpi/ic_history.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/mipmap-mdpi/ic_history.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/mipmap-xhdpi/ic_history.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/mipmap-xxhdpi/ic_history.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/mipmap-xxxhdpi/ic_history.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/mipmap.xcf -------------------------------------------------------------------------------- /app/src/main/res/mipmap_round.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/app/src/main/res/mipmap_round.xcf -------------------------------------------------------------------------------- /app/src/main/res/values-cs/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | OFF 23 | Network 24 | GPS (and network) 25 | 26 | 27 | Dynamic 28 | Precise 29 | No days 30 | Hours + min 31 | 32 | 33 | All 34 | Last 7 Days 35 | Last 30 Days 36 | Day 37 | Week 38 | Month 39 | Year 40 | 41 | 42 | -------------------------------------------------------------------------------- /app/src/main/res/values-da/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | OFF 23 | Network 24 | GPS (and network) 25 | 26 | 27 | Dynamic 28 | Precise 29 | No days 30 | Hours + min 31 | 32 | 33 | All 34 | Last 7 Days 35 | Last 30 Days 36 | Day 37 | Week 38 | Month 39 | Year 40 | 41 | 42 | -------------------------------------------------------------------------------- /app/src/main/res/values-de/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | AUS 23 | Netzwerk 24 | GPS (und Netzwerk) 25 | 26 | 27 | Dynamisch 28 | Präzise 29 | Keine Tage 30 | Stunden + Minuten 31 | 32 | 33 | Alle 34 | Die Letzten 7 Tage 35 | Die Letzten 30 Tage 36 | Tag 37 | Woche 38 | Monat 39 | Jahr 40 | 41 | 42 | -------------------------------------------------------------------------------- /app/src/main/res/values-el/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | OFF 23 | Network 24 | GPS (and network) 25 | 26 | 27 | Dynamic 28 | Precise 29 | No days 30 | Hours + min 31 | 32 | 33 | All 34 | Last 7 Days 35 | Last 30 Days 36 | Day 37 | Week 38 | Month 39 | Year 40 | 41 | 42 | -------------------------------------------------------------------------------- /app/src/main/res/values-es/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | Salir 23 | Red 24 | GPS (y red) 25 | 26 | 27 | Dinámico 28 | Preciso 29 | Continuo 30 | Horas + min 31 | 32 | 33 | Todo 34 | Últimos 7 días 35 | Últimos 30 días 36 | Día 37 | Semana 38 | Mes 39 | Año 40 | 41 | 42 | -------------------------------------------------------------------------------- /app/src/main/res/values-fi/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | OFF 23 | Network 24 | GPS (and network) 25 | 26 | 27 | Dynamic 28 | Precise 29 | No days 30 | Hours + min 31 | 32 | 33 | All 34 | Last 7 Days 35 | Last 30 Days 36 | Day 37 | Week 38 | Month 39 | Year 40 | 41 | 42 | -------------------------------------------------------------------------------- /app/src/main/res/values-fr/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | OFF 23 | Network 24 | GPS (and network) 25 | 26 | 27 | Dynamic 28 | Precise 29 | No days 30 | Hours + min 31 | 32 | 33 | All 34 | Last 7 Days 35 | Last 30 Days 36 | Day 37 | Week 38 | Month 39 | Year 40 | 41 | 42 | -------------------------------------------------------------------------------- /app/src/main/res/values-hu/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | KI 23 | Hálózat 24 | GPS (és hálózati) 25 | 26 | 27 | Dynamic 28 | Precise 29 | No days 30 | Hours + min 31 | 32 | 33 | Minden 34 | Az elmúlt 7 nap 35 | Az elmúlt 30 nap 36 | Hét 37 | Hónap 38 | Év 39 | Year 40 | 41 | 42 | -------------------------------------------------------------------------------- /app/src/main/res/values-id/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 23 | OFF 24 | Network 25 | GPS (and network) 26 | 27 | 28 | Dynamic 29 | Precise 30 | No days 31 | Hours + min 32 | 33 | 34 | All 35 | Last 7 Days 36 | Last 30 Days 37 | Day 38 | Week 39 | Month 40 | Year 41 | 42 | 43 | -------------------------------------------------------------------------------- /app/src/main/res/values-in/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | OFF 23 | Network 24 | GPS (and network) 25 | 26 | 27 | Dynamic 28 | Precise 29 | No days 30 | Hours + min 31 | 32 | 33 | All 34 | Last 7 Days 35 | Last 30 Days 36 | Day 37 | Week 38 | Month 39 | Year 40 | 41 | 42 | -------------------------------------------------------------------------------- /app/src/main/res/values-it/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | OFF 23 | Rete 24 | GPS (e rete) 25 | 26 | 27 | Dinamico 28 | Preciso 29 | Nessun giorno 30 | Ore + min 31 | 32 | 33 | Tutti 34 | Ultimi 7 Giorni 35 | Ultimi 30 Giorni 36 | Giorno 37 | Settimana 38 | Mese 39 | Anno 40 | 41 | 42 | -------------------------------------------------------------------------------- /app/src/main/res/values-ja/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | OFF 23 | Network 24 | GPS (and network) 25 | 26 | 27 | Dynamic 28 | Precise 29 | No days 30 | Hours + min 31 | 32 | 33 | All 34 | Last 7 Days 35 | Last 30 Days 36 | Day 37 | Week 38 | Month 39 | Year 40 | 41 | 42 | -------------------------------------------------------------------------------- /app/src/main/res/values-ko/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | OFF 23 | Network 24 | GPS (and network) 25 | 26 | 27 | Dynamic 28 | Precise 29 | No days 30 | Hours + min 31 | 32 | 33 | All 34 | Last 7 Days 35 | Last 30 Days 36 | Day 37 | Week 38 | Month 39 | Year 40 | 41 | 42 | -------------------------------------------------------------------------------- /app/src/main/res/values-nl/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | OFF 23 | Network 24 | GPS (and network) 25 | 26 | 27 | Dynamic 28 | Precise 29 | No days 30 | Hours + min 31 | 32 | 33 | All 34 | Last 7 Days 35 | Last 30 Days 36 | Day 37 | Week 38 | Month 39 | Year 40 | 41 | 42 | -------------------------------------------------------------------------------- /app/src/main/res/values-no/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | OFF 23 | Network 24 | GPS (and network) 25 | 26 | 27 | Dynamic 28 | Precise 29 | No days 30 | Hours + min 31 | 32 | 33 | All 34 | Last 7 Days 35 | Last 30 Days 36 | Day 37 | Week 38 | Month 39 | Year 40 | 41 | 42 | -------------------------------------------------------------------------------- /app/src/main/res/values-pl/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | OFF 23 | Network 24 | GPS (and network) 25 | 26 | 27 | Dynamic 28 | Precise 29 | No days 30 | Hours + min 31 | 32 | 33 | All 34 | Last 7 Days 35 | Last 30 Days 36 | Day 37 | Week 38 | Month 39 | Year 40 | 41 | 42 | -------------------------------------------------------------------------------- /app/src/main/res/values-pt/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | OFF 23 | Network 24 | GPS (and network) 25 | 26 | 27 | Dynamic 28 | Precise 29 | No days 30 | Hours + min 31 | 32 | 33 | All 34 | Last 7 Days 35 | Last 30 Days 36 | Day 37 | Week 38 | Month 39 | Year 40 | 41 | 42 | -------------------------------------------------------------------------------- /app/src/main/res/values-ru/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | ВЫКЛ 23 | По сети 24 | GPS (и сеть) 25 | 26 | 27 | Динамически 28 | Точно 29 | Нет дней 30 | Часы + минуты 31 | 32 | 33 | Все записи 34 | За последние 7 дней 35 | За последние 30 дней 36 | День 37 | Неделя 38 | Месяц 39 | Год 40 | 41 | 42 | -------------------------------------------------------------------------------- /app/src/main/res/values-sv/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | OFF 23 | Network 24 | GPS (and network) 25 | 26 | 27 | Dynamic 28 | Precise 29 | No days 30 | Hours + min 31 | 32 | 33 | All 34 | Last 7 Days 35 | Last 30 Days 36 | Day 37 | Week 38 | Month 39 | Year 40 | 41 | 42 | -------------------------------------------------------------------------------- /app/src/main/res/values-tr/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | Kapalı 23 | 24 | GPS (ve ağ) 25 | 26 | 27 | Devingen 28 | Kesin 29 | Gün yok 30 | Saat + dakika 31 | 32 | 33 | Tümü 34 | Son 7 Gün 35 | Son 30 Gün 36 | Gün 37 | Hafta 38 | Ay 39 | Yıl 40 | 41 | 42 | -------------------------------------------------------------------------------- /app/src/main/res/values-yo/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | PA 23 | Network 24 | GPS (and network) 25 | 26 | 27 | Dynamic 28 | Precise 29 | No days 30 | Hours + min 31 | 32 | 33 | All 34 | Last 7 Days 35 | Last 30 Days 36 | Day 37 | Week 38 | Month 39 | Year 40 | 41 | 42 | -------------------------------------------------------------------------------- /app/src/main/res/values/constants.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | 23 | logo 24 | current_activity_trans 25 | 26 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | 22 | 23 | 27 | 28 | -------------------------------------------------------------------------------- /app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /app/src/main/res/xml/searchable.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 30 | -------------------------------------------------------------------------------- /artwork/attic/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/artwork/attic/ic_launcher.png -------------------------------------------------------------------------------- /artwork/attic/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/artwork/attic/teaser.png -------------------------------------------------------------------------------- /artwork/ic_nav_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/artwork/ic_nav_history.png -------------------------------------------------------------------------------- /artwork/ic_nav_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/artwork/ic_nav_select.png -------------------------------------------------------------------------------- /artwork/logo/adaptive-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/artwork/logo/adaptive-background.png -------------------------------------------------------------------------------- /artwork/logo/adaptive-background.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /artwork/logo/adaptive-foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/artwork/logo/adaptive-foreground.png -------------------------------------------------------------------------------- /artwork/logo/feature-graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/artwork/logo/feature-graphic.png -------------------------------------------------------------------------------- /artwork/logo/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/artwork/logo/icon.png -------------------------------------------------------------------------------- /artwork/logo/logotype-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/artwork/logo/logotype-a.png -------------------------------------------------------------------------------- /artwork/logo/logotype-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/artwork/logo/logotype-b.png -------------------------------------------------------------------------------- /build.gradle: -------------------------------------------------------------------------------- 1 | /* 2 | * ActivityDiary 3 | * 4 | * Copyright (C) 2017-2018 Raphael Mack http://www.raphael-mack.de 5 | * 6 | * This program is free software: you can redistribute it and/or modify 7 | * it under the terms of the GNU General Public License as published by 8 | * the Free Software Foundation, either version 3 of the License, or 9 | * (at your option) any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program. If not, see . 18 | */ 19 | 20 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 21 | 22 | buildscript { 23 | repositories { 24 | google() 25 | mavenCentral() 26 | if (project.file('ActivityDiarySigning.properties').exists()) { 27 | mavenCentral() 28 | } 29 | } 30 | dependencies { 31 | classpath 'com.android.tools.build:gradle:7.3.0' 32 | 33 | // NOTE: Do not place your application dependencies here; they belong 34 | // in the individual module build.gradle files 35 | if (project.file('ActivityDiarySigning.properties').exists()) { 36 | classpath("com.github.triplet.gradle:play-publisher:3.6.0") 37 | } 38 | } 39 | } 40 | 41 | allprojects { 42 | tasks.withType(Test).configureEach { 43 | forkEvery = 100 44 | } 45 | 46 | repositories { 47 | google() 48 | mavenCentral() 49 | jcenter() 50 | maven { url "https://jitpack.io" } 51 | } 52 | } 53 | 54 | task clean(type: Delete) { 55 | delete rootProject.buildDir 56 | } -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- 1 | files: 2 | - source: /app/src/main/res/values/strings.xml 3 | translation: /app/src/main/res/values-%two_letters_code%/%original_file_name% 4 | languages_mapping: 5 | two_letters_code: 6 | id: in 7 | translate_attributes: 0 8 | update_option: update_as_unapproved 9 | - source: /app/src/main/play/release-notes/en-US/* 10 | translation: /app/src/main/play/release-notes/%locale%/%original_file_name% 11 | update_option: update_as_unapproved 12 | - source: /app/src/main/play/listings/en-US/* 13 | translation: /app/src/main/play/listings/%locale%/%original_file_name% 14 | update_option: update_as_unapproved 15 | - source: /app/src/main/res/values/arrays.xml 16 | translation: /app/src/main/res/values-%two_letters_code%/%original_file_name% 17 | languages_mapping: 18 | two_letters_code: 19 | id: in 20 | translate_attributes: 0 21 | update_option: update_as_unapproved 22 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | ## For more details on how to configure your build environment visit 2 | # http://www.gradle.org/docs/current/userguide/build_environment.html 3 | # 4 | # Specifies the JVM arguments used for the daemon process. 5 | # The setting is particularly useful for tweaking memory settings. 6 | # Default value: -Xmx1024m -XX:MaxPermSize=256m 7 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 8 | # 9 | # When configured, Gradle will run in incubating parallel mode. 10 | # This option should only be used with decoupled projects. More details, visit 11 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 12 | # org.gradle.parallel=true 13 | 14 | android.enableJetifier=true 15 | android.useAndroidX=true 16 | 17 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramack/ActivityDiary/71254d43be3cff72245c348d766390bc86274598/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sat Oct 16 22:40:00 CEST 2021 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip 7 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------