Merge pull request #220 from wvengen/feature-i18n-cleanup

Some more i18n cleanup
This commit is contained in:
wvengen 2013-12-17 07:20:01 -08:00
commit f47413a60f
20 changed files with 89 additions and 320 deletions

View file

@ -26,6 +26,11 @@ class Ordergroup < Group
User.natural_order.all.reject { |u| (users.include?(u) || u.ordergroup) } User.natural_order.all.reject { |u| (users.include?(u) || u.ordergroup) }
end end
# the most recent order this ordergroup was participating in
def last_order
orders.order('orders.starts DESC').first
end
def value_of_open_orders(exclude = nil) def value_of_open_orders(exclude = nil)
group_orders.in_open_orders.reject{|go| go == exclude}.collect(&:price).sum group_orders.in_open_orders.reject{|go| go == exclude}.collect(&:price).sum
end end

View file

@ -4,11 +4,11 @@
%table.table.table-striped %table.table.table-striped
%thead %thead
%tr %tr
%th= t '.name' %th= heading_helper Ordergroup, :name
%th= t '.contact' %th= heading_helper Ordergroup, :contact
%th= t '.address' %th= heading_helper Ordergroup, :contact_address
%th= t '.members' %th= heading_helper Ordergroup, :user_tokens
%th= t 'admin.actions' %th= t 'ui.actions'
%tbody %tbody
- for ordergroup in @ordergroups - for ordergroup in @ordergroups
%tr{:class => cycle('even','odd', :name => 'groups')} %tr{:class => cycle('even','odd', :name => 'groups')}

View file

@ -5,12 +5,12 @@
%thead %thead
%tr %tr
- if FoodsoftConfig[:use_nick] - if FoodsoftConfig[:use_nick]
%th= t '.login' %th= heading_helper User, :nick
%th= t '.name' %th= heading_helper User, :name
%th= t '.email' %th= heading_helper User, :email
%th= t 'admin.access_to' %th= t 'admin.access_to'
%th= t '.last_login' %th= heading_helper User, :last_login
%th(colspan="2")= t 'admin.actions' %th(colspan="2")= t 'ui.actions'
%tbody %tbody
- for user in @users - for user in @users
%tr %tr

View file

@ -7,13 +7,13 @@
%p= t '.member_since', time: distance_of_time_in_words(Time.now, @user.created_on) %p= t '.member_since', time: distance_of_time_in_words(Time.now, @user.created_on)
%dl %dl
- if FoodsoftConfig[:use_nick] - if FoodsoftConfig[:use_nick]
%dt= t '.nick' %dt= heading_helper User, :nick
%dd= @user.nick %dd= @user.nick
%dt= t '.name' %dt= heading_helper User, :name
%dd= h @user.name %dd= h @user.name
%dt= t '.email' %dt= heading_helper User, :email
%dd= @user.email %dd= @user.email
%dt= t '.phone' %dt= heading_helper User, :phone
%dd= @user.phone %dd= @user.phone
%dt= t 'admin.access_to' %dt= t 'admin.access_to'
%dd= format_roles(@user) %dd= format_roles(@user)

View file

@ -7,7 +7,7 @@
%th= t '.name' %th= t '.name'
%th= t '.members' %th= t '.members'
%th= t 'admin.access_to' %th= t 'admin.access_to'
%th= t 'admin.actions' %th= t 'ui.actions'
%tbody %tbody
- for workgroup in @workgroups - for workgroup in @workgroups
%tr %tr

View file

@ -107,11 +107,11 @@
%table#stock_articles_for_adding.table.table-hover.stupidtable %table#stock_articles_for_adding.table.table-hover.stupidtable
%thead %thead
%tr %tr
%th.default-sort{:data => {:sort => 'string'}}= t '.article' %th.default-sort{:data => {:sort => 'string'}}= Article.model_name.human
%th= t '.price' %th= heading_helper StockArticle, :price
%th= t '.unit' %th= heading_helper StockArticle, :unit
%th= t '.category' %th= heading_helper StockArticle, :article_category
%th= t '.actions' %th= t 'ui.actions'
%tfoot %tfoot
%tr %tr
%th{:colspan => 5} %th{:colspan => 5}
@ -127,11 +127,11 @@
%table.table#stock_changes.stupidtable %table.table#stock_changes.stupidtable
%thead %thead
%tr %tr
%th.default-sort{:data => {:sort => 'string'}}= t '.article' %th.default-sort{:data => {:sort => 'string'}}= Article.model_name.human
%th= t '.price' %th= heading_helper StockArticle, :price
%th= t '.unit' %th= heading_helper StockArticle, :unit
%th= t '.quantity' %th= heading_helper GroupOrderArticle, :quantity # quantity to order, although technically this will be a StockChange
%th= t '.actions' %th= t 'ui.actions'
%tbody %tbody
= f.simple_fields_for :stock_changes do |stock_change_form| = f.simple_fields_for :stock_changes do |stock_change_form|
= render :partial => 'stock_change_fields', :locals => {:f => stock_change_form} = render :partial => 'stock_change_fields', :locals => {:f => stock_change_form}

View file

@ -17,10 +17,10 @@
%table.table.table-striped(style="width:500px") %table.table.table-striped(style="width:500px")
%thead %thead
%tr %tr
%th= t '.article' %th= Article.model_name.human
%th= t '.unit' %th= heading_helper StockArticle, :unit
%th.numeric= t '.amount' %th.numeric= heading_helper GroupOrderArticle, :quantity # quantity to order, although technically this will be a StockChange
%th.numeric= t '.price' %th.numeric= heading_helper Article, :price
%th.numeric= t '.sum' %th.numeric= t '.sum'
%tbody %tbody
- total_net, total_gross = 0,0 - total_net, total_gross = 0,0

View file

@ -1,14 +1,14 @@
%table.ordered-articles.table.table-striped %table.ordered-articles.table.table-striped
%thead %thead
%tr %tr
%th= sort_link_helper t('.article'), "name" %th= sort_link_helper Article.model_name.human, "name"
%th= sort_link_helper t('.number'), "order_number" %th= sort_link_helper Article.human_attribute_name(:order_number_short), "order_number"
%th= t('.amount') %th= t('.amount')
%th= t('.amount_per_unit') %th= heading_helper Article, :units
%th= t('.net') %th= t('.net')
%th= t('.gross') %th= t('.gross')
%th= t('.tax') %th= heading_helper Article, :tax
%th= t('.refund') %th= heading_helper Article, :deposit
%th{:colspan => "2"} %th{:colspan => "2"}
= link_to t('.add_article'), new_finance_order_order_article_path(@order), remote: true, = link_to t('.add_article'), new_finance_order_order_article_path(@order), remote: true,
class: 'btn btn-small' class: 'btn btn-small'

View file

@ -3,7 +3,7 @@
%thead %thead
%tr %tr
%td %td
%td{:style => "width:8em"}= t('.group') %td{:style => "width:8em"}= Ordergroup.model_name.human
%td= t('.units') %td= t('.units')
%td= t('.total') %td= t('.total')
%td{:colspan => "3",:style => "width:14em"} %td{:colspan => "3",:style => "width:14em"}

View file

@ -5,7 +5,7 @@
= order_article.units_to_order = order_article.units_to_order
- unless order_article.ordered_quantities_equal_to_group_orders? - unless order_article.ordered_quantities_equal_to_group_orders?
%span{:style => "color:red;font-weight: bold"} ! %span{:style => "color:red;font-weight: bold"} !
%td= order_article.price.unit_quantity.to_s + ' * ' + order_article.article.unit.to_s %td #{order_article.price.unit_quantity} &times; #{order_article.article.unit}
%td %td
= number_to_currency(order_article.price.price, :unit => "") = number_to_currency(order_article.price.price, :unit => "")
:plain :plain
@ -16,7 +16,7 @@
:plain :plain
/ /
= number_to_currency(order_article.total_gross_price, :unit => "") = number_to_currency(order_article.total_gross_price, :unit => "")
%td= order_article.price.tax %td #{order_article.price.tax}%
%td= order_article.price.deposit %td= order_article.price.deposit
%td %td
= link_to t('ui.edit'), edit_finance_order_order_article_path(order_article.order, order_article), remote: true, = link_to t('ui.edit'), edit_finance_order_order_article_path(order_article.order, order_article), remote: true,

View file

@ -8,9 +8,9 @@
%table.table.table-striped %table.table.table-striped
%thead %thead
%tr %tr
%th= t('.date') %th= heading_helper Invoice, :date
%th.numeric= t('.amount') %th.numeric= heading_helper Invoice, :amount
%th= t('.supplier') %th= heading_helper Invoice, :supplier
%th %th
%tbody %tbody
- for invoice in @unpaid_invoices - for invoice in @unpaid_invoices
@ -26,10 +26,10 @@
%table.table.table-striped %table.table.table-striped
%thead %thead
%tr %tr
%th= t('.date') %th= heading_helper FinancialTransaction, :created_on
%th= t('.group') %th= heading_helper FinancialTransaction, :ordergroup
%th= t('.note') %th= heading_helper FinancialTransaction, :note
%th.numeric= t('.amount') %th.numeric= heading_helper FinancialTransaction, :amount
%tbody %tbody
- @financial_transactions.each do |ft| - @financial_transactions.each do |ft|
%tr %tr
@ -45,8 +45,8 @@
%table.table.table-striped %table.table.table-striped
%thead %thead
%tr %tr
%th= t('.supplier') %th= heading_helper Order, :name
%th= t('.end') %th= t '.end'
%th.numeric= t('.amount_fc') %th.numeric= t('.amount_fc')
%th %th
%tbody %tbody
@ -55,6 +55,6 @@
%td= order.name %td= order.name
%td= format_date(order.ends) %td= format_date(order.ends)
%td.numeric= number_to_currency(order.sum(:fc)) %td.numeric= number_to_currency(order.sum(:fc))
%td= link_to t('.clear'), new_finance_order_path(order_id: order.id), class: 'btn btn-mini' %td= link_to t('finance.balancing.orders.clear'), new_finance_order_path(order_id: order.id), class: 'btn btn-mini'
- else - else
= t('.everything_cleared') = t('.everything_cleared')

View file

@ -23,7 +23,7 @@
%td= format_date invoice.date %td= format_date invoice.date
%td= format_date invoice.paid_on %td= format_date invoice.paid_on
%td= number_to_currency invoice.amount %td= number_to_currency invoice.amount
%td= link_to t('.delivery'), [invoice.supplier,invoice.delivery] if invoice.delivery %td= link_to Delivery.model_name.human, [invoice.supplier,invoice.delivery] if invoice.delivery
%td= link_to format_date(invoice.order.ends), new_finance_order_path(order_id: invoice.order_id) if invoice.order %td= link_to format_date(invoice.order.ends), new_finance_order_path(order_id: invoice.order_id) if invoice.order
%td= truncate(invoice.note) %td= truncate(invoice.note)
%td= link_to t('ui.edit'), edit_finance_invoice_path(invoice), class: 'btn btn-mini' %td= link_to t('ui.edit'), edit_finance_invoice_path(invoice), class: 'btn btn-mini'

View file

@ -4,9 +4,9 @@
%table.table.table-striped %table.table.table-striped
%thead %thead
%tr %tr
%th= sort_link_helper t('.name'), "name", :per_page => @per_page %th= sort_link_helper heading_helper(Ordergroup, :name), "name", :per_page => @per_page
%th= t '.contact' %th= heading_helper Ordergroup, :contact
%th.numeric= sort_link_helper t('.account_balance'), "account_balance", :per_page => @per_page %th.numeric= sort_link_helper heading_helper(Ordergroup, :account_balance), "account_balance", :per_page => @per_page
%th %th
%tbody %tbody
- for ordergroup in @ordergroups - for ordergroup in @ordergroups

View file

@ -5,15 +5,15 @@
%table.table.table-striped %table.table.table-striped
%thead %thead
%tr %tr
%th= t '.name' %th= heading_helper Ordergroup, :name
%th= t '.user' %th= heading_helper Ordergroup, :user_tokens
%th= t '.last_ordered' %th= heading_helper Ordergroup, :last_order
%tbody %tbody
- for ordergroup in @ordergroups - for ordergroup in @ordergroups
%tr %tr
%td= ordergroup.name %td= ordergroup.name
%td=h ordergroup.users.collect { |u| show_user(u) }.join(", ") %td=h ordergroup.users.collect { |u| show_user(u) }.join(", ")
%td= format_date ordergroup.orders.order('orders.starts DESC').first.try(:starts) %td= format_date ordergroup.last_order.try(:starts)
%td= link_to_new_message(message_params: {group_id: ordergroup.id}) %td= link_to_new_message(message_params: {group_id: ordergroup.id})

View file

@ -1,7 +1,7 @@
%table.table.table-hover %table.table.table-hover
%thead %thead
%tr %tr
%th{:style => "width:40%"}= t '.name' %th{:style => "width:40%"}= heading_helper Article, :name
%th %th
%acronym{:title => t('shared.articles.ordered_desc')}= t 'shared.articles.ordered' %acronym{:title => t('shared.articles.ordered_desc')}= t 'shared.articles.ordered'
%th %th
@ -10,7 +10,7 @@
%acronym{:title => t('.fc_price_desc')}= t '.fc_price' %acronym{:title => t('.fc_price_desc')}= t '.fc_price'
%th %th
%acronym{:title => t('.unit_quantity_desc')}= t '.unit_quantity' %acronym{:title => t('.unit_quantity_desc')}= t '.unit_quantity'
%th= t '.unit' %th= heading_helper Article, :unit
%th= t '.price' %th= t '.price'
- for group_order in order.group_orders.ordered - for group_order in order.group_orders.ordered

View file

@ -1,14 +1,14 @@
%dl %dl
%dt= t('.description') + ':' %dt= heading_helper(Ordergroup, :description) + ':'
%dd=h group.description %dd=h group.description
- if group.is_a?(Ordergroup) and (@current_user.role_admin? or @current_user.role_finance?) - if group.is_a?(Ordergroup) and (@current_user.role_admin? or @current_user.role_finance?)
%dt= t('.contact') + ':' %dt= heading_helper(Ordergroup, :contact) + ':'
%dd=h group.contact %dd=h group.contact
%dt= t('.address') + ':' %dt= heading_helper(Ordergroup, :contact_address) + ':'
%dd= link_to_gmaps group.contact_address %dd= link_to_gmaps group.contact_address
%dt= t('.access') + ':' %dt= t('.access') + ':'
%dd= format_roles(group) %dd= format_roles(group)
%dt= t('.members') + ':' %dt= heading_helper(Ordergroup, :user_tokens) + ':'
%dd %dd
- members = group.users - members = group.users
= "(#{members.size})" = "(#{members.size})"

View file

@ -15,6 +15,7 @@ de:
name: Name name: Name
note: Notiz note: Notiz
order_number: Bestellnummer order_number: Bestellnummer
order_number_short: Nr.
origin: Herkunft origin: Herkunft
price: Nettopreis price: Nettopreis
supplier: Lieferantin supplier: Lieferantin
@ -81,11 +82,13 @@ de:
ordergroup: ordergroup:
account_balance: Kontostand account_balance: Kontostand
available_funds: Verfügbares Guthaben available_funds: Verfügbares Guthaben
contact: Kontakt
contact_address: Adresse contact_address: Adresse
contact_person: Kontaktperson contact_person: Kontaktperson
contact_phone: Telefon contact_phone: Telefon
description: Beschreibung description: Beschreibung
ignore_apple_restriction: Bestellstop bei zu wenig Äpfeln ignorieren ignore_apple_restriction: Bestellstop bei zu wenig Äpfeln ignorieren
last_order: Zuletst bestellt
name: Name name: Name
user_tokens: Mitglieder user_tokens: Mitglieder
page: page:
@ -131,6 +134,7 @@ de:
user: user:
email: Email email: Email
first_name: Vorname first_name: Vorname
last_login: Letzter login
last_name: Nachname last_name: Nachname
name: Name name: Name
nick: Benutzername nick: Benutzername
@ -177,7 +181,6 @@ de:
workgroup: Arbeitsgruppe workgroup: Arbeitsgruppe
admin: admin:
access_to: Zugriff auf access_to: Zugriff auf
actions: Aktionen
base: base:
index: index:
all_ordergroups: Alle Bestellgruppen all_ordergroups: Alle Bestellgruppen
@ -215,11 +218,6 @@ de:
workgroup: Arbeitsgruppe workgroup: Arbeitsgruppe
new: new:
title: Bestellgruppe anlegen title: Bestellgruppe anlegen
ordergroups:
address: Adresse
contact: Kontakt
members: Mitglieder
name: Name
show: show:
confirm: Bist Du sicher? confirm: Bist Du sicher?
edit: Gruppe/Mitglieder bearbeiten edit: Gruppe/Mitglieder bearbeiten
@ -238,20 +236,11 @@ de:
title: Neue Benutzerin anlegen title: Neue Benutzerin anlegen
show: show:
confirm: Willst du %{user} wirklich rausschmeißen? confirm: Willst du %{user} wirklich rausschmeißen?
email: Email
groupabos: Gruppenabos groupabos: Gruppenabos
member_since: Mitglied seit %{time} member_since: Mitglied seit %{time}
name: Name
nick: Nick
person: Person person: Person
phone: Telefon
preference: Einstellungen preference: Einstellungen
send_message: Nachricht senden send_message: Nachricht senden
users:
email: Email
last_login: Letzter login
login: Login
name: Name
workgroups: workgroups:
destroy: destroy:
error: ! 'Arbeitsgruppe konnte nicht gelöscht werden: %{error}' error: ! 'Arbeitsgruppe konnte nicht gelöscht werden: %{error}'
@ -339,15 +328,6 @@ de:
submit: Alle Artikel aktualisieren submit: Alle Artikel aktualisieren
title: Alle Artikel von %{supplier} bearbeiten title: Alle Artikel von %{supplier} bearbeiten
warning: Achtung, alle Artikel werden aktualisiert! warning: Achtung, alle Artikel werden aktualisiert!
edit_all_table:
available_desc: verfügbar
available_short: verf.
order_number_desc: Bestellnummer
order_number_short: Best.Nr.
price_desc: Netto!
price_short: Preis
unit_quantity_desc: Gebindegröße
unit_quantity_short: GebGr
form: form:
title_edit: Artikel bearbeiten title_edit: Artikel bearbeiten
title_new: Neuen Artikel einfügen title_new: Neuen Artikel einfügen
@ -410,18 +390,12 @@ de:
edit: edit:
title: Lieferung bearbeiten title: Lieferung bearbeiten
form: form:
actions: Optionen
article: Artikel
category: Kategorie
confirm_foreign_supplier_reedit: Der Lagerartikel »%{name}« wurde erfolgreich gespeichert. Er gehört jedoch nicht zu dem Lieferanten dieser Lieferung. Möchtest Du diesen Lagerartikel erneut bearbeiten? confirm_foreign_supplier_reedit: Der Lagerartikel »%{name}« wurde erfolgreich gespeichert. Er gehört jedoch nicht zu dem Lieferanten dieser Lieferung. Möchtest Du diesen Lagerartikel erneut bearbeiten?
create_from_blank: Ohne Vorlage anlegen create_from_blank: Ohne Vorlage anlegen
create_stock_article: Lagerartikel anlegen create_stock_article: Lagerartikel anlegen
price: Nettopreis
quantity: Menge
title_fill_quantities: 2. Liefermenge angeben title_fill_quantities: 2. Liefermenge angeben
title_finish_delivery: 3. Lieferung abschließen title_finish_delivery: 3. Lieferung abschließen
title_select_stock_articles: 1. Lagerartikel auswählen title_select_stock_articles: 1. Lagerartikel auswählen
unit: Einheit
index: index:
confirm_delete: Bist Du sicher? confirm_delete: Bist Du sicher?
new_delivery: Neue Lieferung für %{supplier} anlegen new_delivery: Neue Lieferung für %{supplier} anlegen
@ -431,16 +405,12 @@ de:
new: new:
title: Neue Lieferung von %{supplier} title: Neue Lieferung von %{supplier}
show: show:
amount: Menge
article: Artikel
price: Nettopreis
sum: Summe sum: Summe
sum_diff: Brutto - bereinigter Rechnungsbetrag sum_diff: Brutto - bereinigter Rechnungsbetrag
sum_gross: Bruttosumme sum_gross: Bruttosumme
sum_net: Nettosumme sum_net: Nettosumme
title: Lieferung anzeigen title: Lieferung anzeigen
title_articles: Artikel title_articles: Artikel
unit: Einheit
stock_article_for_adding: stock_article_for_adding:
action_add_to_delivery: Liefern action_add_to_delivery: Liefern
action_edit: Bearbeiten action_edit: Bearbeiten
@ -521,16 +491,10 @@ de:
edit_results_by_articles: edit_results_by_articles:
add_article: Artikel hinzufügen add_article: Artikel hinzufügen
amount: Menge amount: Menge
amount_per_unit: GebGr * Einheit
article: Artikel
gross: Brutto gross: Brutto
net: Netto net: Netto
number: Nr.
refund: Pfand
tax: MwSt
group_order_articles: group_order_articles:
add_group: Gruppe hinzufügen add_group: Gruppe hinzufügen
group: Gruppe
total: Gesamtpreis total: Gesamtpreis
total_fc: Summe (FC-Preis) total_fc: Summe (FC-Preis)
units: Einheiten units: Einheiten
@ -617,18 +581,12 @@ de:
amount_change_for: Mengenänderung für %{article} amount_change_for: Mengenänderung für %{article}
result_hint: ! 'Einheit: %{unit}' result_hint: ! 'Einheit: %{unit}'
index: index:
amount: Betrag
amount_fc: Betrag(FC) amount_fc: Betrag(FC)
clear: Abrechnen
date: Datum
end: Ende end: Ende
everything_cleared: Super, alles schon abgerechnet... everything_cleared: Super, alles schon abgerechnet...
group: Gruppe
last_transactions: Letzte Überweisungen last_transactions: Letzte Überweisungen
note: Notiz
open_transactions: Noch nicht abgerechnet open_transactions: Noch nicht abgerechnet
show_all: alle anzeigen show_all: alle anzeigen
supplier: Lieferantin
title: Finanzbereich title: Finanzbereich
unpaid_invoices: Unbezahlte Rechnungen unpaid_invoices: Unbezahlte Rechnungen
invoices: invoices:
@ -639,7 +597,6 @@ de:
title: Rechnungen title: Rechnungen
invoices: invoices:
confirm_delete: Bist Du sicher? confirm_delete: Bist Du sicher?
delivery: Lieferung
linked: Diese Rechnung ist mit %{what_link} verknüpft. linked: Diese Rechnung ist mit %{what_link} verknüpft.
linked_delivery: einer Lieferung linked_delivery: einer Lieferung
linked_order: einer Bestellung linked_order: einer Bestellung
@ -661,10 +618,7 @@ de:
search_placeholder: Suchen ... search_placeholder: Suchen ...
title: Konten verwalten title: Konten verwalten
ordergroups: ordergroups:
account_balance: Kontostand
account_statement: Kontoauszug account_statement: Kontoauszug
contact: Kontakt
name: Name
new_transaction: Neue Transaktion new_transaction: Neue Transaktion
update: update:
notice: Rechnung wurde aktualisiert. notice: Rechnung wurde aktualisiert.
@ -675,10 +629,6 @@ de:
only_active: Nur aktive only_active: Nur aktive
only_active_desc: (mindestens einmal in den letzten 3 Monaten bestellt) only_active_desc: (mindestens einmal in den letzten 3 Monaten bestellt)
title: Bestellgruppen title: Bestellgruppen
ordergroups:
last_ordered: zuletzt bestellt
name: Name
user: Mitglieder
users: users:
index: index:
body: <p>Hier kannst Du den Mitgliedern Deiner Foodcoop eine Nachricht schreiben.</p> <p>Damit Deine Kontaktdaten einzusehen sind, musst Du sie unter %{profile_link} freigeben.</p> body: <p>Hier kannst Du den Mitgliedern Deiner Foodcoop eine Nachricht schreiben.</p> <p>Damit Deine Kontaktdaten einzusehen sind, musst Du sie unter %{profile_link} freigeben.</p>
@ -812,12 +762,8 @@ de:
last_update: Letzte Aktualisiering ist %{when} her last_update: Letzte Aktualisiering ist %{when} her
title: Meine Bestellgruppe title: Meine Bestellgruppe
transactions: transactions:
amount: Betrag
note: Notiz
title: Letzte Transaktionen title: Letzte Transaktionen
view: Kontoauszug anzeigen view: Kontoauszug anzeigen
when: Wann
where: Wer
ordergroup: ordergroup:
title: Engagement Deiner Bestellgruppe title: Engagement Deiner Bestellgruppe
tasks_move: tasks_move:
@ -1301,20 +1247,14 @@ de:
articles_by_groups: articles_by_groups:
fc_price: FC-Preis fc_price: FC-Preis
fc_price_desc: Preis incl. MwSt, Pfand und Foodcoop-Aufschlag fc_price_desc: Preis incl. MwSt, Pfand und Foodcoop-Aufschlag
name: Name
price: Gesamtpreis price: Gesamtpreis
unit: Einheit
unit_quantity: GebGr unit_quantity: GebGr
unit_quantity_desc: Gebindegröße unit_quantity_desc: Gebindegröße
group: group:
access: Zugriff auf access: Zugriff auf
activated: aktiviert activated: aktiviert
address: Adresse
apple_limit: Äpfel-Bestellbeschränkung apple_limit: Äpfel-Bestellbeschränkung
contact: Kontakt
deactivated: deaktiviert deactivated: deaktiviert
description: Beschreibung
members: Mitglieder
no_weekly_job: kein wöchentlicher Job definiert no_weekly_job: kein wöchentlicher Job definiert
weekly_job: Wöchentlicher Job weekly_job: Wöchentlicher Job
group_form_fields: group_form_fields:
@ -1547,6 +1487,7 @@ de:
title: Aufgaben für %{workgroup} title: Aufgaben für %{workgroup}
title_all: Alle Aufgaben der Gruppe title_all: Alle Aufgaben der Gruppe
ui: ui:
actions: Aktionen
close: Schließen close: Schließen
delete: Löschen delete: Löschen
edit: Bearbeiten edit: Bearbeiten

View file

@ -15,6 +15,7 @@ en:
name: Name name: Name
note: Note note: Note
order_number: Order number order_number: Order number
order_number_short: Nr.
origin: Origin origin: Origin
price: Price (net) price: Price (net)
supplier: Supplier supplier: Supplier
@ -81,11 +82,13 @@ en:
ordergroup: ordergroup:
account_balance: Account balance account_balance: Account balance
available_funds: Available credit available_funds: Available credit
contact: Contact
contact_address: Address contact_address: Address
contact_person: Contact person contact_person: Contact person
contact_phone: Phone contact_phone: Phone
description: Description description: Description
ignore_apple_restriction: Ignore order stop by apple points restriction ignore_apple_restriction: Ignore order stop by apple points restriction
last_order: Last order
name: Name name: Name
user_tokens: Members user_tokens: Members
page: page:
@ -131,6 +134,7 @@ en:
user: user:
email: Email email: Email
first_name: First name first_name: First name
last_login: Last login
last_name: Last name last_name: Last name
name: Name name: Name
nick: Username nick: Username
@ -177,7 +181,6 @@ en:
workgroup: Workgroup workgroup: Workgroup
admin: admin:
access_to: access to access_to: access to
actions: Actions
base: base:
index: index:
all_ordergroups: All ordergroups all_ordergroups: All ordergroups
@ -215,11 +218,6 @@ en:
workgroup: workgroup workgroup: workgroup
new: new:
title: Create ordergroup title: Create ordergroup
ordergroups:
address: Address
contact: Contact
members: Members
name: Name
show: show:
confirm: Are you sure? confirm: Are you sure?
edit: Edit group/members edit: Edit group/members
@ -238,20 +236,11 @@ en:
title: Create new user title: Create new user
show: show:
confirm: Do you really want to kick out %{user}? confirm: Do you really want to kick out %{user}?
email: Email
groupabos: Group subscriptions groupabos: Group subscriptions
member_since: Member since %{time} member_since: Member since %{time}
name: Name
nick: Nick
person: Person person: Person
phone: Phone
preference: Preferences preference: Preferences
send_message: Send message send_message: Send message
users:
email: email
last_login: last login
login: login
name: name
workgroups: workgroups:
destroy: destroy:
error: ! 'Workgroup could not be deleted: %{error}' error: ! 'Workgroup could not be deleted: %{error}'
@ -339,15 +328,6 @@ en:
submit: Update all articles submit: Update all articles
title: Edit all articles from %{supplier} title: Edit all articles from %{supplier}
warning: ! 'Warning: all articles will be updated!' warning: ! 'Warning: all articles will be updated!'
edit_all_table:
available_desc: available
available_short: avail
order_number_desc: Order number
order_number_short: Ordernr.
price_desc: Net price
price_short: Price
unit_quantity_desc: Unit quantity
unit_quantity_short: Quantity
form: form:
title_edit: Edit article title_edit: Edit article
title_new: Add new article title_new: Add new article
@ -412,18 +392,12 @@ en:
edit: edit:
title: Edit delivery title: Edit delivery
form: form:
actions: Tasks
article: Article
category: Category
confirm_foreign_supplier_reedit: The stock article %{name} was successfully saved. However, it belongs to a different supplier than this delivery. Would you like to edit the stock article again? confirm_foreign_supplier_reedit: The stock article %{name} was successfully saved. However, it belongs to a different supplier than this delivery. Would you like to edit the stock article again?
create_from_blank: Create new article create_from_blank: Create new article
create_stock_article: Create stock article create_stock_article: Create stock article
price: Netprice
quantity: Quantity
title_fill_quantities: 2. Set delivery quantities title_fill_quantities: 2. Set delivery quantities
title_finish_delivery: 3. Finish delivery title_finish_delivery: 3. Finish delivery
title_select_stock_articles: 1. Select stock articles title_select_stock_articles: 1. Select stock articles
unit: Unit
index: index:
confirm_delete: Are you sure? confirm_delete: Are you sure?
new_delivery: ! 'Create new delivery for %{supplier} ' new_delivery: ! 'Create new delivery for %{supplier} '
@ -433,16 +407,12 @@ en:
new: new:
title: New delivery from %{supplier} title: New delivery from %{supplier}
show: show:
amount: Amount
article: Article
price: Netprice
sum: Sum sum: Sum
sum_diff: Gross - adjusted invoice amount sum_diff: Gross - adjusted invoice amount
sum_gross: Gross sum sum_gross: Gross sum
sum_net: Net sum sum_net: Net sum
title: Show delivery title: Show delivery
title_articles: Article title_articles: Articles
unit: Unit
stock_article_for_adding: stock_article_for_adding:
action_add_to_delivery: Add to delivery action_add_to_delivery: Add to delivery
action_edit: Edit action_edit: Edit
@ -525,16 +495,10 @@ en:
edit_results_by_articles: edit_results_by_articles:
add_article: Add article add_article: Add article
amount: Amount amount: Amount
amount_per_unit: Unit quantity * Unit
article: Article
gross: Gross gross: Gross
net: Net net: Net
number: Nr.
refund: Deposit
tax: Tax
group_order_articles: group_order_articles:
add_group: Add group add_group: Add group
group: Group
total: Total costs total: Total costs
total_fc: Sum (FC-price) total_fc: Sum (FC-price)
units: Units units: Units
@ -621,18 +585,12 @@ en:
amount_change_for: Change amount for %{article} amount_change_for: Change amount for %{article}
result_hint: ! 'Unit: %{unit}' result_hint: ! 'Unit: %{unit}'
index: index:
amount: Amount
amount_fc: Amount(FC) amount_fc: Amount(FC)
clear: To account
date: Date
end: End end: End
everything_cleared: Great, everything is accounted... everything_cleared: Great, everything is accounted...
group: Group
last_transactions: Recent transactions last_transactions: Recent transactions
note: Note
open_transactions: Unsettled orders open_transactions: Unsettled orders
show_all: show all show_all: show all
supplier: Supplier
title: Finances title: Finances
unpaid_invoices: Unpaid invoices unpaid_invoices: Unpaid invoices
invoices: invoices:
@ -643,7 +601,6 @@ en:
title: Invoices title: Invoices
invoices: invoices:
confirm_delete: Are you sure? confirm_delete: Are you sure?
delivery: Delivery
linked: This invoice is linked to %{what_link}. linked: This invoice is linked to %{what_link}.
linked_delivery: a delivery linked_delivery: a delivery
linked_order: an order linked_order: an order
@ -665,10 +622,7 @@ en:
search_placeholder: Search ... search_placeholder: Search ...
title: Manage accounts title: Manage accounts
ordergroups: ordergroups:
account_balance: Account balance
account_statement: Account statement account_statement: Account statement
contact: Contact
name: Name
new_transaction: New transaction new_transaction: New transaction
update: update:
notice: Invoice was updated notice: Invoice was updated
@ -679,10 +633,6 @@ en:
only_active: Only active groups only_active: Only active groups
only_active_desc: (have placed order at least once in the last 3 months) only_active_desc: (have placed order at least once in the last 3 months)
title: Ordergroups title: Ordergroups
ordergroups:
last_ordered: Last ordered
name: Name
user: Users
users: users:
index: index:
body: <p>Here you can write a message to the members of your Foodcoop.</p> <p>You have to approve in your %{profile_link} that your contact details are visible.</p> body: <p>Here you can write a message to the members of your Foodcoop.</p> <p>You have to approve in your %{profile_link} that your contact details are visible.</p>
@ -816,12 +766,8 @@ en:
last_update: Last update was %{when} ago last_update: Last update was %{when} ago
title: My ordergroup title: My ordergroup
transactions: transactions:
amount: Amount
note: Note
title: Last Transactions title: Last Transactions
view: Show account statement view: Show account statement
when: When
where: Who
ordergroup: ordergroup:
title: Engagement of your ordergroup title: Engagement of your ordergroup
tasks_move: tasks_move:
@ -1305,20 +1251,14 @@ en:
articles_by_groups: articles_by_groups:
fc_price: FC-Price fc_price: FC-Price
fc_price_desc: Price including taxes, deposit and Foodcoop-charge fc_price_desc: Price including taxes, deposit and Foodcoop-charge
name: Name
price: Total price price: Total price
unit: Unit
unit_quantity: Lot quantity unit_quantity: Lot quantity
unit_quantity_desc: How many units per lot. unit_quantity_desc: How many units per lot.
group: group:
access: Access to access: Access to
activated: activated activated: activated
address: Address
apple_limit: Apple points order limit apple_limit: Apple points order limit
contact: Contact
deactivated: deactivated deactivated: deactivated
description: Description
members: Members
no_weekly_job: No weekly job defined no_weekly_job: No weekly job defined
weekly_job: Weekly job weekly_job: Weekly job
group_form_fields: group_form_fields:
@ -1553,6 +1493,7 @@ en:
title: Tasks for %{workgroup} title: Tasks for %{workgroup}
title_all: All group tasks title_all: All group tasks
ui: ui:
actions: Actions
close: Close close: Close
delete: Delete delete: Delete
edit: Edit edit: Edit

View file

@ -15,6 +15,7 @@ fr:
name: Nom name: Nom
note: Note note: Note
order_number: ! 'Numéro ' order_number: ! 'Numéro '
order_number_short: Numéro
origin: Lieu de production origin: Lieu de production
price: Prix net price: Prix net
supplier: supplier:
@ -81,11 +82,13 @@ fr:
ordergroup: ordergroup:
account_balance: Crédit initial account_balance: Crédit initial
available_funds: Crédit disponible available_funds: Crédit disponible
contact: Contact
contact_address: Adresse contact_address: Adresse
contact_person: Personne à contacter contact_person: Personne à contacter
contact_phone: Téléphone contact_phone: Téléphone
description: Description description: Description
ignore_apple_restriction: Pour cette cellule, ne pas bloquer les commandes en cas de manque de glands ignore_apple_restriction: Pour cette cellule, ne pas bloquer les commandes en cas de manque de glands
last_order: dernière commande
name: Nom name: Nom
user_tokens: Membres user_tokens: Membres
page: page:
@ -131,6 +134,7 @@ fr:
user: user:
email: Email email: Email
first_name: Prénom first_name: Prénom
last_login: Dernière connection
last_name: Nom de famille last_name: Nom de famille
name: Nom name: Nom
nick: Identifiant nick: Identifiant
@ -177,7 +181,6 @@ fr:
workgroup: Équipe workgroup: Équipe
admin: admin:
access_to: accès à access_to: accès à
actions: Actions
base: base:
index: index:
all_ordergroups: Toutes les cellules all_ordergroups: Toutes les cellules
@ -215,11 +218,6 @@ fr:
workgroup: équipe workgroup: équipe
new: new:
title: Définir une nouvelle cellule title: Définir une nouvelle cellule
ordergroups:
address: Adresse
contact: Contact
members: Membres
name: Nom
show: show:
confirm: T'es sûrE de ton coup? confirm: T'es sûrE de ton coup?
edit: Modifier les données sur les cellules et/ou leurs membres edit: Modifier les données sur les cellules et/ou leurs membres
@ -238,20 +236,11 @@ fr:
title: Ajouter unE nouveLLE_eau membre title: Ajouter unE nouveLLE_eau membre
show: show:
confirm: Veux-tu vraiment expulser %{user}? confirm: Veux-tu vraiment expulser %{user}?
email: Email
groupabos: Participation à des équipes groupabos: Participation à des équipes
member_since: Membre depuis %{time} member_since: Membre depuis %{time}
name: Nom
nick: Identifiant
person: Personne person: Personne
phone: Numéro de téléphone
preference: Préférences preference: Préférences
send_message: Envoyer un message send_message: Envoyer un message
users:
email: email
last_login: dernière connection
login: identifiant
name: nom
workgroups: workgroups:
destroy: destroy:
error: ! 'Cette équipe n''a pas pu être supprimée: %{error}' error: ! 'Cette équipe n''a pas pu être supprimée: %{error}'
@ -339,15 +328,6 @@ fr:
submit: Mettre à jour tous les articles submit: Mettre à jour tous les articles
title: Modifier tous les articles de %{supplier} title: Modifier tous les articles de %{supplier}
warning: Attention, tous les articles sont en train d'être mis à jour! warning: Attention, tous les articles sont en train d'être mis à jour!
edit_all_table:
available_desc: disponible
available_short: disp.
order_number_desc: numéro de commande
order_number_short: n°
price_desc: Prix net
price_short: Prix
unit_quantity_desc: Unités par lot
unit_quantity_short: U/L
form: form:
title_edit: title_edit:
title_new: Ajouter un nouvel article title_new: Ajouter un nouvel article
@ -416,17 +396,11 @@ fr:
edit: edit:
title: Modifier le réapprovisionnement title: Modifier le réapprovisionnement
form: form:
actions: Options
article: Article
category: Catégorie
create_from_blank: Ajouter un nouvel article quelconque create_from_blank: Ajouter un nouvel article quelconque
create_stock_article: Ajouter un article au stock create_stock_article: Ajouter un article au stock
price: Prix net
quantity: Quantité
title_fill_quantities: 2. Définir la quantité à livrer title_fill_quantities: 2. Définir la quantité à livrer
title_finish_delivery: 3. Clore le réapprovisionnement title_finish_delivery: 3. Clore le réapprovisionnement
title_select_stock_articles: 1. Choisir les articles en stock title_select_stock_articles: 1. Choisir les articles en stock
unit: Unité
index: index:
confirm_delete: T'es sûrE de ton coup? confirm_delete: T'es sûrE de ton coup?
new_delivery: Réapprovisionner le stock par %{supplier} new_delivery: Réapprovisionner le stock par %{supplier}
@ -436,16 +410,12 @@ fr:
new: new:
title: Réapprovisionner le stock par %{supplier} title: Réapprovisionner le stock par %{supplier}
show: show:
amount: Quantité
article: Article
price: Prix net
sum: Prix total sum: Prix total
sum_diff: montant brut - montant net sum_diff: montant brut - montant net
sum_gross: prix total brut sum_gross: prix total brut
sum_net: prix total net sum_net: prix total net
title: Afficher le réapprovisionnement title: Afficher le réapprovisionnement
title_articles: Article title_articles: Articles
unit: Unité
stock_article_for_adding: stock_article_for_adding:
action_add_to_delivery: Commander action_add_to_delivery: Commander
action_edit: Modifier action_edit: Modifier
@ -534,16 +504,10 @@ fr:
edit_results_by_articles: edit_results_by_articles:
add_article: Ajouter un article add_article: Ajouter un article
amount: Quantité amount: Quantité
amount_per_unit: Poids d'un lot
article: Article
gross: Brut gross: Brut
net: Net net: Net
number: Numéro
refund: Consigne
tax: TVA
group_order_articles: group_order_articles:
add_group: Créer un nouveau groupe add_group: Créer un nouveau groupe
group: Groupe
total: Prix total total: Prix total
total_fc: Prix total (pour la boufcoop) total_fc: Prix total (pour la boufcoop)
units: Nombre d'unités units: Nombre d'unités
@ -630,18 +594,12 @@ fr:
amount_change_for: Modification de la quantité de %{article} amount_change_for: Modification de la quantité de %{article}
result_hint: result_hint:
index: index:
amount: Montant
amount_fc: Montant(boufcoop) amount_fc: Montant(boufcoop)
clear: Décompter
date: Date
end: Fin end: Fin
everything_cleared: Super, tout est a déjà été décompté! everything_cleared: Super, tout est a déjà été décompté!
group: Cellule
last_transactions: Dernières transactions last_transactions: Dernières transactions
note: Note
open_transactions: à décompter open_transactions: à décompter
show_all: tout afficher show_all: tout afficher
supplier: FournisseusE_r
title: Espace trésorerie title: Espace trésorerie
unpaid_invoices: Factures à régler unpaid_invoices: Factures à régler
invoices: invoices:
@ -652,7 +610,6 @@ fr:
title: Factures title: Factures
invoices: invoices:
confirm_delete: T'es sûrE de ton coup? confirm_delete: T'es sûrE de ton coup?
delivery: Réapprovisionnement
linked: Cette facture est associée à %{what_link}. linked: Cette facture est associée à %{what_link}.
linked_delivery: un réapprovisionnement linked_delivery: un réapprovisionnement
linked_order: une commande linked_order: une commande
@ -674,10 +631,7 @@ fr:
search_placeholder: Rechercher ... search_placeholder: Rechercher ...
title: Crédits des cellules title: Crédits des cellules
ordergroups: ordergroups:
account_balance: Crédit disponible
account_statement: Relevé de compte account_statement: Relevé de compte
contact:
name: Nom
new_transaction: Nouvelle transaction new_transaction: Nouvelle transaction
update: update:
notice: La facture a été mise à jour. notice: La facture a été mise à jour.
@ -688,10 +642,6 @@ fr:
only_active: Seulement les cellules en activité only_active: Seulement les cellules en activité
only_active_desc: (ayant commandé au moins une fois au cours des 3 derniers mois) only_active_desc: (ayant commandé au moins une fois au cours des 3 derniers mois)
title: Cellules title: Cellules
ordergroups:
last_ordered: dernière commande
name: Nom
user: Membres
users: users:
index: index:
body: ! '<p>Cette page sert à envoyer des messages aux autres membres de la coop.</p> body: ! '<p>Cette page sert à envoyer des messages aux autres membres de la coop.</p>
@ -837,12 +787,8 @@ fr:
last_update: La dernière mise à jour date du %{when} last_update: La dernière mise à jour date du %{when}
title: Ta cellule title: Ta cellule
transactions: transactions:
amount: Montant
note: Note
title: Dernière transactions title: Dernière transactions
view: Afficher un relevé de compte view: Afficher un relevé de compte
when: Quand?
where: Qui?
ordergroup: ordergroup:
title: Niveau de participation de ta cellule title: Niveau de participation de ta cellule
tasks_move: tasks_move:
@ -1307,20 +1253,14 @@ fr:
articles_by_groups: articles_by_groups:
fc_price: Prix coop fc_price: Prix coop
fc_price_desc: Prix avec TVA, consigne et part de la coop inclus. fc_price_desc: Prix avec TVA, consigne et part de la coop inclus.
name: Nom
price: Prix total price: Prix total
unit: Unité
unit_quantity: U/L unit_quantity: U/L
unit_quantity_desc: Unités par lot unit_quantity_desc: Unités par lot
group: group:
access: Accès à access: Accès à
activated: activé activated: activé
address: Adresse
apple_limit: Minimum de glands apple_limit: Minimum de glands
contact: Contact
deactivated: désactivé deactivated: désactivé
description: Description
members: Membre
no_weekly_job: aucun boulot hebdomadaire n'a été défini no_weekly_job: aucun boulot hebdomadaire n'a été défini
weekly_job: Boulot hebdomadaire weekly_job: Boulot hebdomadaire
group_form_fields: group_form_fields:
@ -1563,6 +1503,7 @@ fr:
title: Agenda de l'%{workgroup} title: Agenda de l'%{workgroup}
title_all: Boulot prévu pour l'équipe title_all: Boulot prévu pour l'équipe
ui: ui:
actions: Actions
close: Fermer close: Fermer
delete: Supprimer delete: Supprimer
edit: Modifier edit: Modifier

View file

@ -15,6 +15,7 @@ nl:
name: Naam name: Naam
note: Notitie note: Notitie
order_number: Ordernummer order_number: Ordernummer
order_number_short: Nr.
origin: Herkomst origin: Herkomst
price: Netto prijs price: Netto prijs
supplier: Leverancier supplier: Leverancier
@ -81,11 +82,13 @@ nl:
ordergroup: ordergroup:
account_balance: Tegoed account_balance: Tegoed
available_funds: Beschikbaar tegoed available_funds: Beschikbaar tegoed
contact: Contact
contact_address: Adres contact_address: Adres
contact_person: Contactpersoon contact_person: Contactpersoon
contact_phone: Telefoon contact_phone: Telefoon
description: Omschrijving description: Omschrijving
ignore_apple_restriction: Bestelstop vanwege appelpunten negeren ignore_apple_restriction: Bestelstop vanwege appelpunten negeren
last_order: Laatste bestelling
name: Naam name: Naam
user_tokens: Leden user_tokens: Leden
page: page:
@ -131,6 +134,7 @@ nl:
user: user:
email: Email email: Email
first_name: Voornaam first_name: Voornaam
last_login: Laatste login
last_name: Achternaam last_name: Achternaam
name: Naam name: Naam
nick: Gebruikersnaam nick: Gebruikersnaam
@ -177,7 +181,6 @@ nl:
workgroup: Werkgroep workgroup: Werkgroep
admin: admin:
access_to: toegang tot access_to: toegang tot
actions: Acties
base: base:
index: index:
all_ordergroups: Alle huishoudens all_ordergroups: Alle huishoudens
@ -215,11 +218,6 @@ nl:
workgroup: werkgroep workgroup: werkgroep
new: new:
title: Huishouden toevoegen title: Huishouden toevoegen
ordergroups:
address: Adres
contact: Contact
members: Leden
name: Naam
show: show:
confirm: Weet je het zeker? confirm: Weet je het zeker?
edit: Groep/leden bewerken edit: Groep/leden bewerken
@ -238,20 +236,11 @@ nl:
title: Nieuwe gebruiker toevoegen title: Nieuwe gebruiker toevoegen
show: show:
confirm: Wil je %{user} daadwerkelijk verwijderen? confirm: Wil je %{user} daadwerkelijk verwijderen?
email: E-mail
groupabos: Groepslidmaatschappen groupabos: Groepslidmaatschappen
member_since: Lid sinds %{time} member_since: Lid sinds %{time}
name: Naam
nick: Gebruikersnaam
person: Persoon person: Persoon
phone: Telefoon
preference: Voorkeuren preference: Voorkeuren
send_message: Bericht versturen send_message: Bericht versturen
users:
email: e-mail
last_login: laatste login
login: login
name: naam
workgroups: workgroups:
destroy: destroy:
error: ! 'Werkgroep kon niet gewist worden: %{error}' error: ! 'Werkgroep kon niet gewist worden: %{error}'
@ -339,15 +328,6 @@ nl:
submit: Alle artikelen bijwerken submit: Alle artikelen bijwerken
title: Alle artikelen van %{supplier} bewerken title: Alle artikelen van %{supplier} bewerken
warning: Let op, alle artikelen worden bijgewerkt! warning: Let op, alle artikelen worden bijgewerkt!
edit_all_table:
available_desc: beschikbaar
available_short: besch.
order_number_desc: Bestelnummer
order_number_short: Best.nr.
price_desc: Netto prijs
price_short: Prijs
unit_quantity_desc: Groothandelsverpakkingsgrootte
unit_quantity_short: Gr.Eenh.
form: form:
title_edit: Artikel bewerken title_edit: Artikel bewerken
title_new: Nieuw artikel toevoegen title_new: Nieuw artikel toevoegen
@ -412,17 +392,11 @@ nl:
edit: edit:
title: Levering aanpassen title: Levering aanpassen
form: form:
actions: Taken
article: Artikel
category: Categorie
create_from_blank: Nieuw voorraadartikel invoeren create_from_blank: Nieuw voorraadartikel invoeren
create_stock_article: Voorraadartikel invoeren create_stock_article: Voorraadartikel invoeren
price: Netto prijs
quantity: Aantal
title_fill_quantities: 2. Hoeveel mag er geleverd worden title_fill_quantities: 2. Hoeveel mag er geleverd worden
title_finish_delivery: 3. Levering afmaken title_finish_delivery: 3. Levering afmaken
title_select_stock_articles: 1. Kies voorraadartikelen title_select_stock_articles: 1. Kies voorraadartikelen
unit: Eenheid
index: index:
confirm_delete: Zeker weten? confirm_delete: Zeker weten?
new_delivery: Nieuwe levering maken voor %{supplier} new_delivery: Nieuwe levering maken voor %{supplier}
@ -432,16 +406,12 @@ nl:
new: new:
title: Nieuwe levering van %{supplier} title: Nieuwe levering van %{supplier}
show: show:
amount: Aantal
article: Artikel
price: Netto prijs
sum: Som sum: Som
sum_diff: Bruto - aangepast factuurbedrag sum_diff: Bruto - aangepast factuurbedrag
sum_gross: Brutosom sum_gross: Brutosom
sum_net: Nettosom sum_net: Nettosom
title: Levering tonen title: Levering tonen
title_articles: Artikel title_articles: Artikelen
unit: Eenheid
stock_article_for_adding: stock_article_for_adding:
action_add_to_delivery: Voeg toe aan levering action_add_to_delivery: Voeg toe aan levering
action_edit: Bewerk action_edit: Bewerk
@ -524,16 +494,10 @@ nl:
edit_results_by_articles: edit_results_by_articles:
add_article: Artikel toevoegen add_article: Artikel toevoegen
amount: Aantal amount: Aantal
amount_per_unit: Gr.Eenh.
article: Artikel
gross: Bruto gross: Bruto
net: Netto net: Netto
number: Nr.
refund: Statiegeld
tax: BTW
group_order_articles: group_order_articles:
add_group: Huishouden toevoegen add_group: Huishouden toevoegen
group: Huishouden
total: Totale prijs total: Totale prijs
total_fc: Som (FC-prijs) total_fc: Som (FC-prijs)
units: Eenheden units: Eenheden
@ -620,18 +584,12 @@ nl:
amount_change_for: Hoeveelheid %{article} amount_change_for: Hoeveelheid %{article}
result_hint: ! 'Eenheid: %{unit}' result_hint: ! 'Eenheid: %{unit}'
index: index:
amount: Bedrag
amount_fc: Bedrag(FC) amount_fc: Bedrag(FC)
clear: Afrekenen
date: Datum
end: Einde end: Einde
everything_cleared: Mooi zo, alles is verrekend... everything_cleared: Mooi zo, alles is verrekend...
group: Groep
last_transactions: Recente transacties last_transactions: Recente transacties
note: Notitie
open_transactions: Nog niet afgerekend open_transactions: Nog niet afgerekend
show_all: alle tonen show_all: alle tonen
supplier: Leverancier
title: Financiën title: Financiën
unpaid_invoices: Onbetaalde facturen unpaid_invoices: Onbetaalde facturen
invoices: invoices:
@ -642,7 +600,6 @@ nl:
title: Facturen title: Facturen
invoices: invoices:
confirm_delete: Weet je het zeker? confirm_delete: Weet je het zeker?
delivery: Levering
linked: Deze factuur is aan %{what_link} gekoppeld. linked: Deze factuur is aan %{what_link} gekoppeld.
linked_delivery: een levering linked_delivery: een levering
linked_order: een bestelling linked_order: een bestelling
@ -664,10 +621,7 @@ nl:
search_placeholder: Zoeken ... search_placeholder: Zoeken ...
title: Tegoeden beheren title: Tegoeden beheren
ordergroups: ordergroups:
account_balance: Tegoed
account_statement: Rekeningafschrift account_statement: Rekeningafschrift
contact: Contactpersoon
name: Naam
new_transaction: Nieuwe transactie new_transaction: Nieuwe transactie
update: update:
notice: Factuur is bijgewerkt notice: Factuur is bijgewerkt
@ -678,10 +632,6 @@ nl:
only_active: Alleen actieve only_active: Alleen actieve
only_active_desc: (minstens eenmaal in de laatste 3 maanden besteld) only_active_desc: (minstens eenmaal in de laatste 3 maanden besteld)
title: Huishoudens title: Huishoudens
ordergroups:
last_ordered: laatste besteld
name: Naam
user: Leden
users: users:
index: index:
body: <p>Hier kun je leden van deze foodcoop een bericht sturen.</p> <p>Om je eigen contactgegevens te laten zien, moet je die vrijgeven op %{profile_link}.</p> body: <p>Hier kun je leden van deze foodcoop een bericht sturen.</p> <p>Om je eigen contactgegevens te laten zien, moet je die vrijgeven op %{profile_link}.</p>
@ -817,12 +767,8 @@ nl:
last_update: Laatst gewijzigd %{when} geleden last_update: Laatst gewijzigd %{when} geleden
title: Mijn huishouden title: Mijn huishouden
transactions: transactions:
amount: Bedrag
note: Notitie
title: Laatste transacties title: Laatste transacties
view: Rekeningafschrift tonen view: Rekeningafschrift tonen
when: Wanneer
where: Wie
ordergroup: ordergroup:
title: Betrokkenheid van je huishouden title: Betrokkenheid van je huishouden
tasks_move: tasks_move:
@ -1284,20 +1230,14 @@ nl:
articles_by_groups: articles_by_groups:
fc_price: FC-Prijs fc_price: FC-Prijs
fc_price_desc: Prijs inclusief belasting, statiegeld en foodcoop marge fc_price_desc: Prijs inclusief belasting, statiegeld en foodcoop marge
name: Naam
price: Totaalprijs price: Totaalprijs
unit: Eenheid
unit_quantity: Gr.Eenh. unit_quantity: Gr.Eenh.
unit_quantity_desc: Hoeveel eenheden per groothandelsverpakking unit_quantity_desc: Hoeveel eenheden per groothandelsverpakking
group: group:
access: Toegang tot access: Toegang tot
activated: actief activated: actief
address: Adres
apple_limit: Appelpunten bestellingslimiet apple_limit: Appelpunten bestellingslimiet
contact: Contact
deactivated: inactief deactivated: inactief
description: Beschrijving
members: Leden
no_weekly_job: geen wekelijkse taak ingesteld no_weekly_job: geen wekelijkse taak ingesteld
weekly_job: wekelijkse taak weekly_job: wekelijkse taak
group_form_fields: group_form_fields:
@ -1530,6 +1470,7 @@ nl:
title: Taken voor %{workgroup} title: Taken voor %{workgroup}
title_all: Alle groepstaken title_all: Alle groepstaken
ui: ui:
actions: Acties
close: Sluiten close: Sluiten
delete: Verwijder delete: Verwijder
edit: Bewerk edit: Bewerk