-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathen.yml
1596 lines (1534 loc) · 50.8 KB
/
en.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
en:
activerecord:
attributes:
article:
article_category: Category
availability: Is article available?
availability_short: avail.
deposit: Deposit
fc_price: FoodCoop price
fc_price_short: FC price
fc_share: FoodCoop margin
fc_share_short: FC margin
gross_price: Gross price
manufacturer: Manufacturer
name: Name
note: Note
order_number: Order number
origin: Origin
price: Price (net)
supplier: Supplier
tax: VAT
unit: Unit
units: Units
unit_quantity: Unit quantity
unit_quantity_short: U.Q.
article_category:
description: Description
name: Name
delivery:
delivered_on: Delivery date
note: Note
supplier: Supplier
financial_transaction:
amount: Amount
created_on: Date
note: Note
ordergroup: Ordergroup
user: Entered by
group_order:
updated_by: Last ordered by
price: Order sum
group_order_article:
ordergroup_id: Ordergroup
result: Amount
quantity: Amount
tolerance: Tolerance
total_price: Sum
invoice:
amount: Amount
date: Billing date
delivery: Delivery
deposit: Deposit charged
deposit_credit: Deposit returned
note: Note
number: Number
order: Order
paid_on: Paid on
supplier: Supplier
message:
body: Body
group_id: Group
private: Private
recipient_tokens: Recipients
sent_to_all: Send to all members
subject: Subject
order:
closed_by: Settled by
created_by: Created by
ends: Ends at
name: Supplier
note: Note
starts: Starts at
status: Status
order_article:
missing_units: Missing units
missing_units_short: Missing
units_to_order: Amount of units
update_current_price: Globally update current price
order_comment:
text: Add comment to this order ...
ordergroup:
available_funds: Available credit
account_balance: Account balance
contact_address: Address
contact_person: Contact person
contact_phone: Phone
description: Description
ignore_apple_restriction: Ignore order stop by apple points restriction
name: Name
user_tokens: Members
page:
body: Body
parent_id: Parent page
title: Title
stock_article:
price: Price
available: Available
quantity_available: Available quantity
quantity_available_short: Avail.
stock_taking:
date: Date
note: Note
supplier:
address: Address
contact_person: Contact person
customer_number: Customer number
customer_number_short: Cust.nr.
delivery_days: Delivery days
email: Email
fax: Fax
is_subscribed: subscribed?
min_order_quantity: Minimum order quantity
min_order_quantity_short: Min. quantity
name: Name
note: Note
order_howto: How to order
phone: Phone
phone2: Phone 2
url: Homepage
task:
description: Description
done: Done?
due_date: Due date
duration: Duration
name: Name
required_users: People required
user_list: Responsible user
workgroup: Workgroup
user:
email: Email
first_name: First name
last_name: Last name
name: Name
nick: Username
ordergroup: Ordergroup
password: Password
password_confirmation: Repeat password
phone: Telephone
workgroup:
one: Workgroup
other: Workgroups
workgroup:
description: Description
name: Name
next_weekly_tasks_number: For how many weeks in advance would you like to define tasks?
role_admin: Administration
role_article_meta: Article database
role_finance: Finances
role_orders: Order management
role_suppliers: Suppliers
user_tokens: Members
errors:
has_many_left: is still associated with a %{collection}!
models:
task:
attributes:
done:
exclusion: finished tasks may not be repeated weekly
models:
article: Article
article_category: Article category
delivery: Delivery
financial_transaction: Financial transaction
invoice: Invoice
message: Message
order: Order
order_article: Order article
order_comment: Order comment
ordergroup: Ordergroup
stock_article: Stock article
stock_taking: Stock taking
supplier: Supplier
task: Task
user: User
workgroup: Workgroup
admin:
access_to: access to
actions: Actions
base:
index:
all_ordergroups: All ordergroups
all_users: All users
all_workgroups: All workgroups
created_at: created at
first_paragraph: Here you can administer Foodsoft groups and users.
groupname: group name
members: members
name: name
new_ordergroup: New ordergroup
new_user: New user
new_workgroup: New workgroup
newest_groups: newest groups
newest_users: newest users
title: Administration
type: type
username: username
confirm: Do you really want to delete %{name}?
ordergroups:
destroy:
error: ! 'Ordergroup could not be deleted: %{error}'
notice: Ordergroup was deleted
edit:
title: Edit ordergroup
form:
first_paragraph: You can invite new members %{url}.
here: here
index:
first_paragraph: Here you can add %{url}, and edit or delete groups.
new_ordergroup: Add new ordergroup
new_ordergroups: new ordergroups
second_paragraph: ! 'Consider the difference between <em>group</em> and <em>ordergroup</em>: An ordergroup has an account and can order food. In a <em>%{url}</em> (for example ''sorting group''), members coordinate with each other via tasks and messages. Users can only be in one ordergroup, but can be in multiple workgroups.'
title: Ordergroups
workgroup: workgroup
new:
title: Create ordergroup
ordergroups:
address: Address
contact: Contact
members: Members
name: Name
show:
confirm: Are you sure?
edit: Edit group/members
send_message: Send message
title: Ordergroup %{name}
search_placeholder: name ..
users:
edit:
title: Edit user
index:
first_paragraph: Here you can %{url}, edit and delete users.
new_user: Create new user
new_users: create new
title: User admin
new:
title: Create new user
show:
confirm: Do you really want to kick out %{user}?
email: Email
groupabos: Group subscriptions
member_since: Member since %{time}
name: Name
nick: Nick
person: Person
phone: Phone
preference: Preferences
send_message: Send message
users:
email: email
last_login: last login
login: login
name: name
workgroups:
destroy:
error: ! 'Workgroup could not be deleted: %{error}'
notice: Workgroup was deleted
edit:
title: Edit workgroup
form:
first_paragraph: You can invite new members %{url}.
here: here
index:
first_paragraph: Here you can create %{url}, edit and delete them.
new_workgroup: Create new workgroup
new_workgroups: new workgroups
ordergroup: ordergroup
second_paragraph: ! 'Consider the difference between a <em>workgroup</em> and an <em>ordergroup</em>: an <em>%{url}</em> has an account and can order food. In a workgroup (for example ''sorting group''), members coordinate with each other via tasks and messages. Users can only be in one ordergroup, but can be in multiple workgroups.'
title: Workgroups
new:
title: Create workgroup
show:
confirm: Are you sure?
edit: Edit group/members
title: Workgroup %{name}
workgroups:
members: members
name: name
application:
controller:
error_authn: Authentication required!
error_denied: Access denied!
error_members_only: This action is only available to members of the group!
article_categories:
create:
notice: Category was stored
destroy:
error: ! 'Category could not be deleted: %{message}'
edit:
title: Edit category
index:
confirm_delete: Are you sure?
new: Add new category
title: Article categories
new:
title: Add new category
update:
notice: Category was updated
articles:
article:
confirm_delete: Are you sure?
last_update: ! 'last updated: %{last_update} | gross: %{gross_price}'
articles:
confirm_delete: Do you really want to delete all selected articles?
option_available: Make articles available
option_delete: Delete article
option_not_available: Make articles unavailable
option_select: Select action ...
price_netto: Price
unit_quantity_desc: Unit quantity
unit_quantity_short: Quantity
controller:
create_from_upload:
notice: ! '%{count} new articles were saved.'
error_invalid: There are errors in articles
error_nosel: No articles selected
error_parse: ! '%{msg} ... in line %{line}'
error_update: ! 'An error occured when updating article ''%{article}'': %{msg}'
parse_upload:
notice: ! '%{count} articles were succesfully analysed.'
sync:
notice: Catalog is up to date
shared_alert: ! '%{supplier} is not linked to an external database'
update_all:
notice: All articles and prices were updated.
update_sel:
notice_avail: All selected articles were set to be available.
notice_destroy: All selected articles were deleted.
notice_noaction: No action specified!
notice_unavail: All selected articles were set to be unavailable.
update_sync:
notice: All articles and prices were updated.
destroy_active_article:
drop: delete
note: ! '%{article} is used in current orders and can not be deleted Please first ... the article from orders %{drop_link}.'
edit_all:
note: ! 'Mandatory fields are: name, unit, (net) price and order number.'
submit: Update all articles
title: Edit all articles from %{supplier}
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:
title: Add new article
import_search_results:
action_import: import
already_imported: already imported
not_found: No articles found
index:
change_supplier: Change supplier ...
edit_all: Edit all
ext_db:
import: Search/Import
sync: Synchronise
title: External databank
import:
placeholder: Name ...
restrict_region: Restrict to region only
title: Import article
new: New article
new_order: Create new order
search_placeholder: Name ...
title: Articles from %{supplier} (%{count})
upload: Upload articles
model:
error_in_use: ! '%{article} can not be deleted because the article is part of a current order!'
error_nosel: You have selected no articles
parse_upload:
body: <p><i>Please verify the articles.</i></p> <p><i>Warning, at the moment there is no check for duplicate articles.</i></p>
title: Upload articles
sync:
outlist:
alert_used: Warning, %{article} is used in an open order. Please remove it from the order first.
body: ! 'The following articles were removed from the list and will be <b>deleted</b>:'
body_skip: No articles to delete.
title: Remove from list ...
price_short: Price
submit: Synchronize all
title: Synchronize articles with external database
unit_quantity_short: Unit quantity
update:
body: ! 'Every article is shown twice: old values are gray, while the text fields contain updated values. Differences with the old articles are marked yellow.'
title: Update ...
update_msg:
one: One article needs to be updated.
other: ! '%{count} articles need to be updated.'
upload:
body: <p>The file has to be a text file with the ending '.csv' The first line will be ignored when imported</p> <p>The fields have to be separated with semicolons (';') and the text enclosed by double quotation marks ("text...").</p> <p>As character set UTF-8 is demanded. Correct order of the column:</p>
fields:
season_amount: Scaled amount
season_price: Scaled price
status: Status (x=skip)
file_label: Please choose a compatible file
submit: Upload file
title: ! '%{supplier} / upload articles'
deliveries:
add_stock_change:
how_many_units: ! 'How many units (%{unit}) to deliver? Stock article name: %{name}.'
create:
notice: Delivery was created. Please don’t forget to create invoice!
create_stock_article:
notice: The new stock article "%{name}" was saved.
destroy:
notice: Delivery was deleted.
edit:
title: Edit delivery
form:
actions: Tasks
article: Article
category: Category
create_from_blank: Create new article
create_stock_article: Create stock article
price: Netprice
quantity: Quantity
title_fill_quantities: 2. Set delivery quantities
title_finish_delivery: 3. Finish delivery
title_select_stock_articles: 1. Select stock articles
unit: Unit
index:
confirm_delete: Are you sure?
new_delivery: ! 'Create new delivery for %{supplier} '
title: ! '%{supplier}/deliveries'
invoice_amount: Invoice amount
invoice_net_amount: Invoice net amount
new:
title: New delivery from %{supplier}
show:
amount: Amount
article: Article
price: Netprice
sum: Sum
sum_diff: Gross - adjusted invoice ammount
sum_gross: Gross sum
sum_net: Net sum
title: Show delivery
title_articles: Article
unit: Unit
stock_article_for_adding:
action_add_to_delivery: Add to delivery
action_edit: Edit
action_other_price: Copy
stock_article_form:
copy_stock_article: Copy stock article
stock_change_fields:
remove_article: Remove article from delivery
suppliers_overview: Supplier overview
update:
notice: Delivery was updated.
update_stock_article:
notice: The stock article "%{name}" was updated.
documents:
order_by_articles:
filename: Order %{name}-%{date} - by articles
rows:
- Order group
- Ordered
- Received
- Price
title: ! 'Order sorted by articles: %{name}, closed at %{date}'
order_by_groups:
filename: Order %{name}-%{date} - by group
rows:
- Article
- Ordered
- Received
- Price
- Unit quantity
- Unit
- Sum
sum: Sum
title: ! 'Order sorted by group: %{name}, closed at %{date}'
order_fax:
filename: Order %{name}-%{date} - Fax
rows:
- Order Number
- Amount
- Name
- Unit quantity
- Unit
- Price/Unit
- Subtotal
total: Total
order_matrix:
filename: Order %{name}-%{date} - sorting matrix
heading: Article overview
rows:
- Article
- Unit
- Unit quantity
- FC-Price
- Amount
title: ! 'Order sorting matrix: %{name}, closed at %{date}'
total:
one: One article in total
other: ! '%{count} articles in total'
errors:
general: A problem has occured.
general_again: A problem has occured. Please try again.
general_msg: ! 'A problem has occured: %{msg}'
feedback:
create:
notice: Your feedback was sent successfully. Thanks a lot!
new:
first_paragraph: Found a bug? Suggestions? Ideas? Reviews? We are happy to hear any feedback.
second_paragraph: Please be aware that the Foodsoft Team is only responsible for the maintenance of the software. For questions regarding the organisation of your Foodcoop, please contact the appropriate contact person.
send: Send
title: Give feedback
finance:
balancing:
close:
alert: ! 'An error occured while accounting: %{message}'
notice: Order was accounted succesfully, the balance of the account was updated.
close_direct:
alert: ! 'Order can not be closed: %{message}'
notice: Order was closed.
confirm:
clear: Close
first_paragraph: ! 'When the order is closed, all group accounts will be updated.<br />The accounts will be charged as follows:'
or_cancel: or back to accounting
title: Settle order
edit_results_by_articles:
add_article: Add article
amount: Amount
amount_per_unit: Unit quantity * Unit
article: Article
gross: Gross
net: Net
number: Nr.
refund: Deposit
tax: Tax
group_order_articles:
add_group: Add group
group: Group
total: Total costs
total_fc: Sum (FC-price)
units: Units
index:
title: Closed orders
invoice:
edit: Edit invoice
invoice_amount: ! 'Invoice amount:'
invoice_date: ! 'Invoice date:'
invoice_number: ! 'Invoice number:'
minus_refund_calculated: ! '- deposit charged:'
new: create new invoice
new_body: ! 'Create an invoice for this order:'
plus_refund_credited: ! '+ deposit returned:'
refund_adjusted_amount: ! 'amount adjusted for refund:'
new:
alert: Attention, order was already accounted
articles_overview: Overview of articles
comment_on_transaction: Here you can add a comment to your accounting.
comments: Comments
confirm_order: Close order
create_invoice: Create invoice
edit_note: Edit note
edit_order: Edit order
groups_overview: Overview of groups
invoice: Invoice
notes_and_journal: Notes/Protocol
summary: Summary
title: Accounting %{name}
view_options: Viewing options
order_article:
confirm: Are you sure?
orders:
clear: accounting
cleared: accounted (%{amount})
close: close directly
confirm: Do you really want to fully close the order?
end: End
ended: closed
last_edited_by: Last edited by
name: Supplier
no_closed_orders: At the moment there are no closed orders.
state: State
summary:
changed: Data was changed!
duration: From %{starts} till %{ends}
fc_amount: ! 'FC-amount:'
fc_profit: FC Profit
gross_amount: ! 'Gross amount:'
groups_amount: ! 'Group amounts:'
net_amount: ! 'Net amount:'
reload: Reload summary
with_extra_charge: ! 'with extra charge:'
without_extra_charge: ! 'without extra charge:'
create:
notice: Invoice was created
financial_transactions:
controller:
create:
notice: The transaction was saved.
create_collection:
alert: ! 'An error occured: %{error}'
error_note_required: Note is required!
notice: All transactions were saved.
index:
balance: ! 'Balance of account: %{balance}'
last_updated_at: (last updated %{when} ago)
new_transaction: Create new transaction
search_placeholder: Search ...
title: Account statement for %{name}
new:
paragraph: Here you can credit and debit money for the order group <b>%{name}</b>.
title: New transaction
new_collection:
new_ordergroup: Add new order group
save: Save transaction
sidebar: Here you can update more accounts at the same time. For example all transfers of the order group from one account statement.
title: Updating more accounts
ordergroup:
remove: Remove
remove_group: Remove group
group_order_articles:
form:
amount_change_for: Change amount for %{article}
result_hint: ! 'Unit: %{unit}'
index:
amount: Amount
amount_fc: Amount(FC)
clear: To account
date: Date
end: End
everything_cleared: Great, everything is accounted...
group: Group
last_transactions: Recent transactions
note: Note
open_transactions: Unsettled orders
show_all: show all
supplier: Supplier
title: Finances
unpaid_invoices: Unpaid invoices
invoices:
edit:
title: Edit invoice
index:
action_new: Create new invoice
title: Invoices
invoices:
confirm_delete: Are you sure?
delivery: Delivery
linked: This invoice is linked to %{what_link}.
linked_delivery: a delivery
linked_order: an order
new:
back: Back
title: Create new invoice
show:
back: Back
title: Invoice %{number}
order_articles:
edit:
stock_alert: The price of stock articles cannot be changed!
title: Update article
new:
title: Add delivered article to order
ordergroups:
index:
new_transaction: Add new transactions
search_placeholder: Search ...
title: Manage accounts
ordergroups:
account_balance: Account balance
account_statement: Account statement
contact: Contact
name: Name
new_transaction: New transaction
update:
notice: Invoice was updated
foodcoop:
ordergroups:
index:
name: Name ...
only_active: Only active groups
only_active_desc: (have placed order at least once in the last 3 months)
title: Ordergroups
ordergroups:
last_ordered: Last ordered
name: Name
user: Users
users:
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>
ph_name: Name ...
ph_ordergroup: Order group ...
profile_link: options
title: Users
workgroups:
edit:
invite_link: here
invite_new: You can invite new members %{invite_link}.
title: Edit group
index:
body: <p>Editing a group is only available to members of the group.<br/> If you want to join a group, please send the members a message. </p>
title: Working groups
workgroup:
edit: Edit group
show_tasks: Show all tasks
group_orders:
archive:
desc: View all %{link} here.
open_orders: current orders
title: Orders of %{group}
title_closed: settled
title_open: closed/not settled
create:
error_general: The order couldn’t be updated due to a bug.
error_stale: Someone else has ordered in the meantime, couldn't update the order.
notice: The order was saved.
errors:
closed: This order is already closed.
no_member: You are not a member of an order group.
notfound: Incorrect URL, this is not your order.
form:
action_save: Save order
new_funds: New account balance
price: Price
reset_article_search: Reset search
search_article: Search for article...
sum_amount: Current amount
title: Orders
total_sum_amount: Total amount
total_tolerance: Total tolerance
units_full: Filled units
units_total: Total units
index:
closed_orders:
more: more...
title: Settled orders
finished_orders:
title: Unsettled orders
total_sum: Total sum
funds:
finished_orders: Unsettled orders
open_orders: Current orders
title: Credit
title: Orders overview
messages:
not_enough_apples: You need at least %{stop_ordering_under} apples to order. Currently your order group has only %{apples} apples.
order:
title: Articles
show:
articles:
edit_order: Edit order
not_ordered_msg: You didn’t place an order yet
order_closed_msg: Sorry, this order is closed.
order_nopen_title: Considering current orders of all groups
order_not_open: Received
order_now: This is your chance!
order_open: Available
ordered: Ordered
ordered_title: Amount + tolerance
show_hide: Show/hide articles not ordered
show_note: Show note
title: Article overview
unit_price: Unit price
comment: Comment
comments:
title: Comments
not_ordered: You didn’t order.
sum: Sum
title: Your order result for %{order}
switch_order:
remaining: ! '%{remaining} remaining'
title: Current orders
update:
error_general: The order couldn’t be updated due to a bug.
error_stale: Someone else has ordered in the meantime, couldn't update the order.
notice: The order was saved.
helpers:
application:
edit_user: Edit user
role_admin: Admin
role_article_meta: Articles
role_finance: Finance
role_orders: Orders
role_suppliers: Suppliers
show_google_maps: Show it on Google maps
sort_by: Sort by %{text}
write_message: Write message
deliveries:
new_invoice: New invoice
show_invoice: Show invoice
orders:
option_choose: Choose supplier/stock
option_stock: Stock
order_pdf: Create PDF
submit:
invite:
create: send invitation
message:
create: send message
tasks:
required_users: ! '%{count} members are still needed!'
home:
apple_bar:
desc: ! 'This shows the proportion of completed tasks to the volume of orders for your ordergroup in comparison to the average of the Foodcoop. In practice: for every %{amount} of total orders, you should execute a task!'
more_info: More information
points: ! 'Your current apple points: %{points}'
warning: Warning, if you have less then %{threshold} of apple points, you are not allowed to place an order!
changes_saved: Changes saved.
index:
due_date_format: ! '%A %d %B'
messages:
title: Newest Messages
view_all: See all messages
my_ordergroup:
funds: ! '| Available Credit:'
last_update: Last Update was %{when} ago
title: My ordergroup
transactions:
amount: Amount
note: Note
title: Last Transactions
view: Show account statement
when: When
where: Who
ordergroup:
title: Engagement of your ordergroup
tasks_move:
action: Take over tasks/decline tasks
desc: You are responsible for these tasks.
title: Take over tasks
tasks_open:
action: open task(s)
desc: There is/are %{size}
title: Open tasks
title: Homepage
your_tasks: Your tasks
no_ordergroups: You are unfortunately not a member of an ordergroup.
ordergroup:
account_summary: Account Statement
invite: Invite a new Person
search: Search ...
title: My ordergroup
ordergroup_cancelled: You cancelled membership of the group %{group}.
profile:
groups:
cancel: Leave group
cancel_confirm: Are you sure you want to leave this group?
invite: Invite new members
title: You are member of the following groups
title: My Profile
user:
since: ! '(member since: %{when})'
title: ! '%{user}'
start_nav:
admin: Administration
finances:
accounts: Update accounts
settle: To account orders
title: Finances
foodcoop: Foodcoop
members: Members
new_ordergroup: New ordergroup
new_user: New member
orders:
end: Close orders
overview: Overview of orders
title: Orders
products:
edit: Update products
edit_stock: Edit stock
edit_suppliers: Edit suppliers
title: Products
tasks: My tasks
title: Directly to ...
write_message: Write message
invites:
errors:
already_member: is already in use. Person is already a member of this Foodcoop.
modal_form:
body: <p>Here you can invite a person to a group <b>%{group}</b>, who is not yet a member of the foodcoop.</p> <p>After being added for the first time, the person is automatically a member of this group.</p>
title: Invite person
new:
action: Send invite
body: <p>Here you can add a person to the group <b>%{group}</b>, who is not yet a member of the foodcoop.</p>
success: User was invited successfully.
js:
ordering:
confirm_change: Modifications to this order will be lost when you change the order. Do you want to lose the changes you made and continue?
layouts:
email:
footer: ! '--
Foodsoft: %{foodsoft}
Foodcoop-Homepage: %{foodcoop}
Help: %{help}
'
foodsoft: Foodsoft
header:
feedback:
desc: Found a bug? Suggestions? Ideas? Review?
title: Feedback
footer: Foodsoft, open source software to manage a non-profit food coop.
help: Help
logout: Logout
ordergroup: My ordergroup
profile: Edit profile
logo: <span>food</span>soft
lib:
order_pdf:
page: Page %{number}
login:
accept_invitation:
body: <p>You are invited to be part of the foodcoop %{foodcoop} as a member of the group <b>%{group}</b>.</p> <p>If you want to participate, please fill in this form.</p> <p>Naturally, your information wll not be shared with third parties for any reason. You can decide how much of your personal information should be visible for everyone. 'All' means all Foodcoop-members. Please note that the administrators do have access to your information.</p>
submit: Create a Foodsoft account
title: Invitation to %{name}
controller:
accept_invitation:
notice: Congratulations, your account was created. You can login now.
error_group_invalid: The group in which you were invited doesn’t exist anymore.
error_invite_invalid: Your invite is not valid (anymore).
error_token_invalid: Invalid or expired token. Please try again.
reset_password:
notice: If your email is registered here, you will receive a message with a link to reset your password.
update_password:
notice: Your password was updated. You can login now.
forgot_password:
body: <p>No Problem, you can choose a new password.</p> <p>Please fill in the email address with which you are registered here. Then you will receive an email with further instructions.</p>
submit: Request new password
title: Forgot password?
new_password:
body: <p>Please fill in the new password for <b>%{user}</b></p>
submit: Save new password
title: New password
mailer:
dateformat: ! '%d %b'
feedback:
header: ! '%{user} wrote at %{date}:'
subject: Feedback from %{email}
foodsoft_message:
footer: ! 'Reply: %{reply_url}
See message online: %{msg_url}
Messaging options: %{profile_url}
'
invite:
subject: Invitation to the Foodcoop
text: ! 'Hi!
%{user} <%{mail}> has invited you to join the group "%{group}".
To accept the invitation and to join the foodcoop please follow this link: %{link}
This link works only once and expires on %{expires}.
Greetings, your Foodsoft Team!
'
negative_balance:
subject: Negative account balance
text: ! 'Dear %{group},
Your account balance has dropped below zero due to a booking on %{when}: %{balance}
There was a charge of %{amount} for "%{note}" by %{user}.
Please deposit your account as soon as possible.
Kind regards from %{foodcoop}.
'
not_enough_users_assigned:
subject: ! '"%{task}" still needs people!'
text: ! 'Dear %{user},
The Task ''%{task}'' of your working group is due on %{when},
and could use some more contributors!
If you haven’t assigned yourself to this task yet it’s your chance now:
%{workgroup_tasks_url}