New translations [skip ci]

This commit is contained in:
James Cole
2015-07-26 09:44:31 +02:00
parent 79b1a2ca6d
commit 0e2419d61a
8 changed files with 137 additions and 112 deletions

View File

@@ -24,6 +24,15 @@ return [
'added_amount' => 'Added :amount',
'asset_account_role_help' => 'Any extra options resulting from your choice can be set later.',
// tags
'store_new_tag' => 'Store new tag',
'update_tag' => 'Update tag',
'no_location_set' => 'No location set.',
'meta_data' => 'Meta data',
'edit_tag' => 'Edit tag',
'delete_tag' => 'Delete tag',
'location' => 'Location',
// preferences
'pref_home_screen_accounts' => 'Home screen accounts',
'pref_home_screen_accounts_help' => 'Which accounts should be displayed on the home page?',

View File

@@ -85,6 +85,7 @@ return [
'currency_areYouSure' => 'Are you sure you want to delete the currency named ":name"?',
'piggyBank_areYouSure' => 'Are you sure you want to delete the piggy bank named ":name"?',
'journal_areYouSure' => 'Are you sure you want to delete the transaction described ":description"?',
'tag_areYouSure' => 'Are you sure you want to delete the tag ":tag"?',
'permDeleteWarning' => 'Deleting stuff from Firely is permanent and cannot be undone.',
'also_delete_transactions' => 'The only transaction connected to this account will be deleted as well.' .
@@ -97,4 +98,6 @@ return [
'|All :count transactions connected to this budget will spared deletion.',
'category_keep_transactions' => 'The only transaction connected to this category will not be deleted.' .
'|All :count transactions connected to this category will spared deletion.',
'tag_keep_transactions' => 'The only transaction connected to this tag will not be deleted.' .
'|All :count transactions connected to this tag will spared deletion.',
];

View File

@@ -24,6 +24,13 @@ return [
'added_amount' => ':amount toegevoegd',
'asset_account_role_help' => 'Voorkeuren die voortkomen uit je keuze hier kan je later aangeven.',
// tags
'store_new_tag' => 'Sla tag op',
'update_tag' => 'Sla wijzigingen op',
'no_location_set' => 'Zonder plaats',
'location' => 'Plaats',
'meta_data' => 'Metagegevens',
// preferences
'pref_home_screen_accounts' => 'Voorpaginarekeningen',
'pref_home_screen_accounts_help' => 'Welke betaalrekeningen wil je op de voorpagina zien?',

View File

@@ -78,6 +78,7 @@ return [
'delete_journal' => 'Verwijder transactie met omschrijving ":description"',
'delete_attachment' => 'Verwijder bijlage ":name"',
'tag_areYouSure' => 'Weet je zeker dat je de tag met naam ":tag" wilt verwijderen?',
'attachment_areYouSure' => 'Weet je zeker dat je de bijlage met naam ":name" wilt verwijderen?',
'account_areYouSure' => 'Weet je zeker dat je de rekening met naam ":name" wilt verwijderen?',
'bill_areYouSure' => 'Weet je zeker dat je het contract met naam ":name" wilt verwijderen?',
@@ -98,4 +99,6 @@ return [
'|De :count transacties verbonden aan dit budget blijven bewaard.',
'category_keep_transactions' => 'De transactie verbonden aan deze categorie blijft bewaard.' .
'|De :count transacties verbonden aan deze categorie blijven bewaard.',
'tag_keep_transactions' => 'De transactie verbonden aan deze tag blijft bewaard.' .
'|De :count transacties verbonden aan deze tag blijven bewaard.',
];

View File

@@ -43,7 +43,7 @@
</div>
<div class="box-footer">
<button type="submit" class="btn btn-success pull-right">
Store new tag
{{ 'store_new_tag'|_ }}
</button>
</div>
</div>

View File

@@ -13,19 +13,22 @@
<h3 class="box-title">Delete tag "{{ tag.tag }}"</h3>
</div>
<div class="box-body">
<p class="text-danger">
{{ trans('form.permDeleteWarning') }}
</p>
<p>
Are you sure that you want to delete tag "{{ tag.tag }}"?
</p>
{% if tag.transactionjournals|length > 0 %}
<p class="text-info">
Tag "{{ tag.tag }}" still has {{ tag.transactionjournals|length }} transaction(s) connected
to it. These will <strong>not</strong> be removed but will lose their connection to this tag.
{{ trans('form.tag_areYouSure', {'tag': tag.tag}) }}
</p>
<p>
{% if tag.transactionjournals|length == 0 %}
{{ Lang.choice('form.tag_keep_transactions', tag.transactionjournals|length, {count: tag.transactionjournals|length}) }}
{% endif %}
</p>
</div>
<div class="box-footer">
<button type="submit" class="btn btn-danger pull-right">Delete permanently</button>
<a href="{{ URL.previous() }}" class="btn-default btn">Cancel</a>
<input type="submit" name="submit" value="{{ trans('form.deletePermanently') }}" class="btn pull-right btn-danger"/>
<a href="{{ URL.previous() }}" class="btn-default btn">{{ trans('form.cancel') }}</a>
</div>
</div>
</div>

View File

@@ -45,7 +45,7 @@
</div>
<div class="box-footer">
<button type="submit" class="btn pull-right btn-success">
Update tag
{{ 'update_tag'|_ }}
</button>
</div>
</div>

View File

@@ -11,7 +11,7 @@
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
<div class="box">
<div class="box-header with-border">
<h3 class="box-title">Meta data</h3>
<h3 class="box-title">{{ 'meta_data'|_ }}</h3>
<!-- ACTIONS MENU -->
<div class="box-tools pull-right">
@@ -19,8 +19,8 @@
<div class="btn-group">
<button class="btn btn-box-tool dropdown-toggle" data-toggle="dropdown"><i class="fa fa-ellipsis-v"></i></button>
<ul class="dropdown-menu" role="menu">
<li><a href="{{ route('tags.edit',tag.id) }}"><i class="fa fa-pencil fa-fw"></i> Edit tag</a></li>
<li><a href="{{ route('tags.delete',tag.id) }}"><i class="fa fa-trash fa-fw"></i> Delete tag</a></li>
<li><a href="{{ route('tags.edit',tag.id) }}"><i class="fa fa-pencil fa-fw"></i> {{ 'edit_tag'|_ }}</a></li>
<li><a href="{{ route('tags.delete',tag.id) }}"><i class="fa fa-trash fa-fw"></i> {{ 'delete_tag'|_ }}</a></li>
</ul>
</div>
</div>
@@ -34,7 +34,7 @@
{% endif %}
{% if tag.date %}
<p>Date: {{ tag.date.formatLocalized(monthAndDayFormat) }}</p>
<p>{{ 'date'|_ }}: {{ tag.date.formatLocalized(monthAndDayFormat) }}</p>
{% endif %}
</div>
</div>
@@ -42,7 +42,7 @@
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
<div class="box">
<div class="box-header with-border">
<h3 class="box-title">Location</h3>
<h3 class="box-title">{{ 'location'|_ }}</h3>
<!-- ACTIONS MENU -->
<div class="box-tools pull-right">
@@ -50,8 +50,8 @@
<div class="btn-group">
<button class="btn btn-box-tool dropdown-toggle" data-toggle="dropdown"><i class="fa fa-ellipsis-v"></i></button>
<ul class="dropdown-menu" role="menu">
<li><a href="{{ route('tags.edit',tag.id) }}"><i class="fa fa-pencil fa-fw"></i> Edit tag</a></li>
<li><a href="{{ route('tags.delete',tag.id) }}"><i class="fa fa-trash fa-fw"></i> Delete tag</a></li>
<li><a href="{{ route('tags.edit',tag.id) }}"><i class="fa fa-pencil fa-fw"></i> {{ 'edit_tag'|_ }}</a></li>
<li><a href="{{ route('tags.delete',tag.id) }}"><i class="fa fa-trash fa-fw"></i> {{ 'delete_tag'|_ }}</a></li>
</ul>
</div>
</div>
@@ -62,7 +62,7 @@
<img src="https://maps.googleapis.com/maps/api/staticmap?center={{ tag.latitude }},{{ tag.longitude }}&zoom={{ tag.zoomLevel }}&size=600x300">
</p>
{% else %}
<p>No location set.</p>
<p>{{ 'no_location_set'|_ }}</p>
{% endif %}
</div>
</div>
@@ -80,8 +80,8 @@
<div class="btn-group">
<button class="btn btn-box-tool dropdown-toggle" data-toggle="dropdown"><i class="fa fa-ellipsis-v"></i></button>
<ul class="dropdown-menu" role="menu">
<li><a href="{{ route('tags.edit',tag.id) }}"><i class="fa fa-pencil fa-fw"></i> Edit tag</a></li>
<li><a href="{{ route('tags.delete',tag.id) }}"><i class="fa fa-trash fa-fw"></i> Delete tag</a></li>
<li><a href="{{ route('tags.edit',tag.id) }}"><i class="fa fa-pencil fa-fw"></i> {{ 'edit_tag'|_ }}</a></li>
<li><a href="{{ route('tags.delete',tag.id) }}"><i class="fa fa-trash fa-fw"></i> {{ 'delete_tag'|_ }}</a></li>
</ul>
</div>
</div>