Skip to content

Commit da62690

Browse files
committed
- Renamed recurring transactions to "Scheduled transactions" and localized the string
- Added icon for scheduled transactions - Add to ignore .classpath and .project used by eclipse Closes #142
1 parent cba748f commit da62690

23 files changed

Lines changed: 38 additions & 22 deletions

File tree

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,6 @@ gen-external-apklibs
1212
*.ipr
1313
.idea/
1414
*.iws
15-
out/
15+
out/
16+
*.project
17+
*.classpath
1.35 KB
Loading
1.35 KB
Loading
1.24 KB
Loading
1.24 KB
Loading
1.49 KB
Loading
1.48 KB
Loading

app/res/menu/account_actions.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@
2222
android:showAsAction="always"/>
2323

2424
<item android:id="@+id/menu_recurring_transactions"
25-
android:title="@string/menu_item_recurring_transactions"
25+
android:title="@string/menu_item_scheduled_transactions"
26+
android:icon="@drawable/content_event_holo_dark"
2627
android:showAsAction="never|withText"
2728
android:orderInCategory="4" />
2829

2930
<item android:id="@+id/menu_export"
30-
android:icon="@drawable/content_import_export_holo_light"
31+
android:icon="@drawable/content_import_export_holo_dark"
3132
android:title="@string/menu_export_transactions"
3233
android:showAsAction="never"
3334
android:orderInCategory="5"/>

app/res/values-de/strings.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@
386386
<string name="message_confirm_create_default_accounts_setting">New accounts will be created in addition to the existing
387387
account structure.\n\nIf you wish to replace currently existing accounts, delete them first before proceeding!
388388
</string>
389-
<string name="menu_item_recurring_transactions">Wiederkehrende Buchungen</string>
389+
<string name="menu_item_scheduled_transactions">Eingeplante Buchungen</string>
390390
<string name="message_confirm_create_default_accounts_first_run">Welcome to GnuCash Android! \nYou can either create
391391
a hierarchy of commonly-used accounts, or import your own GnuCash account structure. \n\nBoth options are also
392392
available in app Settings so you can decide later.
@@ -397,4 +397,5 @@
397397
<item>WÖCHENTLICH</item>
398398
<item>MONATLICH</item>
399399
</string-array>
400+
<string name="title_scheduled_transactions">Eingeplante Buchungen</string>
400401
</resources>

app/res/values-el/strings.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@
402402
<string name="message_confirm_create_default_accounts_setting">New accounts will be created in addition to the existing
403403
account structure.\n\nIf you wish to replace currently existing accounts, delete them first before proceeding!
404404
</string>
405-
<string name="menu_item_recurring_transactions">Recurring Transactions</string>
405+
<string name="menu_item_scheduled_transactions">Scheduled Transactions</string>
406406
<string name="message_confirm_create_default_accounts_first_run">Welcome to GnuCash Android! \nYou can either create
407407
a hierarchy of commonly-used accounts, or import your own GnuCash account structure. \n\nBoth options are also
408408
available in app Settings so you can decide later.
@@ -413,4 +413,5 @@
413413
<item>WEEKLY</item>
414414
<item>MONTHLY</item>
415415
</string-array>
416+
<string name="title_scheduled_transactions">Scheduled Transactions</string>
416417
</resources>

0 commit comments

Comments
 (0)