From 2c89c845687664beed885b46b2337e014726483a Mon Sep 17 00:00:00 2001 From: hangy Date: Sun, 8 Jan 2017 12:27:39 +0100 Subject: [PATCH 01/21] Basic manifest stuff. --- cgi/manifest.pl | 74 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100755 cgi/manifest.pl diff --git a/cgi/manifest.pl b/cgi/manifest.pl new file mode 100755 index 0000000000000..7eb01a8bd174f --- /dev/null +++ b/cgi/manifest.pl @@ -0,0 +1,74 @@ +#!/usr/bin/perl -w + +# This file is part of Product Opener. +# +# Product Opener +# Copyright (C) 2011-2016 Association Open Food Facts +# Contact: contact@openfoodfacts.org +# Address: 21 rue des Iles, 94100 Saint-Maur des Fossés, France +# +# Product Opener is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +use Modern::Perl '2012'; +use utf8; + +use CGI::Carp qw(fatalsToBrowser); +use CGI qw/:cgi :form escapeHTML/; + +use ProductOpener::Config qw/:all/; +use ProductOpener::Store qw/:all/; +use ProductOpener::Index qw/:all/; +use ProductOpener::Display qw/:all/; +use ProductOpener::Users qw/:all/; +use ProductOpener::Products qw/:all/; +use ProductOpener::Food qw/:all/; +use ProductOpener::Tags qw/:all/; +use ProductOpener::Lang qw/:all/; + +use CGI qw/:cgi :form escapeHTML/; +use URI::Escape::XS; +use Storable qw/dclone/; +use Encode; +use JSON::PP; + +ProductOpener::Display::init(); + +my $short_name = lang("site_name"); +my $long_name = $short_name; + +# http://stackoverflow.com/a/16533563/11963 +$short_name =~ s/\b([A-Z])[a-z]+(?=\s+[A-Z][a-z])|\G(?!^)\s+([A-Z])[a-z]+/$1$2/g; + +if ($cc eq 'world') { + $long_name .= " " . uc($lc); + $short_name .= " " . uc($lc); +} +else { + $long_name .= " " . uc($cc) . "/" . uc($lc); + $short_name .= " " . uc($cc) . "/" . uc($lc); +} + +my %manifest = ( + 'lang' => $lc, + 'name' => $long_name, + 'short_name' => $short_name, + 'description' => lang('site_description'), + 'start_url' => '/', + 'scope' => '/', + 'display' => 'standalone', +); + +my $data = encode_json(\%manifest); + +print "Content-Type: application/manifest+json; charset=UTF-8\r\nCache-Control: max-age=86400\r\n\r\n" . $data; From b7f37c0690453c168a787335c97692de201e078b Mon Sep 17 00:00:00 2001 From: hangy Date: Fri, 13 Jan 2017 23:38:37 +0100 Subject: [PATCH 02/21] Clean up manifest generation, added icons/related apps. Added manUp.js as a polyfill for Safari etc. --- bower.json | 3 ++- cgi/manifest.pl | 31 ++++++++++++----------- lib/ProductOpener/Config_off.pm | 44 ++++++++++++++++++++++----------- lib/ProductOpener/Display.pm | 2 ++ 4 files changed, 50 insertions(+), 30 deletions(-) diff --git a/bower.json b/bower.json index 449d14a94ad6c..4db77892826f3 100644 --- a/bower.json +++ b/bower.json @@ -18,6 +18,7 @@ ], "dependencies": { "leaflet": ">=1.0.0", - "leaflet.markercluster": ">=1.0.0" + "leaflet.markercluster": ">=1.0.0", + "ManUp.js": "git://github.com/boyofgreen/ManUp.js" } } diff --git a/cgi/manifest.pl b/cgi/manifest.pl index 7eb01a8bd174f..2cc4f7218b807 100755 --- a/cgi/manifest.pl +++ b/cgi/manifest.pl @@ -31,9 +31,7 @@ use ProductOpener::Index qw/:all/; use ProductOpener::Display qw/:all/; use ProductOpener::Users qw/:all/; -use ProductOpener::Products qw/:all/; -use ProductOpener::Food qw/:all/; -use ProductOpener::Tags qw/:all/; +use ProductOpener::URL qw/:all/; use ProductOpener::Lang qw/:all/; use CGI qw/:cgi :form escapeHTML/; @@ -59,16 +57,21 @@ $short_name .= " " . uc($cc) . "/" . uc($lc); } -my %manifest = ( - 'lang' => $lc, - 'name' => $long_name, - 'short_name' => $short_name, - 'description' => lang('site_description'), - 'start_url' => '/', - 'scope' => '/', - 'display' => 'standalone', -); +my %manifest; +$manifest{lang} = $lc; +$manifest{name} = $long_name; +$manifest{short_name} = $short_name; +$manifest{description} = lang('site_description'); +$manifest{start_url} = format_subdomain($subdomain); +$manifest{scope} = '/'; +$manifest{display} = 'standalone'; -my $data = encode_json(\%manifest); +my @keys = qw(theme_color icons related_applications background_color); +foreach my $key (@keys) { + $manifest{$key} = $options{manifest}{$key} if $options{manifest}{$key}; +} + +my $data = encode_json(\%manifest); -print "Content-Type: application/manifest+json; charset=UTF-8\r\nCache-Control: max-age=86400\r\n\r\n" . $data; +print "Content-Type: application/manifest+json; charset=UTF-8\r\nCache-Control: max-age=86400\r\n\r\n" . $data; + diff --git a/lib/ProductOpener/Config_off.pm b/lib/ProductOpener/Config_off.pm index 478b8d1192d80..7567ca765a907 100644 --- a/lib/ProductOpener/Config_off.pm +++ b/lib/ProductOpener/Config_off.pm @@ -124,27 +124,41 @@ $google_analytics = < "ios", "sizes" => "57x57", "src" => "https://static.$server_domain/images/favicon/apple-touch-icon-57x57.png" }, + { "platform" => "ios", "sizes" => "60x60", "src" => "https://static.$server_domain/images/favicon/apple-touch-icon-60x60.png" }, + { "platform" => "ios", "sizes" => "72x72", "src" => "https://static.$server_domain/images/favicon/apple-touch-icon-72x72.png" }, + { "platform" => "ios", "sizes" => "76x76", "src" => "https://static.$server_domain/images/favicon/apple-touch-icon-76x76.png" }, + { "platform" => "ios", "sizes" => "114x114", "src" => "https://static.$server_domain/images/favicon/apple-touch-icon-114x114.png" }, + { "platform" => "ios", "sizes" => "120x120", "src" => "https://static.$server_domain/images/favicon/apple-touch-icon-120x120.png" }, + { "platform" => "ios", "sizes" => "144x144", "src" => "https://static.$server_domain/images/favicon/apple-touch-icon-144x144.png" }, + { "platform" => "ios", "sizes" => "152x152", "src" => "https://static.$server_domain/images/favicon/apple-touch-icon-152x152.png" }, + { "platform" => "ios", "sizes" => "180x180", "src" => "https://static.$server_domain/images/favicon/apple-touch-icon-180x180.png" }, + { "type" => "image/png", "src" => "https://static.$server_domain/images/favicon/favicon-32x32.png", "sizes" => "32x32" }, + { "type" => "image/png", "src" => "https://static.$server_domain/images/favicon/android-chrome-192x192.png", "sizes" => "192x192" }, + { "type" => "image/png", "src" => "https://static.$server_domain/images/favicon/favicon-96x96.png", "sizes" => "96x96" }, + { "type" => "image/png", "src" => "https://static.$server_domain/images/favicon/favicon-16x16.png", "sizes" => "16x16" }, +); + +my @related_applications = ( + { 'platform' => 'play', 'id' => 'org.openfoodfacts.scanner', 'url' => 'https://play.google.com/store/apps/details?id=org.openfoodfacts.scanner' }, + { 'platform' => 'ios', 'id' => 'id588797948', 'url' => 'https://itunes.apple.com/de/app/open-food-facts/id588797948' }, +); + +my $manifest; +$manifest->{icons} = \@icons; +$manifest->{related_applications} = \@related_applications; +$manifest->{theme_color} = '#ffffff'; +$manifest->{background_color} = '#ffffff'; +$options{manifest} = $manifest; + $options{favicons} = < - - - - - - - - - - - - - + - HTML ; diff --git a/lib/ProductOpener/Display.pm b/lib/ProductOpener/Display.pm index 31e0a5072627b..7b2f235a258d9 100644 --- a/lib/ProductOpener/Display.pm +++ b/lib/ProductOpener/Display.pm @@ -5139,6 +5139,8 @@ $Lang{footer_follow_us}{$lc} + + $scripts From 6a72dd18e3eb7d36f49a232cf03f95dc9dba5447 Mon Sep 17 00:00:00 2001 From: hangy Date: Fri, 13 Jan 2017 23:59:03 +0100 Subject: [PATCH 03/21] Update Config_off.pm Use iOS url as proposed on SO: http://stackoverflow.com/a/4560963/11963 --- lib/ProductOpener/Config_off.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ProductOpener/Config_off.pm b/lib/ProductOpener/Config_off.pm index 7567ca765a907..f3cddec1809d7 100644 --- a/lib/ProductOpener/Config_off.pm +++ b/lib/ProductOpener/Config_off.pm @@ -142,7 +142,7 @@ my @icons = ( my @related_applications = ( { 'platform' => 'play', 'id' => 'org.openfoodfacts.scanner', 'url' => 'https://play.google.com/store/apps/details?id=org.openfoodfacts.scanner' }, - { 'platform' => 'ios', 'id' => 'id588797948', 'url' => 'https://itunes.apple.com/de/app/open-food-facts/id588797948' }, + { 'platform' => 'ios', 'id' => 'id588797948', 'url' => 'https://itunes.apple.com/app/id588797948' }, ); my $manifest; From c31d4f58728ac9c6306c787f028f6dc48aad408c Mon Sep 17 00:00:00 2001 From: hangy Date: Tue, 24 Jan 2017 21:06:52 +0100 Subject: [PATCH 04/21] Show product after editing it. --- cgi/product_multilingual.pl | 13 ++++++++++--- lib/ProductOpener/Display.pm | 11 +++++++++++ 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/cgi/product_multilingual.pl b/cgi/product_multilingual.pl index e3ae7db379e4f..451929011dbae 100755 --- a/cgi/product_multilingual.pl +++ b/cgi/product_multilingual.pl @@ -1825,9 +1825,6 @@ ($$$$$$) $comment = $comment . remove_tags_and_quote(decode utf8=>param('comment')); store_product($product_ref, $comment); - $html .= "

" . lang("product_changes_saved") . "

" - . lang("see_product_page") . "

"; - if ($type eq 'delete') { my $email = <get_fileid(product_name_brand($product_ref)), + 'query_string'=>$ENV{QUERY_STRING}, + 'referer'=>referer(), + 'code'=>$code, + 'product_changes_saved'=>1 + ); + + display_product(\%request); } } diff --git a/lib/ProductOpener/Display.pm b/lib/ProductOpener/Display.pm index 488af50c3b8fc..da3481a784898 100644 --- a/lib/ProductOpener/Display.pm +++ b/lib/ProductOpener/Display.pm @@ -5545,6 +5545,17 @@ CSS return 301; } + if ($request_ref->{product_changes_saved}) { + my $text = lang('product_changes_saved'); + $html .= < +$text + × + +HTML +; + } + my $share = lang('share'); $html .= < From 86f31c4b7f1acc34423babe9251d9ae35fc394f7 Mon Sep 17 00:00:00 2001 From: hangy Date: Tue, 24 Jan 2017 22:17:23 +0100 Subject: [PATCH 05/21] Display a list of products before the edited product after editing. It doens't look like we can include the search result list in the alert box, because some of it's CSS breaks all float. :) --- cgi/product_multilingual.pl | 3 ++- lib/ProductOpener/Display.pm | 11 +++++++++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/cgi/product_multilingual.pl b/cgi/product_multilingual.pl index 451929011dbae..e4633de9daf3c 100755 --- a/cgi/product_multilingual.pl +++ b/cgi/product_multilingual.pl @@ -1841,7 +1841,8 @@ ($$$$$$) 'query_string'=>$ENV{QUERY_STRING}, 'referer'=>referer(), 'code'=>$code, - 'product_changes_saved'=>1 + 'product_changes_saved'=>1, + 'sample_size'=>10 ); display_product(\%request); diff --git a/lib/ProductOpener/Display.pm b/lib/ProductOpener/Display.pm index da3481a784898..a4df752b96ce2 100644 --- a/lib/ProductOpener/Display.pm +++ b/lib/ProductOpener/Display.pm @@ -2425,7 +2425,7 @@ sub search_and_display_products($$$$$) { print STDERR $debug_log . "\n"; if ((not defined $request_ref->{search}) and ($count >= 5) - and (not defined $request_ref->{tagid2})) { + and (not defined $request_ref->{tagid2}) and (not defined $request_ref->{product_changes_saved})) { my @current_drilldown_fields = @ProductOpener::Config::drilldown_fields; if ($country eq 'en:world') { @@ -2542,7 +2542,7 @@ HTML my $next_page_url; - if (($nb_pages > 1) and ((defined $current_link) or (defined $current_link_query))) { + if ((($nb_pages > 1) and ((defined $current_link) or (defined $current_link_query))) and (not defined $request_ref->{product_changes_saved})) { my $prev = ''; my $next = ''; @@ -5554,6 +5554,13 @@ CSS HTML ; + my $query_ref = {}; + $query_ref->{ ("state_tags") } = "en:to-be-completed"; + + my $search_result = search_and_display_products($request_ref, {}, undef, undef, undef); + if ($request_ref->{structured_response}{count} > 0) { + $html .= $search_result . '
'; + } } my $share = lang('share'); From 688cba72a930bf16186b04b78ada93227f86b092 Mon Sep 17 00:00:00 2001 From: hangy Date: Tue, 24 Jan 2017 22:26:44 +0100 Subject: [PATCH 06/21] Display a list of incomplete products before the edited product after editing. --- lib/ProductOpener/Display.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ProductOpener/Display.pm b/lib/ProductOpener/Display.pm index a4df752b96ce2..e0913c97035bf 100644 --- a/lib/ProductOpener/Display.pm +++ b/lib/ProductOpener/Display.pm @@ -5555,9 +5555,9 @@ CSS HTML ; my $query_ref = {}; - $query_ref->{ ("state_tags") } = "en:to-be-completed"; + $query_ref->{ ("states_tags") } = "en:to-be-completed"; - my $search_result = search_and_display_products($request_ref, {}, undef, undef, undef); + my $search_result = search_and_display_products($request_ref, $query_ref, undef, undef, undef); if ($request_ref->{structured_response}{count} > 0) { $html .= $search_result . '
'; } From 2a202e5cdae1da9683d5feccaa69772c8f2883cc Mon Sep 17 00:00:00 2001 From: hangy Date: Tue, 24 Jan 2017 23:32:07 +0100 Subject: [PATCH 07/21] Add option to execute aggregate query to get random sample of items and calculate product count manually (the count method is deprecated anyways). --- lib/ProductOpener/Display.pm | 48 ++++++++++++++++++++++-------------- 1 file changed, 30 insertions(+), 18 deletions(-) diff --git a/lib/ProductOpener/Display.pm b/lib/ProductOpener/Display.pm index e0913c97035bf..3af8513bef73d 100644 --- a/lib/ProductOpener/Display.pm +++ b/lib/ProductOpener/Display.pm @@ -2344,8 +2344,16 @@ sub search_and_display_products($$$$$) { } eval { - $cursor = $products_collection->query($query_ref)->sort($sort_ref)->limit($limit)->skip($skip); - $count = $cursor->count() + 0; + if (defined $request_ref->{sample_size}) { + my $aggregate_parameters = [ + { "\$match" => $query_ref } + ]; + my $options = { "\$sample" => { "size" => $request_ref->{sample_size} } }; + $cursor = $products_collection->aggregate($aggregate_parameters, $options); + } + else { + $cursor = $products_collection->query($query_ref)->sort($sort_ref)->limit($limit)->skip($skip); + } }; if ($@) { print STDERR "Display.pm - search_and_display_products - MongoDB error: $@ - retrying once\n"; @@ -2363,22 +2371,33 @@ sub search_and_display_products($$$$$) { } else { print STDERR "Display.pm - search_and_display_products - MongoDB error: $@ - reconnected ok\n"; - $cursor = $products_collection->query($query_ref)->sort($sort_ref)->limit($limit)->skip($skip); - $count = $cursor->count() + 0; - print STDERR "Display.pm - search_and_display_products - MongoDB error: $@ - ok, got count: $count\n"; + if (defined $request_ref->{sample_size}) { + my $aggregate_parameters = [ + { "\$match" => $query_ref } + ]; + my $options = { "\$sample" => { "size" => $request_ref->{sample_size} } }; + $cursor = $products_collection->aggregate($aggregate_parameters, $options); + } + else { + $cursor = $products_collection->query($query_ref)->sort($sort_ref)->limit($limit)->skip($skip); + } + print STDERR "Display.pm - search_and_display_products - MongoDB error: $@ - ok\n"; } } - - $request_ref->{count} = $count + 0; - print STDERR "Display.pm - search_and_display_products - count: $count\n"; + $count = 0; + while (my $product_ref = $cursor->next) { + push @{$request_ref->{structured_response}{products}}, $product_ref; + $count++; + } + + $request_ref->{structured_response}{count} = $count + 0; my $html = ''; my $html_pages = ''; my $html_count = ''; if (not defined $request_ref->{jqm_loadmore}) { - if ($count < 0) { $html .= "

" . lang("error_database") . "

"; } @@ -2391,11 +2410,8 @@ sub search_and_display_products($$$$$) { elsif ($count > 1) { $html_count .= sprintf(lang("n_products"), $count) ; } - } - $request_ref->{structured_response}{count} = $count + 0; - if ((defined $request_ref->{current_link_query}) and (not defined $request_ref->{jqm})) { if ($country ne 'en:world') { @@ -2409,7 +2425,7 @@ sub search_and_display_products($$$$$) { } - + if ($count > 0) { if ((defined $request_ref->{current_link_query}) and (not defined $request_ref->{jqm})) { @@ -2462,9 +2478,7 @@ HTML $html .= "
    \n"; } - - while (my $product_ref = $cursor->next) { - + for my $product_ref (@{$request_ref->{structured_response}{products}}) { my $img_url; my $img_w; my $img_h; @@ -2522,8 +2536,6 @@ HTML delete $product_ref->{additives}; delete $product_ref->{additives_prev}; delete $product_ref->{additives_next}; - - push @{$request_ref->{structured_response}{products}}, $product_ref; } From 06895bea19960a8d55fc051884f814196af6e457 Mon Sep 17 00:00:00 2001 From: hangy Date: Fri, 27 Jan 2017 21:13:33 +0100 Subject: [PATCH 08/21] Added some debug log statements. --- lib/ProductOpener/Display.pm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/ProductOpener/Display.pm b/lib/ProductOpener/Display.pm index 3af8513bef73d..2ea6e96eb83ad 100644 --- a/lib/ProductOpener/Display.pm +++ b/lib/ProductOpener/Display.pm @@ -2333,11 +2333,9 @@ sub search_and_display_products($$$$$) { my $cursor; my $count; + use Data::Dumper; #if ($admin) { - - use Data::Dumper; - print STDERR "Display.pm - search_and_display_products - query:\n" . Dumper($query_ref) . "\n"; print STDERR "Display.pm - search_and_display_products - sort:\n" . Dumper($sort_ref) . "\n"; print STDERR "Display.pm - search_and_display_products - limit:\n" . Dumper($limit) . "\n"; @@ -2349,9 +2347,11 @@ sub search_and_display_products($$$$$) { { "\$match" => $query_ref } ]; my $options = { "\$sample" => { "size" => $request_ref->{sample_size} } }; + print STDERR "Display.pm - search_and_display_products - aggregate_parameters:\n" . Dumper($aggregate_parameters) . "\noptions:\n" . Dumper($options) . "\n"; $cursor = $products_collection->aggregate($aggregate_parameters, $options); } else { + print STDERR "Display.pm - search_and_display_products - query:\n" . Dumper($query_ref) . "\n"; $cursor = $products_collection->query($query_ref)->sort($sort_ref)->limit($limit)->skip($skip); } }; @@ -2376,9 +2376,11 @@ sub search_and_display_products($$$$$) { { "\$match" => $query_ref } ]; my $options = { "\$sample" => { "size" => $request_ref->{sample_size} } }; + print STDERR "Display.pm - search_and_display_products - aggregate_parameters:\n" . Dumper($aggregate_parameters) . "\noptions:\n" . Dumper($options) . "\n"; $cursor = $products_collection->aggregate($aggregate_parameters, $options); } else { + print STDERR "Display.pm - search_and_display_products - query:\n" . Dumper($query_ref) . "\n"; $cursor = $products_collection->query($query_ref)->sort($sort_ref)->limit($limit)->skip($skip); } print STDERR "Display.pm - search_and_display_products - MongoDB error: $@ - ok\n"; From 028c0c083d7e78893470e0ba74ea7fd822be413e Mon Sep 17 00:00:00 2001 From: hangy Date: Mon, 13 Feb 2017 10:16:46 +0100 Subject: [PATCH 09/21] Move $sample to aggregate pipeline. --- lib/ProductOpener/Display.pm | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/ProductOpener/Display.pm b/lib/ProductOpener/Display.pm index f9dd2d49c160c..a17489e229a95 100644 --- a/lib/ProductOpener/Display.pm +++ b/lib/ProductOpener/Display.pm @@ -2477,11 +2477,11 @@ sub search_and_display_products($$$$$) { eval { if (defined $request_ref->{sample_size}) { my $aggregate_parameters = [ - { "\$match" => $query_ref } + { "\$match" => $query_ref }, + { "\$sample" => { "size" => $request_ref->{sample_size} } } ]; - my $options = { "\$sample" => { "size" => $request_ref->{sample_size} } }; - print STDERR "Display.pm - search_and_display_products - aggregate_parameters:\n" . Dumper($aggregate_parameters) . "\noptions:\n" . Dumper($options) . "\n"; - $cursor = $products_collection->aggregate($aggregate_parameters, $options); + print STDERR "Display.pm - search_and_display_products - aggregate_parameters:\n" . Dumper($aggregate_parameters) . "\n"; + $cursor = $products_collection->aggregate($aggregate_parameters); } else { print STDERR "Display.pm - search_and_display_products - query:\n" . Dumper($query_ref) . "\n"; @@ -2506,11 +2506,11 @@ sub search_and_display_products($$$$$) { print STDERR "Display.pm - search_and_display_products - MongoDB error: $@ - reconnected ok\n"; if (defined $request_ref->{sample_size}) { my $aggregate_parameters = [ - { "\$match" => $query_ref } + { "\$match" => $query_ref }, + { "\$sample" => { "size" => $request_ref->{sample_size} } } ]; - my $options = { "\$sample" => { "size" => $request_ref->{sample_size} } }; - print STDERR "Display.pm - search_and_display_products - aggregate_parameters:\n" . Dumper($aggregate_parameters) . "\noptions:\n" . Dumper($options) . "\n"; - $cursor = $products_collection->aggregate($aggregate_parameters, $options); + print STDERR "Display.pm - search_and_display_products - aggregate_parameters:\n" . Dumper($aggregate_parameters) . "\n"; + $cursor = $products_collection->aggregate($aggregate_parameters); } else { print STDERR "Display.pm - search_and_display_products - query:\n" . Dumper($query_ref) . "\n"; From 19218201011ccd0ec7e6026268c51a468ed75905 Mon Sep 17 00:00:00 2001 From: hangy Date: Sun, 16 Jul 2017 15:52:28 +0200 Subject: [PATCH 10/21] Use JSON:PP to encode graph data. Fixes #820 --- lib/ProductOpener/Display.pm | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/lib/ProductOpener/Display.pm b/lib/ProductOpener/Display.pm index 6e77b92b78b8c..19393b1d3fc1c 100644 --- a/lib/ProductOpener/Display.pm +++ b/lib/ProductOpener/Display.pm @@ -3282,29 +3282,25 @@ sub display_scatter_plot($$$) { # print STDERR "Display::search_and_graph_products: i: $i - axis_x: $graph_ref->{axis_x} - axis_y: $graph_ref->{axis_y}\n"; - my $data = '{'; + my %data; foreach my $axis ('x', 'y') { my $nid = $graph_ref->{"axis_" . $axis}; - $data .= $axis . ':'; if (($nid eq 'additives_n') or ($nid eq 'ingredients_n')) { - $data .= $product_ref->{$nid}; + $data{$axis} = $product_ref->{$nid}; } else { - $data .= g_to_unit($product_ref->{nutriments}{"${nid}_100g"}, $Nutriments{$nid}{unit}); + $data{$axis} = g_to_unit($product_ref->{nutriments}{"${nid}_100g"}, $Nutriments{$nid}{unit}); } - $data .= ','; add_product_nutriment_to_stats(\%nutriments, $nid, $product_ref->{nutriments}{"${nid}_100g"}); } - $data .= ' product_name:"' . escape_single_quote($product_ref->{product_name}) . '", url: "' . $url . '", img:\'' - . escape_single_quote(display_image_thumb($product_ref, 'front')) . "'"; -; - - $data .= "},\n"; + $data{product_name} = $product_ref->{product_name}; + $data{url} = $url; + $data{img} = display_image_thumb($product_ref, 'front'); defined $series{$seriesid} or $series{$seriesid} = ''; - $series{$seriesid} .= $data; + $series{$seriesid} .= encode_json(\%data); defined $series_n{$seriesid} or $series_n{$seriesid} = 0; $series_n{$seriesid}++; $i++; From b71ab4f864814d07ba3d4e35406d8c6f2184446f Mon Sep 17 00:00:00 2001 From: Pierre Slamich Date: Tue, 5 Sep 2017 10:52:18 +0200 Subject: [PATCH 11/21] New Crowdin translations (#886) * New translations common.pot (Scottish Gaelic) * New translations common.pot (Scots) * New translations common.pot (Serbian (Cyrillic)) * New translations common.pot (Serbo-Croatian) * New translations common.pot (Serbian (Latin)) * New translations common.pot (Sanskrit) * New translations common.pot (Sango) * New translations common.pot (Sardinian) * New translations common.pot (Santali) * New translations common.pot (Slovenian) * New translations common.pot (Slovak) * New translations common.pot (Songhay) * New translations common.pot (Somali) * New translations common.pot (Sinhala) * New translations common.pot (Shona) * New translations common.pot (Seychellois Creole) * New translations common.pot (Sindhi) * New translations common.pot (Sichuan Yi) * New translations common.pot (Rusyn) * New translations common.pot (Norwegian Bokmal) * New translations common.pot (Norwegian) * New translations common.pot (Norwegian Nynorsk) * New translations common.pot (Occitan) * New translations common.pot (Maori) * New translations common.pot (Maltese) * New translations common.pot (Mongolian) * New translations common.pot (Marathi) * New translations common.pot (Persian) * New translations common.pot (Romanian) * New translations common.pot (Quechua) * New translations common.pot (Romansh) * New translations common.pot (Russian) * New translations common.pot (Portuguese) * New translations common.pot (Polish) * New translations common.pot (Punjabi) * New translations common.pot (Portuguese, Brazilian) * New translations common.pot (Venda) * New translations common.pot (Valencian) * New translations common.pot (Vietnamese) * New translations common.pot (Venetian) * New translations common.pot (Turkish) * New translations common.pot (Tswana) * New translations common.pot (Ukrainian) * New translations common.pot (Uzbek) * New translations common.pot (Uyghur) * New translations common.pot (Walloon) * New translations common.pot (Zeelandic) * New translations common.pot (Yoruba) * New translations common.pot (Zulu) * New translations common.pot (LOLCAT) * New translations common.pot (Wolof) * New translations common.pot (Welsh) * New translations common.pot (Yiddish) * New translations common.pot (Xhosa) * New translations common.pot (Swedish) * New translations common.pot (Swati) * New translations common.pot (Tahitian) * New translations common.pot (Tagalog) * New translations common.pot (Swahili) * New translations common.pot (Southern Sami) * New translations common.pot (Southern Ndebele) * New translations common.pot (Southern Sotho) * New translations common.pot (Spanish) * New translations common.pot (Tibetan) * New translations common.pot (Thai) * New translations common.pot (Tsonga) * New translations common.pot (Tigrinya) * New translations common.pot (Telugu) * New translations common.pot (Talossan) * New translations common.pot (Tajik) * New translations common.pot (Tamil) * New translations common.pot (Tatar) * New translations common.pot (Malayalam) * New translations common.pot (Chinese Simplified) * New translations common.pot (Cherokee) * New translations common.pot (Chinese Traditional) * New translations common.pot (Chuvash) * New translations common.pot (Chinese Traditional, Hong Kong) * New translations common.pot (Burmese) * New translations common.pot (Bulgarian) * New translations common.pot (Chechen) * New translations common.pot (Catalan) * New translations common.pot (Dutch, Belgium) * New translations common.pot (Dutch) * New translations common.pot (English, Australia) * New translations common.pot (English) * New translations common.pot (Danish) * New translations common.pot (Corsican) * New translations common.pot (Cornish) * New translations common.pot (Czech) * New translations common.pot (Croatian) * New translations common.pot (Breton) * New translations common.pot (Amharic) * New translations common.pot (Albanian) * New translations common.pot (Armenian) * New translations common.pot (Arabic) * New translations openfoodfacts.pot (Afar) * New translations common.pot (Afar) * New translations common.pot (Acholi) * New translations common.pot (Afrikaans) * New translations common.pot (Akan, Twi) * New translations common.pot (Akan) * New translations common.pot (Assamese) * New translations common.pot (Bengali) * New translations common.pot (Belarusian) * New translations common.pot (Berber) * New translations common.pot (Bosnian) * New translations common.pot (Azerbaijani) * New translations common.pot (Asturian) * New translations common.pot (Basque) * New translations common.pot (Bambara) * New translations common.pot (Kannada) * New translations common.pot (Kabyle) * New translations common.pot (Khmer) * New translations common.pot (Kazakh) * New translations common.pot (Irish) * New translations common.pot (Inuktitut) * New translations common.pot (Italian) * New translations common.pot (Javanese) * New translations common.pot (Japanese) * New translations common.pot (Korean) * New translations common.pot (Luxembourgish) * New translations common.pot (Lithuanian) * New translations common.pot (Malay) * New translations common.pot (Malagasy) * New translations common.pot (Kurdish) * New translations common.pot (Kyrgyz) * New translations common.pot (Latvian) * New translations common.pot (Lao) * New translations common.pot (Flemish) * New translations common.pot (Finnish) * New translations common.pot (Galician) * New translations common.pot (French) * New translations common.pot (Filipino) * New translations common.pot (Esperanto) * New translations common.pot (English, United Kingdom) * New translations common.pot (Estonian) * New translations common.pot (Faroese) * New translations common.pot (Hungarian) * New translations common.pot (Hindi) * New translations common.pot (Indonesian) * New translations common.pot (Icelandic) * New translations common.pot (Hebrew) * New translations common.pot (German) * New translations common.pot (Georgian) * New translations common.pot (Greek) * New translations common.pot (Gujarati) --- po/common/aa.po | 10 +++++++++- po/common/ach.po | 10 +++++++++- po/common/af.po | 10 +++++++++- po/common/ak.po | 10 +++++++++- po/common/am.po | 10 +++++++++- po/common/ar.po | 10 +++++++++- po/common/as.po | 10 +++++++++- po/common/ast.po | 10 +++++++++- po/common/az.po | 10 +++++++++- po/common/be.po | 10 +++++++++- po/common/ber.po | 10 +++++++++- po/common/bg.po | 10 +++++++++- po/common/bm.po | 10 +++++++++- po/common/bn.po | 10 +++++++++- po/common/bo.po | 10 +++++++++- po/common/br.po | 10 +++++++++- po/common/bs.po | 10 +++++++++- po/common/ca.po | 10 +++++++++- po/common/ce.po | 10 +++++++++- po/common/chr.po | 10 +++++++++- po/common/co.po | 10 +++++++++- po/common/crs.po | 10 +++++++++- po/common/cs.po | 10 +++++++++- po/common/cv.po | 10 +++++++++- po/common/cy.po | 10 +++++++++- po/common/da.po | 10 +++++++++- po/common/de.po | 10 +++++++++- po/common/el.po | 10 +++++++++- po/common/en.po | 10 +++++++++- po/common/en_AU.po | 10 +++++++++- po/common/en_GB.po | 10 +++++++++- po/common/eo.po | 10 +++++++++- po/common/es.po | 10 +++++++++- po/common/et.po | 10 +++++++++- po/common/eu.po | 10 +++++++++- po/common/fa.po | 10 +++++++++- po/common/fi.po | 10 +++++++++- po/common/fil.po | 10 +++++++++- po/common/fo.po | 10 +++++++++- po/common/fr.po | 10 +++++++++- po/common/ga.po | 10 +++++++++- po/common/gd.po | 10 +++++++++- po/common/gl.po | 10 +++++++++- po/common/gu.po | 10 +++++++++- po/common/he.po | 10 +++++++++- po/common/hi.po | 10 +++++++++- po/common/hr.po | 10 +++++++++- po/common/hu.po | 10 +++++++++- po/common/hy.po | 10 +++++++++- po/common/id.po | 10 +++++++++- po/common/ii.po | 10 +++++++++- po/common/is.po | 10 +++++++++- po/common/it.po | 10 +++++++++- po/common/iu.po | 10 +++++++++- po/common/ja.po | 10 +++++++++- po/common/jv.po | 10 +++++++++- po/common/ka.po | 10 +++++++++- po/common/kab.po | 10 +++++++++- po/common/kk.po | 10 +++++++++- po/common/km.po | 10 +++++++++- po/common/kn.po | 10 +++++++++- po/common/ko.po | 10 +++++++++- po/common/ku.po | 10 +++++++++- po/common/kw.po | 10 +++++++++- po/common/ky.po | 10 +++++++++- po/common/lb.po | 10 +++++++++- po/common/lo.po | 10 +++++++++- po/common/lol.po | 14 +++++++++++--- po/common/lt.po | 10 +++++++++- po/common/lv.po | 10 +++++++++- po/common/mg.po | 10 +++++++++- po/common/mi.po | 10 +++++++++- po/common/ml.po | 10 +++++++++- po/common/mn.po | 10 +++++++++- po/common/mr.po | 10 +++++++++- po/common/ms.po | 10 +++++++++- po/common/mt.po | 10 +++++++++- po/common/my.po | 10 +++++++++- po/common/nb.po | 10 +++++++++- po/common/nl_BE.po | 10 +++++++++- po/common/nl_NL.po | 10 +++++++++- po/common/nn.po | 10 +++++++++- po/common/no.po | 10 +++++++++- po/common/nr.po | 10 +++++++++- po/common/oc.po | 10 +++++++++- po/common/pa.po | 10 +++++++++- po/common/pl.po | 10 +++++++++- po/common/pt_BR.po | 10 +++++++++- po/common/pt_PT.po | 10 +++++++++- po/common/qu.po | 10 +++++++++- po/common/rm.po | 10 +++++++++- po/common/ro.po | 10 +++++++++- po/common/ru.po | 10 +++++++++- po/common/ry.po | 10 +++++++++- po/common/sa.po | 10 +++++++++- po/common/sat.po | 10 +++++++++- po/common/sc.po | 10 +++++++++- po/common/sco.po | 10 +++++++++- po/common/sd.po | 10 +++++++++- po/common/sg.po | 10 +++++++++- po/common/sh.po | 10 +++++++++- po/common/si.po | 10 +++++++++- po/common/sk.po | 10 +++++++++- po/common/sl.po | 10 +++++++++- po/common/sma.po | 10 +++++++++- po/common/sn.po | 10 +++++++++- po/common/so.po | 10 +++++++++- po/common/son.po | 10 +++++++++- po/common/sq.po | 10 +++++++++- po/common/sr.po | 10 +++++++++- po/common/sr_CS.po | 10 +++++++++- po/common/ss.po | 10 +++++++++- po/common/st.po | 10 +++++++++- po/common/sv.po | 10 +++++++++- po/common/sw.po | 10 +++++++++- po/common/ta.po | 10 +++++++++- po/common/te.po | 10 +++++++++- po/common/tg.po | 10 +++++++++- po/common/th.po | 10 +++++++++- po/common/ti.po | 10 +++++++++- po/common/tl.po | 10 +++++++++- po/common/tn.po | 10 +++++++++- po/common/tr.po | 10 +++++++++- po/common/ts.po | 10 +++++++++- po/common/tt.po | 10 +++++++++- po/common/tw.po | 10 +++++++++- po/common/ty.po | 10 +++++++++- po/common/tzl.po | 10 +++++++++- po/common/ug.po | 10 +++++++++- po/common/uk.po | 10 +++++++++- po/common/uz.po | 10 +++++++++- po/common/val.po | 10 +++++++++- po/common/ve.po | 10 +++++++++- po/common/vec.po | 10 +++++++++- po/common/vi.po | 10 +++++++++- po/common/vls.po | 10 +++++++++- po/common/wa.po | 10 +++++++++- po/common/wo.po | 10 +++++++++- po/common/xh.po | 10 +++++++++- po/common/yi.po | 10 +++++++++- po/common/yo.po | 10 +++++++++- po/common/zea.po | 10 +++++++++- po/common/zh_CN.po | 10 +++++++++- po/common/zh_HK.po | 10 +++++++++- po/common/zh_TW.po | 10 +++++++++- po/common/zu.po | 10 +++++++++- po/openfoodfacts/aa.po | 4 ++-- 147 files changed, 1318 insertions(+), 150 deletions(-) diff --git a/po/common/aa.po b/po/common/aa.po index 954df21e729bd..b6360b368704a 100644 --- a/po/common/aa.po +++ b/po/common/aa.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: aa_ER\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:36-0400\n" +"PO-Revision-Date: 2017-09-04 03:49-0400\n" "Language-Team: Afar\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/ach.po b/po/common/ach.po index a70a38a41c79b..4eba552bcfa56 100644 --- a/po/common/ach.po +++ b/po/common/ach.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ach_UG\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:36-0400\n" +"PO-Revision-Date: 2017-09-04 03:49-0400\n" "Language-Team: Acholi\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/af.po b/po/common/af.po index 8d98c8b864581..0cdb1aab247fd 100644 --- a/po/common/af.po +++ b/po/common/af.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: af_ZA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:35-0400\n" +"PO-Revision-Date: 2017-09-04 03:49-0400\n" "Language-Team: Afrikaans\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/ak.po b/po/common/ak.po index 1825c0c386331..e8a481ef5fa4e 100644 --- a/po/common/ak.po +++ b/po/common/ak.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ak_GH\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:36-0400\n" +"PO-Revision-Date: 2017-09-04 03:50-0400\n" "Language-Team: Akan\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/am.po b/po/common/am.po index 27959ad4ca38b..84f9c965d783c 100644 --- a/po/common/am.po +++ b/po/common/am.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: am_ET\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:55-0400\n" +"PO-Revision-Date: 2017-09-04 03:49-0400\n" "Language-Team: Amharic\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/ar.po b/po/common/ar.po index d3a844af9d789..574ec41807764 100644 --- a/po/common/ar.po +++ b/po/common/ar.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ar_SA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:36-0400\n" +"PO-Revision-Date: 2017-09-04 03:49-0400\n" "Language-Team: Arabic\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" @@ -430,6 +430,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "حذف:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "آثار بيئية" diff --git a/po/common/as.po b/po/common/as.po index 422715834a218..50afb8d5a2766 100644 --- a/po/common/as.po +++ b/po/common/as.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: as_IN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:36-0400\n" +"PO-Revision-Date: 2017-09-04 03:50-0400\n" "Language-Team: Assamese\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/ast.po b/po/common/ast.po index b49140b98d227..d68c7e3dc6c96 100644 --- a/po/common/ast.po +++ b/po/common/ast.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ast_ES\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:35-0400\n" +"PO-Revision-Date: 2017-09-04 03:50-0400\n" "Language-Team: Asturian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/az.po b/po/common/az.po index 811ab3b687a11..bc9192400bfd9 100644 --- a/po/common/az.po +++ b/po/common/az.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: az_AZ\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:35-0400\n" +"PO-Revision-Date: 2017-09-04 03:50-0400\n" "Language-Team: Azerbaijani\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/be.po b/po/common/be.po index 69f3d8f97d2b6..b9b1bf3cbe918 100644 --- a/po/common/be.po +++ b/po/common/be.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: be_BY\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:35-0400\n" +"PO-Revision-Date: 2017-09-04 03:50-0400\n" "Language-Team: Belarusian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/ber.po b/po/common/ber.po index ec2aceabc6bbc..32d1015121134 100644 --- a/po/common/ber.po +++ b/po/common/ber.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ber_DZ\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:36-0400\n" +"PO-Revision-Date: 2017-09-04 03:50-0400\n" "Language-Team: Berber\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=((n>=0 && n<=1) || (n>=11 && n<=99) ? 0 : 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/bg.po b/po/common/bg.po index 599dd351d3642..a829e71f63a58 100644 --- a/po/common/bg.po +++ b/po/common/bg.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: bg_BG\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:54-0400\n" +"PO-Revision-Date: 2017-09-04 03:48-0400\n" "Language-Team: Bulgarian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/bm.po b/po/common/bm.po index a60110ae8f88e..e8639046395de 100644 --- a/po/common/bm.po +++ b/po/common/bm.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: bm_ML\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:35-0400\n" +"PO-Revision-Date: 2017-09-04 03:53-0400\n" "Language-Team: Bambara\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/bn.po b/po/common/bn.po index a914b0a1cf40a..0b1a3456331b2 100644 --- a/po/common/bn.po +++ b/po/common/bn.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: bn_BD\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:35-0400\n" +"PO-Revision-Date: 2017-09-04 03:50-0400\n" "Language-Team: Bengali\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/bo.po b/po/common/bo.po index 2fc7c396acdba..98726e799bc8a 100644 --- a/po/common/bo.po +++ b/po/common/bo.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: bo_BT\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:52-0400\n" +"PO-Revision-Date: 2017-09-04 03:46-0400\n" "Language-Team: Tibetan\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/br.po b/po/common/br.po index a481e7a330a79..219b4d87798a0 100644 --- a/po/common/br.po +++ b/po/common/br.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: br_FR\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:55-0400\n" +"PO-Revision-Date: 2017-09-04 03:49-0400\n" "Language-Team: Breton\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/bs.po b/po/common/bs.po index d6851612067a7..54c54bbdb065a 100644 --- a/po/common/bs.po +++ b/po/common/bs.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: bs_BA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:37-0400\n" +"PO-Revision-Date: 2017-09-04 03:50-0400\n" "Language-Team: Bosnian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/ca.po b/po/common/ca.po index c2920406b6398..e542de55d9552 100644 --- a/po/common/ca.po +++ b/po/common/ca.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ca_ES\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:54-0400\n" +"PO-Revision-Date: 2017-09-04 03:48-0400\n" "Language-Team: Catalan\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Eliminat:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "Petjada ecològica" diff --git a/po/common/ce.po b/po/common/ce.po index 4728eb47de03a..6213c8dbbb623 100644 --- a/po/common/ce.po +++ b/po/common/ce.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ce_CE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:54-0400\n" +"PO-Revision-Date: 2017-09-04 03:48-0400\n" "Language-Team: Chechen\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/chr.po b/po/common/chr.po index 8535eea419be0..f69be709f1f12 100644 --- a/po/common/chr.po +++ b/po/common/chr.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: chr_US\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:53-0400\n" +"PO-Revision-Date: 2017-09-04 03:47-0400\n" "Language-Team: Cherokee\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/co.po b/po/common/co.po index 0bc83ca7168ca..9264359757f30 100644 --- a/po/common/co.po +++ b/po/common/co.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: co_FR\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:55-0400\n" +"PO-Revision-Date: 2017-09-04 03:48-0400\n" "Language-Team: Corsican\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/crs.po b/po/common/crs.po index a6e2a49cf8a32..f6b05a53d3690 100644 --- a/po/common/crs.po +++ b/po/common/crs.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: crs_SC\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:46-0400\n" +"PO-Revision-Date: 2017-09-04 03:42-0400\n" "Language-Team: Seychellois Creole\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/cs.po b/po/common/cs.po index 36495897e1337..16824e2ae54f9 100644 --- a/po/common/cs.po +++ b/po/common/cs.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:55-0400\n" +"PO-Revision-Date: 2017-09-04 03:49-0400\n" "Language-Team: Czech\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/cv.po b/po/common/cv.po index 3eeb725545cee..4bdc8ed6872d7 100644 --- a/po/common/cv.po +++ b/po/common/cv.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: cv_CU\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:53-0400\n" +"PO-Revision-Date: 2017-09-04 03:47-0400\n" "Language-Team: Chuvash\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/cy.po b/po/common/cy.po index 22d10009d913f..b86b3670688b7 100644 --- a/po/common/cy.po +++ b/po/common/cy.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: cy_GB\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:51-0400\n" +"PO-Revision-Date: 2017-09-04 03:45-0400\n" "Language-Team: Welsh\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))));\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/da.po b/po/common/da.po index 445e8b48b8c19..90878bec3fbcc 100644 --- a/po/common/da.po +++ b/po/common/da.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: da_DK\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:55-0400\n" +"PO-Revision-Date: 2017-09-04 03:48-0400\n" "Language-Team: Danish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Slettet:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "Økologisk fotavtrykk" diff --git a/po/common/de.po b/po/common/de.po index 3c6cf2e0b9d00..ecef4844ff0a9 100644 --- a/po/common/de.po +++ b/po/common/de.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: de_DE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:37-0400\n" +"PO-Revision-Date: 2017-09-04 03:55-0400\n" "Language-Team: German\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -440,6 +440,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Gelöscht:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "An Open Food Facts spenden" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "Ökologischer Fußabdruck" diff --git a/po/common/el.po b/po/common/el.po index 864808f232cf2..93d33fd57c0dd 100644 --- a/po/common/el.po +++ b/po/common/el.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: el_GR\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:33-0400\n" +"PO-Revision-Date: 2017-09-04 03:55-0400\n" "Language-Team: Greek\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Διαγράφηκε:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "Οικολογικό αποτύπωμα" diff --git a/po/common/en.po b/po/common/en.po index 534b605d7abba..54f9eb0010144 100644 --- a/po/common/en.po +++ b/po/common/en.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: en_US\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:55-0400\n" +"PO-Revision-Date: 2017-09-04 03:48-0400\n" "Language-Team: English\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -431,6 +431,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Deleted:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "Donate to Open Food Facts" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "Ecological footprint" diff --git a/po/common/en_AU.po b/po/common/en_AU.po index 00a1574fad4ee..b2957b678c175 100644 --- a/po/common/en_AU.po +++ b/po/common/en_AU.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: en_AU\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:54-0400\n" +"PO-Revision-Date: 2017-09-04 03:48-0400\n" "Language-Team: English, Australia\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -431,6 +431,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Deleted:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "Donate to Open Food Facts" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "Ecological footprint" diff --git a/po/common/en_GB.po b/po/common/en_GB.po index a04e594b370a4..70b48cff734db 100644 --- a/po/common/en_GB.po +++ b/po/common/en_GB.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: en_GB\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:37-0400\n" +"PO-Revision-Date: 2017-09-04 03:54-0400\n" "Language-Team: English, United Kingdom\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -431,6 +431,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Deleted:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "Donate to Open Food Facts" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "Ecological footprint" diff --git a/po/common/eo.po b/po/common/eo.po index 31af573c53a26..9c05fa3c54d4a 100644 --- a/po/common/eo.po +++ b/po/common/eo.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: eo_UY\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:37-0400\n" +"PO-Revision-Date: 2017-09-04 03:54-0400\n" "Language-Team: Esperanto\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/es.po b/po/common/es.po index 11d0f13ac11ad..e65b886bdd4d5 100644 --- a/po/common/es.po +++ b/po/common/es.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: es_ES\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:52-0400\n" +"PO-Revision-Date: 2017-09-04 03:46-0400\n" "Language-Team: Spanish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Eliminado:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "Huella ecológica" diff --git a/po/common/et.po b/po/common/et.po index 5de4e86bcc417..2c5f64d0f4c79 100644 --- a/po/common/et.po +++ b/po/common/et.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: et_EE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:38-0400\n" +"PO-Revision-Date: 2017-09-04 03:54-0400\n" "Language-Team: Estonian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/eu.po b/po/common/eu.po index dd44ee0b16e1f..fd904d6c1cfeb 100644 --- a/po/common/eu.po +++ b/po/common/eu.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: eu_ES\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:35-0400\n" +"PO-Revision-Date: 2017-09-04 03:50-0400\n" "Language-Team: Basque\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/fa.po b/po/common/fa.po index 33dfd4805d1ee..57403432711f3 100644 --- a/po/common/fa.po +++ b/po/common/fa.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: fa_IR\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:48-0400\n" +"PO-Revision-Date: 2017-09-04 03:43-0400\n" "Language-Team: Persian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -428,6 +428,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/fi.po b/po/common/fi.po index 044480d705277..b300c6d336f0b 100644 --- a/po/common/fi.po +++ b/po/common/fi.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: fi_FI\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:36-0400\n" +"PO-Revision-Date: 2017-09-04 03:54-0400\n" "Language-Team: Finnish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Poistettu:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "Ekologinen jalanjälki" diff --git a/po/common/fil.po b/po/common/fil.po index 290885df33d26..f905021f90c9b 100644 --- a/po/common/fil.po +++ b/po/common/fil.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: fil_PH\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:37-0400\n" +"PO-Revision-Date: 2017-09-04 03:54-0400\n" "Language-Team: Filipino\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/fo.po b/po/common/fo.po index 2d0475e55094f..eacb96c66fddc 100644 --- a/po/common/fo.po +++ b/po/common/fo.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: fo_FO\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:37-0400\n" +"PO-Revision-Date: 2017-09-04 03:54-0400\n" "Language-Team: Faroese\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/fr.po b/po/common/fr.po index 6c509ad0f433b..10ccb86e69009 100644 --- a/po/common/fr.po +++ b/po/common/fr.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: fr_FR\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 14:30-0400\n" +"PO-Revision-Date: 2017-09-04 03:54-0400\n" "Language-Team: French\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -445,6 +445,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Suppression :" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "Faire un don à l'association Open Food Facts" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "Impact écologique" diff --git a/po/common/ga.po b/po/common/ga.po index c70d90150fc69..bfb07c66782a8 100644 --- a/po/common/ga.po +++ b/po/common/ga.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ga_IE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:32-0400\n" +"PO-Revision-Date: 2017-09-04 03:53-0400\n" "Language-Team: Irish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/gd.po b/po/common/gd.po index 0f0b90f0a0156..28292eb2eb41f 100644 --- a/po/common/gd.po +++ b/po/common/gd.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: gd_GB\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:45-0400\n" +"PO-Revision-Date: 2017-09-04 03:41-0400\n" "Language-Team: Scottish Gaelic\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n>2 && n<20) ? 2 : 3;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/gl.po b/po/common/gl.po index e711ffe5b756d..fa2819e46ef20 100644 --- a/po/common/gl.po +++ b/po/common/gl.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: gl_ES\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:37-0400\n" +"PO-Revision-Date: 2017-09-04 03:54-0400\n" "Language-Team: Galician\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Eliminado:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "Pegada ecolóxica" diff --git a/po/common/gu.po b/po/common/gu.po index 23b239acd6293..333d248ae236d 100644 --- a/po/common/gu.po +++ b/po/common/gu.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: gu_IN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:33-0400\n" +"PO-Revision-Date: 2017-09-04 03:55-0400\n" "Language-Team: Gujarati\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/he.po b/po/common/he.po index 46a55d2945088..d0036f9584bfd 100644 --- a/po/common/he.po +++ b/po/common/he.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: he_IL\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:33-0400\n" +"PO-Revision-Date: 2017-09-04 03:55-0400\n" "Language-Team: Hebrew\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "נמחק:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "טביעת רגל אקולוגית" diff --git a/po/common/hi.po b/po/common/hi.po index d0a569cdf7059..d4c8c69fe3ff1 100644 --- a/po/common/hi.po +++ b/po/common/hi.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: hi_IN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:33-0400\n" +"PO-Revision-Date: 2017-09-04 03:55-0400\n" "Language-Team: Hindi\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/hr.po b/po/common/hr.po index 7d816bb063dd5..698b8a4db5155 100644 --- a/po/common/hr.po +++ b/po/common/hr.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: hr_HR\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:55-0400\n" +"PO-Revision-Date: 2017-09-04 03:49-0400\n" "Language-Team: Croatian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/hu.po b/po/common/hu.po index c14d820e989d4..dc9127cc90ac7 100644 --- a/po/common/hu.po +++ b/po/common/hu.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: hu_HU\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:33-0400\n" +"PO-Revision-Date: 2017-09-04 03:54-0400\n" "Language-Team: Hungarian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -463,6 +463,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Törölt:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "Adományozzon az Open Food Facts programnak" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "Ökológiai lábnyom" diff --git a/po/common/hy.po b/po/common/hy.po index e7090dc8ef935..46a61f47ac8b4 100644 --- a/po/common/hy.po +++ b/po/common/hy.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: hy_AM\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 14:36-0400\n" +"PO-Revision-Date: 2017-09-04 03:49-0400\n" "Language-Team: Armenian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/id.po b/po/common/id.po index 62f3efe4be98a..99b08a237a11b 100644 --- a/po/common/id.po +++ b/po/common/id.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: id_ID\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:32-0400\n" +"PO-Revision-Date: 2017-09-04 03:55-0400\n" "Language-Team: Indonesian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/ii.po b/po/common/ii.po index 57c00f67433b7..4711b9d3630ce 100644 --- a/po/common/ii.po +++ b/po/common/ii.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ii_CN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:47-0400\n" +"PO-Revision-Date: 2017-09-04 03:43-0400\n" "Language-Team: Sichuan Yi\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/is.po b/po/common/is.po index 52b9e24ef2bb8..75e0037e60d11 100644 --- a/po/common/is.po +++ b/po/common/is.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: is_IS\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:33-0400\n" +"PO-Revision-Date: 2017-09-04 03:55-0400\n" "Language-Team: Icelandic\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/it.po b/po/common/it.po index 1fcd4e4ee832e..bef533ea523b3 100644 --- a/po/common/it.po +++ b/po/common/it.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: it_IT\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:32-0400\n" +"PO-Revision-Date: 2017-09-04 03:53-0400\n" "Language-Team: Italian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Eliminato:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "Impronta ecologica" diff --git a/po/common/iu.po b/po/common/iu.po index be6dac36c5153..cfb15f4712f58 100644 --- a/po/common/iu.po +++ b/po/common/iu.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: iu_NU\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:32-0400\n" +"PO-Revision-Date: 2017-09-04 03:53-0400\n" "Language-Team: Inuktitut\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/ja.po b/po/common/ja.po index 95d5464e8560e..d28b7aa1d789f 100644 --- a/po/common/ja.po +++ b/po/common/ja.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ja_JP\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:32-0400\n" +"PO-Revision-Date: 2017-09-04 03:53-0400\n" "Language-Team: Japanese\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -469,6 +469,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "削除:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "Open Food Facts に寄付する" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "エコロジカル・フットプリント" diff --git a/po/common/jv.po b/po/common/jv.po index e3c5dea95e396..3dde32853f29c 100644 --- a/po/common/jv.po +++ b/po/common/jv.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: jv_ID\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:32-0400\n" +"PO-Revision-Date: 2017-09-04 03:53-0400\n" "Language-Team: Javanese\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 0);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/ka.po b/po/common/ka.po index f65498949af97..8ea5cbafac0bb 100644 --- a/po/common/ka.po +++ b/po/common/ka.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ka_GE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:37-0400\n" +"PO-Revision-Date: 2017-09-04 03:55-0400\n" "Language-Team: Georgian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/kab.po b/po/common/kab.po index 735d2bfd42536..4d2f0418844e2 100644 --- a/po/common/kab.po +++ b/po/common/kab.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: kab_KAB\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:33-0400\n" +"PO-Revision-Date: 2017-09-04 03:53-0400\n" "Language-Team: Kabyle\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/kk.po b/po/common/kk.po index 818ef9a84d329..b91227163e569 100644 --- a/po/common/kk.po +++ b/po/common/kk.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: kk_KZ\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:34-0400\n" +"PO-Revision-Date: 2017-09-04 03:53-0400\n" "Language-Team: Kazakh\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/km.po b/po/common/km.po index 714f7f9729abd..50a3636b23898 100644 --- a/po/common/km.po +++ b/po/common/km.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: km_KH\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:34-0400\n" +"PO-Revision-Date: 2017-09-04 03:53-0400\n" "Language-Team: Khmer\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/kn.po b/po/common/kn.po index d251dc28b6e1e..75e2b2f007634 100644 --- a/po/common/kn.po +++ b/po/common/kn.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: kn_IN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:34-0400\n" +"PO-Revision-Date: 2017-09-04 03:53-0400\n" "Language-Team: Kannada\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/ko.po b/po/common/ko.po index f68be7d63d525..19f6552d40aa8 100644 --- a/po/common/ko.po +++ b/po/common/ko.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ko_KR\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:35-0400\n" +"PO-Revision-Date: 2017-09-04 03:53-0400\n" "Language-Team: Korean\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/ku.po b/po/common/ku.po index f034f6cfdc697..817e2da3dfeb9 100644 --- a/po/common/ku.po +++ b/po/common/ku.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ku_TR\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:34-0400\n" +"PO-Revision-Date: 2017-09-04 03:54-0400\n" "Language-Team: Kurdish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/kw.po b/po/common/kw.po index 37e3c89561603..ed03be6cb2e59 100644 --- a/po/common/kw.po +++ b/po/common/kw.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: kw_GB\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:55-0400\n" +"PO-Revision-Date: 2017-09-04 03:49-0400\n" "Language-Team: Cornish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n==3) ? 2 : 3;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/ky.po b/po/common/ky.po index 6fb0030727142..77f43048e27b1 100644 --- a/po/common/ky.po +++ b/po/common/ky.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ky_KG\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:34-0400\n" +"PO-Revision-Date: 2017-09-04 03:54-0400\n" "Language-Team: Kyrgyz\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/lb.po b/po/common/lb.po index 28a74878d7f16..5dde321df79d0 100644 --- a/po/common/lb.po +++ b/po/common/lb.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: lb_LU\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:34-0400\n" +"PO-Revision-Date: 2017-09-04 03:53-0400\n" "Language-Team: Luxembourgish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/lo.po b/po/common/lo.po index eda964dfd5fd0..ac71a7005fe40 100644 --- a/po/common/lo.po +++ b/po/common/lo.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: lo_LA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:33-0400\n" +"PO-Revision-Date: 2017-09-04 03:54-0400\n" "Language-Team: Lao\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/lol.po b/po/common/lol.po index 2a4259ca2f733..21e5241892a1a 100644 --- a/po/common/lol.po +++ b/po/common/lol.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: lol_US\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:50-0400\n" +"PO-Revision-Date: 2017-09-04 03:45-0400\n" "Language-Team: LOLCAT\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "crwdns36210:0crwdne36210:0" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "crwdns36774:0crwdne36774:0" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "crwdns36775:0crwdne36775:0" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "crwdns36211:0crwdne36211:0" @@ -2611,11 +2619,11 @@ msgstr "crwdns36773:0crwdne36773:0" msgctxt "donate" msgid "Donate to Open Food Facts" -msgstr "crwdns36774:0crwdne36774:0" +msgstr "crwdns36865:0crwdne36865:0" msgctxt "donate_link" msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" -msgstr "crwdns36775:0crwdne36775:0" +msgstr "crwdns36866:0crwdne36866:0" msgctxt "sources_fleurymichon" msgid "Some of the data and images have been provided directly by the manufacturer Fleury Michon." diff --git a/po/common/lt.po b/po/common/lt.po index d17629fc277b8..870d85b61d951 100644 --- a/po/common/lt.po +++ b/po/common/lt.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: lt_LT\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:33-0400\n" +"PO-Revision-Date: 2017-09-04 03:53-0400\n" "Language-Team: Lithuanian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/lv.po b/po/common/lv.po index 7bef5db917e3e..130881f23fb01 100644 --- a/po/common/lv.po +++ b/po/common/lv.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: lv_LV\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:33-0400\n" +"PO-Revision-Date: 2017-09-04 03:54-0400\n" "Language-Team: Latvian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n==0 ? 0 : n%10==1 && n%100!=11 ? 1 : 2);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/mg.po b/po/common/mg.po index d8b78508ef287..a6dd5adb132d9 100644 --- a/po/common/mg.po +++ b/po/common/mg.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: mg_MG\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:34-0400\n" +"PO-Revision-Date: 2017-09-04 03:53-0400\n" "Language-Team: Malagasy\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/mi.po b/po/common/mi.po index cc13735311bcb..e57fd2506da96 100644 --- a/po/common/mi.po +++ b/po/common/mi.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: mi_NZ\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:47-0400\n" +"PO-Revision-Date: 2017-09-04 03:43-0400\n" "Language-Team: Maori\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/ml.po b/po/common/ml.po index 1fb53060ff239..dbfeb66f28907 100644 --- a/po/common/ml.po +++ b/po/common/ml.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ml_IN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:53-0400\n" +"PO-Revision-Date: 2017-09-04 03:47-0400\n" "Language-Team: Malayalam\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/mn.po b/po/common/mn.po index b69a8a3bbfbbb..f6e824dea06ce 100644 --- a/po/common/mn.po +++ b/po/common/mn.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: mn_MN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:48-0400\n" +"PO-Revision-Date: 2017-09-04 03:43-0400\n" "Language-Team: Mongolian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/mr.po b/po/common/mr.po index 339883f7ada9b..2f7ad980223bb 100644 --- a/po/common/mr.po +++ b/po/common/mr.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: mr_IN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:48-0400\n" +"PO-Revision-Date: 2017-09-04 03:43-0400\n" "Language-Team: Marathi\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/ms.po b/po/common/ms.po index 7a76dc7810072..c015fd7783e4e 100644 --- a/po/common/ms.po +++ b/po/common/ms.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ms_MY\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:34-0400\n" +"PO-Revision-Date: 2017-09-04 03:53-0400\n" "Language-Team: Malay\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/mt.po b/po/common/mt.po index 3c483278c04e2..e74d4a5ae9dd7 100644 --- a/po/common/mt.po +++ b/po/common/mt.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: mt_MT\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:47-0400\n" +"PO-Revision-Date: 2017-09-04 03:43-0400\n" "Language-Team: Maltese\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n==0 || (n%100>1 && n%100<11) ? 1 : (n%100>10 && n%100<20) ? 2 : 3);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/my.po b/po/common/my.po index af9df0d0f17d0..782db5b763870 100644 --- a/po/common/my.po +++ b/po/common/my.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: my_MM\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:54-0400\n" +"PO-Revision-Date: 2017-09-04 03:48-0400\n" "Language-Team: Burmese\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/nb.po b/po/common/nb.po index 31af8ceb55cea..c0ddaf89f25ca 100644 --- a/po/common/nb.po +++ b/po/common/nb.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: nb_NO\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:47-0400\n" +"PO-Revision-Date: 2017-09-04 03:43-0400\n" "Language-Team: Norwegian Bokmal\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -430,6 +430,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Slettet:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "Økologisk fotavtrykk" diff --git a/po/common/nl_BE.po b/po/common/nl_BE.po index ccb19743c9074..80d9f6fbd998e 100644 --- a/po/common/nl_BE.po +++ b/po/common/nl_BE.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: nl_BE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:54-0400\n" +"PO-Revision-Date: 2017-09-04 03:48-0400\n" "Language-Team: Dutch, Belgium\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Verwijdering:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "Ecologische impact" diff --git a/po/common/nl_NL.po b/po/common/nl_NL.po index 2b1c7c19f347b..685b8506e79e5 100644 --- a/po/common/nl_NL.po +++ b/po/common/nl_NL.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: nl_NL\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:54-0400\n" +"PO-Revision-Date: 2017-09-04 03:48-0400\n" "Language-Team: Dutch\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Verwijdering:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "Ecologische impact" diff --git a/po/common/nn.po b/po/common/nn.po index e9627a5655630..d61937a1c65fb 100644 --- a/po/common/nn.po +++ b/po/common/nn.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: nn_NO\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:47-0400\n" +"PO-Revision-Date: 2017-09-04 03:43-0400\n" "Language-Team: Norwegian Nynorsk\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -430,6 +430,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Slettet:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/no.po b/po/common/no.po index 7e6f0b06c1e12..59acfd73d5393 100644 --- a/po/common/no.po +++ b/po/common/no.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: no_NO\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:47-0400\n" +"PO-Revision-Date: 2017-09-04 03:43-0400\n" "Language-Team: Norwegian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -430,6 +430,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Slettet:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/nr.po b/po/common/nr.po index 7530fe3d1ccd2..b14e6a3887465 100644 --- a/po/common/nr.po +++ b/po/common/nr.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: nr_ZA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:52-0400\n" +"PO-Revision-Date: 2017-09-04 03:46-0400\n" "Language-Team: Southern Ndebele\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/oc.po b/po/common/oc.po index a048bdb04f9c0..7bc7aa512ac86 100644 --- a/po/common/oc.po +++ b/po/common/oc.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: oc_FR\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:47-0400\n" +"PO-Revision-Date: 2017-09-04 03:43-0400\n" "Language-Team: Occitan\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/pa.po b/po/common/pa.po index 95d41fda858d9..0188c8215a120 100644 --- a/po/common/pa.po +++ b/po/common/pa.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: pa_IN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:49-0400\n" +"PO-Revision-Date: 2017-09-04 03:44-0400\n" "Language-Team: Punjabi\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/pl.po b/po/common/pl.po index 7d63723bf4f5b..b9c60ab597f8f 100644 --- a/po/common/pl.po +++ b/po/common/pl.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: pl_PL\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:48-0400\n" +"PO-Revision-Date: 2017-09-04 03:44-0400\n" "Language-Team: Polish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/pt_BR.po b/po/common/pt_BR.po index 8d57de35e39c4..adac07cbe3bbe 100644 --- a/po/common/pt_BR.po +++ b/po/common/pt_BR.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:49-0400\n" +"PO-Revision-Date: 2017-09-04 03:44-0400\n" "Language-Team: Portuguese, Brazilian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -430,6 +430,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Apagado:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "Fazer um donativo ao Open Food Facts" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "Pegada ecológica" diff --git a/po/common/pt_PT.po b/po/common/pt_PT.po index 0f05ba9f79b01..d054bdbd0cd5f 100644 --- a/po/common/pt_PT.po +++ b/po/common/pt_PT.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: pt_PT\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:48-0400\n" +"PO-Revision-Date: 2017-09-04 03:44-0400\n" "Language-Team: Portuguese\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -430,6 +430,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Eliminado:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "Fazer um donativo ao Open Food Facts" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "Pegada ecológica" diff --git a/po/common/qu.po b/po/common/qu.po index 16c80acab24d6..07f50bfe0fbf9 100644 --- a/po/common/qu.po +++ b/po/common/qu.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: qu_PE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:48-0400\n" +"PO-Revision-Date: 2017-09-04 03:43-0400\n" "Language-Team: Quechua\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/rm.po b/po/common/rm.po index c712eed483674..e4c33241d9d84 100644 --- a/po/common/rm.po +++ b/po/common/rm.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: rm_CH\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:48-0400\n" +"PO-Revision-Date: 2017-09-04 03:43-0400\n" "Language-Team: Romansh\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/ro.po b/po/common/ro.po index 6fc01645d9cbf..c4e583c777786 100644 --- a/po/common/ro.po +++ b/po/common/ro.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ro_RO\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:48-0400\n" +"PO-Revision-Date: 2017-09-04 03:43-0400\n" "Language-Team: Romanian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Șterse:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "Impact ecologic" diff --git a/po/common/ru.po b/po/common/ru.po index 58400ad5180d0..86de39d4af368 100644 --- a/po/common/ru.po +++ b/po/common/ru.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ru_RU\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:48-0400\n" +"PO-Revision-Date: 2017-09-04 03:43-0400\n" "Language-Team: Russian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" @@ -466,6 +466,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Удалено:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "Пожертвовать Open Food Facts" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "Экологический след" diff --git a/po/common/ry.po b/po/common/ry.po index b2a8ca0e6777f..458dc8ffd9121 100644 --- a/po/common/ry.po +++ b/po/common/ry.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ry_UA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:47-0400\n" +"PO-Revision-Date: 2017-09-04 03:43-0400\n" "Language-Team: Rusyn\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/sa.po b/po/common/sa.po index 7f531e38d7507..3210e3fff6ef8 100644 --- a/po/common/sa.po +++ b/po/common/sa.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sa_IN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:45-0400\n" +"PO-Revision-Date: 2017-09-04 03:42-0400\n" "Language-Team: Sanskrit\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1 : 2);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/sat.po b/po/common/sat.po index 32da06c930c94..109c78834dfd9 100644 --- a/po/common/sat.po +++ b/po/common/sat.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sat_IN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:45-0400\n" +"PO-Revision-Date: 2017-09-04 03:42-0400\n" "Language-Team: Santali\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/sc.po b/po/common/sc.po index 5da430230cc03..9e8a87e8098ff 100644 --- a/po/common/sc.po +++ b/po/common/sc.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sc_IT\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:45-0400\n" +"PO-Revision-Date: 2017-09-04 03:42-0400\n" "Language-Team: Sardinian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/sco.po b/po/common/sco.po index f1398f9d1752c..d6334b9c51cf9 100644 --- a/po/common/sco.po +++ b/po/common/sco.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sco_GB\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:45-0400\n" +"PO-Revision-Date: 2017-09-04 03:41-0400\n" "Language-Team: Scots\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Delete:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/sd.po b/po/common/sd.po index b91d485e5fbdf..4d17f31326971 100644 --- a/po/common/sd.po +++ b/po/common/sd.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sd_PK\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:46-0400\n" +"PO-Revision-Date: 2017-09-04 03:42-0400\n" "Language-Team: Sindhi\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/sg.po b/po/common/sg.po index f1582b160d4d4..0e3ead35742b1 100644 --- a/po/common/sg.po +++ b/po/common/sg.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sg_CF\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:45-0400\n" +"PO-Revision-Date: 2017-09-04 03:42-0400\n" "Language-Team: Sango\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/sh.po b/po/common/sh.po index ebde11d6b1c4c..42efb1175884e 100644 --- a/po/common/sh.po +++ b/po/common/sh.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sh_HR\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:45-0400\n" +"PO-Revision-Date: 2017-09-04 03:42-0400\n" "Language-Team: Serbo-Croatian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=4; plural=(n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/si.po b/po/common/si.po index d3a2ba4183d73..21f1746536bf3 100644 --- a/po/common/si.po +++ b/po/common/si.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: si_LK\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:46-0400\n" +"PO-Revision-Date: 2017-09-04 03:42-0400\n" "Language-Team: Sinhala\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/sk.po b/po/common/sk.po index ecd55a8b8445d..3027498d702a4 100644 --- a/po/common/sk.po +++ b/po/common/sk.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sk_SK\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:46-0400\n" +"PO-Revision-Date: 2017-09-04 03:42-0400\n" "Language-Team: Slovak\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/sl.po b/po/common/sl.po index fb36bcb909483..a0ee8d689fcda 100644 --- a/po/common/sl.po +++ b/po/common/sl.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sl_SI\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:46-0400\n" +"PO-Revision-Date: 2017-09-04 03:42-0400\n" "Language-Team: Slovenian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/sma.po b/po/common/sma.po index 78a6966ea80bd..8ac8ee43856fd 100644 --- a/po/common/sma.po +++ b/po/common/sma.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sma_NO\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:52-0400\n" +"PO-Revision-Date: 2017-09-04 03:46-0400\n" "Language-Team: Southern Sami\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/sn.po b/po/common/sn.po index f2d6c606672c6..559432fb1cc20 100644 --- a/po/common/sn.po +++ b/po/common/sn.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sn_ZW\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:46-0400\n" +"PO-Revision-Date: 2017-09-04 03:42-0400\n" "Language-Team: Shona\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/so.po b/po/common/so.po index dc09bac977f9d..ecd73dc6f6680 100644 --- a/po/common/so.po +++ b/po/common/so.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: so_SO\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:46-0400\n" +"PO-Revision-Date: 2017-09-04 03:42-0400\n" "Language-Team: Somali\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/son.po b/po/common/son.po index 445f57aaa7c41..1a69242e018bc 100644 --- a/po/common/son.po +++ b/po/common/son.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: son_ZA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:46-0400\n" +"PO-Revision-Date: 2017-09-04 03:42-0400\n" "Language-Team: Songhay\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/sq.po b/po/common/sq.po index dfcffef5d688f..eb297bf97a699 100644 --- a/po/common/sq.po +++ b/po/common/sq.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sq_AL\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:55-0400\n" +"PO-Revision-Date: 2017-09-04 03:49-0400\n" "Language-Team: Albanian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/sr.po b/po/common/sr.po index 0665e7fbaac7b..0d4f0ebd17dde 100644 --- a/po/common/sr.po +++ b/po/common/sr.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sr_SP\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:45-0400\n" +"PO-Revision-Date: 2017-09-04 03:42-0400\n" "Language-Team: Serbian (Cyrillic)\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Избрисано:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/sr_CS.po b/po/common/sr_CS.po index f436ed1e5acd0..b38a2ced4bf64 100644 --- a/po/common/sr_CS.po +++ b/po/common/sr_CS.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sr_CS\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:45-0400\n" +"PO-Revision-Date: 2017-09-04 03:42-0400\n" "Language-Team: Serbian (Latin)\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" @@ -441,6 +441,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Izbrisano:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "Donirajte Open Food Facts" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "Ekološki otisak" diff --git a/po/common/ss.po b/po/common/ss.po index 8d35a64a752c8..f502c843bbb70 100644 --- a/po/common/ss.po +++ b/po/common/ss.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ss_ZA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:51-0400\n" +"PO-Revision-Date: 2017-09-04 03:45-0400\n" "Language-Team: Swati\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/st.po b/po/common/st.po index c71d778c4b390..4d61ecaa7b092 100644 --- a/po/common/st.po +++ b/po/common/st.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: st_ZA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:52-0400\n" +"PO-Revision-Date: 2017-09-04 03:46-0400\n" "Language-Team: Southern Sotho\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/sv.po b/po/common/sv.po index 88061fc5c4c17..57da3e177f525 100644 --- a/po/common/sv.po +++ b/po/common/sv.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sv_SE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:51-0400\n" +"PO-Revision-Date: 2017-09-04 03:45-0400\n" "Language-Team: Swedish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Borttagen:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "Donera till Open Food Facts" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "Ekologiskt fotavtryck" diff --git a/po/common/sw.po b/po/common/sw.po index 03e61540a7f0a..47011d6e475b5 100644 --- a/po/common/sw.po +++ b/po/common/sw.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sw_KE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:51-0400\n" +"PO-Revision-Date: 2017-09-04 03:46-0400\n" "Language-Team: Swahili\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/ta.po b/po/common/ta.po index 341ff57fdc1a8..3358afa4706fa 100644 --- a/po/common/ta.po +++ b/po/common/ta.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ta_IN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:53-0400\n" +"PO-Revision-Date: 2017-09-04 03:47-0400\n" "Language-Team: Tamil\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/te.po b/po/common/te.po index a61fd26df1dd2..961a94997f8cc 100644 --- a/po/common/te.po +++ b/po/common/te.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: te_IN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:53-0400\n" +"PO-Revision-Date: 2017-09-04 03:47-0400\n" "Language-Team: Telugu\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/tg.po b/po/common/tg.po index a71c1434a5876..f307ef317dafb 100644 --- a/po/common/tg.po +++ b/po/common/tg.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: tg_TJ\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:53-0400\n" +"PO-Revision-Date: 2017-09-04 03:47-0400\n" "Language-Team: Tajik\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/th.po b/po/common/th.po index 3c7dbb3a0b791..4ad4e20f02ebe 100644 --- a/po/common/th.po +++ b/po/common/th.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: th_TH\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:52-0400\n" +"PO-Revision-Date: 2017-09-04 03:46-0400\n" "Language-Team: Thai\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/ti.po b/po/common/ti.po index dd399383ec6f2..09f3ce4d22750 100644 --- a/po/common/ti.po +++ b/po/common/ti.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ti_ER\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:52-0400\n" +"PO-Revision-Date: 2017-09-04 03:46-0400\n" "Language-Team: Tigrinya\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/tl.po b/po/common/tl.po index 4400bb8c908e6..289578ffde238 100644 --- a/po/common/tl.po +++ b/po/common/tl.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: tl_PH\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:51-0400\n" +"PO-Revision-Date: 2017-09-04 03:46-0400\n" "Language-Team: Tagalog\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/tn.po b/po/common/tn.po index 9d8faee44c4eb..33ba995269508 100644 --- a/po/common/tn.po +++ b/po/common/tn.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: tn_ZA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:49-0400\n" +"PO-Revision-Date: 2017-09-04 03:44-0400\n" "Language-Team: Tswana\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/tr.po b/po/common/tr.po index cb2684a3480bc..d78741f15681e 100644 --- a/po/common/tr.po +++ b/po/common/tr.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: tr_TR\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:49-0400\n" +"PO-Revision-Date: 2017-09-04 03:44-0400\n" "Language-Team: Turkish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "Silindi:" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/ts.po b/po/common/ts.po index 518bb34cbff30..13548718f9d65 100644 --- a/po/common/ts.po +++ b/po/common/ts.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ts_ZA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:52-0400\n" +"PO-Revision-Date: 2017-09-04 03:46-0400\n" "Language-Team: Tsonga\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/tt.po b/po/common/tt.po index 5d294fd5b4364..bb9672cc9f7a7 100644 --- a/po/common/tt.po +++ b/po/common/tt.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: tt_RU\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:53-0400\n" +"PO-Revision-Date: 2017-09-04 03:47-0400\n" "Language-Team: Tatar\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/tw.po b/po/common/tw.po index 3c4252ac1538a..0848b9f0735dd 100644 --- a/po/common/tw.po +++ b/po/common/tw.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: tw_TW\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:36-0400\n" +"PO-Revision-Date: 2017-09-04 03:50-0400\n" "Language-Team: Akan, Twi\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/ty.po b/po/common/ty.po index 98e9a68a6be66..0c418a5557a24 100644 --- a/po/common/ty.po +++ b/po/common/ty.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ty_PF\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:51-0400\n" +"PO-Revision-Date: 2017-09-04 03:46-0400\n" "Language-Team: Tahitian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/tzl.po b/po/common/tzl.po index aec1348d7a910..ad57ef644afa6 100644 --- a/po/common/tzl.po +++ b/po/common/tzl.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: tzl_TZL\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:53-0400\n" +"PO-Revision-Date: 2017-09-04 03:47-0400\n" "Language-Team: Talossan\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/ug.po b/po/common/ug.po index e70d01c7d9bcd..623c2bb1d6666 100644 --- a/po/common/ug.po +++ b/po/common/ug.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ug_CN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:50-0400\n" +"PO-Revision-Date: 2017-09-04 03:44-0400\n" "Language-Team: Uyghur\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/uk.po b/po/common/uk.po index c4826b9743630..8d895985dc2b7 100644 --- a/po/common/uk.po +++ b/po/common/uk.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: uk_UA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:50-0400\n" +"PO-Revision-Date: 2017-09-04 03:44-0400\n" "Language-Team: Ukrainian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/uz.po b/po/common/uz.po index cee8f20231923..d12addb825995 100644 --- a/po/common/uz.po +++ b/po/common/uz.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: uz_UZ\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:50-0400\n" +"PO-Revision-Date: 2017-09-04 03:44-0400\n" "Language-Team: Uzbek\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/val.po b/po/common/val.po index 964c222e3b35e..d239386abf755 100644 --- a/po/common/val.po +++ b/po/common/val.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: val_ES\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:49-0400\n" +"PO-Revision-Date: 2017-09-04 03:44-0400\n" "Language-Team: Valencian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/ve.po b/po/common/ve.po index 6c2c8238d7a36..39528c174b6fb 100644 --- a/po/common/ve.po +++ b/po/common/ve.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ve_ZA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:49-0400\n" +"PO-Revision-Date: 2017-09-04 03:44-0400\n" "Language-Team: Venda\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/vec.po b/po/common/vec.po index 7252142247166..71c420932f202 100644 --- a/po/common/vec.po +++ b/po/common/vec.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: vec_IT\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:49-0400\n" +"PO-Revision-Date: 2017-09-04 03:44-0400\n" "Language-Team: Venetian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/vi.po b/po/common/vi.po index 97ddbf6fe600a..658ba8423417b 100644 --- a/po/common/vi.po +++ b/po/common/vi.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: vi_VN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:49-0400\n" +"PO-Revision-Date: 2017-09-04 03:44-0400\n" "Language-Team: Vietnamese\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/vls.po b/po/common/vls.po index c30f4f8e83197..5d33b41aa7ff3 100644 --- a/po/common/vls.po +++ b/po/common/vls.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: vls_BE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:36-0400\n" +"PO-Revision-Date: 2017-09-04 03:54-0400\n" "Language-Team: Flemish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/wa.po b/po/common/wa.po index f7248003100c9..9e4f6de0c0f07 100644 --- a/po/common/wa.po +++ b/po/common/wa.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: wa_BE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:50-0400\n" +"PO-Revision-Date: 2017-09-04 03:44-0400\n" "Language-Team: Walloon\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/wo.po b/po/common/wo.po index 146f2a81e2050..45c9c0efc81b1 100644 --- a/po/common/wo.po +++ b/po/common/wo.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: wo_SN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:51-0400\n" +"PO-Revision-Date: 2017-09-04 03:45-0400\n" "Language-Team: Wolof\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/xh.po b/po/common/xh.po index 4ad0f8a121685..a946287d2c284 100644 --- a/po/common/xh.po +++ b/po/common/xh.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: xh_ZA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:51-0400\n" +"PO-Revision-Date: 2017-09-04 03:45-0400\n" "Language-Team: Xhosa\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/yi.po b/po/common/yi.po index 666ea5808a344..f6999afcedf13 100644 --- a/po/common/yi.po +++ b/po/common/yi.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: yi_DE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:51-0400\n" +"PO-Revision-Date: 2017-09-04 03:45-0400\n" "Language-Team: Yiddish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/yo.po b/po/common/yo.po index 9fab200718fb7..82e9c8e3e3162 100644 --- a/po/common/yo.po +++ b/po/common/yo.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: yo_NG\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:50-0400\n" +"PO-Revision-Date: 2017-09-04 03:45-0400\n" "Language-Team: Yoruba\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/zea.po b/po/common/zea.po index 8ec8535e4e032..c2973365ecd47 100644 --- a/po/common/zea.po +++ b/po/common/zea.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: zea_ZEA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:50-0400\n" +"PO-Revision-Date: 2017-09-04 03:45-0400\n" "Language-Team: Zeelandic\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/zh_CN.po b/po/common/zh_CN.po index 4e4636abe84ed..b90fb53a43027 100644 --- a/po/common/zh_CN.po +++ b/po/common/zh_CN.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:53-0400\n" +"PO-Revision-Date: 2017-09-04 03:47-0400\n" "Language-Team: Chinese Simplified\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/common/zh_HK.po b/po/common/zh_HK.po index 23c730a6bd9ed..8b214778ba558 100644 --- a/po/common/zh_HK.po +++ b/po/common/zh_HK.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: zh_HK\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:54-0400\n" +"PO-Revision-Date: 2017-09-04 03:47-0400\n" "Language-Team: Chinese Traditional, Hong Kong\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "刪除" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "生態足跡" diff --git a/po/common/zh_TW.po b/po/common/zh_TW.po index 02e1d65105c01..565a05248deb7 100644 --- a/po/common/zh_TW.po +++ b/po/common/zh_TW.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: zh_TW\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:53-0400\n" +"PO-Revision-Date: 2017-09-04 03:47-0400\n" "Language-Team: Chinese Traditional\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "刪除" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "生態足跡" diff --git a/po/common/zu.po b/po/common/zu.po index e4a720401a790..bd60da5401cb5 100644 --- a/po/common/zu.po +++ b/po/common/zu.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: zu_ZA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:50-0400\n" +"PO-Revision-Date: 2017-09-04 03:45-0400\n" "Language-Team: Zulu\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -426,6 +426,14 @@ msgctxt "diff_delete" msgid "Deleted:" msgstr "" +msgctxt "donate" +msgid "Donate to Open Food Facts" +msgstr "" + +msgctxt "donate_link" +msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" + msgctxt "ecological_data_table" msgid "Ecological footprint" msgstr "" diff --git a/po/openfoodfacts/aa.po b/po/openfoodfacts/aa.po index 104b46eb5568a..7df1300d23aa1 100644 --- a/po/openfoodfacts/aa.po +++ b/po/openfoodfacts/aa.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: aa_ER\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:36-0400\n" +"PO-Revision-Date: 2017-09-04 03:49-0400\n" "Language-Team: Afar\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -34,4 +34,4 @@ msgstr "" msgctxt "tagline" msgid "Open Food Facts gathers information and data on food products from around the world." -msgstr "" \ No newline at end of file +msgstr "" From 704669ce4e85e005d43ece1cba5722df5c104601 Mon Sep 17 00:00:00 2001 From: Pierre Slamich Date: Tue, 5 Sep 2017 13:56:58 +0200 Subject: [PATCH 12/21] New Crowdin translations (#887) * New translations common.pot (Scottish Gaelic) * New translations common.pot (Scots) * New translations common.pot (Serbian (Cyrillic)) * New translations common.pot (Serbo-Croatian) * New translations common.pot (Serbian (Latin)) * New translations common.pot (Sanskrit) * New translations common.pot (Sango) * New translations common.pot (Sardinian) * New translations common.pot (Santali) * New translations common.pot (Slovenian) * New translations common.pot (Slovak) * New translations common.pot (Songhay) * New translations common.pot (Somali) * New translations common.pot (Sinhala) * New translations common.pot (Shona) * New translations common.pot (Seychellois Creole) * New translations common.pot (Sindhi) * New translations common.pot (Sichuan Yi) * New translations common.pot (Rusyn) * New translations common.pot (Norwegian Bokmal) * New translations common.pot (Norwegian) * New translations common.pot (Norwegian Nynorsk) * New translations common.pot (Occitan) * New translations common.pot (Maori) * New translations common.pot (Maltese) * New translations common.pot (Mongolian) * New translations common.pot (Marathi) * New translations common.pot (Persian) * New translations common.pot (Romanian) * New translations common.pot (Quechua) * New translations common.pot (Romansh) * New translations common.pot (Russian) * New translations common.pot (Portuguese) * New translations common.pot (Polish) * New translations common.pot (Punjabi) * New translations common.pot (Portuguese, Brazilian) * New translations common.pot (Venda) * New translations common.pot (Valencian) * New translations common.pot (Vietnamese) * New translations common.pot (Venetian) * New translations common.pot (Turkish) * New translations common.pot (Tswana) * New translations common.pot (Ukrainian) * New translations common.pot (Uzbek) * New translations common.pot (Uyghur) * New translations common.pot (Walloon) * New translations common.pot (Zeelandic) * New translations common.pot (Yoruba) * New translations common.pot (Zulu) * New translations common.pot (LOLCAT) * New translations common.pot (Wolof) * New translations common.pot (Welsh) * New translations common.pot (Yiddish) * New translations common.pot (Xhosa) * New translations common.pot (Swedish) * New translations common.pot (Swati) * New translations common.pot (Tahitian) * New translations common.pot (Tagalog) * New translations common.pot (Swahili) * New translations common.pot (Southern Sami) * New translations common.pot (Southern Ndebele) * New translations common.pot (Southern Sotho) * New translations common.pot (Spanish) * New translations common.pot (Tibetan) * New translations common.pot (Thai) * New translations common.pot (Tsonga) * New translations common.pot (Tigrinya) * New translations common.pot (Telugu) * New translations common.pot (Talossan) * New translations common.pot (Tajik) * New translations common.pot (Tamil) * New translations common.pot (Tatar) * New translations common.pot (Malayalam) * New translations common.pot (Chinese Simplified) * New translations common.pot (Cherokee) * New translations common.pot (Chinese Traditional) * New translations common.pot (Chuvash) * New translations common.pot (Chinese Traditional, Hong Kong) * New translations common.pot (Burmese) * New translations common.pot (Bulgarian) * New translations common.pot (Chechen) * New translations common.pot (Catalan) * New translations common.pot (Dutch, Belgium) * New translations common.pot (Dutch) * New translations common.pot (English, Australia) * New translations common.pot (English) * New translations common.pot (Danish) * New translations common.pot (Corsican) * New translations common.pot (Cornish) * New translations common.pot (Czech) * New translations common.pot (Croatian) * New translations common.pot (Breton) * New translations common.pot (Amharic) * New translations common.pot (Albanian) * New translations common.pot (Armenian) * New translations common.pot (Arabic) * New translations openfoodfacts.pot (Afar) * New translations common.pot (Afar) * New translations common.pot (Acholi) * New translations common.pot (Afrikaans) * New translations common.pot (Akan, Twi) * New translations common.pot (Akan) * New translations common.pot (Assamese) * New translations common.pot (Bengali) * New translations common.pot (Belarusian) * New translations common.pot (Berber) * New translations common.pot (Bosnian) * New translations common.pot (Azerbaijani) * New translations common.pot (Asturian) * New translations common.pot (Basque) * New translations common.pot (Bambara) * New translations common.pot (Kannada) * New translations common.pot (Kabyle) * New translations common.pot (Khmer) * New translations common.pot (Kazakh) * New translations common.pot (Irish) * New translations common.pot (Inuktitut) * New translations common.pot (Italian) * New translations common.pot (Javanese) * New translations common.pot (Japanese) * New translations common.pot (Korean) * New translations common.pot (Luxembourgish) * New translations common.pot (Lithuanian) * New translations common.pot (Malay) * New translations common.pot (Malagasy) * New translations common.pot (Kurdish) * New translations common.pot (Kyrgyz) * New translations common.pot (Latvian) * New translations common.pot (Lao) * New translations common.pot (Flemish) * New translations common.pot (Finnish) * New translations common.pot (Galician) * New translations common.pot (French) * New translations common.pot (Filipino) * New translations common.pot (Esperanto) * New translations common.pot (English, United Kingdom) * New translations common.pot (Estonian) * New translations common.pot (Faroese) * New translations common.pot (Hungarian) * New translations common.pot (Hindi) * New translations common.pot (Indonesian) * New translations common.pot (Icelandic) * New translations common.pot (Hebrew) * New translations common.pot (German) * New translations common.pot (Georgian) * New translations common.pot (Greek) * New translations common.pot (Gujarati) * New translations common.pot (Arabic) --- po/common/ar.po | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/po/common/ar.po b/po/common/ar.po index 574ec41807764..919a964618b17 100644 --- a/po/common/ar.po +++ b/po/common/ar.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ar_SA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:49-0400\n" +"PO-Revision-Date: 2017-09-05 07:22-0400\n" "Language-Team: Arabic\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" @@ -1447,7 +1447,7 @@ msgstr "" msgctxt "nutrient_levels_p" msgid "nutrient levels" -msgstr "" +msgstr "مستويات المغذيات" msgctxt "nutrient_levels_s" msgid "nutrient level" @@ -1455,7 +1455,7 @@ msgstr "" msgctxt "nutriments_p" msgid "nutriments" -msgstr "" +msgstr "أغذية" msgctxt "nutriments_products" msgid "Products that contain the nutriment %s" @@ -1463,7 +1463,7 @@ msgstr "المنتجات التي تحتوي على المغذيات %s" msgctxt "nutriments_s" msgid "nutriment" -msgstr "" +msgstr "غذاء" msgctxt "nutriments_without_products" msgid "Products that do not contain the nutriment %s" @@ -1499,7 +1499,7 @@ msgstr "" msgctxt "nutrition_data_note" msgid "If the picture is sufficiently sharp and level, nutrition facts can be automatically extracted from the picture." -msgstr "" +msgstr "إذا كانت الصورة حادة ومستوية بما فيه الكفاية، فيمكن استخراج حقائق التغذية تلقائيا من الصورة." msgctxt "nutrition_data_per_10" msgid "10th centile" @@ -1527,15 +1527,15 @@ msgstr "" msgctxt "nutrition_data_per_max" msgid "Maximum" -msgstr "" +msgstr "الحد الأقصى" msgctxt "nutrition_data_per_mean" msgid "Mean" -msgstr "" +msgstr "‮المتوسط" msgctxt "nutrition_data_per_min" msgid "Minimum" -msgstr "" +msgstr "الحد الأدنى" msgctxt "nutrition_data_per_serving" msgid "per serving" @@ -1654,7 +1654,7 @@ msgstr "" msgctxt "page_x" msgid "Page %d" -msgstr "" +msgstr "الصفحة %d" msgctxt "page_x_out_of_y" msgid "Page %d out of %d." @@ -1674,7 +1674,7 @@ msgstr "" msgctxt "periods_after_opening" msgid "Period of time after opening" -msgstr "" +msgstr "فترة من الوقت بعد الافتتاح" msgctxt "periods_after_opening_note" msgid "Found in an open container logo with a number of months: e.g. 12 M" @@ -1682,11 +1682,11 @@ msgstr "" msgctxt "periods_after_opening_p" msgid "Periods after opening" -msgstr "" +msgstr "فترة ما بعد الافتتاح" msgctxt "periods_after_opening_s" msgid "Period after opening" -msgstr "" +msgstr "فترة ما بعد الافتتاح" msgctxt "photographers_p" msgid "photographers" From ebc69682aab68c53cf2ebefd1f10a0f5a2155cc5 Mon Sep 17 00:00:00 2001 From: paperplanes53 Date: Sun, 10 Sep 2017 15:57:25 -0700 Subject: [PATCH 13/21] Update common-web.pot --- po/common/common-web.pot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/common/common-web.pot b/po/common/common-web.pot index f9c79d2d26d50..21c0b1926e34b 100644 --- a/po/common/common-web.pot +++ b/po/common/common-web.pot @@ -2209,7 +2209,7 @@ msgstr "" msgctxt "search_graph_instructions" msgid "" "Select what you want to graph on the horizontal axis to obtain a histogram, " -"or select two axis to\n" +"or select two axes to\n" "get a cloud of products (scatter plot)." msgstr "" From 5ceb8231a2cb436c30190387cfc1b27eee44a111 Mon Sep 17 00:00:00 2001 From: hangy Date: Thu, 14 Sep 2017 11:49:53 +0200 Subject: [PATCH 14/21] Use binaries from the node_modules directory. (#890) --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 61fa045bbee47..4e201691e3019 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,7 @@ before_install: install: - cpanm --quiet --installdeps --notest --skip-satisfied . - npm install - - bower install + - node_modules/.bin/bower install - ln -s $TRAVIS_BUILD_DIR/lib/ProductOpener/Config_off.pm $TRAVIS_BUILD_DIR/lib/ProductOpener/Config.pm - cp $TRAVIS_BUILD_DIR/lib/ProductOpener/Config2_sample.pm $TRAVIS_BUILD_DIR/lib/ProductOpener/Config2.pm - ln -s $TRAVIS_BUILD_DIR/lib/ProductOpener/SiteLang_off.pm $TRAVIS_BUILD_DIR/lib/ProductOpener/SiteLang.pm @@ -33,6 +33,6 @@ install: script: - prove -l - perl -c -CS -I$TRAVIS_BUILD_DIR/lib lib/startup_apache2.pl - - jshint --show-non-errors html/js/product-multilingual.js html/js/search.js + - node_modules/.bin/jshint --show-non-errors html/js/product-multilingual.js html/js/search.js notifications: slack: openfoodfacts:Pre9ZXKFH1CYtix8DeJAaFi2 From aab662fcc4febf6a87b26631ccb63292fcaa1c90 Mon Sep 17 00:00:00 2001 From: hangy Date: Sun, 16 Jul 2017 13:05:04 +0200 Subject: [PATCH 15/21] Allow the " - " separator in some titles to be translated for other languages. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Also, replaced it by " — " by default. Fixes #853 --- lib/ProductOpener/Display.pm | 14 +++++++------- lib/ProductOpener/Products.pm | 6 +++--- po/common/common.pot | 3 +++ po/common/en.po | 3 +++ 4 files changed, 16 insertions(+), 10 deletions(-) diff --git a/lib/ProductOpener/Display.pm b/lib/ProductOpener/Display.pm index d845e20ba3d5f..82273cf045480 100644 --- a/lib/ProductOpener/Display.pm +++ b/lib/ProductOpener/Display.pm @@ -936,7 +936,7 @@ sub display_text($) } if ((defined $request_ref->{page}) and ($request_ref->{page} > 1)) { - $request_ref->{title} = $title . " - " . sprintf(lang("page_x"), $request_ref->{page}); + $request_ref->{title} = $title . lang("title_separator") . sprintf(lang("page_x"), $request_ref->{page}); } else { $request_ref->{title} = $title; @@ -1798,12 +1798,12 @@ sub display_points($) { if (defined $tagtype) { $html .= display_points_ranking($tagtype, $tagid); - $request_ref->{title} = "Open Food Hunt - " . lang("points_ranking") . " - " . $title; + $request_ref->{title} = "Open Food Hunt" . lang("title_separator") . lang("points_ranking") . lang("title_separator") . $title; } else { $html .= display_points_ranking("users", "_all_"); $html .= display_points_ranking("countries", "_all_"); - $request_ref->{title} = "Open Food Hunt - " . lang("points_ranking_users_and_countries"); + $request_ref->{title} = "Open Food Hunt" . lang("title_separator") . lang("points_ranking_users_and_countries"); } $request_ref->{content_ref} = \$html; @@ -2237,7 +2237,7 @@ HTML if (defined $tagid2) { - $products_title .= " - " . lang($tagtype2 . '_s') . separator_before_colon($lc) . ": " . $display_tag2; + $products_title .= lang("title_separator") . lang($tagtype2 . '_s') . separator_before_colon($lc) . ": " . $display_tag2; } if (not defined $request_ref->{groupby_tagtype}) { @@ -2271,7 +2271,7 @@ HTML - $html .= "

    " . $products_title . " - " . display_taxonomy_tag($lc,"countries",$country) . "

    \n"; + $html .= "

    " . $products_title . lang("title_separator") . display_taxonomy_tag($lc,"countries",$country) . "

    \n"; } } # end of if (defined $tagtype) @@ -2356,11 +2356,11 @@ HTML if ($products_title ne '') { $request_ref->{title} .= " " . lang("for") . " " . lcfirst($products_title); } - $request_ref->{title} .= " - " . display_taxonomy_tag($lc,"countries",$country); + $request_ref->{title} .= lang("title_separator") . display_taxonomy_tag($lc,"countries",$country); } else { if ((defined $request_ref->{page}) and ($request_ref->{page} > 1)) { - $request_ref->{title} = $title . " - " . sprintf(lang("page_x"), $request_ref->{page}); + $request_ref->{title} = $title . lang("title_separator") . sprintf(lang("page_x"), $request_ref->{page}); } else { $request_ref->{title} = $title; diff --git a/lib/ProductOpener/Products.pm b/lib/ProductOpener/Products.pm index 1ad21999efbe2..f3a5a776b6fbc 100644 --- a/lib/ProductOpener/Products.pm +++ b/lib/ProductOpener/Products.pm @@ -1,7 +1,7 @@ # This file is part of Product Opener. # # Product Opener -# Copyright (C) 2011-2016 Association Open Food Facts +# Copyright (C) 2011-2017 Association Open Food Facts # Contact: contact@openfoodfacts.org # Address: 21 rue des Iles, 94100 Saint-Maur des Fossés, France # @@ -874,7 +874,7 @@ sub product_name_brand($) { my $brandid = '-' . get_fileid($brand) . '-'; my $full_name_id = '-' . get_fileid($full_name) . '-'; if (($brandid ne '') and ($full_name_id !~ /$brandid/i)) { - $full_name .= " - " . $brand; + $full_name .= lang("title_separator") . $brand; } } @@ -893,7 +893,7 @@ sub product_name_brand_quantity($) { my $quantity = $ref->{quantity}; my $quantityid = '-' . get_fileid($quantity) . '-'; if (($quantity ne '') and ($full_name_id !~ /$quantityid/i)) { - $full_name .= " - " . $quantity; + $full_name .= lang("title_separator") . $quantity; } } diff --git a/po/common/common.pot b/po/common/common.pot index 2b16d2821ac18..447171a36ac16 100644 --- a/po/common/common.pot +++ b/po/common/common.pot @@ -2677,3 +2677,6 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" diff --git a/po/common/en.po b/po/common/en.po index 54f9eb0010144..de03000315c12 100644 --- a/po/common/en.po +++ b/po/common/en.po @@ -2677,3 +2677,6 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" +msgctxt "title_separator" +msgid " — " +msgstr " — " From 9bdbfc345b325257acf2271c5d592a6c5811e1a3 Mon Sep 17 00:00:00 2001 From: Pierre Slamich Date: Fri, 15 Sep 2017 20:40:17 +0200 Subject: [PATCH 16/21] New Crowdin translations (#891) * New translations common.pot (Scottish Gaelic) * New translations common.pot (Scots) * New translations common.pot (Serbian (Cyrillic)) * New translations common.pot (Serbo-Croatian) * New translations common.pot (Serbian (Latin)) * New translations common.pot (Sanskrit) * New translations common.pot (Sango) * New translations common.pot (Sardinian) * New translations common.pot (Santali) * New translations common.pot (Slovenian) * New translations common.pot (Slovak) * New translations common.pot (Songhay) * New translations common.pot (Somali) * New translations common.pot (Sinhala) * New translations common.pot (Shona) * New translations common.pot (Seychellois Creole) * New translations common.pot (Sindhi) * New translations common.pot (Sichuan Yi) * New translations common.pot (Rusyn) * New translations common.pot (Norwegian Bokmal) * New translations common.pot (Norwegian) * New translations common.pot (Norwegian Nynorsk) * New translations common.pot (Occitan) * New translations common.pot (Maori) * New translations common.pot (Maltese) * New translations common.pot (Mongolian) * New translations common.pot (Marathi) * New translations common.pot (Persian) * New translations common.pot (Romanian) * New translations common.pot (Quechua) * New translations common.pot (Romansh) * New translations common.pot (Russian) * New translations common.pot (Portuguese) * New translations common.pot (Polish) * New translations common.pot (Punjabi) * New translations common.pot (Portuguese, Brazilian) * New translations common.pot (Venda) * New translations common.pot (Valencian) * New translations common.pot (Vietnamese) * New translations common.pot (Venetian) * New translations common.pot (Turkish) * New translations common.pot (Tswana) * New translations common.pot (Ukrainian) * New translations common.pot (Uzbek) * New translations common.pot (Uyghur) * New translations common.pot (Walloon) * New translations common.pot (Zeelandic) * New translations common.pot (Yoruba) * New translations common.pot (Zulu) * New translations common.pot (LOLCAT) * New translations common.pot (Wolof) * New translations common.pot (Welsh) * New translations common.pot (Yiddish) * New translations common.pot (Xhosa) * New translations common.pot (Swedish) * New translations common.pot (Swati) * New translations common.pot (Tahitian) * New translations common.pot (Tagalog) * New translations common.pot (Swahili) * New translations common.pot (Southern Sami) * New translations common.pot (Southern Ndebele) * New translations common.pot (Southern Sotho) * New translations common.pot (Spanish) * New translations common.pot (Tibetan) * New translations common.pot (Thai) * New translations common.pot (Tsonga) * New translations common.pot (Tigrinya) * New translations common.pot (Telugu) * New translations common.pot (Talossan) * New translations common.pot (Tajik) * New translations common.pot (Tamil) * New translations common.pot (Tatar) * New translations common.pot (Malayalam) * New translations common.pot (Chinese Simplified) * New translations common.pot (Cherokee) * New translations common.pot (Chinese Traditional) * New translations common.pot (Chuvash) * New translations common.pot (Chinese Traditional, Hong Kong) * New translations common.pot (Burmese) * New translations common.pot (Bulgarian) * New translations common.pot (Chechen) * New translations common.pot (Catalan) * New translations common.pot (Dutch, Belgium) * New translations common.pot (Dutch) * New translations common.pot (English, Australia) * New translations common.pot (English) * New translations common.pot (Danish) * New translations common.pot (Corsican) * New translations common.pot (Cornish) * New translations common.pot (Czech) * New translations common.pot (Croatian) * New translations common.pot (Breton) * New translations common.pot (Amharic) * New translations common.pot (Albanian) * New translations common.pot (Armenian) * New translations common.pot (Arabic) * New translations openfoodfacts.pot (Afar) * New translations common.pot (Afar) * New translations common.pot (Acholi) * New translations common.pot (Afrikaans) * New translations common.pot (Akan, Twi) * New translations common.pot (Akan) * New translations common.pot (Assamese) * New translations common.pot (Bengali) * New translations common.pot (Belarusian) * New translations common.pot (Berber) * New translations common.pot (Bosnian) * New translations common.pot (Azerbaijani) * New translations common.pot (Asturian) * New translations common.pot (Basque) * New translations common.pot (Bambara) * New translations common.pot (Kannada) * New translations common.pot (Kabyle) * New translations common.pot (Khmer) * New translations common.pot (Kazakh) * New translations common.pot (Irish) * New translations common.pot (Inuktitut) * New translations common.pot (Italian) * New translations common.pot (Javanese) * New translations common.pot (Japanese) * New translations common.pot (Korean) * New translations common.pot (Luxembourgish) * New translations common.pot (Lithuanian) * New translations common.pot (Malay) * New translations common.pot (Malagasy) * New translations common.pot (Kurdish) * New translations common.pot (Kyrgyz) * New translations common.pot (Latvian) * New translations common.pot (Lao) * New translations common.pot (Flemish) * New translations common.pot (Finnish) * New translations common.pot (Galician) * New translations common.pot (French) * New translations common.pot (Filipino) * New translations common.pot (Esperanto) * New translations common.pot (English, United Kingdom) * New translations common.pot (Estonian) * New translations common.pot (Faroese) * New translations common.pot (Hungarian) * New translations common.pot (Hindi) * New translations common.pot (Indonesian) * New translations common.pot (Icelandic) * New translations common.pot (Hebrew) * New translations common.pot (German) * New translations common.pot (Georgian) * New translations common.pot (Greek) * New translations common.pot (Gujarati) * New translations common.pot (Arabic) * Use binaries from the node_modules directory. * New translations common.pot (Hindi) * New translations openbeautyfacts.pot (Hindi) * New translations common.pot (Hindi) * New translations common.pot (German) * New translations tags.pot (German) * New translations common.pot (Danish) * New translations common.pot (Danish) * New translations common.pot (Danish) * New translations common.pot (Danish) * New translations common.pot (Danish) * New translations common.pot (Danish) * New translations common.pot (Danish) * New translations common.pot (Danish) * New translations common.pot (Danish) * New translations common.pot (Danish) --- po/common/da.po | 386 ++++++++++++++++++++------------------- po/common/de.po | 31 +--- po/common/hi.po | 6 +- po/openbeautyfacts/hi.po | 4 +- po/tags/de.po | 4 +- 5 files changed, 212 insertions(+), 219 deletions(-) diff --git a/po/common/da.po b/po/common/da.po index 90878bec3fbcc..5a3c8f02922c8 100644 --- a/po/common/da.po +++ b/po/common/da.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: da_DK\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:48-0400\n" +"PO-Revision-Date: 2017-09-14 16:21-0400\n" "Language-Team: Danish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -17,7 +17,7 @@ msgstr "" #. put here the language tag ("fr" for French, "ja" for Japanese, etc) msgctxt ":langtag" msgid ":langtag" -msgstr "nb" +msgstr "da" #. put here the language name ("French", "Japanese", etc) msgctxt ":langname" @@ -34,27 +34,27 @@ msgstr " og " msgctxt "about" msgid "About me" -msgstr "Om meg" +msgstr "Om mig" msgctxt "add" msgid "Add" -msgstr "Legg til" +msgstr "Tilføj" msgctxt "add_language" msgid "Add language" -msgstr "Legg til språk" +msgstr "Tilføj sprog" msgctxt "add_product" msgid "Add a product" -msgstr "Legg til et produkt" +msgstr "Tilføj produkt" msgctxt "add_user" msgid "Register" -msgstr "Registrer bruker" +msgstr "Registrer bruger" msgctxt "add_user_confirm" msgid "

    Thanks for joining. You can now sign-in on the site to add and edit products.

    " -msgstr "

    Tak for tilmeldelsen. Du kan nu logge på på webstedet for at tilføje og redigere produkter.

    " +msgstr "

    Tak for indmeldingen. Du kan nu logge på webstedet for at tilføje og redigere produkter.

    " msgctxt "add_user_email_body" msgid "Hello ,\n\n" @@ -72,43 +72,57 @@ msgid "Hello ,\n\n" "Stéphane and the Open Food Facts team\n" "https://openfoodfacts.org\n" "https://twitter.com/OpenFoodFacts\n" -msgstr "" +msgstr "Hej ,\n\n" +"Mange tak fordi du vil være med i https://openfoodfacts.org\n" +"Her er dit brugernavn:\n\n" +"Brugernavn: \n\n" +"Du kan nu logge in på siden og tilføje eller redigere produkter.\n\n" +" er et fælles projekt hvortil du kan bidrage med meget mere end nye produkter: din energi, entusiasme og ideer!\n" +"For at diskutere med andre bidragsydere og hjælpe projektet i sin fremdrift bruger vi et meget nemt beskedsystem kalder Slack: https://slack.openfoodfacts.org\n\n" +"Du kan også melde dig ind i Facebook-gruppen for bidragsydere:\n" +"https://www.facebook.com/groups/374350705955208/\n\n" +"Nyt: vi er også ved at starte Open Beauty Facts der har som mål at skabe en database over kosmetik: sæbe, tandpaste, makeup osv.\n" +"https://openbeautyfacts.org\n\n" +"Mange tak for din støtte!\n\n" +"Stéphane and the Open Food Facts team\n" +"https://openfoodfacts.org\n" +"https://twitter.com/OpenFoodFacts\n" msgctxt "add_user_email_subject" msgid "Thanks for joining <>" -msgstr "" +msgstr "Tak fordi du vil være med i " msgctxt "additives_1" msgid "Potentially hazardous food additive. Limit usage." -msgstr "Potensielt farlig tilsetningsstoff. Begrens bruk." +msgstr "Potentielt farligt tilsætningsstof. Begræns brugen." msgctxt "additives_2" msgid "Hazardous food additive. Avoid." -msgstr "Farlig tilsetningsstoff. Unngå." +msgstr "Farlig tilsætningsstof. Undgå." msgctxt "additives_3" msgid "Food additive banned in Europe. Avoid at all cost." -msgstr "Tilsetningsstoff som er forbudt i Europa. Unngå for enhver pris." +msgstr "Tilsætningsstof som er forbudt i Europa. Undgå for enhver pris." msgctxt "additives_p" msgid "additives" -msgstr "tilsetningsstoffer" +msgstr "tilsætningsstoffer" msgctxt "additives_s" msgid "additive" -msgstr "tilsetningsstoff" +msgstr "tilsætningsstof" msgctxt "advanced_search" msgid "Advanced search" -msgstr "Avansert søk" +msgstr "Avanceret søgning" msgctxt "advanced_search_old" msgid "Advanced search and graphs" -msgstr "Avansert søk og grafer" +msgstr "Avanceret søgning og grafer" msgctxt "alcohol_warning" msgid "Excess drinking is harmful for health." -msgstr "" +msgstr "Overdreven alkoholindtag er skadeligt for helbredet." msgctxt "all_missions" msgid "All missions" @@ -116,7 +130,7 @@ msgstr "Alle missioner" msgctxt "allergens" msgid "Substances or products causing allergies or intolerances" -msgstr "Stoffer eller produkter som forårsaker allergi eller intoleranse" +msgstr "Stoffer eller produkter som forårsager allergi eller intolerance" msgctxt "allergens_p" msgid "allergens" @@ -124,11 +138,11 @@ msgstr "allergener" msgctxt "allergens_s" msgid "allergen" -msgstr "" +msgstr "allergen" msgctxt "also_edited_by" msgid "Product page also edited by" -msgstr "Produktside også redigert av" +msgstr "Produktside også redigeret af" msgctxt "android_apk_app_badge" msgid "\"Android" @@ -136,32 +150,32 @@ msgstr "\"Android" -msgstr "\"tilgjengelig" +msgstr "\"Tilgængelig" msgctxt "android_app_link" msgid "https://play.google.com/store/apps/details?id=org.openfoodfacts.scanner" -msgstr "" +msgstr "https://play.google.com/store/apps/details?id=org.openfoodfacts.scanner" msgctxt "app_please_take_pictures" msgid "

    This product is not yet in the <> database. Could you please take some pictures of the product, barcode, ingredients list and nutrition facts to add it on <>?

    \n" "

    Thanks in advance!

    \n" -msgstr "" +msgstr "

    Dette produkt er endnu ikke i -databasen. Vil du være så elskværdig at tage et par billeder af produktet, stregkoden, ingredienslisten og næringsdeklarationen og tilføje den til ?

    På forhånd tak!

    \n" msgctxt "app_take_a_picture" msgid "Take a picture" -msgstr "Ta et bilde" +msgstr "Tag et billede" msgctxt "app_take_a_picture_note" msgid "Note: the pictures you send are published under the free licence Creative Commons Attribution and ShareAlike." -msgstr "Merk: bildene du sender, blir utgitt under gratislisensen Creative Commons Attribution og Sharealike." +msgstr "Bemærk: billederne du sender, bliver offentliggjort under den frie licens Creative Commons Attribution ShareAlike." msgctxt "app_you_can_add_pictures" msgid "You can add pictures:" -msgstr "Du kan legge til bilder:" +msgstr "Du kan tilføje billeder:" msgctxt "axis_x" msgid "Horizontal axis" @@ -185,35 +199,35 @@ msgid "\n "\n" "

    Contribute to <> by adding product and win stars by\n" "fulfilling missions!

    \n" -msgstr "" +msgstr "

    Bidrag til ved at tilføje produkter og tjen stjerner ved at fuldføre missioner!

    \n" msgctxt "bottom_title" msgid "Embrace the mission" -msgstr "" +msgstr "Kast dig ud på mission" msgctxt "brands" msgid "Brands" -msgstr "Merker" +msgstr "Varemærker" msgctxt "brands_example" msgid "Kinder Bueno White, Kinder Bueno, Kinder, Ferrero" -msgstr "Kinder Bueno hvit, Kinder Bueno, Kinder, Ferrero" +msgstr "Kinder Bueno hvid, Kinder Bueno, Kinder, Ferrero" msgctxt "brands_p" msgid "brands" -msgstr "merker" +msgstr "varemærker" msgctxt "brands_products" msgid "Products from the %s brand" -msgstr "Produkter fra %s merkevaren" +msgstr "Produkter fra %s-varemærket" msgctxt "brands_s" msgid "brand" -msgstr "merke" +msgstr "varemærke" msgctxt "brands_tagsinput" msgid "add a brand" -msgstr "legge til en merkevare" +msgstr "tilføj et varemærke" msgctxt "brands_without_products" msgid "Products not from the %s brand" @@ -229,11 +243,11 @@ msgstr "Kategorier" msgctxt "categories_example" msgid "Sardines in olive oil, Orange juice from concentrate" -msgstr "Sardiner i olivenolje, appelsinjuice fra konsentrat" +msgstr "Sardiner i olivenolie, appelsinjuice af koncentrat" msgctxt "categories_note" msgid "Indicate only the most specific category. \"Parents\" categories will be automatically added." -msgstr "Indikerer bare den mest spesifikke kategorien.\"foreldre \"-kategorier vil automatisk bli lagt til." +msgstr "Indikerer kun den mest specifikke kategori. Overordnede kategorier vil automatisk blive tilføjet." msgctxt "categories_p" msgid "categories" @@ -241,7 +255,7 @@ msgstr "kategorier" msgctxt "categories_products" msgid "Products from the %s category" -msgstr "Produkter fra %s kategori" +msgstr "Produkter fra %s-kategorien" msgctxt "categories_s" msgid "category" @@ -249,15 +263,15 @@ msgstr "kategori" msgctxt "categories_tagsinput" msgid "add a category" -msgstr "legg til en kategori" +msgstr "tilføj en kategori" msgctxt "categories_without_products" msgid "Products not from the %s category" -msgstr "Produkter ikke fra %s kategori" +msgstr "Produkter ikke fra %s-kategorien" msgctxt "change_fields" msgid "Data" -msgstr "" +msgstr "Data" msgctxt "change_nutriments" msgid "Nutriments" @@ -265,35 +279,35 @@ msgstr "Næringsstoffer" msgctxt "change_selected_images" msgid "Selected images" -msgstr "" +msgstr "Valgte billeder" msgctxt "change_uploaded_images" msgid "Uploaded images" -msgstr "opplastede bilder" +msgstr "Uploadede billeder" msgctxt "checkers_p" msgid "checkers" -msgstr "" +msgstr "kontrollører" msgctxt "checkers_s" msgid "checker" -msgstr "" +msgstr "kontrollør" msgctxt "cities_p" msgid "packaging cities" -msgstr "" +msgstr "pakkebyer" msgctxt "cities_products" msgid "Products packaged in the city of %s" -msgstr "By der produktene ble emballert: %s" +msgstr "Produkter pakket i byen %s" msgctxt "cities_s" msgid "packaging city" -msgstr "" +msgstr "pakkeby" msgctxt "cities_without_products" msgid "Products not packaged in the city of %s" -msgstr "" +msgstr "Produkter der ikke er pakket i byen %s" msgctxt "codes_p" msgid "Codes" @@ -332,47 +346,47 @@ msgstr "" msgctxt "completed_n_missions" msgid "completed %d missions:" -msgstr "fullført %d oppdrag:" +msgstr "fuldført %d missioner:" msgctxt "connected_with_facebook" msgid "You are connected with your Facebook account." -msgstr "Du er tilkoblet med Facebook-kontoen din." +msgstr "Du er forbundet med din Facebook-konto." msgctxt "contributor_since" msgid "Contributor since" -msgstr "Bidragsyter siden" +msgstr "Bidragsyder siden" msgctxt "copy_data" msgid "Copy data from current product to new product" -msgstr "Kopier data fra aktuelle produktet til nytt produkt" +msgstr "Kopier data fra aktuelle produkt til nyt produkt" msgctxt "correct_the_following_errors" msgid "Please correct the following errors:" -msgstr "Vennligst korriger følgende feil:" +msgstr "Ret venligst disse fejl:" msgctxt "correctors_p" msgid "correctors" -msgstr "" +msgstr "redaktører" msgctxt "correctors_s" msgid "corrector" -msgstr "" +msgstr "redaktør" msgctxt "countries" msgid "Countries where sold" -msgstr "Land hvor produktet selges" +msgstr "Produktet sælges i disse lande" msgctxt "countries_note" msgid "Countries where the product is widely available (non including stores specialising in foreign products)" -msgstr "Land hvor produktet er allment tilgjengelig (ikke inkludert butikker som spesialiserer seg på utenlandske produkter)" +msgstr "Lande hvor produktet er almindeligt tilgængeligt (udover butikker som specialiserer sig i udenlandske produkter)" msgctxt "countries_p" msgid "countries" -msgstr "land" +msgstr "lande" msgctxt "countries_products" msgid "Products sold in %s" -msgstr "Produkter selges i %s" +msgstr "Produkter som sælges i %s" msgctxt "countries_s" msgid "country" @@ -380,7 +394,7 @@ msgstr "land" msgctxt "countries_without_products" msgid "Products not sold in %s" -msgstr "Produkter selges ikke i %s" +msgstr "Produkter som ikke sælges i %s" msgctxt "data_source" msgid "Data source" @@ -388,11 +402,11 @@ msgstr "Datakilde" msgctxt "debug_p" msgid "debug" -msgstr "" +msgstr "fejlfind" msgctxt "debug_s" msgid "debug" -msgstr "" +msgstr "fejlfind" msgctxt "delete_comment" msgid "Reason for removal" @@ -400,27 +414,27 @@ msgstr "Årsag til fjernelse" msgctxt "delete_product" msgid "Delete a product" -msgstr "Slett et produkt" +msgstr "Slet et produkt" msgctxt "delete_product_page" msgid "Delete the page" -msgstr "Slett side" +msgstr "Slet side" msgctxt "delete_the_images" msgid "Delete the images" -msgstr "Slett bildene" +msgstr "Slet billederne" msgctxt "delete_user" msgid "Delete an user" -msgstr "Slett bruker" +msgstr "Slet bruger" msgctxt "diff_add" msgid "Added:" -msgstr "Lagt til:" +msgstr "Tilføjet:" msgctxt "diff_change" msgid "Changed:" -msgstr "Endret:" +msgstr "Ændret:" msgctxt "diff_delete" msgid "Deleted:" @@ -428,19 +442,19 @@ msgstr "Slettet:" msgctxt "donate" msgid "Donate to Open Food Facts" -msgstr "" +msgstr "Doner til Open Food Facts" msgctxt "donate_link" msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" -msgstr "" +msgstr "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" msgctxt "ecological_data_table" msgid "Ecological footprint" -msgstr "Økologisk fotavtrykk" +msgstr "Økologisk fodaftryk" msgctxt "ecological_data_table_note" msgid "If the carbon footprint is specified on the label (rarely at this time), indicate it for the same quantity than the nutritional composition." -msgstr "Hvis karbonutslipp eller karbon-fottavtrykk er angitt på etiketten (dette er sjeldent foreløpig), indikerer karbonutslipp for samme mengde som ernæringsinnholdet oppgis for." +msgstr "Hvis CO2-udslip eller CO2-fodaftryk er angivet på etiketten (endnu sjældent set), skal det angives for den samme mængde som ernæringsindholdet opgives for." msgctxt "edit" msgid "edit" @@ -448,7 +462,7 @@ msgstr "rediger" msgctxt "edit_comment" msgid "Changes summary" -msgstr "sammendrag av endringer" +msgstr "Ændringsoversigt" msgctxt "edit_product" msgid "Edit a product" @@ -464,23 +478,23 @@ msgstr "Rediger din offentlige profil" msgctxt "edit_profile_confirm" msgid "Changes to your public profile have been saved." -msgstr "Endringer i den offentlige profilen er lagret." +msgstr "Ændringerne i din offentlige profil er gemt." msgctxt "edit_profile_msg" msgid "Information below is visible in your public profile." -msgstr "Informasjonen nedenfor er synlig i din offentlige profil." +msgstr "Informationen nedenfor er synlig i din offentlige profil." msgctxt "edit_settings" msgid "Change your account parameters" -msgstr "" +msgstr "Ændr konto-instillinger" msgctxt "edit_user" msgid "Account parameters" -msgstr "Konto parametre" +msgstr "Kontoparametre" msgctxt "edit_user_confirm" msgid "

    Your account parameters have been changed.

    " -msgstr "

    Dine konto parametre er blevet ændret.

    " +msgstr "

    Dine kontoparametre er blevet ændret.

    " msgctxt "editors_p" msgid "editors" @@ -492,47 +506,47 @@ msgstr "redaktør" msgctxt "email" msgid "e-mail address" -msgstr "epostadresse" +msgstr "email-adresse" msgctxt "emb_code_p" msgid "EMB codes" -msgstr "" +msgstr "EMB-koder" msgctxt "emb_code_products" msgid "Products packaged by the company with emb code %s" -msgstr "" +msgstr "Produkter pakket af firmaet med EMB-koden %s" msgctxt "emb_code_s" msgid "EMB code" -msgstr "" +msgstr "EMB-kode" msgctxt "emb_codes" msgid "EMB code" -msgstr "" +msgstr "EMB-kode" msgctxt "emb_codes_example" msgid "EMB 53062, FR 62.448.034 CE, 84 R 20, 33 RECOLTANT 522" -msgstr "" +msgstr "EMB 53062, FR 62.448.034 CE, 84 R 20, 33 RECOLTANT 522" msgctxt "emb_codes_note" msgid "In Europe, code in an ellipse with the 2 country initials followed by a number and CE." -msgstr "" +msgstr "I Europa, et symbol formet som en ellipse med en 2 bogstavs landekode fulgt af et tal og CE." msgctxt "emb_codes_p" msgid "packager codes" -msgstr "" +msgstr "pakker-koder" msgctxt "emb_codes_products" msgid "Products with the emb code %s" -msgstr "" +msgstr "Produkter med EMB-koden %s" msgctxt "emb_codes_s" msgid "packager code" -msgstr "" +msgstr "pakker-kode" msgctxt "emb_codes_without_products" msgid "Products without the emb code %s" -msgstr "" +msgstr "Produkter uden EMB-koden %s" msgctxt "entry_dates_p" msgid "Entry dates" @@ -544,23 +558,23 @@ msgstr "" msgctxt "error" msgid "Error" -msgstr "Feilmelding" +msgstr "Fejlmelding" msgctxt "error_bad_login_password" msgid "Incorrect user name or password. Forgotten password?" -msgstr "Feil brukernavn eller passord. Glemt passord?" +msgstr "Fejl i brugernavn eller adgangskode. Glemt adgangskode?" msgctxt "error_database" msgid "An error occured while reading the data, try to refresh the page." -msgstr "Det oppsto en feil under lesing av data, vennligst prøv å oppdatere siden." +msgstr "Der opstod en fejl under læsning af data, prøv at genindlæse siden." msgctxt "error_different_passwords" msgid "The password and confirmation password are different." -msgstr "Passordene er forskjellige." +msgstr "Adgangskoderne er forskellige." msgctxt "error_email_already_in_use" msgid "The e-mail address is already used by another user. Maybe you already have an account? You can reset the password of your other account." -msgstr "Denne e-postadressen er allerede i bruk av en annen bruker. Kanskje du allerede har en konto? Du kan tilbakestille passordet til den eksisterende kontoen." +msgstr "Denne email-adresse er allerede i brug af en eksisterende bruger. Måske du allerede har en konto? Du kan nulstille adgangskoden på den eksisterende konto." msgctxt "error_invalid_address" msgid "Invalid address." @@ -572,15 +586,15 @@ msgstr "" msgctxt "error_invalid_email" msgid "Invalid e-mail address" -msgstr "Ugyldig epostadresse" +msgstr "Ugyldig email-adresse" msgctxt "error_invalid_password" msgid "The password needs to be a least 6 characters long." -msgstr "Passordet må være minst 6 tegn langt" +msgstr "Adgangskoden skal være mindst 6 tegn langt." msgctxt "error_invalid_user" msgid "Invalid user." -msgstr "Ugyldig bruker." +msgstr "Ugyldig bruger." msgctxt "error_invalid_username" msgid "The user name must contain only unaccented letters, digits and dashes." @@ -588,19 +602,19 @@ msgstr "" msgctxt "error_new_code_already_exists" msgid "A product already exists with the new code" -msgstr "Et produkt finnes allerede med den nye koden" +msgstr "Det findes allerede et produkt med den nye kode" msgctxt "error_no_name" msgid "You need to enter a name or nickname." -msgstr "Du må skrive inn et navn eller kallenavn." +msgstr "Du skal skrive et navn eller kaldenavn." msgctxt "error_no_permission" msgid "Permission denied." -msgstr "Tilgang nektet." +msgstr "Adgang nægtet." msgctxt "error_no_username" msgid "You need to enter a user name" -msgstr "Du må oppgi et brukernavn" +msgstr "Du skal opgive et brugernavn" msgctxt "error_reset_already_connected" msgid "You are already signed in." @@ -608,19 +622,19 @@ msgstr "Du er allerede logget på." msgctxt "error_reset_invalid_token" msgid "The reset password link is invalid or has expired." -msgstr "Lenken for tilbakestilling av passordet er ugyldig eller utløpt." +msgstr "Linket til nulstilling af adgangskoden er ugyldigt eller udløbet." msgctxt "error_reset_unknown_email" msgid "There is no account with this email" -msgstr "Det finnes ingen konto tilhørende denne e-postadressen" +msgstr "Der findes ingen konto tilhørende denne email-adresse" msgctxt "error_reset_unknown_id" msgid "This username does not exist." -msgstr "Brukernavnet eksisterer ikke." +msgstr "Dette brugernavn eksisterer ikke." msgctxt "error_username_not_available" msgid "This username already exists, please choose another." -msgstr "Dette brukernavnet er allerede tatt, velg et annet." +msgstr "Dette brugernavn er allerede anvendt, vælg et andet." msgctxt "example" msgid "Example:" @@ -632,11 +646,11 @@ msgstr "Eksempler:" msgctxt "expiration_date" msgid "Best before date" -msgstr "Best før dato" +msgstr "Bedst før dato" msgctxt "expiration_date_note" msgid "The expiration date is a way to track product changes over time and to identify the most recent version." -msgstr "Utløpsdatoen er en måte å spore produktendringer over tid, og for å identifisere den nyeste versjonen av produktet." +msgstr "Udløbsdatoen er en måde at spore produktændringer over tid, og for at identificere den nyeste udgaver af et produkt." msgctxt "explore_products_by" msgid "Drilldown into products by..." @@ -652,7 +666,7 @@ msgstr "" msgctxt "fixme_product" msgid "If the data is incomplete or incorrect, you can complete or correct it by editing this page." -msgstr "Hvis dataene er ufullstendig eller feil, kan du fullføre eller korrigere dem ved å endre denne siden." +msgstr "Hvis dataene er ufuldstændige eller forkerte, kan du tilføje eller korrigere dem ved at ændre denne side." msgctxt "footer" msgid "Legal -\n" @@ -666,11 +680,11 @@ msgstr "" msgctxt "footer_and_the_facebook_group" msgid "and the Facebook group for contributors" -msgstr "og Facebook-gruppen for bidragsytere" +msgstr "og Facebook-gruppen for bidragsydere" msgctxt "footer_blog" msgid "<> blog" -msgstr "<< site_name >> blogg" +msgstr "<< site_name >>-blog" msgctxt "footer_blog_link" msgid "https://en.blog.openfoodfacts.org" @@ -694,11 +708,11 @@ msgstr "" msgctxt "footer_discover_the_project" msgid "Discover the project" -msgstr "Oppdag prosjektet" +msgstr "Gå på opdagelse i projektet" msgctxt "footer_faq" msgid "Frequently asked questions" -msgstr "Ofte stilte spørsmål" +msgstr "Ofte Stillede Spørgsmål" msgctxt "footer_faq_link" msgid "/faq" @@ -716,11 +730,11 @@ msgstr "Installer appen" msgctxt "footer_join_the_community" msgid "Join the community" -msgstr "Bli med i fellesskapet" +msgstr "Deltag i fællesskabet" msgctxt "footer_join_us_on" msgid "Join us on %s:" -msgstr "Bli med oss på %s :" +msgstr "Deltag på %s:" msgctxt "footer_legal" msgid "Legal" @@ -744,11 +758,11 @@ msgstr "" msgctxt "footer_terms" msgid "Terms of use" -msgstr "Bruksvilkår" +msgstr "Brugsvilkår" msgctxt "footer_terms_link" msgid "/terms-of-use" -msgstr "/bruksvilkar" +msgstr "/brugsvilkaar" msgctxt "footer_who_we_are" msgid "Who we are" @@ -756,7 +770,7 @@ msgstr "Hvem vi er" msgctxt "footer_who_we_are_link" msgid "/who-we-are" -msgstr "/hvem vi er" +msgstr "/hvem-vi-er" msgctxt "footer_wiki" msgid "<> wiki (en)" @@ -776,11 +790,11 @@ msgstr "Produkt" msgctxt "generic_name" msgid "Common name" -msgstr "Vanlig navn" +msgstr "Almindeligt navn" msgctxt "generic_name_example" msgid "Chocolate bar with milk and hazelnuts" -msgstr "Sjokoladeplate med melk og hasselnøtter" +msgstr "Chokolade-bar med mælk og hasselnødder" msgctxt "goodbye" msgid "See you soon!" @@ -837,19 +851,19 @@ msgstr "Bilde av ingredienser" msgctxt "image_ingredients_note" msgid "If the picture is neat enough, the ingredients can be extracted automatically" -msgstr "Hvis bildet er klart nok, kan vi hente ut ingrediensene automatisk!" +msgstr "Hvis billedet er skarpt nok, kan ingredienserne detekteres automatiskt" msgctxt "image_nutrition" msgid "Nutrition facts picture" -msgstr "Bilde av ernæringsinnholdet" +msgstr "Billede af angivelsen af ernæringsindhold" msgctxt "image_upload_error_image_already_exists" msgid "This picture has already been sent." -msgstr "Dette bildet er allerede sendt." +msgstr "Dette billede er allerede uploadet." msgctxt "image_upload_error_image_too_small" msgid "The picture is too small. Please do not upload pictures found on the Internet and only send photos you have taken yourself." -msgstr "Bildet er for lite! Vennligst ikke last opp bilder funnet på internett, send bare bilder du har tatt selv." +msgstr "Billedet er ikke stort nok! Upload venligst ikke billeder fundet på internettet og kun billeder du selv har taget." msgctxt "image_upload_error_no_barcode_found_in_image_long" msgid "The barcode in the image could not be read, or the image contained no barcode.\n" @@ -886,35 +900,35 @@ msgstr "Ingredienser" msgctxt "ingredients_analysis" msgid "Ingredients analysis" -msgstr "Analyse av ingredienser:" +msgstr "Analyse af ingredienser" msgctxt "ingredients_analysis_note" msgid "Note: ingredients can be listed with many different names, please let us know if you think the analysis above is incorrect." -msgstr "Merk: ingredienser kan være oppført med mange forskjellige navn, vennligst gi oss beskjed hvis du tror analysen ovenfor er feil." +msgstr "Bemærk: ingredienser kan være opført med mange forskellige navne, giv os venligst besked hvis du mener der er fejl i analysen ovenfor." msgctxt "ingredients_from_or_that_may_be_from_palm_oil_p" msgid "ingredients from or that may be from palm oil" -msgstr "ingredienser som er, eller som kan stamme fra, palmeolje" +msgstr "ingredienser som er, eller som kan stamme fra, palmeolie" msgctxt "ingredients_from_or_that_may_be_from_palm_oil_s" msgid "ingredient from or that may be from palm oil" -msgstr "ingredienser som er, eller som kan stamme fra, palmeolje" +msgstr "ingrediens som er, eller som kan stamme fra, palmeolie" msgctxt "ingredients_from_palm_oil_p" msgid "ingredients from palm oil" -msgstr "ingredienser fra palmeolje" +msgstr "ingredienser fra palmeolie" msgctxt "ingredients_from_palm_oil_s" msgid "ingredient from palm oil" -msgstr "ingrediens fra palmeolje" +msgstr "ingrediens fra palmeolie" msgctxt "ingredients_n_p" msgid "Numbers of ingredients" -msgstr "Antall ingredienser" +msgstr "Antal ingredienser" msgctxt "ingredients_n_s" msgid "Number of ingredients" -msgstr "Antall ingredienser" +msgstr "Antal ingredienser" msgctxt "ingredients_p" msgid "ingredients" @@ -946,19 +960,19 @@ msgstr "" msgctxt "ingredients_that_may_be_from_palm_oil_p" msgid "ingredients that may be from palm oil" -msgstr "ingredienser som kan være fra palmeolje" +msgstr "ingredienser som kan være fra palmeolie" msgctxt "ingredients_that_may_be_from_palm_oil_s" msgid "ingredient that may be from palm oil" -msgstr "ingrediens som kan være fra palmeolje" +msgstr "ingrediens som kan være fra palmeolie" msgctxt "ingredients_without_products" msgid "Products that do not contain the ingredient %s" -msgstr "Produkter som ikke inneholder ingrediensen %s" +msgstr "Produkter som ikke indeholder ingrediensen %s" msgctxt "ios_app_badge" msgid "\"Available" -msgstr "\"tilgjengelig" +msgstr "\"Tilgængelig" msgctxt "ios_app_link" msgid "https://itunes.apple.com/en/app/open-food-facts/id588797948" @@ -966,15 +980,15 @@ msgstr "" msgctxt "known_nutrients_p" msgid "known nutrients" -msgstr "kjente næringsstoffer" +msgstr "kendte næringsstoffer" msgctxt "known_nutrients_s" msgid "known nutrient" -msgstr "kjent næringsstoff" +msgstr "kendt næringsstof" msgctxt "labels" msgid "Labels, certifications, awards" -msgstr "Etiketter, sertifiseringer, priser" +msgstr "Etiketter, certificeringer, udmærkelser" msgctxt "labels_example" msgid "Organic" @@ -998,7 +1012,7 @@ msgstr "" msgctxt "labels_tagsinput" msgid "add a label" -msgstr "tilføje en etiket" +msgstr "tilføj en etiket" msgctxt "labels_without_products" msgid "Products that do not have the label %s" @@ -1006,7 +1020,7 @@ msgstr "Produkter som ikke har etiketten %s" msgctxt "lang" msgid "Main language" -msgstr "Hovedspråk" +msgstr "Hovedsprog" msgctxt "lang_ar" msgid "Arabic" @@ -1106,7 +1120,7 @@ msgstr "" msgctxt "lang_other" msgid "other language" -msgstr "annet språk" +msgstr "andet sprog" msgctxt "lang_pl" msgid "Polish" @@ -1122,7 +1136,7 @@ msgstr "" msgctxt "lang_ro" msgid "Romanian" -msgstr "Rumensk" +msgstr "Rumænsk" msgctxt "lang_ru" msgid "Russian" @@ -1158,11 +1172,11 @@ msgstr "" msgctxt "languages_p" msgid "languages" -msgstr "språk" +msgstr "sprog" msgctxt "languages_s" msgid "language" -msgstr "språk" +msgstr "sprog" msgctxt "last_edit_dates_p" msgid "Last edit dates" @@ -1170,7 +1184,7 @@ msgstr "" msgctxt "last_edit_dates_s" msgid "Last edit date" -msgstr "Sist endret dato" +msgstr "Dato for seneste ændring" msgctxt "last_image_dates_p" msgid "Last picture dates" @@ -1200,19 +1214,19 @@ msgstr "" msgctxt "login_and_add_product" msgid "Sign-in and add the product" -msgstr "Logg deg inn og legg til produktet" +msgstr "Log ind og tilføj produktet" msgctxt "login_and_edit_product" msgid "Sign-in and edit the product" -msgstr "Logg inn og redigere produktet" +msgstr "Log ind og rediger produktet" msgctxt "login_create_your_account" msgid "Create your account." -msgstr "Opprett konto" +msgstr "Opret konto." msgctxt "login_not_registered_yet" msgid "Not registered yet?" -msgstr "Ikke registrert ennå?" +msgstr "Ikke oprettet endnu?" msgctxt "login_register_content" msgid "

    Sign-in to add or edit products.

    \n\n" @@ -1229,7 +1243,7 @@ msgstr "" msgctxt "login_register_title" msgid "Sign-in" -msgstr "Logg inn" +msgstr "Log ind" msgctxt "login_to_add_and_edit_products" msgid "Sign-in to add or edit products." @@ -1242,7 +1256,7 @@ msgstr "" msgctxt "login_username_email" msgid "Username or e-mail address:" -msgstr "Brukernavn eller e-post adresse:" +msgstr "Brugernavn eller email-adresse:" msgctxt "low" msgid "low" @@ -1302,7 +1316,7 @@ msgstr "" msgctxt "menu_add_a_product" msgid "Add a product" -msgstr "Legg til et produkt" +msgstr "Tilføj et produkt" msgctxt "menu_add_a_product_link" msgid "/add-a-product" @@ -1310,15 +1324,15 @@ msgstr "" msgctxt "menu_contribute" msgid "Contribute" -msgstr "Bidra" +msgstr "Bidrag" msgctxt "menu_contribute_link" msgid "/contribute" -msgstr "/bidra" +msgstr "/bidrag" msgctxt "menu_discover" msgid "Discover" -msgstr "Opdage" +msgstr "Opdag" msgctxt "menu_discover_link" msgid "/discover" @@ -1326,19 +1340,19 @@ msgstr "" msgctxt "mission_" msgid "Mission: " -msgstr "Oppdrag: " +msgstr "Mission: " msgctxt "mission_accomplished_by" msgid "This mission has been completed by:" -msgstr "Dette oppdraget har blitt fullført av:" +msgstr "Denne mission er fuldført af:" msgctxt "mission_accomplished_by_n" msgid "Completed by %d persons." -msgstr "Fullført av %d personer." +msgstr "Fuldført af %d personer." msgctxt "mission_accomplished_by_nobody" msgid "Be the first to complete this mission!" -msgstr "Bli den første til å fullføre dette oppdraget!" +msgstr "Bliv den første til at fuldføre denne mission!" msgctxt "mission_goal" msgid "Goal:" @@ -1346,7 +1360,7 @@ msgstr "Mål:" msgctxt "missions" msgid "Missions" -msgstr "Oppdrag:" +msgstr "Missioner" msgctxt "moderate" msgid "moderate" @@ -1358,11 +1372,11 @@ msgstr "" msgctxt "months" msgid "['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']" -msgstr "[ 'Januar', 'Februar', 'Mars', 'April', 'Mai', 'Juni', 'Juli', 'August', 'September','Oktober','November','Desember']" +msgstr "[ 'Januar', 'Februar', 'Marts', 'April', 'Maj', 'Juni', 'Juli', 'August', 'September','Oktober','November','December']" msgctxt "move_images_to_another_product" msgid "Move the images to another product" -msgstr "Flytt bildene til et annet produkt" +msgstr "Flyt billederne til et andet produkt" msgctxt "n_products" msgid "%d products" @@ -1374,35 +1388,35 @@ msgstr "Navn" msgctxt "names" msgid "Names" -msgstr "Navn" +msgstr "Navne" msgctxt "new_code" msgid "If the barcode is not correct, please correct it here:" -msgstr "Hvis strekkoden ikke er riktig, kan du rette det opp her:" +msgstr "Hvis stregkoden ikke er rigtig, kan du korrigere det her:" msgctxt "new_code_note" msgid "For products without a barcode, an internal code is automatically set." -msgstr "For produkter uten strekkode, blir en intern kode automatisk gitt." +msgstr "For produkter uden stregkode, genereres en intern kode automatiskt." msgctxt "newsletter_description" msgid "Subscribe to the newsletter (2 emails per month maximum)" -msgstr "Abonner på vårt nyhetsbrev (Maks to e-poster per måned)" +msgstr "Abonner på vores nyhedsbrev (maksimalt to emails pr. måned)" msgctxt "next" msgid "Next" -msgstr "Neste" +msgstr "Næste" msgctxt "no_barcode" msgid "Product without barcode" -msgstr "Produkt uten strekkode" +msgstr "Produkt uden stregkode" msgctxt "no_nutrition_data" msgid "Nutrition facts are not specified on the product." -msgstr "Ernæringsinnhold er ikke spesifisert på produktet." +msgstr "Ernæringsindhold er ikke specificeret på produktet." msgctxt "no_product_for_barcode" msgid "No product listed for barcode %s." -msgstr "Ingen produkter oppført for strekkode %s ." +msgstr "Ingen produkter fundet med stregkode %s." msgctxt "no_products" msgid "No products." @@ -1410,15 +1424,15 @@ msgstr "Ingen produkter." msgctxt "not_saved" msgid "Error while saving, please retry." -msgstr "Feil under lagring, vennligst prøv igjen." +msgstr "Fejl under gemning, prøv igen." msgctxt "number_of_additives" msgid "Number of additives" -msgstr "Antall tilsetningsstoffer" +msgstr "Antal tilsætningsstoffer" msgctxt "number_of_products" msgid "Number of products" -msgstr "Antall produkter" +msgstr "Antal produkter" msgctxt "nutrient_in_quantity" msgid "%s in %s" @@ -1458,11 +1472,11 @@ msgstr "" msgctxt "nutrition_alt" msgid "Nutrition facts" -msgstr "Ernæringsinnhold" +msgstr "Ernæringsindhold" msgctxt "nutrition_data" msgid "Nutrition facts" -msgstr "Ernæringsinnhold" +msgstr "Ernæringsindhold" msgctxt "nutrition_data_average" msgid "Average nutrition facts for the %d products of the %s category for which nutrition facts are known (out of %d products)." @@ -1534,7 +1548,7 @@ msgstr "" msgctxt "nutrition_data_table" msgid "Nutrition facts" -msgstr "Ernæringsinnhold" +msgstr "Ernæringsindhold" msgctxt "nutrition_data_table_note" msgid "The table lists by default nutriments that are often specified. Leave the field blank if it's not on the label.
    You can add extra nutriments (vitamins, minerals, cholesterol etc.)\n" @@ -1601,7 +1615,7 @@ msgstr "" msgctxt "origins_tagsinput" msgid "add an origin" -msgstr "tilføje en oprindelse" +msgstr "tilføj en oprindelse" msgctxt "origins_without_products" msgid "Products without ingredients originating from %s" @@ -1653,7 +1667,7 @@ msgstr "" msgctxt "password" msgid "Password" -msgstr "Adgangskode:" +msgstr "Adgangskode" msgctxt "password_confirm" msgid "Confirm password" @@ -1817,7 +1831,7 @@ msgstr "" msgctxt "product_js_image_save" msgid "Validate and/or resize image" -msgstr "Validere og/eller ændre størrelsen på billedet" +msgstr "Valider og/eller ændr størrelsen på billedet" msgctxt "product_js_image_saved" msgid "Image saved" @@ -1917,7 +1931,7 @@ msgstr "" msgctxt "purchase_places_products" msgid "Products sold in %s" -msgstr "Produkter selges i %s" +msgstr "Produkter sælges i %s" msgctxt "purchase_places_s" msgid "purchase place" @@ -1929,7 +1943,7 @@ msgstr "tilføj et sted" msgctxt "purchase_places_without_products" msgid "Products not sold in %s" -msgstr "Produkter selges ikke i %s" +msgstr "Produkter sælges ikke i %s" msgctxt "quantity" msgid "Quantity" @@ -2286,7 +2300,7 @@ msgstr "" msgctxt "session_title" msgid "Sign-in" -msgstr "Logg inn" +msgstr "Log ind" msgctxt "share" msgid "Share" @@ -2370,7 +2384,7 @@ msgstr "" msgctxt "stores_tagsinput" msgid "add a store" -msgstr "tilføje en butik" +msgstr "tilføj en butik" msgctxt "stores_without_products" msgid "Products not bought at %s" @@ -2502,7 +2516,7 @@ msgstr "" msgctxt "view_list_for_products_from_the_entire_world" msgid "View the list for matching products from the entire world" -msgstr "Vis listen for at matchede produkter fra hele verden" +msgstr "Vis listen for matchende produkter fra hele verden" msgctxt "view_products_from_the_entire_world" msgid "View matching products from the entire world" diff --git a/po/common/de.po b/po/common/de.po index ecef4844ff0a9..508627e45710a 100644 --- a/po/common/de.po +++ b/po/common/de.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: de_DE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:55-0400\n" +"PO-Revision-Date: 2017-09-14 06:21-0400\n" "Language-Team: German\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -72,20 +72,7 @@ msgid "Hello ,\n\n" "Stéphane and the Open Food Facts team\n" "https://openfoodfacts.org\n" "https://twitter.com/OpenFoodFacts\n" -msgstr "Hallo ,\n\n" -"Vielen Dank, dass Sie http://openfoodfacts.org beigetreten sind.\n" -"Hier ist Ihr Benutzername:\n\n" -"Benutzername: \n\n" -"Sie können sich jetzt auf der Website anmelden und Produkte hinzufügen und bearbeiten.\n\n" -"<> ist ein gemeinschaftliches Projekt wo Sie mehr einbringen können als nur neue Produkte: Ihre Energie, Ihren Enthusiasmus und Ihre Ideen!\n" -"Für Diskussionen zwischen den Mitwirkenden und um das Projekt voran zu bringen, nutzen wir ein sehr komfortables Nachrichtensystem namens Slack: http://slack.openfoodfacts.org\n\n" -"Sie können auch der Facebook-Gruppe für Mitwirkende beitreten:\n" -"https://www.facebook.com/groups/374350705955208/\n\n" -"Neu: Wir haben mit Open Beauty Facts jetzt auch begonnen, eine Datenbank für Kosmetika zu erstellen für: Seife, Zahnpasta, Make-up usw.: https://openbeautyfacts.org\n\n" -"Vielen, vielen Dank!\n\n" -"Stéphane und das Open Food Facts Team\n" -"https://openfoodfacts.org\n" -"https://twitter.com/OpenFoodFacts\n" +msgstr "" msgctxt "add_user_email_subject" msgid "Thanks for joining <>" @@ -2004,16 +1991,8 @@ msgid "Hello ,\n\n" "\n\n" "See you soon,\n\n" "Stephane\n" -"http://openfoodfacts.org\n" -msgstr "Hallo ,\n\n" -"Sie haben eine Passwort-Zurücksetzung auf http://openfoodfacts.org\n\n" -"für folgenden Benutzer angefordert: \n\n" -"Um die Passwort-Zurücksetzung abzuschließen, klicken Sie auf den Link unten.\n" -"Falls Sie keine Zurücksetzung angefordert haben, ignorieren Sie diese E-Mail einfach.\n\n" -"\n\n" -"Mit freundlichen Grüßen\n\n" -"Stephane\n" -"http://openfoodfacts.org\n" +"https://openfoodfacts.org\n" +msgstr "" msgctxt "reset_password_email_subject" msgid "Reset of your password on <>" @@ -2585,7 +2564,7 @@ msgstr "\"Windows\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2009,7 +2009,7 @@ msgstr "" msgctxt "save" msgid "Save" -msgstr "" +msgstr "सेव़" msgctxt "saved" msgid "Saved." @@ -2314,7 +2314,7 @@ msgstr "" msgctxt "site_name" msgid "Open Food Facts" -msgstr "" +msgstr "ओपन फ़ूड फैक्ट्स" msgctxt "sort_by" msgid "Sort by" diff --git a/po/openbeautyfacts/hi.po b/po/openbeautyfacts/hi.po index e81a5de007a14..cd3725ed719d0 100644 --- a/po/openbeautyfacts/hi.po +++ b/po/openbeautyfacts/hi.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: hi_IN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:33-0400\n" +"PO-Revision-Date: 2017-09-13 16:00-0400\n" "Language-Team: Hindi\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -46,7 +46,7 @@ msgstr "" msgctxt "site_name" msgid "Open Beauty Facts" -msgstr "" +msgstr "ओपन ब्यूटी फैक्ट्स" msgctxt "tagline" msgid "Open Beauty Facts gathers information and data on cosmetic products from around the world." diff --git a/po/tags/de.po b/po/tags/de.po index b55e175ad48a2..767ed2c5ed5ac 100644 --- a/po/tags/de.po +++ b/po/tags/de.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: de_DE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:33-0400\n" +"PO-Revision-Date: 2017-09-14 13:50-0400\n" "Language-Team: German\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -222,7 +222,7 @@ msgstr "missionen" msgctxt "missions:singular" msgid "mission" -msgstr "" +msgstr "mission" msgctxt "nutrient_levels:plural" msgid "nutrient-levels" From 1282fd9cbb250abd4072caea853c853c57688ceb Mon Sep 17 00:00:00 2001 From: Pierre Slamich Date: Sun, 24 Sep 2017 11:24:39 +0200 Subject: [PATCH 17/21] New Crowdin translations (#893) * New translations common.pot (Danish) * New translations common.pot (Danish) * New translations common.pot (Danish) * New translations common.pot (Danish) * New translations common.pot (Danish) * New translations openpetfoodfacts.pot (Chinese Traditional) * New translations tags.pot (Chinese Traditional) * New translations common.pot (Serbian (Cyrillic)) * New translations openfoodfacts.pot (Serbian (Cyrillic)) * New translations common.pot (Scottish Gaelic) * New translations openfoodfacts.pot (Scottish Gaelic) * New translations common.pot (Serbian (Latin)) * New translations openfoodfacts.pot (Serbo-Croatian) * New translations common.pot (Serbo-Croatian) * New translations openfoodfacts.pot (Serbian (Latin)) * New translations openfoodfacts.pot (Scots) * New translations openfoodfacts.pot (Sanskrit) * New translations common.pot (Santali) * New translations common.pot (Sanskrit) * New translations openfoodfacts.pot (Sango) * New translations openfoodfacts.pot (Santali) * New translations common.pot (Scots) * New translations openfoodfacts.pot (Sardinian) * New translations common.pot (Sardinian) * New translations common.pot (Seychellois Creole) * New translations common.pot (Slovenian) * New translations openfoodfacts.pot (Slovenian) * New translations common.pot (Slovak) * New translations openfoodfacts.pot (Slovak) * New translations common.pot (Somali) * New translations openfoodfacts.pot (Songhay) * New translations common.pot (Songhay) * New translations openfoodfacts.pot (Somali) * New translations openfoodfacts.pot (Sinhala) * New translations openfoodfacts.pot (Shona) * New translations common.pot (Sichuan Yi) * New translations common.pot (Shona) * New translations openfoodfacts.pot (Seychellois Creole) * New translations openfoodfacts.pot (Sichuan Yi) * New translations common.pot (Sinhala) * New translations openfoodfacts.pot (Sindhi) * New translations common.pot (Sindhi) * New translations common.pot (Sango) * New translations common.pot (Norwegian Nynorsk) * New translations openfoodfacts.pot (Norwegian Nynorsk) * New translations openfoodfacts.pot (Norwegian Bokmal) * New translations common.pot (Norwegian Bokmal) * New translations common.pot (Persian) * New translations openfoodfacts.pot (Persian) * New translations common.pot (Occitan) * New translations openfoodfacts.pot (Occitan) * New translations openfoodfacts.pot (Norwegian) * New translations openfoodfacts.pot (Maori) * New translations common.pot (Maori) * New translations openfoodfacts.pot (Maltese) * New translations common.pot (Marathi) * New translations openfoodfacts.pot (Mongolian) * New translations common.pot (Norwegian) * New translations common.pot (Mongolian) * New translations openfoodfacts.pot (Marathi) * New translations common.pot (Polish) * New translations common.pot (Romansh) * New translations openfoodfacts.pot (Romansh) * New translations openfoodfacts.pot (Romanian) * New translations common.pot (Romanian) * New translations common.pot (Rusyn) * New translations openfoodfacts.pot (Rusyn) * New translations common.pot (Russian) * New translations openfoodfacts.pot (Russian) * New translations openfoodfacts.pot (Quechua) * New translations openfoodfacts.pot (Portuguese) * New translations common.pot (Portuguese) * New translations openfoodfacts.pot (Polish) * New translations common.pot (Portuguese, Brazilian) * New translations openfoodfacts.pot (Punjabi) * New translations common.pot (Quechua) * New translations common.pot (Punjabi) * New translations openfoodfacts.pot (Portuguese, Brazilian) * New translations common.pot (Southern Ndebele) * New translations common.pot (Venda) * New translations openfoodfacts.pot (Venda) * New translations common.pot (Valencian) * New translations openfoodfacts.pot (Valencian) * New translations common.pot (Venetian) * New translations openfoodfacts.pot (Vietnamese) * New translations common.pot (Vietnamese) * New translations openfoodfacts.pot (Venetian) * New translations openfoodfacts.pot (Uzbek) * New translations openfoodfacts.pot (Turkish) * New translations common.pot (Ukrainian) * New translations common.pot (Turkish) * New translations common.pot (Uzbek) * New translations common.pot (Uyghur) * New translations common.pot (Walloon) * New translations common.pot (Zeelandic) * New translations common.pot (Yoruba) * New translations common.pot (Zulu) * New translations common.pot (LOLCAT) * New translations common.pot (Wolof) * New translations common.pot (Welsh) * New translations openfoodfacts.pot (Walloon) * New translations openfoodfacts.pot (Wolof) * New translations common.pot (Yiddish) * New translations openfoodfacts.pot (Xhosa) * New translations common.pot (Xhosa) * New translations common.pot (Tswana) * New translations common.pot (Swedish) * New translations openbeautyfacts.pot (Swedish) * New translations openfoodfacts.pot (Swedish) * New translations openpetfoodfacts.pot (Swedish) * New translations common.pot (Swati) * New translations openfoodfacts.pot (Swati) * New translations common.pot (Tagalog) * New translations openfoodfacts.pot (Tahitian) * New translations common.pot (Tahitian) * New translations openfoodfacts.pot (Tagalog) * New translations openfoodfacts.pot (Swahili) * New translations openfoodfacts.pot (Southern Sami) * New translations common.pot (Southern Sotho) * New translations common.pot (Southern Sami) * New translations openfoodfacts.pot (Southern Ndebele) * New translations openfoodfacts.pot (Southern Sotho) * New translations common.pot (Swahili) * New translations openfoodfacts.pot (Spanish) * New translations common.pot (Spanish) * New translations common.pot (Tajik) * New translations common.pot (Tibetan) * New translations openfoodfacts.pot (Tibetan) * New translations common.pot (Thai) * New translations openfoodfacts.pot (Thai) * New translations common.pot (Tigrinya) * New translations openfoodfacts.pot (Tsonga) * New translations common.pot (Tsonga) * New translations openfoodfacts.pot (Tigrinya) * New translations openfoodfacts.pot (Telugu) * New translations openfoodfacts.pot (Talossan) * New translations common.pot (Tamil) * New translations common.pot (Talossan) * New translations openfoodfacts.pot (Tajik) * New translations openfoodfacts.pot (Tamil) * New translations common.pot (Telugu) * New translations openfoodfacts.pot (Tatar) * New translations common.pot (Tatar) * New translations common.pot (Maltese) * New translations common.pot (Chinese Simplified) * New translations openfoodfacts.pot (Chinese Simplified) * New translations openfoodfacts.pot (Cherokee) * New translations common.pot (Cherokee) * New translations common.pot (Chinese Traditional, Hong Kong) * New translations openfoodfacts.pot (Chinese Traditional, Hong Kong) * New translations common.pot (Chinese Traditional) * New translations openfoodfacts.pot (Chinese Traditional) * New translations openfoodfacts.pot (Chechen) * New translations openfoodfacts.pot (Bulgarian) * New translations common.pot (Bulgarian) * New translations openfoodfacts.pot (Breton) * New translations common.pot (Burmese) * New translations openfoodfacts.pot (Catalan) * New translations common.pot (Chechen) * New translations common.pot (Catalan) * New translations openfoodfacts.pot (Burmese) * New translations tags.pot (Chinese Traditional, Hong Kong) * New translations common.pot (Chuvash) * New translations common.pot (Dutch) * New translations openfoodfacts.pot (Dutch) * New translations openfoodfacts.pot (Danish) * New translations common.pot (Danish) * New translations common.pot (English, Australia) * New translations openbeautyfacts.pot (English, Australia) * New translations openfoodfacts.pot (English, Australia) * New translations openpetfoodfacts.pot (English, Australia) * New translations common.pot (Dutch, Belgium) * New translations openfoodfacts.pot (Dutch, Belgium) * New translations openfoodfacts.pot (Czech) * New translations openfoodfacts.pot (Cornish) * New translations common.pot (Cornish) * New translations openfoodfacts.pot (Chuvash) * New translations common.pot (Corsican) * New translations openfoodfacts.pot (Croatian) * New translations common.pot (Czech) * New translations common.pot (Croatian) * New translations openfoodfacts.pot (Corsican) * New translations common.pot (Breton) * New translations common.pot (Amharic) * New translations openfoodfacts.pot (Albanian) * New translations common.pot (Albanian) * New translations openfoodfacts.pot (Amharic) * New translations common.pot (Armenian) * New translations openfoodfacts.pot (Armenian) * New translations common.pot (Arabic) * New translations common.pot (Akan, Twi) * New translations common.pot (Afar) * New translations openbeautyfacts.pot (Afar) * New translations openfoodfacts.pot (Afar) * New translations common.pot (Acholi) * New translations common.pot (Afrikaans) * New translations common.pot (Akan) * New translations common.pot (Assamese) * New translations common.pot (Bengali) * New translations common.pot (Belarusian) * New translations common.pot (Bosnian) * New translations common.pot (Berber) * New translations common.pot (Asturian) * New translations common.pot (Azerbaijani) * New translations common.pot (Basque) * New translations common.pot (Bambara) * New translations tags.pot (English, Australia) * New translations common.pot (English, United Kingdom) * New translations common.pot (Kazakh) * New translations common.pot (Kannada) * New translations common.pot (Korean) * New translations openbeautyfacts.pot (Korean) * New translations common.pot (Khmer) * New translations common.pot (Italian) * New translations common.pot (Japanese) * New translations common.pot (Kabyle) * New translations common.pot (Javanese) * New translations common.pot (Kurdish) * New translations common.pot (Malagasy) * New translations common.pot (Luxembourgish) * New translations common.pot (Malayalam) * New translations openfoodfacts.pot (Malayalam) * New translations common.pot (Malay) * New translations common.pot (Kyrgyz) * New translations common.pot (Lao) * New translations common.pot (Lithuanian) * New translations common.pot (Latvian) * New translations common.pot (Irish) * New translations common.pot (Flemish) * New translations common.pot (Finnish) * New translations common.pot (Georgian) * New translations common.pot (Galician) * New translations common.pot (Esperanto) * New translations tags.pot (English, United Kingdom) * New translations openbeautyfacts.pot (English, United Kingdom) * New translations openfoodfacts.pot (English, United Kingdom) * New translations openpetfoodfacts.pot (English, United Kingdom) * New translations common.pot (Estonian) * New translations common.pot (Filipino) * New translations common.pot (Faroese) * New translations common.pot (German) * New translations common.pot (Icelandic) * New translations common.pot (Hungarian) * New translations common.pot (Inuktitut) * New translations common.pot (Indonesian) * New translations common.pot (Greek) * New translations common.pot (Gujarati) * New translations common.pot (Hindi) * New translations common.pot (Hebrew) --- po/common/aa.po | 6 +- po/common/ach.po | 6 +- po/common/af.po | 6 +- po/common/ak.po | 6 +- po/common/am.po | 6 +- po/common/ar.po | 6 +- po/common/as.po | 6 +- po/common/ast.po | 6 +- po/common/az.po | 6 +- po/common/be.po | 6 +- po/common/ber.po | 6 +- po/common/bg.po | 6 +- po/common/bm.po | 6 +- po/common/bn.po | 6 +- po/common/bo.po | 6 +- po/common/br.po | 6 +- po/common/bs.po | 6 +- po/common/ca.po | 6 +- po/common/ce.po | 6 +- po/common/chr.po | 6 +- po/common/co.po | 6 +- po/common/crs.po | 6 +- po/common/cs.po | 6 +- po/common/cv.po | 6 +- po/common/cy.po | 6 +- po/common/da.po | 6 +- po/common/de.po | 6 +- po/common/el.po | 6 +- po/common/en_AU.po | 1225 ++++++++++++++++----------------- po/common/en_GB.po | 1238 +++++++++++++++++----------------- po/common/eo.po | 6 +- po/common/es.po | 6 +- po/common/et.po | 6 +- po/common/eu.po | 6 +- po/common/fa.po | 6 +- po/common/fi.po | 6 +- po/common/fil.po | 6 +- po/common/fo.po | 6 +- po/common/ga.po | 6 +- po/common/gd.po | 6 +- po/common/gl.po | 6 +- po/common/gu.po | 6 +- po/common/he.po | 6 +- po/common/hi.po | 6 +- po/common/hr.po | 6 +- po/common/hu.po | 6 +- po/common/hy.po | 6 +- po/common/id.po | 6 +- po/common/ii.po | 6 +- po/common/is.po | 6 +- po/common/it.po | 6 +- po/common/iu.po | 6 +- po/common/ja.po | 6 +- po/common/jv.po | 6 +- po/common/ka.po | 6 +- po/common/kab.po | 6 +- po/common/kk.po | 6 +- po/common/km.po | 6 +- po/common/kn.po | 6 +- po/common/ko.po | 6 +- po/common/ku.po | 6 +- po/common/kw.po | 6 +- po/common/ky.po | 6 +- po/common/lb.po | 6 +- po/common/lo.po | 6 +- po/common/lol.po | 6 +- po/common/lt.po | 6 +- po/common/lv.po | 6 +- po/common/mg.po | 6 +- po/common/mi.po | 6 +- po/common/ml.po | 6 +- po/common/mn.po | 6 +- po/common/mr.po | 6 +- po/common/ms.po | 6 +- po/common/mt.po | 6 +- po/common/my.po | 6 +- po/common/nb.po | 6 +- po/common/nl_BE.po | 6 +- po/common/nl_NL.po | 6 +- po/common/nn.po | 6 +- po/common/no.po | 6 +- po/common/nr.po | 6 +- po/common/oc.po | 6 +- po/common/pa.po | 6 +- po/common/pl.po | 6 +- po/common/pt_BR.po | 6 +- po/common/pt_PT.po | 6 +- po/common/qu.po | 6 +- po/common/rm.po | 6 +- po/common/ro.po | 6 +- po/common/ru.po | 6 +- po/common/ry.po | 6 +- po/common/sa.po | 6 +- po/common/sat.po | 6 +- po/common/sc.po | 6 +- po/common/sco.po | 6 +- po/common/sd.po | 6 +- po/common/sg.po | 6 +- po/common/sh.po | 6 +- po/common/si.po | 6 +- po/common/sk.po | 6 +- po/common/sl.po | 6 +- po/common/sma.po | 6 +- po/common/sn.po | 6 +- po/common/so.po | 6 +- po/common/son.po | 6 +- po/common/sq.po | 6 +- po/common/sr.po | 6 +- po/common/sr_CS.po | 6 +- po/common/ss.po | 6 +- po/common/st.po | 6 +- po/common/sv.po | 6 +- po/common/sw.po | 6 +- po/common/ta.po | 6 +- po/common/te.po | 6 +- po/common/tg.po | 6 +- po/common/th.po | 6 +- po/common/ti.po | 6 +- po/common/tl.po | 6 +- po/common/tn.po | 6 +- po/common/tr.po | 6 +- po/common/ts.po | 6 +- po/common/tt.po | 6 +- po/common/tw.po | 6 +- po/common/ty.po | 6 +- po/common/tzl.po | 6 +- po/common/ug.po | 6 +- po/common/uk.po | 6 +- po/common/uz.po | 6 +- po/common/val.po | 6 +- po/common/ve.po | 6 +- po/common/vec.po | 6 +- po/common/vi.po | 6 +- po/common/vls.po | 6 +- po/common/wa.po | 6 +- po/common/wo.po | 6 +- po/common/xh.po | 6 +- po/common/yi.po | 6 +- po/common/yo.po | 6 +- po/common/zea.po | 6 +- po/common/zh_CN.po | 6 +- po/common/zh_HK.po | 6 +- po/common/zh_TW.po | 6 +- po/common/zu.po | 6 +- po/openbeautyfacts/aa.po | 5 +- po/openbeautyfacts/en_AU.po | 16 +- po/openbeautyfacts/en_GB.po | 16 +- po/openbeautyfacts/ko.po | 5 +- po/openbeautyfacts/sv.po | 3 +- po/openfoodfacts/aa.po | 3 +- po/openfoodfacts/am.po | 6 +- po/openfoodfacts/bg.po | 6 +- po/openfoodfacts/bo.po | 6 +- po/openfoodfacts/br.po | 6 +- po/openfoodfacts/ca.po | 6 +- po/openfoodfacts/ce.po | 6 +- po/openfoodfacts/chr.po | 6 +- po/openfoodfacts/co.po | 6 +- po/openfoodfacts/crs.po | 6 +- po/openfoodfacts/cs.po | 6 +- po/openfoodfacts/cv.po | 6 +- po/openfoodfacts/da.po | 6 +- po/openfoodfacts/en_AU.po | 8 +- po/openfoodfacts/en_GB.po | 8 +- po/openfoodfacts/es.po | 6 +- po/openfoodfacts/fa.po | 6 +- po/openfoodfacts/gd.po | 6 +- po/openfoodfacts/hr.po | 6 +- po/openfoodfacts/hy.po | 6 +- po/openfoodfacts/ii.po | 6 +- po/openfoodfacts/kw.po | 6 +- po/openfoodfacts/mi.po | 6 +- po/openfoodfacts/ml.po | 6 +- po/openfoodfacts/mn.po | 6 +- po/openfoodfacts/mr.po | 6 +- po/openfoodfacts/mt.po | 6 +- po/openfoodfacts/my.po | 6 +- po/openfoodfacts/nb.po | 6 +- po/openfoodfacts/nl_BE.po | 6 +- po/openfoodfacts/nl_NL.po | 6 +- po/openfoodfacts/nn.po | 6 +- po/openfoodfacts/no.po | 6 +- po/openfoodfacts/nr.po | 6 +- po/openfoodfacts/oc.po | 6 +- po/openfoodfacts/pa.po | 6 +- po/openfoodfacts/pl.po | 6 +- po/openfoodfacts/pt_BR.po | 6 +- po/openfoodfacts/pt_PT.po | 6 +- po/openfoodfacts/qu.po | 6 +- po/openfoodfacts/rm.po | 6 +- po/openfoodfacts/ro.po | 6 +- po/openfoodfacts/ru.po | 6 +- po/openfoodfacts/ry.po | 6 +- po/openfoodfacts/sa.po | 6 +- po/openfoodfacts/sat.po | 6 +- po/openfoodfacts/sc.po | 6 +- po/openfoodfacts/sco.po | 6 +- po/openfoodfacts/sd.po | 6 +- po/openfoodfacts/sg.po | 6 +- po/openfoodfacts/sh.po | 6 +- po/openfoodfacts/si.po | 6 +- po/openfoodfacts/sk.po | 6 +- po/openfoodfacts/sl.po | 6 +- po/openfoodfacts/sma.po | 6 +- po/openfoodfacts/sn.po | 6 +- po/openfoodfacts/so.po | 6 +- po/openfoodfacts/son.po | 6 +- po/openfoodfacts/sq.po | 6 +- po/openfoodfacts/sr.po | 6 +- po/openfoodfacts/sr_CS.po | 6 +- po/openfoodfacts/ss.po | 6 +- po/openfoodfacts/st.po | 6 +- po/openfoodfacts/sv.po | 6 +- po/openfoodfacts/sw.po | 6 +- po/openfoodfacts/ta.po | 6 +- po/openfoodfacts/te.po | 6 +- po/openfoodfacts/tg.po | 6 +- po/openfoodfacts/th.po | 6 +- po/openfoodfacts/ti.po | 6 +- po/openfoodfacts/tl.po | 6 +- po/openfoodfacts/tr.po | 6 +- po/openfoodfacts/ts.po | 6 +- po/openfoodfacts/tt.po | 6 +- po/openfoodfacts/ty.po | 6 +- po/openfoodfacts/tzl.po | 6 +- po/openfoodfacts/uz.po | 6 +- po/openfoodfacts/val.po | 6 +- po/openfoodfacts/ve.po | 6 +- po/openfoodfacts/vec.po | 6 +- po/openfoodfacts/vi.po | 6 +- po/openfoodfacts/wa.po | 6 +- po/openfoodfacts/wo.po | 6 +- po/openfoodfacts/xh.po | 6 +- po/openfoodfacts/zh_CN.po | 6 +- po/openfoodfacts/zh_HK.po | 6 +- po/openfoodfacts/zh_TW.po | 6 +- po/openpetfoodfacts/en_AU.po | 10 +- po/openpetfoodfacts/en_GB.po | 6 +- po/openpetfoodfacts/sv.po | 3 +- po/openpetfoodfacts/zh_TW.po | 4 +- po/tags/en_AU.po | 74 +- po/tags/en_GB.po | 78 +-- po/tags/zh_HK.po | 4 +- po/tags/zh_TW.po | 4 +- 244 files changed, 2118 insertions(+), 1948 deletions(-) diff --git a/po/common/aa.po b/po/common/aa.po index b6360b368704a..cbb2803076a59 100644 --- a/po/common/aa.po +++ b/po/common/aa.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: aa_ER\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:49-0400\n" +"PO-Revision-Date: 2017-09-22 04:10-0400\n" "Language-Team: Afar\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/ach.po b/po/common/ach.po index 4eba552bcfa56..603824f0a4431 100644 --- a/po/common/ach.po +++ b/po/common/ach.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ach_UG\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:49-0400\n" +"PO-Revision-Date: 2017-09-22 04:10-0400\n" "Language-Team: Acholi\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/af.po b/po/common/af.po index 0cdb1aab247fd..fb5806d26d611 100644 --- a/po/common/af.po +++ b/po/common/af.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: af_ZA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:49-0400\n" +"PO-Revision-Date: 2017-09-22 04:10-0400\n" "Language-Team: Afrikaans\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/ak.po b/po/common/ak.po index e8a481ef5fa4e..710a6531b4bd4 100644 --- a/po/common/ak.po +++ b/po/common/ak.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ak_GH\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:50-0400\n" +"PO-Revision-Date: 2017-09-22 04:10-0400\n" "Language-Team: Akan\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/am.po b/po/common/am.po index 84f9c965d783c..9c4edbf67cf25 100644 --- a/po/common/am.po +++ b/po/common/am.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: am_ET\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:49-0400\n" +"PO-Revision-Date: 2017-09-22 04:10-0400\n" "Language-Team: Amharic\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/ar.po b/po/common/ar.po index 919a964618b17..1dffc9c4e09c6 100644 --- a/po/common/ar.po +++ b/po/common/ar.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ar_SA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-05 07:22-0400\n" +"PO-Revision-Date: 2017-09-22 04:10-0400\n" "Language-Team: Arabic\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" @@ -2650,3 +2650,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/as.po b/po/common/as.po index 50afb8d5a2766..0f5013058db6d 100644 --- a/po/common/as.po +++ b/po/common/as.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: as_IN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:50-0400\n" +"PO-Revision-Date: 2017-09-22 04:10-0400\n" "Language-Team: Assamese\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/ast.po b/po/common/ast.po index d68c7e3dc6c96..ad90911380ef4 100644 --- a/po/common/ast.po +++ b/po/common/ast.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ast_ES\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:50-0400\n" +"PO-Revision-Date: 2017-09-22 04:11-0400\n" "Language-Team: Asturian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/az.po b/po/common/az.po index bc9192400bfd9..c884d11cde0ba 100644 --- a/po/common/az.po +++ b/po/common/az.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: az_AZ\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:50-0400\n" +"PO-Revision-Date: 2017-09-22 04:11-0400\n" "Language-Team: Azerbaijani\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/be.po b/po/common/be.po index b9b1bf3cbe918..edd6b61f19872 100644 --- a/po/common/be.po +++ b/po/common/be.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: be_BY\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:50-0400\n" +"PO-Revision-Date: 2017-09-22 04:11-0400\n" "Language-Team: Belarusian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/ber.po b/po/common/ber.po index 32d1015121134..42dcb23da14ec 100644 --- a/po/common/ber.po +++ b/po/common/ber.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ber_DZ\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:50-0400\n" +"PO-Revision-Date: 2017-09-22 04:11-0400\n" "Language-Team: Berber\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=((n>=0 && n<=1) || (n>=11 && n<=99) ? 0 : 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/bg.po b/po/common/bg.po index a829e71f63a58..7c5bed6a81e44 100644 --- a/po/common/bg.po +++ b/po/common/bg.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: bg_BG\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:48-0400\n" +"PO-Revision-Date: 2017-09-22 04:08-0400\n" "Language-Team: Bulgarian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/bm.po b/po/common/bm.po index e8639046395de..529ec9820b0d5 100644 --- a/po/common/bm.po +++ b/po/common/bm.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: bm_ML\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:53-0400\n" +"PO-Revision-Date: 2017-09-22 04:11-0400\n" "Language-Team: Bambara\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/bn.po b/po/common/bn.po index 0b1a3456331b2..87e2cc1d520ab 100644 --- a/po/common/bn.po +++ b/po/common/bn.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: bn_BD\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:50-0400\n" +"PO-Revision-Date: 2017-09-22 04:10-0400\n" "Language-Team: Bengali\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/bo.po b/po/common/bo.po index 98726e799bc8a..cc405738a84a8 100644 --- a/po/common/bo.po +++ b/po/common/bo.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: bo_BT\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:46-0400\n" +"PO-Revision-Date: 2017-09-22 04:07-0400\n" "Language-Team: Tibetan\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/br.po b/po/common/br.po index 219b4d87798a0..cc8569e626b2f 100644 --- a/po/common/br.po +++ b/po/common/br.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: br_FR\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:49-0400\n" +"PO-Revision-Date: 2017-09-22 04:09-0400\n" "Language-Team: Breton\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/bs.po b/po/common/bs.po index 54c54bbdb065a..d088816229e61 100644 --- a/po/common/bs.po +++ b/po/common/bs.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: bs_BA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:50-0400\n" +"PO-Revision-Date: 2017-09-22 04:11-0400\n" "Language-Team: Bosnian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/ca.po b/po/common/ca.po index e542de55d9552..b78d08f671b9a 100644 --- a/po/common/ca.po +++ b/po/common/ca.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ca_ES\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:48-0400\n" +"PO-Revision-Date: 2017-09-22 04:09-0400\n" "Language-Team: Catalan\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2663,3 +2663,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/ce.po b/po/common/ce.po index 6213c8dbbb623..aa34367c7fea5 100644 --- a/po/common/ce.po +++ b/po/common/ce.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ce_CE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:48-0400\n" +"PO-Revision-Date: 2017-09-22 04:09-0400\n" "Language-Team: Chechen\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/chr.po b/po/common/chr.po index f69be709f1f12..aef4695d3e508 100644 --- a/po/common/chr.po +++ b/po/common/chr.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: chr_US\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:47-0400\n" +"PO-Revision-Date: 2017-09-22 04:08-0400\n" "Language-Team: Cherokee\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/co.po b/po/common/co.po index 9264359757f30..45d5f5d058cd1 100644 --- a/po/common/co.po +++ b/po/common/co.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: co_FR\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:48-0400\n" +"PO-Revision-Date: 2017-09-22 04:09-0400\n" "Language-Team: Corsican\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/crs.po b/po/common/crs.po index f6b05a53d3690..defeff61a0a16 100644 --- a/po/common/crs.po +++ b/po/common/crs.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: crs_SC\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:42-0400\n" +"PO-Revision-Date: 2017-09-22 04:02-0400\n" "Language-Team: Seychellois Creole\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/cs.po b/po/common/cs.po index 16824e2ae54f9..8a85678c06480 100644 --- a/po/common/cs.po +++ b/po/common/cs.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:49-0400\n" +"PO-Revision-Date: 2017-09-22 04:09-0400\n" "Language-Team: Czech\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/cv.po b/po/common/cv.po index 4bdc8ed6872d7..3128511adc13d 100644 --- a/po/common/cv.po +++ b/po/common/cv.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: cv_CU\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:47-0400\n" +"PO-Revision-Date: 2017-09-22 04:09-0400\n" "Language-Team: Chuvash\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/cy.po b/po/common/cy.po index b86b3670688b7..cf267f662d19b 100644 --- a/po/common/cy.po +++ b/po/common/cy.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: cy_GB\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:45-0400\n" +"PO-Revision-Date: 2017-09-22 04:06-0400\n" "Language-Team: Welsh\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))));\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/da.po b/po/common/da.po index 5a3c8f02922c8..e09f722b017b8 100644 --- a/po/common/da.po +++ b/po/common/da.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: da_DK\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-14 16:21-0400\n" +"PO-Revision-Date: 2017-09-22 04:09-0400\n" "Language-Team: Danish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2651,3 +2651,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/de.po b/po/common/de.po index 508627e45710a..539111b2057dc 100644 --- a/po/common/de.po +++ b/po/common/de.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: de_DE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-14 06:21-0400\n" +"PO-Revision-Date: 2017-09-22 04:14-0400\n" "Language-Team: German\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2670,3 +2670,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "Diese Produktseite ist nicht vollständig. Sie können helfen, sie zu vervollständigen, indem Sie das Produkt bearbeiten und weitere Daten aus den vorhandenen Fotos hinzufügen oder indem Sie mehr Fotos aufnehmen mit der App für Android oder iPhone/iPad. Vielen Dank!" +msgctxt "title_separator" +msgid " — " +msgstr " — " + diff --git a/po/common/el.po b/po/common/el.po index 93d33fd57c0dd..dd23877a71222 100644 --- a/po/common/el.po +++ b/po/common/el.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: el_GR\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:55-0400\n" +"PO-Revision-Date: 2017-09-22 04:14-0400\n" "Language-Team: Greek\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2651,3 +2651,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/en_AU.po b/po/common/en_AU.po index b2957b678c175..076e23a6424bb 100644 --- a/po/common/en_AU.po +++ b/po/common/en_AU.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: en_AU\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:48-0400\n" +"PO-Revision-Date: 2017-09-22 04:09-0400\n" "Language-Team: English, Australia\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -26,35 +26,35 @@ msgstr "English (Australia)" msgctxt "1_product" msgid "1 product" -msgstr "1 product" +msgstr "" msgctxt "_and_" msgid " and " -msgstr " and " +msgstr "" msgctxt "about" msgid "About me" -msgstr "About me" +msgstr "" msgctxt "add" msgid "Add" -msgstr "Add" +msgstr "" msgctxt "add_language" msgid "Add language" -msgstr "Add language" +msgstr "" msgctxt "add_product" msgid "Add a product" -msgstr "Add a product" +msgstr "" msgctxt "add_user" msgid "Register" -msgstr "Register" +msgstr "" msgctxt "add_user_confirm" msgid "

    Thanks for joining. You can now sign-in on the site to add and edit products.

    " -msgstr "

    Thanks for joining. You can now sign-in on the site to add and edit products.

    " +msgstr "" msgctxt "add_user_email_body" msgid "Hello ,\n\n" @@ -76,63 +76,63 @@ msgstr "" msgctxt "add_user_email_subject" msgid "Thanks for joining <>" -msgstr "Thanks for joining <>" +msgstr "" msgctxt "additives_1" msgid "Potentially hazardous food additive. Limit usage." -msgstr "Potentially hazardous food additive. Limit usage." +msgstr "" msgctxt "additives_2" msgid "Hazardous food additive. Avoid." -msgstr "Hazardous food additive. Avoid." +msgstr "" msgctxt "additives_3" msgid "Food additive banned in Europe. Avoid at all cost." -msgstr "Food additive banned in Europe. Avoid at all cost." +msgstr "" msgctxt "additives_p" msgid "additives" -msgstr "additives" +msgstr "" msgctxt "additives_s" msgid "additive" -msgstr "additive" +msgstr "" msgctxt "advanced_search" msgid "Advanced search" -msgstr "Advanced search" +msgstr "" msgctxt "advanced_search_old" msgid "Advanced search and graphs" -msgstr "Advanced search and graphs" +msgstr "" msgctxt "alcohol_warning" msgid "Excess drinking is harmful for health." -msgstr "Excess drinking is harmful for health." +msgstr "" msgctxt "all_missions" msgid "All missions" -msgstr "All missions" +msgstr "" msgctxt "allergens" msgid "Substances or products causing allergies or intolerances" -msgstr "Substances or products causing allergies or intolerances" +msgstr "" msgctxt "allergens_p" msgid "allergens" -msgstr "allergens" +msgstr "" msgctxt "allergens_s" msgid "allergen" -msgstr "allergen" +msgstr "" msgctxt "also_edited_by" msgid "Product page also edited by" -msgstr "Product page also edited by" +msgstr "" msgctxt "android_apk_app_badge" msgid "\"Android" -msgstr "\"Android" +msgstr "" msgctxt "android_apk_app_link" msgid "https://world.openfoodfacts.org/files/off.apk" @@ -140,45 +140,44 @@ msgstr "" msgctxt "android_app_badge" msgid "\"Available" -msgstr "\"Available" +msgstr "" msgctxt "android_app_link" msgid "https://play.google.com/store/apps/details?id=org.openfoodfacts.scanner" -msgstr "https://play.google.com/store/apps/details?id=org.openfoodfacts.scanner" +msgstr "" msgctxt "app_please_take_pictures" msgid "

    This product is not yet in the <> database. Could you please take some pictures of the product, barcode, ingredients list and nutrition facts to add it on <>?

    \n" "

    Thanks in advance!

    \n" -msgstr "

    This product is not yet in the <> database. Could you please take some pictures of the product, barcode, ingredients list and nutrition facts to add it on <>?

    \n" -"

    Thanks in advance!

    \n" +msgstr "" msgctxt "app_take_a_picture" msgid "Take a picture" -msgstr "Take a picture" +msgstr "" msgctxt "app_take_a_picture_note" msgid "Note: the pictures you send are published under the free licence Creative Commons Attribution and ShareAlike." -msgstr "Note: the pictures you send are published under the free licence Creative Commons Attribution and ShareAlike." +msgstr "" msgctxt "app_you_can_add_pictures" msgid "You can add pictures:" -msgstr "You can add pictures:" +msgstr "" msgctxt "axis_x" msgid "Horizontal axis" -msgstr "Horizontal axis" +msgstr "" msgctxt "axis_y" msgid "Vertical axis" -msgstr "Vertical axis" +msgstr "" msgctxt "barcode" msgid "Barcode" -msgstr "Barcode" +msgstr "" msgctxt "barcode_number" msgid "Barcode number:" -msgstr "Barcode number:" +msgstr "" msgctxt "bottom_content" msgid "\n" @@ -186,83 +185,79 @@ msgid "\n "\n" "

    Contribute to <> by adding product and win stars by\n" "fulfilling missions!

    \n" -msgstr "\n" -"\n" -"\n" -"

    Contribute to <> by adding product and win stars by\n" -"fulfilling missions!

    \n" +msgstr "" msgctxt "bottom_title" msgid "Embrace the mission" -msgstr "Embrace the mission" +msgstr "" msgctxt "brands" msgid "Brands" -msgstr "Brands" +msgstr "" msgctxt "brands_example" msgid "Kinder Bueno White, Kinder Bueno, Kinder, Ferrero" -msgstr "Kinder Bueno White, Kinder Bueno, Kinder, Ferrero" +msgstr "" msgctxt "brands_p" msgid "brands" -msgstr "brands" +msgstr "" msgctxt "brands_products" msgid "Products from the %s brand" -msgstr "Products from the %s brand" +msgstr "" msgctxt "brands_s" msgid "brand" -msgstr "brand" +msgstr "" msgctxt "brands_tagsinput" msgid "add a brand" -msgstr "add a brand" +msgstr "" msgctxt "brands_without_products" msgid "Products not from the %s brand" -msgstr "Products not from the %s brand" +msgstr "" msgctxt "by" msgid "by" -msgstr "by" +msgstr "" msgctxt "categories" msgid "Categories" -msgstr "Categories" +msgstr "" msgctxt "categories_example" msgid "Sardines in olive oil, Orange juice from concentrate" -msgstr "Sardines in olive oil, Orange juice from concentrate" +msgstr "" msgctxt "categories_note" msgid "Indicate only the most specific category. \"Parents\" categories will be automatically added." -msgstr "Indicate only the most specific category. \"Parents\" categories will be automatically added." +msgstr "" msgctxt "categories_p" msgid "categories" -msgstr "categories" +msgstr "" msgctxt "categories_products" msgid "Products from the %s category" -msgstr "Products from the %s category" +msgstr "" msgctxt "categories_s" msgid "category" -msgstr "category" +msgstr "" msgctxt "categories_tagsinput" msgid "add a category" -msgstr "add a category" +msgstr "" msgctxt "categories_without_products" msgid "Products not from the %s category" -msgstr "Products not from the %s category" +msgstr "" msgctxt "change_fields" msgid "Data" -msgstr "Data" +msgstr "" msgctxt "change_nutriments" msgid "Nutriments" @@ -270,43 +265,43 @@ msgstr "Nutrients" msgctxt "change_selected_images" msgid "Selected images" -msgstr "Selected images" +msgstr "" msgctxt "change_uploaded_images" msgid "Uploaded images" -msgstr "Uploaded images" +msgstr "" msgctxt "checkers_p" msgid "checkers" -msgstr "checkers" +msgstr "" msgctxt "checkers_s" msgid "checker" -msgstr "checker" +msgstr "" msgctxt "cities_p" msgid "packaging cities" -msgstr "packaging cities" +msgstr "" msgctxt "cities_products" msgid "Products packaged in the city of %s" -msgstr "Products packaged in the city of %s" +msgstr "" msgctxt "cities_s" msgid "packaging city" -msgstr "packaging city" +msgstr "" msgctxt "cities_without_products" msgid "Products not packaged in the city of %s" -msgstr "Products not packaged in the city of %s" +msgstr "" msgctxt "codes_p" msgid "Codes" -msgstr "Codes" +msgstr "" msgctxt "codes_s" msgid "Code" -msgstr "Code" +msgstr "" msgctxt "column_obsolete_do_not_translate_for_reference_only" msgid "\"<<site_name>\" />\n\n" @@ -337,23 +332,23 @@ msgstr "" msgctxt "completed_n_missions" msgid "completed %d missions:" -msgstr "completed %d missions:" +msgstr "" msgctxt "connected_with_facebook" msgid "You are connected with your Facebook account." -msgstr "You are connected with your Facebook account." +msgstr "" msgctxt "contributor_since" msgid "Contributor since" -msgstr "Contributor since" +msgstr "" msgctxt "copy_data" msgid "Copy data from current product to new product" -msgstr "Copy data from current product to new product" +msgstr "" msgctxt "correct_the_following_errors" msgid "Please correct the following errors:" -msgstr "Please correct the following errors:" +msgstr "" msgctxt "correctors_p" msgid "correctors" @@ -365,7 +360,7 @@ msgstr "correction" msgctxt "countries" msgid "Countries where sold" -msgstr "Countries where sold" +msgstr "" msgctxt "countries_note" msgid "Countries where the product is widely available (non including stores specialising in foreign products)" @@ -373,75 +368,75 @@ msgstr "Countries where the product is widely available (not including stores sp msgctxt "countries_p" msgid "countries" -msgstr "countries" +msgstr "" msgctxt "countries_products" msgid "Products sold in %s" -msgstr "Products sold in %s" +msgstr "" msgctxt "countries_s" msgid "country" -msgstr "country" +msgstr "" msgctxt "countries_without_products" msgid "Products not sold in %s" -msgstr "Products not sold in %s" +msgstr "" msgctxt "data_source" msgid "Data source" -msgstr "Data source" +msgstr "" msgctxt "debug_p" msgid "debug" -msgstr "debug" +msgstr "" msgctxt "debug_s" msgid "debug" -msgstr "debug" +msgstr "" msgctxt "delete_comment" msgid "Reason for removal" -msgstr "Reason for removal" +msgstr "" msgctxt "delete_product" msgid "Delete a product" -msgstr "Delete a product" +msgstr "" msgctxt "delete_product_page" msgid "Delete the page" -msgstr "Delete the page" +msgstr "" msgctxt "delete_the_images" msgid "Delete the images" -msgstr "Delete the images" +msgstr "" msgctxt "delete_user" msgid "Delete an user" -msgstr "Delete an user" +msgstr "" msgctxt "diff_add" msgid "Added:" -msgstr "Added:" +msgstr "" msgctxt "diff_change" msgid "Changed:" -msgstr "Changed:" +msgstr "" msgctxt "diff_delete" msgid "Deleted:" -msgstr "Deleted:" +msgstr "" msgctxt "donate" msgid "Donate to Open Food Facts" -msgstr "Donate to Open Food Facts" +msgstr "" msgctxt "donate_link" msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" -msgstr "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" msgctxt "ecological_data_table" msgid "Ecological footprint" -msgstr "Ecological footprint" +msgstr "" msgctxt "ecological_data_table_note" msgid "If the carbon footprint is specified on the label (rarely at this time), indicate it for the same quantity than the nutritional composition." @@ -449,71 +444,71 @@ msgstr "If the carbon footprint is specified on the label (rarely at the moment) msgctxt "edit" msgid "edit" -msgstr "edit" +msgstr "" msgctxt "edit_comment" msgid "Changes summary" -msgstr "Changes summary" +msgstr "" msgctxt "edit_product" msgid "Edit a product" -msgstr "Edit a product" +msgstr "" msgctxt "edit_product_page" msgid "Edit the page" -msgstr "Edit the page" +msgstr "" msgctxt "edit_profile" msgid "Edit your public profile" -msgstr "Edit your public profile" +msgstr "" msgctxt "edit_profile_confirm" msgid "Changes to your public profile have been saved." -msgstr "Changes to your public profile have been saved." +msgstr "" msgctxt "edit_profile_msg" msgid "Information below is visible in your public profile." -msgstr "Information below is visible in your public profile." +msgstr "" msgctxt "edit_settings" msgid "Change your account parameters" -msgstr "Change your account parameters" +msgstr "" msgctxt "edit_user" msgid "Account parameters" -msgstr "Account parameters" +msgstr "" msgctxt "edit_user_confirm" msgid "

    Your account parameters have been changed.

    " -msgstr "

    Your account parameters have been changed.

    " +msgstr "" msgctxt "editors_p" msgid "editors" -msgstr "editors" +msgstr "" msgctxt "editors_s" msgid "editor" -msgstr "editor" +msgstr "" msgctxt "email" msgid "e-mail address" -msgstr "e-mail address" +msgstr "" msgctxt "emb_code_p" msgid "EMB codes" -msgstr "EMB codes" +msgstr "" msgctxt "emb_code_products" msgid "Products packaged by the company with emb code %s" -msgstr "Products packaged by the company with emb code %s" +msgstr "" msgctxt "emb_code_s" msgid "EMB code" -msgstr "EMB code" +msgstr "" msgctxt "emb_codes" msgid "EMB code" -msgstr "EMB code" +msgstr "" msgctxt "emb_codes_example" msgid "EMB 53062, FR 62.448.034 CE, 84 R 20, 33 RECOLTANT 522" @@ -525,59 +520,59 @@ msgstr "In Europe, the code is in an ellipse with the 2 country initials followe msgctxt "emb_codes_p" msgid "packager codes" -msgstr "packager codes" +msgstr "" msgctxt "emb_codes_products" msgid "Products with the emb code %s" -msgstr "Products with the emb code %s" +msgstr "" msgctxt "emb_codes_s" msgid "packager code" -msgstr "packager code" +msgstr "" msgctxt "emb_codes_without_products" msgid "Products without the emb code %s" -msgstr "Products without the emb code %s" +msgstr "" msgctxt "entry_dates_p" msgid "Entry dates" -msgstr "Entry dates" +msgstr "" msgctxt "entry_dates_s" msgid "Entry date" -msgstr "Entry date" +msgstr "" msgctxt "error" msgid "Error" -msgstr "Error" +msgstr "" msgctxt "error_bad_login_password" msgid "Incorrect user name or password. Forgotten password?" -msgstr "Incorrect user name or password. Forgotten password?" +msgstr "" msgctxt "error_database" msgid "An error occured while reading the data, try to refresh the page." -msgstr "An error occured while reading the data, try to refresh the page." +msgstr "" msgctxt "error_different_passwords" msgid "The password and confirmation password are different." -msgstr "The password and confirmation password are different." +msgstr "" msgctxt "error_email_already_in_use" msgid "The e-mail address is already used by another user. Maybe you already have an account? You can reset the password of your other account." -msgstr "The e-mail address is already used by another user. Maybe you already have an account? You can reset the password of your other account." +msgstr "" msgctxt "error_invalid_address" msgid "Invalid address." -msgstr "Invalid address." +msgstr "" msgctxt "error_invalid_csrf_token" msgid "Invalid CSRF token." -msgstr "Invalid CSRF token." +msgstr "" msgctxt "error_invalid_email" msgid "Invalid e-mail address" -msgstr "Invalid e-mail address" +msgstr "" msgctxt "error_invalid_password" msgid "The password needs to be a least 6 characters long." @@ -585,79 +580,79 @@ msgstr "The password needs to be at least 6 characters long." msgctxt "error_invalid_user" msgid "Invalid user." -msgstr "Invalid user." +msgstr "" msgctxt "error_invalid_username" msgid "The user name must contain only unaccented letters, digits and dashes." -msgstr "The user name must contain only unaccented letters, digits and dashes." +msgstr "" msgctxt "error_new_code_already_exists" msgid "A product already exists with the new code" -msgstr "A product already exists with the new code" +msgstr "" msgctxt "error_no_name" msgid "You need to enter a name or nickname." -msgstr "You need to enter a name or nickname." +msgstr "" msgctxt "error_no_permission" msgid "Permission denied." -msgstr "Permission denied." +msgstr "" msgctxt "error_no_username" msgid "You need to enter a user name" -msgstr "You need to enter a user name" +msgstr "" msgctxt "error_reset_already_connected" msgid "You are already signed in." -msgstr "You are already signed in." +msgstr "" msgctxt "error_reset_invalid_token" msgid "The reset password link is invalid or has expired." -msgstr "The reset password link is invalid or has expired." +msgstr "" msgctxt "error_reset_unknown_email" msgid "There is no account with this email" -msgstr "There is no account with this email" +msgstr "" msgctxt "error_reset_unknown_id" msgid "This username does not exist." -msgstr "This username does not exist." +msgstr "" msgctxt "error_username_not_available" msgid "This username already exists, please choose another." -msgstr "This username already exists, please choose another." +msgstr "" msgctxt "example" msgid "Example:" -msgstr "Example:" +msgstr "" msgctxt "examples" msgid "Examples:" -msgstr "Examples:" +msgstr "" msgctxt "expiration_date" msgid "Best before date" -msgstr "Best before date" +msgstr "" msgctxt "expiration_date_note" msgid "The expiration date is a way to track product changes over time and to identify the most recent version." -msgstr "The expiration date is a way to track product changes over time and to identify the most recent version." +msgstr "" msgctxt "explore_products_by" msgid "Drilldown into products by..." -msgstr "Drilldown into products by..." +msgstr "" msgctxt "facebook_locale" msgid "en_US" -msgstr "en_US" +msgstr "" msgctxt "facebook_page" msgid "https://www.facebook.com/OpenFoodFacts" -msgstr "https://www.facebook.com/OpenFoodFacts" +msgstr "" msgctxt "fixme_product" msgid "If the data is incomplete or incorrect, you can complete or correct it by editing this page." -msgstr "If the data is incomplete or incorrect, you can complete or correct it by editing this page." +msgstr "" msgctxt "footer" msgid "Legal -\n" @@ -667,53 +662,47 @@ msgid "Legal -\n" "Ideas Forum -\n" "Blog -\n" "Press and Blogs\n" -msgstr "Legal -\n" -"Terms of Use -\n" -"Who we are -\n" -"Frequently Asked Questions -\n" -"Ideas Forum -\n" -"Blog -\n" -"Press and Blogs\n" +msgstr "" msgctxt "footer_and_the_facebook_group" msgid "and the Facebook group for contributors" -msgstr "and the Facebook group for contributors" +msgstr "" msgctxt "footer_blog" msgid "<> blog" -msgstr "<> blog" +msgstr "" msgctxt "footer_blog_link" msgid "https://en.blog.openfoodfacts.org" -msgstr "https://en.blog.openfoodfacts.org" +msgstr "" msgctxt "footer_code_of_conduct" msgid "Code of conduct" -msgstr "Code of conduct" +msgstr "" msgctxt "footer_code_of_conduct_link" msgid "/code-of-conduct" -msgstr "/code-of-conduct" +msgstr "" msgctxt "footer_data" msgid "Data" -msgstr "Data" +msgstr "" msgctxt "footer_data_link" msgid "/data" -msgstr "/data" +msgstr "" msgctxt "footer_discover_the_project" msgid "Discover the project" -msgstr "Discover the project" +msgstr "" msgctxt "footer_faq" msgid "Frequently asked questions" -msgstr "Frequently asked questions" +msgstr "" msgctxt "footer_faq_link" msgid "/faq" -msgstr "/faq" +msgstr "" msgctxt "footer_follow_us" msgid "Follow us on Twitter,\n" @@ -725,79 +714,79 @@ msgstr "Follow us on Twitter,\n msgctxt "footer_install_the_app" msgid "Install the app" -msgstr "Install the app" +msgstr "" msgctxt "footer_join_the_community" msgid "Join the community" -msgstr "Join the community" +msgstr "" msgctxt "footer_join_us_on" msgid "Join us on %s:" -msgstr "Join us on %s:" +msgstr "" msgctxt "footer_legal" msgid "Legal" -msgstr "Legal" +msgstr "" msgctxt "footer_legal_link" msgid "/legal" -msgstr "/legal" +msgstr "" msgctxt "footer_press" msgid "Press" -msgstr "Press" +msgstr "" msgctxt "footer_press_link" msgid "/press" -msgstr "/press" +msgstr "" msgctxt "footer_tagline" msgid "A collaborative, free and open database of food products from around the world." -msgstr "A collaborative, free and open database of food products from around the world." +msgstr "" msgctxt "footer_terms" msgid "Terms of use" -msgstr "Terms of use" +msgstr "" msgctxt "footer_terms_link" msgid "/terms-of-use" -msgstr "/terms-of-use" +msgstr "" msgctxt "footer_who_we_are" msgid "Who we are" -msgstr "Who we are" +msgstr "" msgctxt "footer_who_we_are_link" msgid "/who-we-are" -msgstr "/who-we-are" +msgstr "" msgctxt "footer_wiki" msgid "<> wiki (en)" -msgstr "<> wiki (en)" +msgstr "" msgctxt "footer_wiki_link" msgid "https://en.wiki.openfoodfacts.org" -msgstr "https://en.wiki.openfoodfacts.org" +msgstr "" msgctxt "for" msgid "for" -msgstr "for" +msgstr "" msgctxt "front_alt" msgid "Product" -msgstr "Product" +msgstr "" msgctxt "generic_name" msgid "Common name" -msgstr "Common name" +msgstr "" msgctxt "generic_name_example" msgid "Chocolate bar with milk and hazelnuts" -msgstr "Chocolate bar with milk and hazelnuts" +msgstr "" msgctxt "goodbye" msgid "See you soon!" -msgstr "See you soon!" +msgstr "" msgctxt "graph_count" msgid "%d products match the search criterias, of which %i products have defined values for the graph's axis." @@ -805,11 +794,11 @@ msgstr "%d products match the search criteria, of which %i products have defined msgctxt "graph_title" msgid "Graph title" -msgstr "Graph title" +msgstr "" msgctxt "graphs_and_maps" msgid "Graphs and maps" -msgstr "Graphs and maps" +msgstr "" msgctxt "header" msgid "\n" @@ -822,142 +811,132 @@ msgid "\n" "\tvar s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(uv, s);\n" " })();\n" "\n\n\n" -msgstr "\n" -"> - the free and open food products information database\"/>\n\n" -"\n\n\n" +msgstr "" msgctxt "hello" msgid "Hello" -msgstr "Hello" +msgstr "" msgctxt "high" msgid "high" -msgstr "high" +msgstr "" msgctxt "high_quantity" msgid "high quantity" -msgstr "high quantity" +msgstr "" msgctxt "history" msgid "Changes history" -msgstr "Changes history" +msgstr "" msgctxt "image_front" msgid "Front picture" -msgstr "Front picture" +msgstr "" msgctxt "image_ingredients" msgid "Ingredients picture" -msgstr "Ingredients picture" +msgstr "" msgctxt "image_ingredients_note" msgid "If the picture is neat enough, the ingredients can be extracted automatically" -msgstr "If the picture is neat enough, the ingredients can be extracted automatically" +msgstr "" msgctxt "image_nutrition" msgid "Nutrition facts picture" -msgstr "Nutrition facts picture" +msgstr "" msgctxt "image_upload_error_image_already_exists" msgid "This picture has already been sent." -msgstr "This picture has already been sent." +msgstr "" msgctxt "image_upload_error_image_too_small" msgid "The picture is too small. Please do not upload pictures found on the Internet and only send photos you have taken yourself." -msgstr "The picture is too small. Please do not upload pictures found on the Internet and only send photos you have taken yourself." +msgstr "" msgctxt "image_upload_error_no_barcode_found_in_image_long" msgid "The barcode in the image could not be read, or the image contained no barcode.\n" "You can try with another image, or directly enter the barcode." -msgstr "The barcode in the image could not be read, or the image contained no barcode.\n" -"You can try with another image, or directly enter the barcode." +msgstr "" msgctxt "image_upload_error_no_barcode_found_in_image_short" msgid "No barcode found in the image." -msgstr "No barcode found in the image." +msgstr "" msgctxt "image_upload_error_no_barcode_found_in_text" msgid "You must enter the characters of the barcode or send a product image when the barcode is visible." -msgstr "You must enter the characters of the barcode or send a product image when the barcode is visible." +msgstr "" msgctxt "incomplete_products_you_added" msgid "Products you added that need to be completed" -msgstr "Products you added that need to be completed" +msgstr "" msgctxt "informers_p" msgid "informers" -msgstr "informers" +msgstr "" msgctxt "informers_s" msgid "informers" -msgstr "informers" +msgstr "" msgctxt "ingredients" msgid "Ingredients" -msgstr "Ingredients" +msgstr "" msgctxt "ingredients_alt" msgid "Ingredients" -msgstr "Ingredients" +msgstr "" msgctxt "ingredients_analysis" msgid "Ingredients analysis" -msgstr "Ingredients analysis" +msgstr "" msgctxt "ingredients_analysis_note" msgid "Note: ingredients can be listed with many different names, please let us know if you think the analysis above is incorrect." -msgstr "Note: ingredients can be listed with many different names, please let us know if you think the analysis above is incorrect." +msgstr "" msgctxt "ingredients_from_or_that_may_be_from_palm_oil_p" msgid "ingredients from or that may be from palm oil" -msgstr "ingredients from or that may be from palm oil" +msgstr "" msgctxt "ingredients_from_or_that_may_be_from_palm_oil_s" msgid "ingredient from or that may be from palm oil" -msgstr "ingredient from or that may be from palm oil" +msgstr "" msgctxt "ingredients_from_palm_oil_p" msgid "ingredients from palm oil" -msgstr "ingredients from palm oil" +msgstr "" msgctxt "ingredients_from_palm_oil_s" msgid "ingredient from palm oil" -msgstr "ingredient from palm oil" +msgstr "" msgctxt "ingredients_n_p" msgid "Numbers of ingredients" -msgstr "Numbers of ingredients" +msgstr "" msgctxt "ingredients_n_s" msgid "Number of ingredients" -msgstr "Number of ingredients" +msgstr "" msgctxt "ingredients_p" msgid "ingredients" -msgstr "ingredients" +msgstr "" msgctxt "ingredients_products" msgid "Products that contain the ingredient %s" -msgstr "Products that contain the ingredient %s" +msgstr "" msgctxt "ingredients_s" msgid "ingredient" -msgstr "ingredient" +msgstr "" msgctxt "ingredients_text" msgid "Ingredients list" -msgstr "Ingredients list" +msgstr "" msgctxt "ingredients_text_display_note" msgid "Ingredients are listed in order of importance (quantity)." -msgstr "Ingredients are listed in order of importance (quantity)." +msgstr "" msgctxt "ingredients_text_example" msgid "Cereals 85.5% (_wheat_ flour, whole-_wheat_ flour 11%), malt extract, cocoa 4,8%, ascorbic acid" @@ -965,43 +944,43 @@ msgstr "Cereals 85.5% (_wheat_ flour, whole-_wheat_ flour 11%), malt extract, co msgctxt "ingredients_text_note" msgid "Keep the order, indicate the % when specified, separate with a comma or - , use ( ) for ingredients of an ingredient, surround allergens with _ e.g. _milk_" -msgstr "Keep the order, indicate the % when specified, separate with a comma or - , use ( ) for ingredients of an ingredient, surround allergens with _ e.g. _milk_" +msgstr "" msgctxt "ingredients_that_may_be_from_palm_oil_p" msgid "ingredients that may be from palm oil" -msgstr "ingredients that may be from palm oil" +msgstr "" msgctxt "ingredients_that_may_be_from_palm_oil_s" msgid "ingredient that may be from palm oil" -msgstr "ingredient that may be from palm oil" +msgstr "" msgctxt "ingredients_without_products" msgid "Products that do not contain the ingredient %s" -msgstr "Products that do not contain the ingredient %s" +msgstr "" msgctxt "ios_app_badge" msgid "\"Available" -msgstr "\"Available" +msgstr "" msgctxt "ios_app_link" msgid "https://itunes.apple.com/en/app/open-food-facts/id588797948" -msgstr "https://itunes.apple.com/en/app/open-food-facts/id588797948" +msgstr "" msgctxt "known_nutrients_p" msgid "known nutrients" -msgstr "known nutrients" +msgstr "" msgctxt "known_nutrients_s" msgid "known nutrient" -msgstr "known nutrient" +msgstr "" msgctxt "labels" msgid "Labels, certifications, awards" -msgstr "Labels, certifications, awards" +msgstr "" msgctxt "labels_example" msgid "Organic" -msgstr "Organic" +msgstr "" msgctxt "labels_note" msgid "Indicate only the most specific labels. \"Parents\" labels will be added automatically." @@ -1009,235 +988,233 @@ msgstr "Indicate only the most specific labels. \"Parent\" labels will be added msgctxt "labels_p" msgid "labels" -msgstr "labels" +msgstr "" msgctxt "labels_products" msgid "Products that have the label %s" -msgstr "Products that have the label %s" +msgstr "" msgctxt "labels_s" msgid "label" -msgstr "label" +msgstr "" msgctxt "labels_tagsinput" msgid "add a label" -msgstr "add a label" +msgstr "" msgctxt "labels_without_products" msgid "Products that do not have the label %s" -msgstr "Products that do not have the label %s" +msgstr "" msgctxt "lang" msgid "Main language" -msgstr "Main language" +msgstr "" msgctxt "lang_ar" msgid "Arabic" -msgstr "Arabic" +msgstr "" msgctxt "lang_bg" msgid "Bulgarian" -msgstr "Bulgarian" +msgstr "" msgctxt "lang_cs" msgid "Czech" -msgstr "Czech" +msgstr "" msgctxt "lang_da" msgid "Danish" -msgstr "Danish" +msgstr "" msgctxt "lang_de" msgid "German" -msgstr "German" +msgstr "" msgctxt "lang_el" msgid "Greek" -msgstr "Greek" +msgstr "" msgctxt "lang_en" msgid "English" -msgstr "English" +msgstr "" msgctxt "lang_es" msgid "Spanish" -msgstr "Spanish" +msgstr "" msgctxt "lang_et" msgid "Estonian" -msgstr "Estonian" +msgstr "" msgctxt "lang_fi" msgid "Finnish" -msgstr "Finnish" +msgstr "" msgctxt "lang_fr" msgid "French" -msgstr "French" +msgstr "" msgctxt "lang_ga" msgid "Irish" -msgstr "Irish" +msgstr "" msgctxt "lang_he" msgid "Hebrew" -msgstr "Hebrew" +msgstr "" msgctxt "lang_hu" msgid "Hungarian" -msgstr "Hungarian" +msgstr "" msgctxt "lang_id" msgid "Indonesian" -msgstr "Indonesian" +msgstr "" msgctxt "lang_it" msgid "Italian" -msgstr "Italian" +msgstr "" msgctxt "lang_ja" msgid "Japanese" -msgstr "Japanese" +msgstr "" msgctxt "lang_ko" msgid "Korean" -msgstr "Korean" +msgstr "" msgctxt "lang_lt" msgid "Lithuanian" -msgstr "Lithuanian" +msgstr "" msgctxt "lang_lv" msgid "Latvian" -msgstr "Latvian" +msgstr "" msgctxt "lang_mt" msgid "Maltese" -msgstr "Maltese" +msgstr "" msgctxt "lang_nl" msgid "Dutch" -msgstr "Dutch" +msgstr "" msgctxt "lang_nl_be" msgid "Dutch" -msgstr "Dutch" +msgstr "" msgctxt "lang_note" msgid "Language most present and most highlighted on the product" -msgstr "Language most present and most highlighted on the product" +msgstr "" msgctxt "lang_other" msgid "other language" -msgstr "other language" +msgstr "" msgctxt "lang_pl" msgid "Polish" -msgstr "Polish" +msgstr "" msgctxt "lang_pt" msgid "Portuguese" -msgstr "Portuguese" +msgstr "" msgctxt "lang_pt_pt" msgid "Portugal Portuguese" -msgstr "Portugal Portuguese" +msgstr "" msgctxt "lang_ro" msgid "Romanian" -msgstr "Romanian" +msgstr "" msgctxt "lang_ru" msgid "Russian" -msgstr "Russian" +msgstr "" msgctxt "lang_sk" msgid "Slovak" -msgstr "Slovak" +msgstr "" msgctxt "lang_sl" msgid "Slovenian" -msgstr "Slovenian" +msgstr "" msgctxt "lang_sv" msgid "Swedish" -msgstr "Swedish" +msgstr "" msgctxt "lang_th" msgid "Thai" -msgstr "Thai" +msgstr "" msgctxt "lang_vi" msgid "Vietnamese" -msgstr "Vietnamese" +msgstr "" msgctxt "lang_zh" msgid "Chinese" -msgstr "Chinese" +msgstr "" msgctxt "language" msgid "en-US" -msgstr "en-US" +msgstr "" msgctxt "languages_p" msgid "languages" -msgstr "languages" +msgstr "" msgctxt "languages_s" msgid "language" -msgstr "language" +msgstr "" msgctxt "last_edit_dates_p" msgid "Last edit dates" -msgstr "Last edit dates" +msgstr "" msgctxt "last_edit_dates_s" msgid "Last edit date" -msgstr "Last edit date" +msgstr "" msgctxt "last_image_dates_p" msgid "Last picture dates" -msgstr "Last picture dates" +msgstr "" msgctxt "last_image_dates_s" msgid "Last picture date" -msgstr "Last picture date" +msgstr "" msgctxt "licence_accept" msgid "By adding information, data and/or images, you accept to place irrevocably your contribution under the Database Contents Licence 1.0 licence\n" "for information and data, and under the Creative Commons Attribution - ShareAlike 3.0 licence for images.\n" "You accept to be credited by re-users by a link to the product your are contributing to." -msgstr "By adding information, data and/or images, you accept to place irrevocably your contribution under the Database Contents Licence 1.0 licence\n" -"for information and data, and under the Creative Commons Attribution - ShareAlike 3.0 licence for images.\n" -"You accept to be credited by re-users by a link to the product your are contributing to." +msgstr "" msgctxt "link" msgid "Link to the product page on the official site of the producer" -msgstr "Link to the product page on the official site of the producer" +msgstr "" msgctxt "list_of_x" msgid "List of %s" -msgstr "List of %s" +msgstr "" msgctxt "loadmore" msgid "Load more results" -msgstr "Load more results" +msgstr "" msgctxt "login_and_add_product" msgid "Sign-in and add the product" -msgstr "Sign-in and add the product" +msgstr "" msgctxt "login_and_edit_product" msgid "Sign-in and edit the product" -msgstr "Sign-in and edit the product" +msgstr "" msgctxt "login_create_your_account" msgid "Create your account." -msgstr "Create your account." +msgstr "" msgctxt "login_not_registered_yet" msgid "Not registered yet?" -msgstr "Not registered yet?" +msgstr "" msgctxt "login_register_content" msgid "

    Sign-in to add or edit products.

    \n\n" @@ -1250,16 +1227,7 @@ msgid "

    Sign-in to add or edit products.

    \n\n" "\n" "\n" "

    Not registered yet? Create your account.

    \n" -msgstr "

    Sign-in to add or edit products.

    \n\n" -"
    \n" -"Username or e-mail address:
    \n" -"
    \n" -"Password
    \n" -"
    \n" -"
    \n" -"\n" -"
    \n" -"

    Not registered yet? Create your account.

    \n" +msgstr "" msgctxt "login_register_title" msgid "Sign-in" @@ -1267,61 +1235,60 @@ msgstr "Sign in" msgctxt "login_to_add_and_edit_products" msgid "Sign-in to add or edit products." -msgstr "Sign-in to add or edit products." +msgstr "" msgctxt "login_to_add_products" msgid "

    Please sign-in to add or edit a product.

    \n\n" "

    If you do not yet have an account on <>, you can register in 30 seconds.

    \n" -msgstr "

    Please sign-in to add or edit a product.

    \n\n" -"

    If you do not yet have an account on <>, you can register in 30 seconds.

    \n" +msgstr "" msgctxt "login_username_email" msgid "Username or e-mail address:" -msgstr "Username or e-mail address:" +msgstr "" msgctxt "low" msgid "low" -msgstr "low" +msgstr "" msgctxt "low_quantity" msgid "low quantity" -msgstr "low quantity" +msgstr "" msgctxt "manage_images" msgid "Manage images" -msgstr "Manage images" +msgstr "" msgctxt "manage_images_info" msgid "You can select one or more images and then:" -msgstr "You can select one or more images and then:" +msgstr "" msgctxt "manufacturing_places" msgid "Manufacturing or processing places" -msgstr "Manufacturing or processing places" +msgstr "" msgctxt "manufacturing_places_example" msgid "Montana, USA" -msgstr "Montana, USA" +msgstr "" msgctxt "manufacturing_places_p" msgid "manufacturing or processing places" -msgstr "manufacturing or processing places" +msgstr "" msgctxt "manufacturing_places_products" msgid "Products manufactured or processed in %s" -msgstr "Products manufactured or processed in %s" +msgstr "" msgctxt "manufacturing_places_s" msgid "manufacturing or processing place" -msgstr "manufacturing or processing place" +msgstr "" msgctxt "manufacturing_places_tagsinput" msgid "add a place" -msgstr "add a place" +msgstr "" msgctxt "manufacturing_places_without_products" msgid "Products not manufactured or processed in %s" -msgstr "Products not manufactured or processed in %s" +msgstr "" msgctxt "map_count" msgid "%d products match the search criterias, of which %i products have a known production place." @@ -1329,151 +1296,151 @@ msgstr "%d products match the search criteria, of which %i products have a known msgctxt "map_title" msgid "Map title" -msgstr "Map title" +msgstr "" msgctxt "menu" msgid "Menu" -msgstr "Menu" +msgstr "" msgctxt "menu_add_a_product" msgid "Add a product" -msgstr "Add a product" +msgstr "" msgctxt "menu_add_a_product_link" msgid "/add-a-product" -msgstr "/add-a-product" +msgstr "" msgctxt "menu_contribute" msgid "Contribute" -msgstr "Contribute" +msgstr "" msgctxt "menu_contribute_link" msgid "/contribute" -msgstr "/contribute" +msgstr "" msgctxt "menu_discover" msgid "Discover" -msgstr "Discover" +msgstr "" msgctxt "menu_discover_link" msgid "/discover" -msgstr "/discover" +msgstr "" msgctxt "mission_" msgid "Mission: " -msgstr "Mission: " +msgstr "" msgctxt "mission_accomplished_by" msgid "This mission has been completed by:" -msgstr "This mission has been completed by:" +msgstr "" msgctxt "mission_accomplished_by_n" msgid "Completed by %d persons." -msgstr "Completed by %d persons." +msgstr "" msgctxt "mission_accomplished_by_nobody" msgid "Be the first to complete this mission!" -msgstr "Be the first to complete this mission!" +msgstr "" msgctxt "mission_goal" msgid "Goal:" -msgstr "Goal:" +msgstr "" msgctxt "missions" msgid "Missions" -msgstr "Missions" +msgstr "" msgctxt "moderate" msgid "moderate" -msgstr "moderate" +msgstr "" msgctxt "moderate_quantity" msgid "moderate quantity" -msgstr "moderate quantity" +msgstr "" msgctxt "months" msgid "['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']" -msgstr "['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']" +msgstr "" msgctxt "move_images_to_another_product" msgid "Move the images to another product" -msgstr "Move the images to another product" +msgstr "" msgctxt "n_products" msgid "%d products" -msgstr "%d products" +msgstr "" msgctxt "name" msgid "Name" -msgstr "Name" +msgstr "" msgctxt "names" msgid "Names" -msgstr "Names" +msgstr "" msgctxt "new_code" msgid "If the barcode is not correct, please correct it here:" -msgstr "If the barcode is not correct, please correct it here:" +msgstr "" msgctxt "new_code_note" msgid "For products without a barcode, an internal code is automatically set." -msgstr "For products without a barcode, an internal code is automatically set." +msgstr "" msgctxt "newsletter_description" msgid "Subscribe to the newsletter (2 emails per month maximum)" -msgstr "Subscribe to the newsletter (2 emails per month maximum)" +msgstr "" msgctxt "next" msgid "Next" -msgstr "Next" +msgstr "" msgctxt "no_barcode" msgid "Product without barcode" -msgstr "Product without barcode" +msgstr "" msgctxt "no_nutrition_data" msgid "Nutrition facts are not specified on the product." -msgstr "Nutrition facts are not specified on the product." +msgstr "" msgctxt "no_product_for_barcode" msgid "No product listed for barcode %s." -msgstr "No product listed for barcode %s." +msgstr "" msgctxt "no_products" msgid "No products." -msgstr "No products." +msgstr "" msgctxt "not_saved" msgid "Error while saving, please retry." -msgstr "Error while saving, please retry." +msgstr "" msgctxt "number_of_additives" msgid "Number of additives" -msgstr "Number of additives" +msgstr "" msgctxt "number_of_products" msgid "Number of products" -msgstr "Number of products" +msgstr "" msgctxt "nutrient_in_quantity" msgid "%s in %s" -msgstr "%s in %s" +msgstr "" msgctxt "nutrient_levels_info" msgid "Nutrient levels for 100 g" -msgstr "Nutrient levels for 100 g" +msgstr "" msgctxt "nutrient_levels_link" msgid "/nutrient-levels" -msgstr "/nutrient-levels" +msgstr "" msgctxt "nutrient_levels_p" msgid "nutrient levels" -msgstr "nutrient levels" +msgstr "" msgctxt "nutrient_levels_s" msgid "nutrient level" -msgstr "nutrient level" +msgstr "" msgctxt "nutriments_p" msgid "nutriments" @@ -1493,27 +1460,27 @@ msgstr "Products that do not contain the nutrient %s" msgctxt "nutrition_alt" msgid "Nutrition facts" -msgstr "Nutrition facts" +msgstr "" msgctxt "nutrition_data" msgid "Nutrition facts" -msgstr "Nutrition facts" +msgstr "" msgctxt "nutrition_data_average" msgid "Average nutrition facts for the %d products of the %s category for which nutrition facts are known (out of %d products)." -msgstr "Average nutrition facts for the %d products of the %s category for which nutrition facts are known (out of %d products)." +msgstr "" msgctxt "nutrition_data_compare_percent" msgid "% of difference" -msgstr "% of difference" +msgstr "" msgctxt "nutrition_data_compare_value" msgid "value for 100 g / 100 ml" -msgstr "value for 100 g / 100 ml" +msgstr "" msgctxt "nutrition_data_comparison_with_categories" msgid "Comparison to average values of products in the same category:" -msgstr "Comparison to average values of products in the same category:" +msgstr "" msgctxt "nutrition_data_comparison_with_categories_note" msgid "Please note: for each nutriment, the average is computed for products for which the nutriment quantity is known, not on all products of the category." @@ -1521,15 +1488,15 @@ msgstr "Please note: for each nutrient, the average is computed for products for msgctxt "nutrition_data_note" msgid "If the picture is sufficiently sharp and level, nutrition facts can be automatically extracted from the picture." -msgstr "If the picture is sufficiently sharp and level, nutrition facts can be automatically extracted from the picture." +msgstr "" msgctxt "nutrition_data_per_10" msgid "10th centile" -msgstr "10th centile" +msgstr "" msgctxt "nutrition_data_per_100g" msgid "for 100 g / 100 ml" -msgstr "for 100 g / 100 ml" +msgstr "" msgctxt "nutrition_data_per_5" msgid "5th centile" @@ -1537,11 +1504,11 @@ msgstr "" msgctxt "nutrition_data_per_50" msgid "Median" -msgstr "Median" +msgstr "" msgctxt "nutrition_data_per_90" msgid "90th centile" -msgstr "90th centile" +msgstr "" msgctxt "nutrition_data_per_95" msgid "95th centile" @@ -1549,27 +1516,27 @@ msgstr "" msgctxt "nutrition_data_per_max" msgid "Maximum" -msgstr "Maximum" +msgstr "" msgctxt "nutrition_data_per_mean" msgid "Mean" -msgstr "Mean" +msgstr "" msgctxt "nutrition_data_per_min" msgid "Minimum" -msgstr "Minimum" +msgstr "" msgctxt "nutrition_data_per_serving" msgid "per serving" -msgstr "per serving" +msgstr "" msgctxt "nutrition_data_per_std" msgid "Standard deviation" -msgstr "Standard deviation" +msgstr "" msgctxt "nutrition_data_table" msgid "Nutrition facts" -msgstr "Nutrition facts" +msgstr "" msgctxt "nutrition_data_table_note" msgid "The table lists by default nutriments that are often specified. Leave the field blank if it's not on the label.
    You can add extra nutriments (vitamins, minerals, cholesterol etc.)\n" @@ -1579,255 +1546,253 @@ msgstr "The table lists by default nutrients that are often specified. Leave the msgctxt "nutrition_data_table_sub" msgid "-" -msgstr "-" +msgstr "" msgctxt "nutrition_grades_p" msgid "Nutrition grades" -msgstr "Nutrition grades" +msgstr "" msgctxt "nutrition_grades_s" msgid "Nutrition grade" -msgstr "Nutrition grade" +msgstr "" msgctxt "og_image_url" msgid "https://world.openfoodfacts.org/images/misc/openfoodfacts-logo-en-356.png" -msgstr "https://world.openfoodfacts.org/images/misc/openfoodfacts-logo-en-356.png" +msgstr "" msgctxt "on_the_blog_content" msgid "

    To learn more about <>, visit our blog!

    \n" "

    Recent news:

    \n" -msgstr "

    To learn more about <>, visit our blog!

    \n" -"

    Recent news:

    \n" +msgstr "" msgctxt "on_the_blog_title" msgid "News" -msgstr "News" +msgstr "" msgctxt "openfoodhunt_points" msgid "It's Open Food Hunt on <> from Saturday February 21st 2015 to Sunday March 1st 2015! Contributors are awarded\n" "Explorer points for products they add and Ambassador points for new contributors they recruit. Points are updated every 30 minutes." -msgstr "It's Open Food Hunt on <> from Saturday February 21st 2015 to Sunday March 1st 2015! Contributors are awarded\n" -"Explorer points for products they add and Ambassador points for new contributors they recruit. Points are updated every 30 minutes." +msgstr "" msgctxt "or" msgid "or:" -msgstr "or:" +msgstr "" msgctxt "origins" msgid "Origin of ingredients" -msgstr "Origin of ingredients" +msgstr "" msgctxt "origins_example" msgid "California, USA" -msgstr "California, USA" +msgstr "" msgctxt "origins_note_xxx" msgid "Indicate the origin of ingredients" -msgstr "Indicate the origin of ingredients" +msgstr "" msgctxt "origins_p" msgid "origins of ingredients" -msgstr "origins of ingredients" +msgstr "" msgctxt "origins_products" msgid "Products with ingredients originating from %s" -msgstr "Products with ingredients originating from %s" +msgstr "" msgctxt "origins_s" msgid "origin of ingredients" -msgstr "origin of ingredients" +msgstr "" msgctxt "origins_tagsinput" msgid "add an origin" -msgstr "add an origin" +msgstr "" msgctxt "origins_without_products" msgid "Products without ingredients originating from %s" -msgstr "Products without ingredients originating from %s" +msgstr "" msgctxt "packaging" msgid "Packaging" -msgstr "Packaging" +msgstr "" msgctxt "packaging_example" msgid "Fresh, Canned, Frozen, Bottle, Box, Glass, Plastic..." -msgstr "Fresh, Canned, Frozen, Bottle, Box, Glass, Plastic..." +msgstr "" msgctxt "packaging_note" msgid "Packaging type, format, material" -msgstr "Packaging type, format, material" +msgstr "" msgctxt "packaging_p" msgid "packaging" -msgstr "packaging" +msgstr "" msgctxt "packaging_products" msgid "Products with a %s packaging" -msgstr "Products with a %s packaging" +msgstr "" msgctxt "packaging_s" msgid "packaging" -msgstr "packaging" +msgstr "" msgctxt "packaging_tagsinput" msgid "add a type, shape or material" -msgstr "add a type, shape or material" +msgstr "" msgctxt "packaging_without_products" msgid "Products without a %s packaging" -msgstr "Products without a %s packaging" +msgstr "" msgctxt "page_x" msgid "Page %d" -msgstr "Page %d" +msgstr "" msgctxt "page_x_out_of_y" msgid "Page %d out of %d." -msgstr "Page %d out of %d." +msgstr "" msgctxt "pages" msgid "Pages:" -msgstr "Pages:" +msgstr "" msgctxt "password" msgid "Password" -msgstr "Password" +msgstr "" msgctxt "password_confirm" msgid "Confirm password" -msgstr "Confirm password" +msgstr "" msgctxt "periods_after_opening" msgid "Period of time after opening" -msgstr "Period of time after opening" +msgstr "" msgctxt "periods_after_opening_note" msgid "Found in an open container logo with a number of months: e.g. 12 M" -msgstr "Found in an open container logo with a number of months: e.g. 12 M" +msgstr "" msgctxt "periods_after_opening_p" msgid "Periods after opening" -msgstr "Periods after opening" +msgstr "" msgctxt "periods_after_opening_s" msgid "Period after opening" -msgstr "Period after opening" +msgstr "" msgctxt "photographers_p" msgid "photographers" -msgstr "photographers" +msgstr "" msgctxt "photographers_s" msgid "photographer" -msgstr "photographer" +msgstr "" msgctxt "pnns_groups_1" msgid "PNNS groups 1" -msgstr "PNNS groups 1" +msgstr "" msgctxt "pnns_groups_1_p" msgid "PNNS groups 1" -msgstr "PNNS groups 1" +msgstr "" msgctxt "pnns_groups_1_s" msgid "PNNS group 1" -msgstr "PNNS group 1" +msgstr "" msgctxt "pnns_groups_2" msgid "PNNS groups 2" -msgstr "PNNS groups 2" +msgstr "" msgctxt "pnns_groups_2_p" msgid "PNNS groups 2" -msgstr "PNNS groups 2" +msgstr "" msgctxt "pnns_groups_2_s" msgid "PNNS group 2" -msgstr "PNNS group 2" +msgstr "" msgctxt "points_all_countries" msgid "There are %d Explorers and %d Ambassadors." -msgstr "There are %d Explorers and %d Ambassadors." +msgstr "" msgctxt "points_all_users" msgid "There are Explorers for %d countries and Ambassadors for %d countries." -msgstr "There are Explorers for %d countries and Ambassadors for %d countries." +msgstr "" msgctxt "points_country" msgid "%s has %d Explorers and %d Ambassadors." -msgstr "%s has %d Explorers and %d Ambassadors." +msgstr "" msgctxt "points_ranking" msgid "Ranking" -msgstr "Ranking" +msgstr "" msgctxt "points_ranking_users_and_countries" msgid "Ranking of contributors and countries" -msgstr "Ranking of contributors and countries" +msgstr "" msgctxt "points_user" msgid "%s is an Explorer for %d countries and an Ambassador for %d countries." -msgstr "%s is an Explorer for %d countries and an Ambassador for %d countries." +msgstr "" msgctxt "previous" msgid "Previous" -msgstr "Previous" +msgstr "" msgctxt "product_add_nutrient" msgid "Add a nutrient" -msgstr "Add a nutrient" +msgstr "" msgctxt "product_added" msgid "Product added on" -msgstr "Product added on" +msgstr "" msgctxt "product_changes_saved" msgid "Changes saved." -msgstr "Changes saved." +msgstr "" msgctxt "product_characteristics" msgid "Product characteristics" -msgstr "Product characteristics" +msgstr "" msgctxt "product_created" msgid "Product created" -msgstr "Product created" +msgstr "" msgctxt "product_description" msgid "Ingredients, allergens, additives, nutrition facts, labels, origin of ingredients and information on product %s" -msgstr "Ingredients, allergens, additives, nutrition facts, labels, origin of ingredients and information on product %s" +msgstr "" msgctxt "product_image" msgid "Product picture" -msgstr "Product picture" +msgstr "" msgctxt "product_image_with_barcode" msgid "Picture with barcode:" -msgstr "Picture with barcode:" +msgstr "" msgctxt "product_js_current_image" msgid "Current image:" -msgstr "Current image:" +msgstr "" msgctxt "product_js_deleting_images" msgid "Deleting images" -msgstr "Deleting images" +msgstr "" msgctxt "product_js_extract_ingredients" msgid "Extract the ingredients from the picture" -msgstr "Extract the ingredients from the picture" +msgstr "" msgctxt "product_js_extracted_ingredients_nok" msgid "Ingredients text could not be extracted. Try with a sharper image, with higher resolution or a better framing of the text." -msgstr "Ingredients text could not be extracted. Try with a sharper image, with higher resolution or a better framing of the text." +msgstr "" msgctxt "product_js_extracted_ingredients_ok" msgid "Ingredients text has been extracted. Text recognition is not perfect, so please check the text below and correct errors if needed." -msgstr "Ingredients text has been extracted. Text recognition is not perfect, so please check the text below and correct errors if needed." +msgstr "" msgctxt "product_js_extracting_ingredients" msgid "Extracting ingredients" -msgstr "Extracting ingredients" +msgstr "" msgctxt "product_js_image_normalize" msgid "Normalize colors" @@ -1835,159 +1800,159 @@ msgstr "Normalise colours" msgctxt "product_js_image_open_full_size_image" msgid "Open the picture in original size in a new windows" -msgstr "Open the picture in original size in a new windows" +msgstr "" msgctxt "product_js_image_received" msgid "Image received" -msgstr "Image received" +msgstr "" msgctxt "product_js_image_rotate_and_crop" msgid "Rotate the image if necessary, then click and drag to select the interesting zone:" -msgstr "Rotate the image if necessary, then click and drag to select the interesting zone:" +msgstr "" msgctxt "product_js_image_rotate_left" msgid "Rotate left" -msgstr "Rotate left" +msgstr "" msgctxt "product_js_image_rotate_right" msgid "Rotate right" -msgstr "Rotate right" +msgstr "" msgctxt "product_js_image_save" msgid "Validate and/or resize image" -msgstr "Validate and/or resize image" +msgstr "" msgctxt "product_js_image_saved" msgid "Image saved" -msgstr "Image saved" +msgstr "" msgctxt "product_js_image_saving" msgid "Saving image" -msgstr "Saving image" +msgstr "" msgctxt "product_js_image_upload_error" msgid "Error while uploading image" -msgstr "Error while uploading image" +msgstr "" msgctxt "product_js_image_white_magic" msgid "Photo on white background: try to remove the background" -msgstr "Photo on white background: try to remove the background" +msgstr "" msgctxt "product_js_images_delete_error" msgid "Errors while deleting images" -msgstr "Errors while deleting images" +msgstr "" msgctxt "product_js_images_deleted" msgid "Images deleted" -msgstr "Images deleted" +msgstr "" msgctxt "product_js_images_move_error" msgid "Errors while moving images" -msgstr "Errors while moving images" +msgstr "" msgctxt "product_js_images_moved" msgid "Images moved" -msgstr "Images moved" +msgstr "" msgctxt "product_js_moving_images" msgid "Moving images" -msgstr "Moving images" +msgstr "" msgctxt "product_js_upload_image" msgid "Add a picture" -msgstr "Add a picture" +msgstr "" msgctxt "product_js_upload_image_note" msgid "→ With Chrome, Firefox and Safari, you can select multiple pictures (product, ingredients, nutrition facts etc.) by clicking them while holding the Ctrl key pressed to add them all in one shot." -msgstr "→ With Chrome, Firefox and Safari, you can select multiple pictures (product, ingredients, nutrition facts etc.) by clicking them while holding the Ctrl key pressed to add them all in one shot." +msgstr "" msgctxt "product_js_uploading_image" msgid "Uploading image" -msgstr "Uploading image" +msgstr "" msgctxt "product_last_edited" msgid "Last edit of product page on" -msgstr "Last edit of product page on" +msgstr "" msgctxt "product_name" msgid "Product name" -msgstr "Product name" +msgstr "" msgctxt "product_name_example" msgid "Kinder Bueno White" -msgstr "Kinder Bueno White" +msgstr "" msgctxt "products" msgid "products" -msgstr "products" +msgstr "" msgctxt "products_stats" msgid "Evolution of the number of products on <>" -msgstr "Evolution of the number of products on <>" +msgstr "" msgctxt "products_stats_completed_t" msgid "Products with complete information" -msgstr "Products with complete information" +msgstr "" msgctxt "products_stats_created_t" msgid "Products" -msgstr "Products" +msgstr "" msgctxt "products_with_nutriments" msgid "with nutrition facts" -msgstr "with nutrition facts" +msgstr "" msgctxt "products_you_edited" msgid "Products you added or edited" -msgstr "Products you added or edited" +msgstr "" msgctxt "purchase_places" msgid "City, state and country where purchased" -msgstr "City, state and country where purchased" +msgstr "" msgctxt "purchase_places_note" msgid "Indicate where you bought or saw the product (at least the country)" -msgstr "Indicate where you bought or saw the product (at least the country)" +msgstr "" msgctxt "purchase_places_p" msgid "purchase places" -msgstr "purchase places" +msgstr "" msgctxt "purchase_places_products" msgid "Products sold in %s" -msgstr "Products sold in %s" +msgstr "" msgctxt "purchase_places_s" msgid "purchase place" -msgstr "purchase place" +msgstr "" msgctxt "purchase_places_tagsinput" msgid "add a place" -msgstr "add a place" +msgstr "" msgctxt "purchase_places_without_products" msgid "Products not sold in %s" -msgstr "Products not sold in %s" +msgstr "" msgctxt "quantity" msgid "Quantity" -msgstr "Quantity" +msgstr "" msgctxt "quantity_example" msgid "2 l, 250 g, 1 kg, 25 cl, 6 fl oz, 1 pound" -msgstr "2 l, 250 g, 1 kg, 25 cl, 6 fl oz, 1 pound" +msgstr "" msgctxt "remember_me" msgid "Remember me" -msgstr "Remember me" +msgstr "" msgctxt "remember_purchase_places_and_stores" msgid "Remember the place of purchase and store for the next product adds" -msgstr "Remember the place of purchase and store for the next product adds" +msgstr "" msgctxt "reset_password" msgid "Reset password" -msgstr "Reset password" +msgstr "" msgctxt "reset_password_email_body" msgid "Hello ,\n\n" @@ -2003,63 +1968,63 @@ msgstr "" msgctxt "reset_password_email_subject" msgid "Reset of your password on <>" -msgstr "Reset of your password on <>" +msgstr "" msgctxt "reset_password_reset" msgid "Your password has been changed. You can now log-in with this password." -msgstr "Your password has been changed. You can now log-in with this password." +msgstr "" msgctxt "reset_password_reset_msg" msgid "Enter a new password." -msgstr "Enter a new password." +msgstr "" msgctxt "reset_password_send_email" msgid "An email with a link to reset your password has been sent to the e-mail address associated with your account." -msgstr "An email with a link to reset your password has been sent to the e-mail address associated with your account." +msgstr "" msgctxt "reset_password_send_email_msg" msgid "If you have forgotten your password, fill-in your username or e-mail address to receive instructions for resetting your password." -msgstr "If you have forgotten your password, fill-in your username or e-mail address to receive instructions for resetting your password." +msgstr "" msgctxt "risk_level" msgid "Risk" -msgstr "Risk" +msgstr "" msgctxt "risk_level_0" msgid "To be completed" -msgstr "To be completed" +msgstr "" msgctxt "risk_level_1" msgid "Low risks" -msgstr "Low risks" +msgstr "" msgctxt "risk_level_2" msgid "Moderate risks" -msgstr "Moderate risks" +msgstr "" msgctxt "risk_level_3" msgid "High risks" -msgstr "High risks" +msgstr "" msgctxt "salt_equivalent" msgid "salt equivalent" -msgstr "salt equivalent" +msgstr "" msgctxt "save" msgid "Save" -msgstr "Save" +msgstr "" msgctxt "saved" msgid "Saved." -msgstr "Saved." +msgstr "" msgctxt "saving" msgid "Saving." -msgstr "Saving." +msgstr "" msgctxt "search" msgid "Search" -msgstr "Search" +msgstr "" msgctxt "search_a_product_placeholder" msgid "Search a product" @@ -2067,35 +2032,35 @@ msgstr "Search for a product" msgctxt "search_button" msgid "Search" -msgstr "Search" +msgstr "" msgctxt "search_contains" msgid "contains" -msgstr "contains" +msgstr "" msgctxt "search_criteria" msgid "Select products with specific brands, categories, labels, origins of ingredients, manufacturing places etc." -msgstr "Select products with specific brands, categories, labels, origins of ingredients, manufacturing places etc." +msgstr "" msgctxt "search_description_opensearch" msgid "Open Food Facts product search" -msgstr "Open Food Facts product search" +msgstr "" msgctxt "search_does_not_contain" msgid "does not contain" -msgstr "does not contain" +msgstr "" msgctxt "search_download_button" msgid "Download" -msgstr "Download" +msgstr "" msgctxt "search_download_choice" msgid "Download results" -msgstr "Download results" +msgstr "" msgctxt "search_download_results" msgid "Download results in CSV format (Excel, OpenOffice)" -msgstr "Download results in CSV format (Excel, OpenOffice)" +msgstr "" msgctxt "search_download_results_description" msgid "Character set: Unicode (UTF-8). Separator: tabulation (tab)." @@ -2103,53 +2068,52 @@ msgstr "" msgctxt "search_edit" msgid "Change search criteria" -msgstr "Change search criteria" +msgstr "" msgctxt "search_flatten_tags" msgid "(Optional) - Create a column for every:" -msgstr "(Optional) - Create a column for every:" +msgstr "" msgctxt "search_generate_graph" msgid "Generate graph" -msgstr "Generate graph" +msgstr "" msgctxt "search_generate_map" msgid "Generate the map" -msgstr "Generate the map" +msgstr "" msgctxt "search_graph" msgid "Graph" -msgstr "Graph" +msgstr "" msgctxt "search_graph_2_axis" msgid "Scatter plot" -msgstr "Scatter plot" +msgstr "" msgctxt "search_graph_blog" msgid "

    → learn more about <> graphs: Graphs in 3 clicks (blog).

    " -msgstr "

    → learn more about <> graphs: Graphs in 3 clicks (blog).

    " +msgstr "" msgctxt "search_graph_choice" msgid "Results on a graph" -msgstr "Results on a graph" +msgstr "" msgctxt "search_graph_instructions" msgid "Select what you want to graph on the horizontal axis to obtain a histogram, or select two axis to\n" "get a cloud of products (scatter plot)." -msgstr "Select what you want to graph on the horizontal axis to obtain a histogram, or select two axis to\n" -"get a cloud of products (scatter plot)." +msgstr "" msgctxt "search_graph_link" msgid "Permanent link to this graph, shareable by e-mail and on social networks" -msgstr "Permanent link to this graph, shareable by e-mail and on social networks" +msgstr "" msgctxt "search_graph_note" msgid "The graph will show only products for which displayed values are known." -msgstr "The graph will show only products for which displayed values are known." +msgstr "" msgctxt "search_graph_title" msgid "Display results on a graph" -msgstr "Display results on a graph" +msgstr "" msgctxt "search_graph_warning" msgid "Note: this is a user generated graph. The title, represented products and axis of visualization have been chosen by the author of the graph." @@ -2157,39 +2121,39 @@ msgstr "Note: this is a user generated graph. The title, represented products an msgctxt "search_indifferent" msgid "Indifferent" -msgstr "Indifferent" +msgstr "" msgctxt "search_ingredients" msgid "Ingredients" -msgstr "Ingredients" +msgstr "" msgctxt "search_link" msgid "Permanent link to these results, shareable by e-mail and on social networks" -msgstr "Permanent link to these results, shareable by e-mail and on social networks" +msgstr "" msgctxt "search_list_choice" msgid "Results in a list of products" -msgstr "Results in a list of products" +msgstr "" msgctxt "search_map" msgid "Map" -msgstr "Map" +msgstr "" msgctxt "search_map_choice" msgid "Results on a map" -msgstr "Results on a map" +msgstr "" msgctxt "search_map_link" msgid "Permanent link to this map, shareable by e-mail and on social networks" -msgstr "Permanent link to this map, shareable by e-mail and on social networks" +msgstr "" msgctxt "search_map_note" msgid "The map will show only products for which the production place is known." -msgstr "The map will show only products for which the production place is known." +msgstr "" msgctxt "search_map_title" msgid "Display results on a map" -msgstr "Display results on a map" +msgstr "" msgctxt "search_nutriment" msgid "choose a nutriment..." @@ -2201,19 +2165,19 @@ msgstr "Nutrients" msgctxt "search_or" msgid "or" -msgstr "or" +msgstr "" msgctxt "search_page_size" msgid "Results per page" -msgstr "Results per page" +msgstr "" msgctxt "search_products" msgid "Products search" -msgstr "Products search" +msgstr "" msgctxt "search_results" msgid "Search results" -msgstr "Search results" +msgstr "" msgctxt "search_series" msgid "Use a different color for the following products:" @@ -2221,15 +2185,15 @@ msgstr "Use a different colour for the following products:" msgctxt "search_series_default" msgid "Other products" -msgstr "Other products" +msgstr "" msgctxt "search_series_fairtrade" msgid "Fair trade" -msgstr "Fair trade" +msgstr "" msgctxt "search_series_fairtrade_label" msgid "fair-trade" -msgstr "fair-trade" +msgstr "" msgctxt "search_series_nutrition_grades" msgid "Use nutrition grades colors" @@ -2237,31 +2201,31 @@ msgstr "Use nutrition grades colours" msgctxt "search_series_organic" msgid "Organic" -msgstr "Organic" +msgstr "" msgctxt "search_series_organic_label" msgid "organic" -msgstr "organic" +msgstr "" msgctxt "search_series_with_sweeteners" msgid "With sweeteners" -msgstr "With sweeteners" +msgstr "" msgctxt "search_tag" msgid "choose a criterion..." -msgstr "choose a criterion..." +msgstr "" msgctxt "search_tags" msgid "Criteria" -msgstr "Criteria" +msgstr "" msgctxt "search_terms" msgid "Search terms" -msgstr "Search terms" +msgstr "" msgctxt "search_terms_note" msgid "Search for words present in the product name, generic name, brands, categories, origins and labels" -msgstr "Search for words present in the product name, generic name, brands, categories, origins and labels" +msgstr "" msgctxt "search_title" msgid "Search a product, brand, ingredient, nutriment etc." @@ -2269,35 +2233,35 @@ msgstr "Search a product, brand, ingredient, nutrient etc." msgctxt "search_title_graph" msgid "Results graph" -msgstr "Results graph" +msgstr "" msgctxt "search_title_map" msgid "Results map" -msgstr "Results map" +msgstr "" msgctxt "search_tools" msgid "Search tools" -msgstr "Search tools" +msgstr "" msgctxt "search_value" msgid "value" -msgstr "value" +msgstr "" msgctxt "search_with" msgid "With" -msgstr "With" +msgstr "" msgctxt "search_without" msgid "Without" -msgstr "Without" +msgstr "" msgctxt "see_product_page" msgid "See the product page" -msgstr "See the product page" +msgstr "" msgctxt "select_country" msgid "Country" -msgstr "Country" +msgstr "" msgctxt "select_lang" msgid "Language" @@ -2305,23 +2269,23 @@ msgstr "Languages" msgctxt "send_image" msgid "Send a picture..." -msgstr "Send a picture..." +msgstr "" msgctxt "send_image_error" msgid "Upload error" -msgstr "Upload error" +msgstr "" msgctxt "sending_image" msgid "Sending image" -msgstr "Sending image" +msgstr "" msgctxt "serving_size" msgid "Serving size" -msgstr "Serving size" +msgstr "" msgctxt "serving_size_example" msgid "60 g, 12 oz, 20cl, 2 fl oz" -msgstr "60 g, 12 oz, 20cl, 2 fl oz" +msgstr "" msgctxt "session_title" msgid "Sign-in" @@ -2329,245 +2293,244 @@ msgstr "Sign in" msgctxt "share" msgid "Share" -msgstr "Share" +msgstr "" msgctxt "show_category_stats" msgid "Show detailed stats" -msgstr "Show detailed stats" +msgstr "" msgctxt "show_category_stats_details" msgid "standard deviation, minimum, maximum, 10th and 90th percentiles" -msgstr "standard deviation, minimum, maximum, 10th and 90th percentiles" +msgstr "" msgctxt "signin_before_submit" msgid "If you already have an account on , please sign-in before filling this form." -msgstr "If you already have an account on , please sign-in before filling this form." +msgstr "" msgctxt "signout" msgid "Sign-out" -msgstr "Sign-out" +msgstr "" msgctxt "site_description" msgid "A collaborative, free and open database of ingredients, nutrition facts and information on food products from around the world" -msgstr "A collaborative, free and open database of ingredients, nutrition facts and information on food products from around the world" +msgstr "" msgctxt "site_name" msgid "Open Food Facts" -msgstr "Open Food Facts" +msgstr "" msgctxt "sort_by" msgid "Sort by" -msgstr "Sort by" +msgstr "" msgctxt "sort_created_t" msgid "Add date" -msgstr "Add date" +msgstr "" msgctxt "sort_modified_t" msgid "Edit date" -msgstr "Edit date" +msgstr "" msgctxt "sort_popularity" msgid "Popularity" -msgstr "Popularity" +msgstr "" msgctxt "sort_product_name" msgid "Product name" -msgstr "Product name" +msgstr "" msgctxt "state" msgid "State" -msgstr "State" +msgstr "" msgctxt "states_p" msgid "states" -msgstr "states" +msgstr "" msgctxt "states_s" msgid "state" -msgstr "state" +msgstr "" msgctxt "stores" msgid "Stores" -msgstr "Stores" +msgstr "" msgctxt "stores_note" msgid "Name of the shop or supermarket chain" -msgstr "Name of the shop or supermarket chain" +msgstr "" msgctxt "stores_p" msgid "stores" -msgstr "stores" +msgstr "" msgctxt "stores_products" msgid "Products sold at %s" -msgstr "Products sold at %s" +msgstr "" msgctxt "stores_s" msgid "store" -msgstr "store" +msgstr "" msgctxt "stores_tagsinput" msgid "add a store" -msgstr "add a store" +msgstr "" msgctxt "stores_without_products" msgid "Products not bought at %s" -msgstr "Products not bought at %s" +msgstr "" msgctxt "subscribe" msgid "Subscribe" -msgstr "Subscribe" +msgstr "" msgctxt "tag_belongs_to" msgid "Belongs to:" -msgstr "Belongs to:" +msgstr "" msgctxt "tag_contains" msgid "Contains:" -msgstr "Contains:" +msgstr "" msgctxt "tag_weblinks" msgid "Weblinks" -msgstr "Weblinks" +msgstr "" msgctxt "tagstable_filtered" msgid "out of _MAX_" -msgstr "out of _MAX_" +msgstr "" msgctxt "tagstable_search" msgid "Search:" -msgstr "Search:" +msgstr "" msgctxt "traces" msgid "Traces" -msgstr "Traces" +msgstr "" msgctxt "traces_example" msgid "Milk, Gluten, Nuts" -msgstr "Milk, Gluten, Nuts" +msgstr "" msgctxt "traces_note" msgid "Indicate ingredients from mentions like \"May contain traces of\", \"Made in a factory that also uses\" etc." -msgstr "Indicate ingredients from mentions like \"May contain traces of\", \"Made in a factory that also uses\" etc." +msgstr "" msgctxt "traces_p" msgid "traces" -msgstr "traces" +msgstr "" msgctxt "traces_s" msgid "trace" -msgstr "trace" +msgstr "" msgctxt "twitter" msgid "Twitter username (optional)" -msgstr "Twitter username (optional)" +msgstr "" msgctxt "twitter_account" msgid "OpenFoodFacts" -msgstr "OpenFoodFacts" +msgstr "" msgctxt "unknown" msgid "Unknown" -msgstr "Unknown" +msgstr "" msgctxt "unknown_nutrients_p" msgid "unknown nutrients" -msgstr "unknown nutrients" +msgstr "" msgctxt "unknown_nutrients_s" msgid "unknown nutrient" -msgstr "unknown nutrient" +msgstr "" msgctxt "unsubscribe" msgid "Unsubscribe" -msgstr "Unsubscribe" +msgstr "" msgctxt "unsubscribe_info" msgid "You can unsubscribe from the lists at any time." -msgstr "You can unsubscribe from the lists at any time." +msgstr "" msgctxt "userid_or_email" msgid "Username or e-mail address: " -msgstr "Username or e-mail address: " +msgstr "" msgctxt "username" msgid "User name" -msgstr "User name" +msgstr "" msgctxt "username_info" msgid "(non-accented letters, digits and/or dashes)" -msgstr "(non-accented letters, digits and/or dashes)" +msgstr "" msgctxt "username_or_email" msgid "Username or email address" -msgstr "Username or email address" +msgstr "" msgctxt "users_add_products" msgid "Products that were added by the user %s" -msgstr "Products that were added by the user %s" +msgstr "" msgctxt "users_add_without_products" msgid "Products that were not added by the user %s" -msgstr "Products that were not added by the user %s" +msgstr "" msgctxt "users_edit_products" msgid "Products that were edited by the user %s" -msgstr "Products that were edited by the user %s" +msgstr "" msgctxt "users_edit_without_products" msgid "Products that were not edited by the user %s" -msgstr "Products that were not edited by the user %s" +msgstr "" msgctxt "users_p" msgid "contributors" -msgstr "contributors" +msgstr "" msgctxt "users_products" msgid "Products added by %s" -msgstr "Products added by %s" +msgstr "" msgctxt "users_s" msgid "contributor" -msgstr "contributor" +msgstr "" msgctxt "users_without_products" msgid "Products not added by %s" -msgstr "Products not added by %s" +msgstr "" msgctxt "view" msgid "view" -msgstr "view" +msgstr "" msgctxt "view_list_for_products_from_the_entire_world" msgid "View the list for matching products from the entire world" -msgstr "View the list for matching products from the entire world" +msgstr "" msgctxt "view_products_from_the_entire_world" msgid "View matching products from the entire world" -msgstr "View matching products from the entire world" +msgstr "" msgctxt "view_results_from_the_entire_world" msgid "View results from the entire world" -msgstr "View results from the entire world" +msgstr "" msgctxt "warning_3rd_party_content" msgid "Information and data must come from the product package and label (and not from other sites or the manufacturer's site), and you must have taken the pictures yourself.
    \n" "→ Why it matters" -msgstr "Information and data must come from the product package and label (and not from other sites or the manufacturer's site), and you must have taken the pictures yourself.
    \n" -"→ Why it matters" +msgstr "" msgctxt "website" msgid "Site or blog address" -msgstr "Site or blog address" +msgstr "" msgctxt "weekdays" msgid "['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday']" -msgstr "['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday']" +msgstr "" msgctxt "windows_phone_app_badge" msgid "\"Windows" -msgstr "\"Windows" +msgstr "" msgctxt "windows_phone_app_link" msgid "https://www.windowsphone.com/en-us/store/app/openfoodfacts/5d7cf939-cfd9-4ac0-86d7-91b946f4df34" @@ -2575,27 +2538,27 @@ msgstr "" msgctxt "you_are_connected_as_x" msgid "You are connected as %s." -msgstr "You are connected as %s." +msgstr "" msgctxt "product_js_unselect_image" msgid "Unselect image" -msgstr "Unselect image" +msgstr "" msgctxt "product_js_unselecting_image" msgid "Unselecting image." -msgstr "Unselecting image." +msgstr "" msgctxt "product_js_unselected_image_ok" msgid "Unselected image." -msgstr "Unselected image." +msgstr "" msgctxt "product_js_unselected_image_nok" msgid "Error while unselecting image." -msgstr "Error while unselecting image." +msgstr "" msgctxt "nutrition_grade_fr_fiber_warning" msgid "Warning: the amount of fiber is not specified, their possible positive contribution to the grade could not be taken into account." -msgstr "Warning: the amount of fiber is not specified, their possible positive contribution to the grade could not be taken into account." +msgstr "" msgctxt "nutrition_grade_fr_no_fruits_vegetables_nuts_warning" msgid "Warning: the amount of fruits, vegetables and nuts is not specified, their possible positive contribution to the grade could not be taken into account." @@ -2611,69 +2574,73 @@ msgstr "" msgctxt "nutrition_grade_fr_title" msgid "NutriScore color nutrition grade" -msgstr "NutriScore color nutrition grade" +msgstr "" msgctxt "nutrition_grade_fr_formula" msgid "How the color nutrition grade is computed" -msgstr "How the color nutrition grade is computed" +msgstr "" msgctxt "nutrition_grade_fr_alt" msgid "NutriScore nutrition grade" -msgstr "NutriScore nutrition grade" +msgstr "" msgctxt "delete_product_page" msgid "Delete the product page" -msgstr "Delete the product page" +msgstr "" msgctxt "deleting_product" msgid "Deleting product" -msgstr "Deleting product" +msgstr "" msgctxt "has_deleted_product" msgid "has deleted product" -msgstr "has deleted product" +msgstr "" msgctxt "delete_product_confirm" msgid "Are you sure that you want to delete the page for this product?" -msgstr "Are you sure that you want to delete the page for this product?" +msgstr "" msgctxt "delete_user" msgid "Delete the user" -msgstr "Delete the user" +msgstr "" msgctxt "sources_openfood_ch" msgid "Some of the data and/or images comes from the OpenFood.ch database (the exact list is available in the product edit history). Those elements are licenced under the Creative Commons Attribution 4.0 International License." -msgstr "Some of the data and/or images comes from the OpenFood.ch database (the exact list is available in the product edit history). Those elements are licenced under the Creative Commons Attribution 4.0 International License." +msgstr "" msgctxt "sources_openfood_ch_product_page" msgid "Product page on openfood.ch" -msgstr "Product page on openfood.ch" +msgstr "" msgctxt "sources_usda_ndb" msgid "Some of the data comes from the USDA National Nutrients Database for Branded Foods (the exact list is available in the product edit history)." -msgstr "Some of the data comes from the USDA National Nutrients Database for Branded Foods (the exact list is available in the product edit history)." +msgstr "" msgctxt "sources_usda_ndb_product_page" msgid "Product page on USDA NDB" -msgstr "Product page on USDA NDB" +msgstr "" msgctxt "donate" msgid "Donate to Open Food Facts" -msgstr "Donate to Open Food Facts" +msgstr "" msgctxt "donate_link" msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" -msgstr "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" msgctxt "sources_fleurymichon" msgid "Some of the data and images have been provided directly by the manufacturer Fleury Michon." -msgstr "Some of the data and images have been provided directly by the manufacturer Fleury Michon." +msgstr "" msgctxt "sources_manufacturer" msgid "Some of the data for this product has been provided directly by the manufacturer %s" -msgstr "Some of the data for this product has been provided directly by the manufacturer %s" +msgstr "" msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" -msgstr "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" +msgstr "" + +msgctxt "title_separator" +msgid " — " +msgstr "" diff --git a/po/common/en_GB.po b/po/common/en_GB.po index 70b48cff734db..1d37c549f2d6c 100644 --- a/po/common/en_GB.po +++ b/po/common/en_GB.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: en_GB\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:54-0400\n" +"PO-Revision-Date: 2017-09-22 04:11-0400\n" "Language-Team: English, United Kingdom\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -26,35 +26,35 @@ msgstr "English (United Kingdom)" msgctxt "1_product" msgid "1 product" -msgstr "1 product" +msgstr "" msgctxt "_and_" msgid " and " -msgstr " and " +msgstr "" msgctxt "about" msgid "About me" -msgstr "About me" +msgstr "" msgctxt "add" msgid "Add" -msgstr "Add" +msgstr "" msgctxt "add_language" msgid "Add language" -msgstr "Add language" +msgstr "" msgctxt "add_product" msgid "Add a product" -msgstr "Add a product" +msgstr "" msgctxt "add_user" msgid "Register" -msgstr "Register" +msgstr "" msgctxt "add_user_confirm" msgid "

    Thanks for joining. You can now sign-in on the site to add and edit products.

    " -msgstr "

    Thanks for joining. You can now sign-in on the site to add and edit products.

    " +msgstr "" msgctxt "add_user_email_body" msgid "Hello ,\n\n" @@ -76,63 +76,63 @@ msgstr "" msgctxt "add_user_email_subject" msgid "Thanks for joining <>" -msgstr "Thanks for joining <>" +msgstr "" msgctxt "additives_1" msgid "Potentially hazardous food additive. Limit usage." -msgstr "Potentially hazardous food additive. Limit usage." +msgstr "" msgctxt "additives_2" msgid "Hazardous food additive. Avoid." -msgstr "Hazardous food additive. Avoid." +msgstr "" msgctxt "additives_3" msgid "Food additive banned in Europe. Avoid at all cost." -msgstr "Food additive banned in Europe. Avoid at all cost." +msgstr "" msgctxt "additives_p" msgid "additives" -msgstr "additives" +msgstr "" msgctxt "additives_s" msgid "additive" -msgstr "additive" +msgstr "" msgctxt "advanced_search" msgid "Advanced search" -msgstr "Advanced search" +msgstr "" msgctxt "advanced_search_old" msgid "Advanced search and graphs" -msgstr "Advanced search and graphs" +msgstr "" msgctxt "alcohol_warning" msgid "Excess drinking is harmful for health." -msgstr "Excess drinking is harmful for health." +msgstr "" msgctxt "all_missions" msgid "All missions" -msgstr "All missions" +msgstr "" msgctxt "allergens" msgid "Substances or products causing allergies or intolerances" -msgstr "Substances or products causing allergies or intolerances" +msgstr "" msgctxt "allergens_p" msgid "allergens" -msgstr "allergens" +msgstr "" msgctxt "allergens_s" msgid "allergen" -msgstr "allergen" +msgstr "" msgctxt "also_edited_by" msgid "Product page also edited by" -msgstr "Product page also edited by" +msgstr "" msgctxt "android_apk_app_badge" msgid "\"Android" -msgstr "\"Android" +msgstr "" msgctxt "android_apk_app_link" msgid "https://world.openfoodfacts.org/files/off.apk" @@ -140,45 +140,44 @@ msgstr "" msgctxt "android_app_badge" msgid "\"Available" -msgstr "\"Available" +msgstr "" msgctxt "android_app_link" msgid "https://play.google.com/store/apps/details?id=org.openfoodfacts.scanner" -msgstr "https://play.google.com/store/apps/details?id=org.openfoodfacts.scanner" +msgstr "" msgctxt "app_please_take_pictures" msgid "

    This product is not yet in the <> database. Could you please take some pictures of the product, barcode, ingredients list and nutrition facts to add it on <>?

    \n" "

    Thanks in advance!

    \n" -msgstr "

    This product is not yet in the <> database. Could you please take some pictures of the product, barcode, ingredients list and nutrition facts to add it on <>?

    \n" -"

    Thanks in advance!

    \n" +msgstr "" msgctxt "app_take_a_picture" msgid "Take a picture" -msgstr "Take a picture" +msgstr "" msgctxt "app_take_a_picture_note" msgid "Note: the pictures you send are published under the free licence Creative Commons Attribution and ShareAlike." -msgstr "Note: the pictures you send are published under the free licence Creative Commons Attribution and ShareAlike." +msgstr "" msgctxt "app_you_can_add_pictures" msgid "You can add pictures:" -msgstr "You can add pictures:" +msgstr "" msgctxt "axis_x" msgid "Horizontal axis" -msgstr "Horizontal axis" +msgstr "" msgctxt "axis_y" msgid "Vertical axis" -msgstr "Vertical axis" +msgstr "" msgctxt "barcode" msgid "Barcode" -msgstr "Barcode" +msgstr "" msgctxt "barcode_number" msgid "Barcode number:" -msgstr "Barcode number:" +msgstr "" msgctxt "bottom_content" msgid "\n" @@ -186,127 +185,123 @@ msgid "\n "\n" "

    Contribute to <> by adding product and win stars by\n" "fulfilling missions!

    \n" -msgstr "\n" -"\n" -"\n" -"

    Contribute to <> by adding product and win stars by\n" -"fulfilling missions!

    \n" +msgstr "" msgctxt "bottom_title" msgid "Embrace the mission" -msgstr "Embrace the mission" +msgstr "" msgctxt "brands" msgid "Brands" -msgstr "Brands" +msgstr "" msgctxt "brands_example" msgid "Kinder Bueno White, Kinder Bueno, Kinder, Ferrero" -msgstr "Kinder Bueno White, Kinder Bueno, Kinder, Ferrero" +msgstr "" msgctxt "brands_p" msgid "brands" -msgstr "brands" +msgstr "" msgctxt "brands_products" msgid "Products from the %s brand" -msgstr "Products from the %s brand" +msgstr "" msgctxt "brands_s" msgid "brand" -msgstr "brand" +msgstr "" msgctxt "brands_tagsinput" msgid "add a brand" -msgstr "add a brand" +msgstr "" msgctxt "brands_without_products" msgid "Products not from the %s brand" -msgstr "Products not from the %s brand" +msgstr "" msgctxt "by" msgid "by" -msgstr "by" +msgstr "" msgctxt "categories" msgid "Categories" -msgstr "Categories" +msgstr "" msgctxt "categories_example" msgid "Sardines in olive oil, Orange juice from concentrate" -msgstr "Sardines in olive oil, Orange juice from concentrate" +msgstr "" msgctxt "categories_note" msgid "Indicate only the most specific category. \"Parents\" categories will be automatically added." -msgstr "Indicate only the most specific category. \"Parents\" categories will be automatically added." +msgstr "" msgctxt "categories_p" msgid "categories" -msgstr "categories" +msgstr "" msgctxt "categories_products" msgid "Products from the %s category" -msgstr "Products from the %s category" +msgstr "" msgctxt "categories_s" msgid "category" -msgstr "category" +msgstr "" msgctxt "categories_tagsinput" msgid "add a category" -msgstr "add a category" +msgstr "" msgctxt "categories_without_products" msgid "Products not from the %s category" -msgstr "Products not from the %s category" +msgstr "" msgctxt "change_fields" msgid "Data" -msgstr "Data" +msgstr "" msgctxt "change_nutriments" msgid "Nutriments" -msgstr "Nutriments" +msgstr "" msgctxt "change_selected_images" msgid "Selected images" -msgstr "Selected images" +msgstr "" msgctxt "change_uploaded_images" msgid "Uploaded images" -msgstr "Uploaded images" +msgstr "" msgctxt "checkers_p" msgid "checkers" -msgstr "checkers" +msgstr "" msgctxt "checkers_s" msgid "checker" -msgstr "checker" +msgstr "" msgctxt "cities_p" msgid "packaging cities" -msgstr "packaging cities" +msgstr "" msgctxt "cities_products" msgid "Products packaged in the city of %s" -msgstr "Products packaged in the city of %s" +msgstr "" msgctxt "cities_s" msgid "packaging city" -msgstr "packaging city" +msgstr "" msgctxt "cities_without_products" msgid "Products not packaged in the city of %s" -msgstr "Products not packaged in the city of %s" +msgstr "" msgctxt "codes_p" msgid "Codes" -msgstr "Codes" +msgstr "" msgctxt "codes_s" msgid "Code" -msgstr "Code" +msgstr "" msgctxt "column_obsolete_do_not_translate_for_reference_only" msgid "\"<<site_name>\" />\n\n" @@ -337,183 +332,183 @@ msgstr "" msgctxt "completed_n_missions" msgid "completed %d missions:" -msgstr "completed %d missions:" +msgstr "" msgctxt "connected_with_facebook" msgid "You are connected with your Facebook account." -msgstr "You are connected with your Facebook account." +msgstr "" msgctxt "contributor_since" msgid "Contributor since" -msgstr "Contributor since" +msgstr "" msgctxt "copy_data" msgid "Copy data from current product to new product" -msgstr "Copy data from current product to new product" +msgstr "" msgctxt "correct_the_following_errors" msgid "Please correct the following errors:" -msgstr "Please correct the following errors:" +msgstr "" msgctxt "correctors_p" msgid "correctors" -msgstr "correctors" +msgstr "" msgctxt "correctors_s" msgid "corrector" -msgstr "corrector" +msgstr "" msgctxt "countries" msgid "Countries where sold" -msgstr "Countries where sold" +msgstr "" msgctxt "countries_note" msgid "Countries where the product is widely available (non including stores specialising in foreign products)" -msgstr "Countries where the product is widely available (non including stores specialising in foreign products)" +msgstr "" msgctxt "countries_p" msgid "countries" -msgstr "countries" +msgstr "" msgctxt "countries_products" msgid "Products sold in %s" -msgstr "Products sold in %s" +msgstr "" msgctxt "countries_s" msgid "country" -msgstr "country" +msgstr "" msgctxt "countries_without_products" msgid "Products not sold in %s" -msgstr "Products not sold in %s" +msgstr "" msgctxt "data_source" msgid "Data source" -msgstr "Data source" +msgstr "" msgctxt "debug_p" msgid "debug" -msgstr "debug" +msgstr "" msgctxt "debug_s" msgid "debug" -msgstr "debug" +msgstr "" msgctxt "delete_comment" msgid "Reason for removal" -msgstr "Reason for removal" +msgstr "" msgctxt "delete_product" msgid "Delete a product" -msgstr "Delete a product" +msgstr "" msgctxt "delete_product_page" msgid "Delete the page" -msgstr "Delete the page" +msgstr "" msgctxt "delete_the_images" msgid "Delete the images" -msgstr "Delete the images" +msgstr "" msgctxt "delete_user" msgid "Delete an user" -msgstr "Delete an user" +msgstr "" msgctxt "diff_add" msgid "Added:" -msgstr "Added:" +msgstr "" msgctxt "diff_change" msgid "Changed:" -msgstr "Changed:" +msgstr "" msgctxt "diff_delete" msgid "Deleted:" -msgstr "Deleted:" +msgstr "" msgctxt "donate" msgid "Donate to Open Food Facts" -msgstr "Donate to Open Food Facts" +msgstr "" msgctxt "donate_link" msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" -msgstr "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" msgctxt "ecological_data_table" msgid "Ecological footprint" -msgstr "Ecological footprint" +msgstr "" msgctxt "ecological_data_table_note" msgid "If the carbon footprint is specified on the label (rarely at this time), indicate it for the same quantity than the nutritional composition." -msgstr "If the carbon footprint is specified on the label (rarely at this time), indicate it for the same quantity than the nutritional composition." +msgstr "" msgctxt "edit" msgid "edit" -msgstr "edit" +msgstr "" msgctxt "edit_comment" msgid "Changes summary" -msgstr "Changes summary" +msgstr "" msgctxt "edit_product" msgid "Edit a product" -msgstr "Edit a product" +msgstr "" msgctxt "edit_product_page" msgid "Edit the page" -msgstr "Edit the page" +msgstr "" msgctxt "edit_profile" msgid "Edit your public profile" -msgstr "Edit your public profile" +msgstr "" msgctxt "edit_profile_confirm" msgid "Changes to your public profile have been saved." -msgstr "Changes to your public profile have been saved." +msgstr "" msgctxt "edit_profile_msg" msgid "Information below is visible in your public profile." -msgstr "Information below is visible in your public profile." +msgstr "" msgctxt "edit_settings" msgid "Change your account parameters" -msgstr "Change your account parameters" +msgstr "" msgctxt "edit_user" msgid "Account parameters" -msgstr "Account parameters" +msgstr "" msgctxt "edit_user_confirm" msgid "

    Your account parameters have been changed.

    " -msgstr "

    Your account parameters have been changed.

    " +msgstr "" msgctxt "editors_p" msgid "editors" -msgstr "editors" +msgstr "" msgctxt "editors_s" msgid "editor" -msgstr "editor" +msgstr "" msgctxt "email" msgid "e-mail address" -msgstr "e-mail address" +msgstr "" msgctxt "emb_code_p" msgid "EMB codes" -msgstr "EMB codes" +msgstr "" msgctxt "emb_code_products" msgid "Products packaged by the company with emb code %s" -msgstr "Products packaged by the company with emb code %s" +msgstr "" msgctxt "emb_code_s" msgid "EMB code" -msgstr "EMB code" +msgstr "" msgctxt "emb_codes" msgid "EMB code" -msgstr "EMB code" +msgstr "" msgctxt "emb_codes_example" msgid "EMB 53062, FR 62.448.034 CE, 84 R 20, 33 RECOLTANT 522" @@ -521,143 +516,143 @@ msgstr "" msgctxt "emb_codes_note" msgid "In Europe, code in an ellipse with the 2 country initials followed by a number and CE." -msgstr "In Europe, code in an ellipse with the 2 country initials followed by a number and CE." +msgstr "" msgctxt "emb_codes_p" msgid "packager codes" -msgstr "packager codes" +msgstr "" msgctxt "emb_codes_products" msgid "Products with the emb code %s" -msgstr "Products with the emb code %s" +msgstr "" msgctxt "emb_codes_s" msgid "packager code" -msgstr "packager code" +msgstr "" msgctxt "emb_codes_without_products" msgid "Products without the emb code %s" -msgstr "Products without the emb code %s" +msgstr "" msgctxt "entry_dates_p" msgid "Entry dates" -msgstr "Entry dates" +msgstr "" msgctxt "entry_dates_s" msgid "Entry date" -msgstr "Entry date" +msgstr "" msgctxt "error" msgid "Error" -msgstr "Error" +msgstr "" msgctxt "error_bad_login_password" msgid "Incorrect user name or password. Forgotten password?" -msgstr "Incorrect user name or password. Forgotten password?" +msgstr "" msgctxt "error_database" msgid "An error occured while reading the data, try to refresh the page." -msgstr "An error occured while reading the data, try to refresh the page." +msgstr "" msgctxt "error_different_passwords" msgid "The password and confirmation password are different." -msgstr "The password and confirmation password are different." +msgstr "" msgctxt "error_email_already_in_use" msgid "The e-mail address is already used by another user. Maybe you already have an account? You can reset the password of your other account." -msgstr "The e-mail address is already used by another user. Maybe you already have an account? You can reset the password of your other account." +msgstr "" msgctxt "error_invalid_address" msgid "Invalid address." -msgstr "Invalid address." +msgstr "" msgctxt "error_invalid_csrf_token" msgid "Invalid CSRF token." -msgstr "Invalid CSRF token." +msgstr "" msgctxt "error_invalid_email" msgid "Invalid e-mail address" -msgstr "Invalid e-mail address" +msgstr "" msgctxt "error_invalid_password" msgid "The password needs to be a least 6 characters long." -msgstr "The password needs to be a least 6 characters long." +msgstr "" msgctxt "error_invalid_user" msgid "Invalid user." -msgstr "Invalid user." +msgstr "" msgctxt "error_invalid_username" msgid "The user name must contain only unaccented letters, digits and dashes." -msgstr "The user name must contain only unaccented letters, digits and dashes." +msgstr "" msgctxt "error_new_code_already_exists" msgid "A product already exists with the new code" -msgstr "A product already exists with the new code" +msgstr "" msgctxt "error_no_name" msgid "You need to enter a name or nickname." -msgstr "You need to enter a name or nickname." +msgstr "" msgctxt "error_no_permission" msgid "Permission denied." -msgstr "Permission denied." +msgstr "" msgctxt "error_no_username" msgid "You need to enter a user name" -msgstr "You need to enter a user name" +msgstr "" msgctxt "error_reset_already_connected" msgid "You are already signed in." -msgstr "You are already signed in." +msgstr "" msgctxt "error_reset_invalid_token" msgid "The reset password link is invalid or has expired." -msgstr "The reset password link is invalid or has expired." +msgstr "" msgctxt "error_reset_unknown_email" msgid "There is no account with this email" -msgstr "There is no account with this email" +msgstr "" msgctxt "error_reset_unknown_id" msgid "This username does not exist." -msgstr "This username does not exist." +msgstr "" msgctxt "error_username_not_available" msgid "This username already exists, please choose another." -msgstr "This username already exists, please choose another." +msgstr "" msgctxt "example" msgid "Example:" -msgstr "Example:" +msgstr "" msgctxt "examples" msgid "Examples:" -msgstr "Examples:" +msgstr "" msgctxt "expiration_date" msgid "Best before date" -msgstr "Best before date" +msgstr "" msgctxt "expiration_date_note" msgid "The expiration date is a way to track product changes over time and to identify the most recent version." -msgstr "The expiration date is a way to track product changes over time and to identify the most recent version." +msgstr "" msgctxt "explore_products_by" msgid "Drilldown into products by..." -msgstr "Drilldown into products by..." +msgstr "" msgctxt "facebook_locale" msgid "en_US" -msgstr "en_US" +msgstr "" msgctxt "facebook_page" msgid "https://www.facebook.com/OpenFoodFacts" -msgstr "https://www.facebook.com/OpenFoodFacts" +msgstr "" msgctxt "fixme_product" msgid "If the data is incomplete or incorrect, you can complete or correct it by editing this page." -msgstr "If the data is incomplete or incorrect, you can complete or correct it by editing this page." +msgstr "" msgctxt "footer" msgid "Legal -\n" @@ -667,53 +662,47 @@ msgid "Legal -\n" "Ideas Forum -\n" "Blog -\n" "Press and Blogs\n" -msgstr "Legal -\n" -"Terms of Use -\n" -"Who we are -\n" -"Frequently Asked Questions -\n" -"Ideas Forum -\n" -"Blog -\n" -"Press and Blogs\n" +msgstr "" msgctxt "footer_and_the_facebook_group" msgid "and the Facebook group for contributors" -msgstr "and the Facebook group for contributors" +msgstr "" msgctxt "footer_blog" msgid "<> blog" -msgstr "<> blog" +msgstr "" msgctxt "footer_blog_link" msgid "https://en.blog.openfoodfacts.org" -msgstr "https://en.blog.openfoodfacts.org" +msgstr "" msgctxt "footer_code_of_conduct" msgid "Code of conduct" -msgstr "Code of conduct" +msgstr "" msgctxt "footer_code_of_conduct_link" msgid "/code-of-conduct" -msgstr "/code-of-conduct" +msgstr "" msgctxt "footer_data" msgid "Data" -msgstr "Data" +msgstr "" msgctxt "footer_data_link" msgid "/data" -msgstr "/data" +msgstr "" msgctxt "footer_discover_the_project" msgid "Discover the project" -msgstr "Discover the project" +msgstr "" msgctxt "footer_faq" msgid "Frequently asked questions" -msgstr "Frequently asked questions" +msgstr "" msgctxt "footer_faq_link" msgid "/faq" -msgstr "/faq" +msgstr "" msgctxt "footer_follow_us" msgid "Follow us on Twitter,\n" @@ -725,91 +714,91 @@ msgstr "Follow us on Twitter,\n msgctxt "footer_install_the_app" msgid "Install the app" -msgstr "Install the app" +msgstr "" msgctxt "footer_join_the_community" msgid "Join the community" -msgstr "Join the community" +msgstr "" msgctxt "footer_join_us_on" msgid "Join us on %s:" -msgstr "Join us on %s:" +msgstr "" msgctxt "footer_legal" msgid "Legal" -msgstr "Legal" +msgstr "" msgctxt "footer_legal_link" msgid "/legal" -msgstr "/legal" +msgstr "" msgctxt "footer_press" msgid "Press" -msgstr "Press" +msgstr "" msgctxt "footer_press_link" msgid "/press" -msgstr "/press" +msgstr "" msgctxt "footer_tagline" msgid "A collaborative, free and open database of food products from around the world." -msgstr "A collaborative, free and open database of food products from around the world." +msgstr "" msgctxt "footer_terms" msgid "Terms of use" -msgstr "Terms of use" +msgstr "" msgctxt "footer_terms_link" msgid "/terms-of-use" -msgstr "/terms-of-use" +msgstr "" msgctxt "footer_who_we_are" msgid "Who we are" -msgstr "Who we are" +msgstr "" msgctxt "footer_who_we_are_link" msgid "/who-we-are" -msgstr "/who-we-are" +msgstr "" msgctxt "footer_wiki" msgid "<> wiki (en)" -msgstr "<> wiki (en)" +msgstr "" msgctxt "footer_wiki_link" msgid "https://en.wiki.openfoodfacts.org" -msgstr "https://en.wiki.openfoodfacts.org" +msgstr "" msgctxt "for" msgid "for" -msgstr "for" +msgstr "" msgctxt "front_alt" msgid "Product" -msgstr "Product" +msgstr "" msgctxt "generic_name" msgid "Common name" -msgstr "Common name" +msgstr "" msgctxt "generic_name_example" msgid "Chocolate bar with milk and hazelnuts" -msgstr "Chocolate bar with milk and hazelnuts" +msgstr "" msgctxt "goodbye" msgid "See you soon!" -msgstr "See you soon!" +msgstr "" msgctxt "graph_count" msgid "%d products match the search criterias, of which %i products have defined values for the graph's axis." -msgstr "%d products match the search criterias, of which %i products have defined values for the graph's axis." +msgstr "" msgctxt "graph_title" msgid "Graph title" -msgstr "Graph title" +msgstr "" msgctxt "graphs_and_maps" msgid "Graphs and maps" -msgstr "Graphs and maps" +msgstr "" msgctxt "header" msgid "\n" @@ -822,82 +811,72 @@ msgid "\n" "\tvar s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(uv, s);\n" " })();\n" "\n\n\n" -msgstr "\n" -"> - the free and open food products information database\"/>\n\n" -"\n\n\n" +msgstr "" msgctxt "hello" msgid "Hello" -msgstr "Hello" +msgstr "" msgctxt "high" msgid "high" -msgstr "high" +msgstr "" msgctxt "high_quantity" msgid "high quantity" -msgstr "high quantity" +msgstr "" msgctxt "history" msgid "Changes history" -msgstr "Changes history" +msgstr "" msgctxt "image_front" msgid "Front picture" -msgstr "Front picture" +msgstr "" msgctxt "image_ingredients" msgid "Ingredients picture" -msgstr "Ingredients picture" +msgstr "" msgctxt "image_ingredients_note" msgid "If the picture is neat enough, the ingredients can be extracted automatically" -msgstr "If the picture is neat enough, the ingredients can be extracted automatically" +msgstr "" msgctxt "image_nutrition" msgid "Nutrition facts picture" -msgstr "Nutrition facts picture" +msgstr "" msgctxt "image_upload_error_image_already_exists" msgid "This picture has already been sent." -msgstr "This picture has already been sent." +msgstr "" msgctxt "image_upload_error_image_too_small" msgid "The picture is too small. Please do not upload pictures found on the Internet and only send photos you have taken yourself." -msgstr "The picture is too small. Please do not upload pictures found on the Internet and only send photos you have taken yourself." +msgstr "" msgctxt "image_upload_error_no_barcode_found_in_image_long" msgid "The barcode in the image could not be read, or the image contained no barcode.\n" "You can try with another image, or directly enter the barcode." -msgstr "The barcode in the image could not be read, or the image contained no barcode.\n" -"You can try with another image, or directly enter the barcode." +msgstr "" msgctxt "image_upload_error_no_barcode_found_in_image_short" msgid "No barcode found in the image." -msgstr "No barcode found in the image." +msgstr "" msgctxt "image_upload_error_no_barcode_found_in_text" msgid "You must enter the characters of the barcode or send a product image when the barcode is visible." -msgstr "You must enter the characters of the barcode or send a product image when the barcode is visible." +msgstr "" msgctxt "incomplete_products_you_added" msgid "Products you added that need to be completed" -msgstr "Products you added that need to be completed" +msgstr "" msgctxt "informers_p" msgid "informers" -msgstr "informers" +msgstr "" msgctxt "informers_s" msgid "informers" -msgstr "informers" +msgstr "" msgctxt "ingredients" msgid "Ingredients" @@ -909,139 +888,139 @@ msgstr "Ingredients" msgctxt "ingredients_analysis" msgid "Ingredients analysis" -msgstr "Ingredients analysis" +msgstr "" msgctxt "ingredients_analysis_note" msgid "Note: ingredients can be listed with many different names, please let us know if you think the analysis above is incorrect." -msgstr "Note: ingredients can be listed with many different names, please let us know if you think the analysis above is incorrect." +msgstr "" msgctxt "ingredients_from_or_that_may_be_from_palm_oil_p" msgid "ingredients from or that may be from palm oil" -msgstr "ingredients from or that may be from palm oil" +msgstr "" msgctxt "ingredients_from_or_that_may_be_from_palm_oil_s" msgid "ingredient from or that may be from palm oil" -msgstr "ingredient from or that may be from palm oil" +msgstr "" msgctxt "ingredients_from_palm_oil_p" msgid "ingredients from palm oil" -msgstr "ingredients from palm oil" +msgstr "" msgctxt "ingredients_from_palm_oil_s" msgid "ingredient from palm oil" -msgstr "ingredient from palm oil" +msgstr "" msgctxt "ingredients_n_p" msgid "Numbers of ingredients" -msgstr "Numbers of ingredients" +msgstr "" msgctxt "ingredients_n_s" msgid "Number of ingredients" -msgstr "Number of ingredients" +msgstr "" msgctxt "ingredients_p" msgid "ingredients" -msgstr "ingredients" +msgstr "" msgctxt "ingredients_products" msgid "Products that contain the ingredient %s" -msgstr "Products that contain the ingredient %s" +msgstr "" msgctxt "ingredients_s" msgid "ingredient" -msgstr "ingredient" +msgstr "" msgctxt "ingredients_text" msgid "Ingredients list" -msgstr "Ingredients list" +msgstr "" msgctxt "ingredients_text_display_note" msgid "Ingredients are listed in order of importance (quantity)." -msgstr "Ingredients are listed in order of importance (quantity)." +msgstr "" msgctxt "ingredients_text_example" msgid "Cereals 85.5% (_wheat_ flour, whole-_wheat_ flour 11%), malt extract, cocoa 4,8%, ascorbic acid" -msgstr "Cereals 85.5% (_wheat_ flour, whole-_wheat_ flour 11%), malt extract, cocoa 4,8%, ascorbic acid" +msgstr "" msgctxt "ingredients_text_note" msgid "Keep the order, indicate the % when specified, separate with a comma or - , use ( ) for ingredients of an ingredient, surround allergens with _ e.g. _milk_" -msgstr "Keep the order, indicate the % when specified, separate with a comma or - , use ( ) for ingredients of an ingredient, surround allergens with _ e.g. _milk_" +msgstr "" msgctxt "ingredients_that_may_be_from_palm_oil_p" msgid "ingredients that may be from palm oil" -msgstr "ingredients that may be from palm oil" +msgstr "" msgctxt "ingredients_that_may_be_from_palm_oil_s" msgid "ingredient that may be from palm oil" -msgstr "ingredient that may be from palm oil" +msgstr "" msgctxt "ingredients_without_products" msgid "Products that do not contain the ingredient %s" -msgstr "Products that do not contain the ingredient %s" +msgstr "" msgctxt "ios_app_badge" msgid "\"Available" -msgstr "\"Available" +msgstr "" msgctxt "ios_app_link" msgid "https://itunes.apple.com/en/app/open-food-facts/id588797948" -msgstr "https://itunes.apple.com/en/app/open-food-facts/id588797948" +msgstr "" msgctxt "known_nutrients_p" msgid "known nutrients" -msgstr "known nutrients" +msgstr "" msgctxt "known_nutrients_s" msgid "known nutrient" -msgstr "known nutrient" +msgstr "" msgctxt "labels" msgid "Labels, certifications, awards" -msgstr "Labels, certifications, awards" +msgstr "" msgctxt "labels_example" msgid "Organic" -msgstr "Organic" +msgstr "" msgctxt "labels_note" msgid "Indicate only the most specific labels. \"Parents\" labels will be added automatically." -msgstr "Indicate only the most specific labels. \"Parents\" labels will be added automatically." +msgstr "" msgctxt "labels_p" msgid "labels" -msgstr "labels" +msgstr "" msgctxt "labels_products" msgid "Products that have the label %s" -msgstr "Products that have the label %s" +msgstr "" msgctxt "labels_s" msgid "label" -msgstr "label" +msgstr "" msgctxt "labels_tagsinput" msgid "add a label" -msgstr "add a label" +msgstr "" msgctxt "labels_without_products" msgid "Products that do not have the label %s" -msgstr "Products that do not have the label %s" +msgstr "" msgctxt "lang" msgid "Main language" -msgstr "Main language" +msgstr "" msgctxt "lang_ar" msgid "Arabic" -msgstr "Arabic" +msgstr "" msgctxt "lang_bg" msgid "Bulgarian" -msgstr "Bulgarian" +msgstr "" msgctxt "lang_cs" msgid "Czech" -msgstr "Czech" +msgstr "" msgctxt "lang_da" msgid "Danish" @@ -1053,7 +1032,7 @@ msgstr "German" msgctxt "lang_el" msgid "Greek" -msgstr "Greek" +msgstr "" msgctxt "lang_en" msgid "English" @@ -1065,11 +1044,11 @@ msgstr "Spanish" msgctxt "lang_et" msgid "Estonian" -msgstr "Estonian" +msgstr "" msgctxt "lang_fi" msgid "Finnish" -msgstr "Finnish" +msgstr "" msgctxt "lang_fr" msgid "French" @@ -1077,19 +1056,19 @@ msgstr "French" msgctxt "lang_ga" msgid "Irish" -msgstr "Irish" +msgstr "" msgctxt "lang_he" msgid "Hebrew" -msgstr "Hebrew" +msgstr "" msgctxt "lang_hu" msgid "Hungarian" -msgstr "Hungarian" +msgstr "" msgctxt "lang_id" msgid "Indonesian" -msgstr "Indonesian" +msgstr "" msgctxt "lang_it" msgid "Italian" @@ -1097,7 +1076,7 @@ msgstr "Italian" msgctxt "lang_ja" msgid "Japanese" -msgstr "Japanese" +msgstr "" msgctxt "lang_ko" msgid "Korean" @@ -1105,7 +1084,7 @@ msgstr "Korean" msgctxt "lang_lt" msgid "Lithuanian" -msgstr "Lithuanian" +msgstr "" msgctxt "lang_lv" msgid "Latvian" @@ -1113,7 +1092,7 @@ msgstr "Latvian" msgctxt "lang_mt" msgid "Maltese" -msgstr "Maltese" +msgstr "" msgctxt "lang_nl" msgid "Dutch" @@ -1125,23 +1104,23 @@ msgstr "Dutch" msgctxt "lang_note" msgid "Language most present and most highlighted on the product" -msgstr "Language most present and most highlighted on the product" +msgstr "" msgctxt "lang_other" msgid "other language" -msgstr "other language" +msgstr "" msgctxt "lang_pl" msgid "Polish" -msgstr "Polish" +msgstr "" msgctxt "lang_pt" msgid "Portuguese" -msgstr "Portuguese" +msgstr "" msgctxt "lang_pt_pt" msgid "Portugal Portuguese" -msgstr "Portugal Portuguese" +msgstr "" msgctxt "lang_ro" msgid "Romanian" @@ -1149,27 +1128,27 @@ msgstr "Romanian" msgctxt "lang_ru" msgid "Russian" -msgstr "Russian" +msgstr "" msgctxt "lang_sk" msgid "Slovak" -msgstr "Slovak" +msgstr "" msgctxt "lang_sl" msgid "Slovenian" -msgstr "Slovenian" +msgstr "" msgctxt "lang_sv" msgid "Swedish" -msgstr "Swedish" +msgstr "" msgctxt "lang_th" msgid "Thai" -msgstr "Thai" +msgstr "" msgctxt "lang_vi" msgid "Vietnamese" -msgstr "Vietnamese" +msgstr "" msgctxt "lang_zh" msgid "Chinese" @@ -1177,67 +1156,65 @@ msgstr "Chinese" msgctxt "language" msgid "en-US" -msgstr "en-US" +msgstr "" msgctxt "languages_p" msgid "languages" -msgstr "languages" +msgstr "" msgctxt "languages_s" msgid "language" -msgstr "language" +msgstr "" msgctxt "last_edit_dates_p" msgid "Last edit dates" -msgstr "Last edit dates" +msgstr "" msgctxt "last_edit_dates_s" msgid "Last edit date" -msgstr "Last edit date" +msgstr "" msgctxt "last_image_dates_p" msgid "Last picture dates" -msgstr "Last picture dates" +msgstr "" msgctxt "last_image_dates_s" msgid "Last picture date" -msgstr "Last picture date" +msgstr "" msgctxt "licence_accept" msgid "By adding information, data and/or images, you accept to place irrevocably your contribution under the Database Contents Licence 1.0 licence\n" "for information and data, and under the Creative Commons Attribution - ShareAlike 3.0 licence for images.\n" "You accept to be credited by re-users by a link to the product your are contributing to." -msgstr "By adding information, data and/or images, you accept to place irrevocably your contribution under the Database Contents Licence 1.0 licence\n" -"for information and data, and under the Creative Commons Attribution - ShareAlike 3.0 licence for images.\n" -"You accept to be credited by re-users by a link to the product your are contributing to." +msgstr "" msgctxt "link" msgid "Link to the product page on the official site of the producer" -msgstr "Link to the product page on the official site of the producer" +msgstr "" msgctxt "list_of_x" msgid "List of %s" -msgstr "List of %s" +msgstr "" msgctxt "loadmore" msgid "Load more results" -msgstr "Load more results" +msgstr "" msgctxt "login_and_add_product" msgid "Sign-in and add the product" -msgstr "Sign-in and add the product" +msgstr "" msgctxt "login_and_edit_product" msgid "Sign-in and edit the product" -msgstr "Sign-in and edit the product" +msgstr "" msgctxt "login_create_your_account" msgid "Create your account." -msgstr "Create your account." +msgstr "" msgctxt "login_not_registered_yet" msgid "Not registered yet?" -msgstr "Not registered yet?" +msgstr "" msgctxt "login_register_content" msgid "

    Sign-in to add or edit products.

    \n\n" @@ -1250,16 +1227,7 @@ msgid "

    Sign-in to add or edit products.

    \n\n" "\n" "\n" "

    Not registered yet? Create your account.

    \n" -msgstr "

    Sign-in to add or edit products.

    \n\n" -"
    \n" -"Username or e-mail address:
    \n" -"
    \n" -"Password
    \n" -"
    \n" -"
    \n" -"\n" -"
    \n" -"

    Not registered yet? Create your account.

    \n" +msgstr "" msgctxt "login_register_title" msgid "Sign-in" @@ -1267,89 +1235,88 @@ msgstr "Sign in" msgctxt "login_to_add_and_edit_products" msgid "Sign-in to add or edit products." -msgstr "Sign-in to add or edit products." +msgstr "" msgctxt "login_to_add_products" msgid "

    Please sign-in to add or edit a product.

    \n\n" "

    If you do not yet have an account on <>, you can register in 30 seconds.

    \n" -msgstr "

    Please sign-in to add or edit a product.

    \n\n" -"

    If you do not yet have an account on <>, you can register in 30 seconds.

    \n" +msgstr "" msgctxt "login_username_email" msgid "Username or e-mail address:" -msgstr "Username or e-mail address:" +msgstr "" msgctxt "low" msgid "low" -msgstr "low" +msgstr "" msgctxt "low_quantity" msgid "low quantity" -msgstr "low quantity" +msgstr "" msgctxt "manage_images" msgid "Manage images" -msgstr "Manage images" +msgstr "" msgctxt "manage_images_info" msgid "You can select one or more images and then:" -msgstr "You can select one or more images and then:" +msgstr "" msgctxt "manufacturing_places" msgid "Manufacturing or processing places" -msgstr "Manufacturing or processing places" +msgstr "" msgctxt "manufacturing_places_example" msgid "Montana, USA" -msgstr "Montana, USA" +msgstr "" msgctxt "manufacturing_places_p" msgid "manufacturing or processing places" -msgstr "manufacturing or processing places" +msgstr "" msgctxt "manufacturing_places_products" msgid "Products manufactured or processed in %s" -msgstr "Products manufactured or processed in %s" +msgstr "" msgctxt "manufacturing_places_s" msgid "manufacturing or processing place" -msgstr "manufacturing or processing place" +msgstr "" msgctxt "manufacturing_places_tagsinput" msgid "add a place" -msgstr "add a place" +msgstr "" msgctxt "manufacturing_places_without_products" msgid "Products not manufactured or processed in %s" -msgstr "Products not manufactured or processed in %s" +msgstr "" msgctxt "map_count" msgid "%d products match the search criterias, of which %i products have a known production place." -msgstr "%d products match the search criterias, of which %i products have a known production place." +msgstr "" msgctxt "map_title" msgid "Map title" -msgstr "Map title" +msgstr "" msgctxt "menu" msgid "Menu" -msgstr "Menu" +msgstr "" msgctxt "menu_add_a_product" msgid "Add a product" -msgstr "Add a product" +msgstr "" msgctxt "menu_add_a_product_link" msgid "/add-a-product" -msgstr "/add-a-product" +msgstr "" msgctxt "menu_contribute" msgid "Contribute" -msgstr "Contribute" +msgstr "" msgctxt "menu_contribute_link" msgid "/contribute" -msgstr "/contribute" +msgstr "" msgctxt "menu_discover" msgid "Discover" @@ -1357,179 +1324,179 @@ msgstr "Discover" msgctxt "menu_discover_link" msgid "/discover" -msgstr "/discover" +msgstr "" msgctxt "mission_" msgid "Mission: " -msgstr "Mission: " +msgstr "" msgctxt "mission_accomplished_by" msgid "This mission has been completed by:" -msgstr "This mission has been completed by:" +msgstr "" msgctxt "mission_accomplished_by_n" msgid "Completed by %d persons." -msgstr "Completed by %d persons." +msgstr "" msgctxt "mission_accomplished_by_nobody" msgid "Be the first to complete this mission!" -msgstr "Be the first to complete this mission!" +msgstr "" msgctxt "mission_goal" msgid "Goal:" -msgstr "Goal:" +msgstr "" msgctxt "missions" msgid "Missions" -msgstr "Missions" +msgstr "" msgctxt "moderate" msgid "moderate" -msgstr "moderate" +msgstr "" msgctxt "moderate_quantity" msgid "moderate quantity" -msgstr "moderate quantity" +msgstr "" msgctxt "months" msgid "['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']" -msgstr "['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']" +msgstr "" msgctxt "move_images_to_another_product" msgid "Move the images to another product" -msgstr "Move the images to another product" +msgstr "" msgctxt "n_products" msgid "%d products" -msgstr "%d products" +msgstr "" msgctxt "name" msgid "Name" -msgstr "Name" +msgstr "" msgctxt "names" msgid "Names" -msgstr "Names" +msgstr "" msgctxt "new_code" msgid "If the barcode is not correct, please correct it here:" -msgstr "If the barcode is not correct, please correct it here:" +msgstr "" msgctxt "new_code_note" msgid "For products without a barcode, an internal code is automatically set." -msgstr "For products without a barcode, an internal code is automatically set." +msgstr "" msgctxt "newsletter_description" msgid "Subscribe to the newsletter (2 emails per month maximum)" -msgstr "Subscribe to the newsletter (2 emails per month maximum)" +msgstr "" msgctxt "next" msgid "Next" -msgstr "Next" +msgstr "" msgctxt "no_barcode" msgid "Product without barcode" -msgstr "Product without barcode" +msgstr "" msgctxt "no_nutrition_data" msgid "Nutrition facts are not specified on the product." -msgstr "Nutrition facts are not specified on the product." +msgstr "" msgctxt "no_product_for_barcode" msgid "No product listed for barcode %s." -msgstr "No product listed for barcode %s." +msgstr "" msgctxt "no_products" msgid "No products." -msgstr "No products." +msgstr "" msgctxt "not_saved" msgid "Error while saving, please retry." -msgstr "Error while saving, please retry." +msgstr "" msgctxt "number_of_additives" msgid "Number of additives" -msgstr "Number of additives" +msgstr "" msgctxt "number_of_products" msgid "Number of products" -msgstr "Number of products" +msgstr "" msgctxt "nutrient_in_quantity" msgid "%s in %s" -msgstr "%s in %s" +msgstr "" msgctxt "nutrient_levels_info" msgid "Nutrient levels for 100 g" -msgstr "Nutrient levels for 100 g" +msgstr "" msgctxt "nutrient_levels_link" msgid "/nutrient-levels" -msgstr "/nutrient-levels" +msgstr "" msgctxt "nutrient_levels_p" msgid "nutrient levels" -msgstr "nutrient levels" +msgstr "" msgctxt "nutrient_levels_s" msgid "nutrient level" -msgstr "nutrient level" +msgstr "" msgctxt "nutriments_p" msgid "nutriments" -msgstr "nutriments" +msgstr "" msgctxt "nutriments_products" msgid "Products that contain the nutriment %s" -msgstr "Products that contain the nutriment %s" +msgstr "" msgctxt "nutriments_s" msgid "nutriment" -msgstr "nutriment" +msgstr "" msgctxt "nutriments_without_products" msgid "Products that do not contain the nutriment %s" -msgstr "Products that do not contain the nutriment %s" +msgstr "" msgctxt "nutrition_alt" msgid "Nutrition facts" -msgstr "Nutrition facts" +msgstr "" msgctxt "nutrition_data" msgid "Nutrition facts" -msgstr "Nutrition facts" +msgstr "" msgctxt "nutrition_data_average" msgid "Average nutrition facts for the %d products of the %s category for which nutrition facts are known (out of %d products)." -msgstr "Average nutrition facts for the %d products of the %s category for which nutrition facts are known (out of %d products)." +msgstr "" msgctxt "nutrition_data_compare_percent" msgid "% of difference" -msgstr "% of difference" +msgstr "" msgctxt "nutrition_data_compare_value" msgid "value for 100 g / 100 ml" -msgstr "value for 100 g / 100 ml" +msgstr "" msgctxt "nutrition_data_comparison_with_categories" msgid "Comparison to average values of products in the same category:" -msgstr "Comparison to average values of products in the same category:" +msgstr "" msgctxt "nutrition_data_comparison_with_categories_note" msgid "Please note: for each nutriment, the average is computed for products for which the nutriment quantity is known, not on all products of the category." -msgstr "Please note: for each nutriment, the average is computed for products for which the nutriment quantity is known, not on all products of the category." +msgstr "" msgctxt "nutrition_data_note" msgid "If the picture is sufficiently sharp and level, nutrition facts can be automatically extracted from the picture." -msgstr "If the picture is sufficiently sharp and level, nutrition facts can be automatically extracted from the picture." +msgstr "" msgctxt "nutrition_data_per_10" msgid "10th centile" -msgstr "10th centile" +msgstr "" msgctxt "nutrition_data_per_100g" msgid "for 100 g / 100 ml" -msgstr "for 100 g / 100 ml" +msgstr "" msgctxt "nutrition_data_per_5" msgid "5th centile" @@ -1537,11 +1504,11 @@ msgstr "" msgctxt "nutrition_data_per_50" msgid "Median" -msgstr "Median" +msgstr "" msgctxt "nutrition_data_per_90" msgid "90th centile" -msgstr "90th centile" +msgstr "" msgctxt "nutrition_data_per_95" msgid "95th centile" @@ -1549,445 +1516,442 @@ msgstr "" msgctxt "nutrition_data_per_max" msgid "Maximum" -msgstr "Maximum" +msgstr "" msgctxt "nutrition_data_per_mean" msgid "Mean" -msgstr "Mean" +msgstr "" msgctxt "nutrition_data_per_min" msgid "Minimum" -msgstr "Minimum" +msgstr "" msgctxt "nutrition_data_per_serving" msgid "per serving" -msgstr "per serving" +msgstr "" msgctxt "nutrition_data_per_std" msgid "Standard deviation" -msgstr "Standard deviation" +msgstr "" msgctxt "nutrition_data_table" msgid "Nutrition facts" -msgstr "Nutrition facts" +msgstr "" msgctxt "nutrition_data_table_note" msgid "The table lists by default nutriments that are often specified. Leave the field blank if it's not on the label.
    You can add extra nutriments (vitamins, minerals, cholesterol etc.)\n" "by typing the first letters of their name in the last row of the table." -msgstr "The table lists by default nutriments that are often specified. Leave the field blank if it's not on the label.
    You can add extra nutriments (vitamins, minerals, cholesterol etc.)\n" -"by typing the first letters of their name in the last row of the table." +msgstr "" msgctxt "nutrition_data_table_sub" msgid "-" -msgstr "-" +msgstr "" msgctxt "nutrition_grades_p" msgid "Nutrition grades" -msgstr "Nutrition grades" +msgstr "" msgctxt "nutrition_grades_s" msgid "Nutrition grade" -msgstr "Nutrition grade" +msgstr "" msgctxt "og_image_url" msgid "https://world.openfoodfacts.org/images/misc/openfoodfacts-logo-en-356.png" -msgstr "https://world.openfoodfacts.org/images/misc/openfoodfacts-logo-en-356.png" +msgstr "" msgctxt "on_the_blog_content" msgid "

    To learn more about <>, visit our blog!

    \n" "

    Recent news:

    \n" -msgstr "

    To learn more about <>, visit our blog!

    \n" -"

    Recent news:

    \n" +msgstr "" msgctxt "on_the_blog_title" msgid "News" -msgstr "News" +msgstr "" msgctxt "openfoodhunt_points" msgid "It's Open Food Hunt on <> from Saturday February 21st 2015 to Sunday March 1st 2015! Contributors are awarded\n" "Explorer points for products they add and Ambassador points for new contributors they recruit. Points are updated every 30 minutes." -msgstr "It's Open Food Hunt on <> from Saturday February 21st 2015 to Sunday March 1st 2015! Contributors are awarded\n" -"Explorer points for products they add and Ambassador points for new contributors they recruit. Points are updated every 30 minutes." +msgstr "" msgctxt "or" msgid "or:" -msgstr "or:" +msgstr "" msgctxt "origins" msgid "Origin of ingredients" -msgstr "Origin of ingredients" +msgstr "" msgctxt "origins_example" msgid "California, USA" -msgstr "California, USA" +msgstr "" msgctxt "origins_note_xxx" msgid "Indicate the origin of ingredients" -msgstr "Indicate the origin of ingredients" +msgstr "" msgctxt "origins_p" msgid "origins of ingredients" -msgstr "origins of ingredients" +msgstr "" msgctxt "origins_products" msgid "Products with ingredients originating from %s" -msgstr "Products with ingredients originating from %s" +msgstr "" msgctxt "origins_s" msgid "origin of ingredients" -msgstr "origin of ingredients" +msgstr "" msgctxt "origins_tagsinput" msgid "add an origin" -msgstr "add an origin" +msgstr "" msgctxt "origins_without_products" msgid "Products without ingredients originating from %s" -msgstr "Products without ingredients originating from %s" +msgstr "" msgctxt "packaging" msgid "Packaging" -msgstr "Packaging" +msgstr "" msgctxt "packaging_example" msgid "Fresh, Canned, Frozen, Bottle, Box, Glass, Plastic..." -msgstr "Fresh, Canned, Frozen, Bottle, Box, Glass, Plastic..." +msgstr "" msgctxt "packaging_note" msgid "Packaging type, format, material" -msgstr "Packaging type, format, material" +msgstr "" msgctxt "packaging_p" msgid "packaging" -msgstr "packaging" +msgstr "" msgctxt "packaging_products" msgid "Products with a %s packaging" -msgstr "Products with a %s packaging" +msgstr "" msgctxt "packaging_s" msgid "packaging" -msgstr "packaging" +msgstr "" msgctxt "packaging_tagsinput" msgid "add a type, shape or material" -msgstr "add a type, shape or material" +msgstr "" msgctxt "packaging_without_products" msgid "Products without a %s packaging" -msgstr "Products without a %s packaging" +msgstr "" msgctxt "page_x" msgid "Page %d" -msgstr "Page %d" +msgstr "" msgctxt "page_x_out_of_y" msgid "Page %d out of %d." -msgstr "Page %d out of %d." +msgstr "" msgctxt "pages" msgid "Pages:" -msgstr "Pages:" +msgstr "" msgctxt "password" msgid "Password" -msgstr "Password" +msgstr "" msgctxt "password_confirm" msgid "Confirm password" -msgstr "Confirm password" +msgstr "" msgctxt "periods_after_opening" msgid "Period of time after opening" -msgstr "Period of time after opening" +msgstr "" msgctxt "periods_after_opening_note" msgid "Found in an open container logo with a number of months: e.g. 12 M" -msgstr "Found in an open container logo with a number of months: e.g. 12 M" +msgstr "" msgctxt "periods_after_opening_p" msgid "Periods after opening" -msgstr "Periods after opening" +msgstr "" msgctxt "periods_after_opening_s" msgid "Period after opening" -msgstr "Period after opening" +msgstr "" msgctxt "photographers_p" msgid "photographers" -msgstr "photographers" +msgstr "" msgctxt "photographers_s" msgid "photographer" -msgstr "photographer" +msgstr "" msgctxt "pnns_groups_1" msgid "PNNS groups 1" -msgstr "PNNS groups 1" +msgstr "" msgctxt "pnns_groups_1_p" msgid "PNNS groups 1" -msgstr "PNNS groups 1" +msgstr "" msgctxt "pnns_groups_1_s" msgid "PNNS group 1" -msgstr "PNNS group 1" +msgstr "" msgctxt "pnns_groups_2" msgid "PNNS groups 2" -msgstr "PNNS groups 2" +msgstr "" msgctxt "pnns_groups_2_p" msgid "PNNS groups 2" -msgstr "PNNS groups 2" +msgstr "" msgctxt "pnns_groups_2_s" msgid "PNNS group 2" -msgstr "PNNS group 2" +msgstr "" msgctxt "points_all_countries" msgid "There are %d Explorers and %d Ambassadors." -msgstr "There are %d Explorers and %d Ambassadors." +msgstr "" msgctxt "points_all_users" msgid "There are Explorers for %d countries and Ambassadors for %d countries." -msgstr "There are Explorers for %d countries and Ambassadors for %d countries." +msgstr "" msgctxt "points_country" msgid "%s has %d Explorers and %d Ambassadors." -msgstr "%s has %d Explorers and %d Ambassadors." +msgstr "" msgctxt "points_ranking" msgid "Ranking" -msgstr "Ranking" +msgstr "" msgctxt "points_ranking_users_and_countries" msgid "Ranking of contributors and countries" -msgstr "Ranking of contributors and countries" +msgstr "" msgctxt "points_user" msgid "%s is an Explorer for %d countries and an Ambassador for %d countries." -msgstr "%s is an Explorer for %d countries and an Ambassador for %d countries." +msgstr "" msgctxt "previous" msgid "Previous" -msgstr "Previous" +msgstr "" msgctxt "product_add_nutrient" msgid "Add a nutrient" -msgstr "Add a nutrient" +msgstr "" msgctxt "product_added" msgid "Product added on" -msgstr "Product added on" +msgstr "" msgctxt "product_changes_saved" msgid "Changes saved." -msgstr "Changes saved." +msgstr "" msgctxt "product_characteristics" msgid "Product characteristics" -msgstr "Product characteristics" +msgstr "" msgctxt "product_created" msgid "Product created" -msgstr "Product created" +msgstr "" msgctxt "product_description" msgid "Ingredients, allergens, additives, nutrition facts, labels, origin of ingredients and information on product %s" -msgstr "Ingredients, allergens, additives, nutrition facts, labels, origin of ingredients and information on product %s" +msgstr "" msgctxt "product_image" msgid "Product picture" -msgstr "Product picture" +msgstr "" msgctxt "product_image_with_barcode" msgid "Picture with barcode:" -msgstr "Picture with barcode:" +msgstr "" msgctxt "product_js_current_image" msgid "Current image:" -msgstr "Current image:" +msgstr "" msgctxt "product_js_deleting_images" msgid "Deleting images" -msgstr "Deleting images" +msgstr "" msgctxt "product_js_extract_ingredients" msgid "Extract the ingredients from the picture" -msgstr "Extract the ingredients from the picture" +msgstr "" msgctxt "product_js_extracted_ingredients_nok" msgid "Ingredients text could not be extracted. Try with a sharper image, with higher resolution or a better framing of the text." -msgstr "Ingredients text could not be extracted. Try with a sharper image, with higher resolution or a better framing of the text." +msgstr "" msgctxt "product_js_extracted_ingredients_ok" msgid "Ingredients text has been extracted. Text recognition is not perfect, so please check the text below and correct errors if needed." -msgstr "Ingredients text has been extracted. Text recognition is not perfect, so please check the text below and correct errors if needed." +msgstr "" msgctxt "product_js_extracting_ingredients" msgid "Extracting ingredients" -msgstr "Extracting ingredients" +msgstr "" msgctxt "product_js_image_normalize" msgid "Normalize colors" -msgstr "Normalize colors" +msgstr "" msgctxt "product_js_image_open_full_size_image" msgid "Open the picture in original size in a new windows" -msgstr "Open the picture in original size in a new windows" +msgstr "" msgctxt "product_js_image_received" msgid "Image received" -msgstr "Image received" +msgstr "" msgctxt "product_js_image_rotate_and_crop" msgid "Rotate the image if necessary, then click and drag to select the interesting zone:" -msgstr "Rotate the image if necessary, then click and drag to select the interesting zone:" +msgstr "" msgctxt "product_js_image_rotate_left" msgid "Rotate left" -msgstr "Rotate left" +msgstr "" msgctxt "product_js_image_rotate_right" msgid "Rotate right" -msgstr "Rotate right" +msgstr "" msgctxt "product_js_image_save" msgid "Validate and/or resize image" -msgstr "Validate and/or resize image" +msgstr "" msgctxt "product_js_image_saved" msgid "Image saved" -msgstr "Image saved" +msgstr "" msgctxt "product_js_image_saving" msgid "Saving image" -msgstr "Saving image" +msgstr "" msgctxt "product_js_image_upload_error" msgid "Error while uploading image" -msgstr "Error while uploading image" +msgstr "" msgctxt "product_js_image_white_magic" msgid "Photo on white background: try to remove the background" -msgstr "Photo on white background: try to remove the background" +msgstr "" msgctxt "product_js_images_delete_error" msgid "Errors while deleting images" -msgstr "Errors while deleting images" +msgstr "" msgctxt "product_js_images_deleted" msgid "Images deleted" -msgstr "Images deleted" +msgstr "" msgctxt "product_js_images_move_error" msgid "Errors while moving images" -msgstr "Errors while moving images" +msgstr "" msgctxt "product_js_images_moved" msgid "Images moved" -msgstr "Images moved" +msgstr "" msgctxt "product_js_moving_images" msgid "Moving images" -msgstr "Moving images" +msgstr "" msgctxt "product_js_upload_image" msgid "Add a picture" -msgstr "Add a picture" +msgstr "" msgctxt "product_js_upload_image_note" msgid "→ With Chrome, Firefox and Safari, you can select multiple pictures (product, ingredients, nutrition facts etc.) by clicking them while holding the Ctrl key pressed to add them all in one shot." -msgstr "→ With Chrome, Firefox and Safari, you can select multiple pictures (product, ingredients, nutrition facts etc.) by clicking them while holding the Ctrl key pressed to add them all in one shot." +msgstr "" msgctxt "product_js_uploading_image" msgid "Uploading image" -msgstr "Uploading image" +msgstr "" msgctxt "product_last_edited" msgid "Last edit of product page on" -msgstr "Last edit of product page on" +msgstr "" msgctxt "product_name" msgid "Product name" -msgstr "Product name" +msgstr "" msgctxt "product_name_example" msgid "Kinder Bueno White" -msgstr "Kinder Bueno White" +msgstr "" msgctxt "products" msgid "products" -msgstr "products" +msgstr "" msgctxt "products_stats" msgid "Evolution of the number of products on <>" -msgstr "Evolution of the number of products on <>" +msgstr "" msgctxt "products_stats_completed_t" msgid "Products with complete information" -msgstr "Products with complete information" +msgstr "" msgctxt "products_stats_created_t" msgid "Products" -msgstr "Products" +msgstr "" msgctxt "products_with_nutriments" msgid "with nutrition facts" -msgstr "with nutrition facts" +msgstr "" msgctxt "products_you_edited" msgid "Products you added or edited" -msgstr "Products you added or edited" +msgstr "" msgctxt "purchase_places" msgid "City, state and country where purchased" -msgstr "City, state and country where purchased" +msgstr "" msgctxt "purchase_places_note" msgid "Indicate where you bought or saw the product (at least the country)" -msgstr "Indicate where you bought or saw the product (at least the country)" +msgstr "" msgctxt "purchase_places_p" msgid "purchase places" -msgstr "purchase places" +msgstr "" msgctxt "purchase_places_products" msgid "Products sold in %s" -msgstr "Products sold in %s" +msgstr "" msgctxt "purchase_places_s" msgid "purchase place" -msgstr "purchase place" +msgstr "" msgctxt "purchase_places_tagsinput" msgid "add a place" -msgstr "add a place" +msgstr "" msgctxt "purchase_places_without_products" msgid "Products not sold in %s" -msgstr "Products not sold in %s" +msgstr "" msgctxt "quantity" msgid "Quantity" -msgstr "Quantity" +msgstr "" msgctxt "quantity_example" msgid "2 l, 250 g, 1 kg, 25 cl, 6 fl oz, 1 pound" -msgstr "2 l, 250 g, 1 kg, 25 cl, 6 fl oz, 1 pound" +msgstr "" msgctxt "remember_me" msgid "Remember me" -msgstr "Remember me" +msgstr "" msgctxt "remember_purchase_places_and_stores" msgid "Remember the place of purchase and store for the next product adds" -msgstr "Remember the place of purchase and store for the next product adds" +msgstr "" msgctxt "reset_password" msgid "Reset password" -msgstr "Reset password" +msgstr "" msgctxt "reset_password_email_body" msgid "Hello ,\n\n" @@ -2003,59 +1967,59 @@ msgstr "" msgctxt "reset_password_email_subject" msgid "Reset of your password on <>" -msgstr "Reset of your password on <>" +msgstr "" msgctxt "reset_password_reset" msgid "Your password has been changed. You can now log-in with this password." -msgstr "Your password has been changed. You can now log-in with this password." +msgstr "" msgctxt "reset_password_reset_msg" msgid "Enter a new password." -msgstr "Enter a new password." +msgstr "" msgctxt "reset_password_send_email" msgid "An email with a link to reset your password has been sent to the e-mail address associated with your account." -msgstr "An email with a link to reset your password has been sent to the e-mail address associated with your account." +msgstr "" msgctxt "reset_password_send_email_msg" msgid "If you have forgotten your password, fill-in your username or e-mail address to receive instructions for resetting your password." -msgstr "If you have forgotten your password, fill-in your username or e-mail address to receive instructions for resetting your password." +msgstr "" msgctxt "risk_level" msgid "Risk" -msgstr "Risk" +msgstr "" msgctxt "risk_level_0" msgid "To be completed" -msgstr "To be completed" +msgstr "" msgctxt "risk_level_1" msgid "Low risks" -msgstr "Low risks" +msgstr "" msgctxt "risk_level_2" msgid "Moderate risks" -msgstr "Moderate risks" +msgstr "" msgctxt "risk_level_3" msgid "High risks" -msgstr "High risks" +msgstr "" msgctxt "salt_equivalent" msgid "salt equivalent" -msgstr "salt equivalent" +msgstr "" msgctxt "save" msgid "Save" -msgstr "Save" +msgstr "" msgctxt "saved" msgid "Saved." -msgstr "Saved." +msgstr "" msgctxt "saving" msgid "Saving." -msgstr "Saving." +msgstr "" msgctxt "search" msgid "Search" @@ -2071,31 +2035,31 @@ msgstr "Search" msgctxt "search_contains" msgid "contains" -msgstr "contains" +msgstr "" msgctxt "search_criteria" msgid "Select products with specific brands, categories, labels, origins of ingredients, manufacturing places etc." -msgstr "Select products with specific brands, categories, labels, origins of ingredients, manufacturing places etc." +msgstr "" msgctxt "search_description_opensearch" msgid "Open Food Facts product search" -msgstr "Open Food Facts product search" +msgstr "" msgctxt "search_does_not_contain" msgid "does not contain" -msgstr "does not contain" +msgstr "" msgctxt "search_download_button" msgid "Download" -msgstr "Download" +msgstr "" msgctxt "search_download_choice" msgid "Download results" -msgstr "Download results" +msgstr "" msgctxt "search_download_results" msgid "Download results in CSV format (Excel, OpenOffice)" -msgstr "Download results in CSV format (Excel, OpenOffice)" +msgstr "" msgctxt "search_download_results_description" msgid "Character set: Unicode (UTF-8). Separator: tabulation (tab)." @@ -2103,61 +2067,60 @@ msgstr "" msgctxt "search_edit" msgid "Change search criteria" -msgstr "Change search criteria" +msgstr "" msgctxt "search_flatten_tags" msgid "(Optional) - Create a column for every:" -msgstr "(Optional) - Create a column for every:" +msgstr "" msgctxt "search_generate_graph" msgid "Generate graph" -msgstr "Generate graph" +msgstr "" msgctxt "search_generate_map" msgid "Generate the map" -msgstr "Generate the map" +msgstr "" msgctxt "search_graph" msgid "Graph" -msgstr "Graph" +msgstr "" msgctxt "search_graph_2_axis" msgid "Scatter plot" -msgstr "Scatter plot" +msgstr "" msgctxt "search_graph_blog" msgid "

    → learn more about <> graphs: Graphs in 3 clicks (blog).

    " -msgstr "

    → learn more about <> graphs: Graphs in 3 clicks (blog).

    " +msgstr "" msgctxt "search_graph_choice" msgid "Results on a graph" -msgstr "Results on a graph" +msgstr "" msgctxt "search_graph_instructions" msgid "Select what you want to graph on the horizontal axis to obtain a histogram, or select two axis to\n" "get a cloud of products (scatter plot)." -msgstr "Select what you want to graph on the horizontal axis to obtain a histogram, or select two axis to\n" -"get a cloud of products (scatter plot)." +msgstr "" msgctxt "search_graph_link" msgid "Permanent link to this graph, shareable by e-mail and on social networks" -msgstr "Permanent link to this graph, shareable by e-mail and on social networks" +msgstr "" msgctxt "search_graph_note" msgid "The graph will show only products for which displayed values are known." -msgstr "The graph will show only products for which displayed values are known." +msgstr "" msgctxt "search_graph_title" msgid "Display results on a graph" -msgstr "Display results on a graph" +msgstr "" msgctxt "search_graph_warning" msgid "Note: this is a user generated graph. The title, represented products and axis of visualization have been chosen by the author of the graph." -msgstr "Note: this is a user generated graph. The title, represented products and axis of visualization have been chosen by the author of the graph." +msgstr "" msgctxt "search_indifferent" msgid "Indifferent" -msgstr "Indifferent" +msgstr "" msgctxt "search_ingredients" msgid "Ingredients" @@ -2165,139 +2128,139 @@ msgstr "Ingredients" msgctxt "search_link" msgid "Permanent link to these results, shareable by e-mail and on social networks" -msgstr "Permanent link to these results, shareable by e-mail and on social networks" +msgstr "" msgctxt "search_list_choice" msgid "Results in a list of products" -msgstr "Results in a list of products" +msgstr "" msgctxt "search_map" msgid "Map" -msgstr "Map" +msgstr "" msgctxt "search_map_choice" msgid "Results on a map" -msgstr "Results on a map" +msgstr "" msgctxt "search_map_link" msgid "Permanent link to this map, shareable by e-mail and on social networks" -msgstr "Permanent link to this map, shareable by e-mail and on social networks" +msgstr "" msgctxt "search_map_note" msgid "The map will show only products for which the production place is known." -msgstr "The map will show only products for which the production place is known." +msgstr "" msgctxt "search_map_title" msgid "Display results on a map" -msgstr "Display results on a map" +msgstr "" msgctxt "search_nutriment" msgid "choose a nutriment..." -msgstr "choose a nutriment..." +msgstr "" msgctxt "search_nutriments" msgid "Nutriments" -msgstr "Nutriments" +msgstr "" msgctxt "search_or" msgid "or" -msgstr "or" +msgstr "" msgctxt "search_page_size" msgid "Results per page" -msgstr "Results per page" +msgstr "" msgctxt "search_products" msgid "Products search" -msgstr "Products search" +msgstr "" msgctxt "search_results" msgid "Search results" -msgstr "Search results" +msgstr "" msgctxt "search_series" msgid "Use a different color for the following products:" -msgstr "Use a different color for the following products:" +msgstr "" msgctxt "search_series_default" msgid "Other products" -msgstr "Other products" +msgstr "" msgctxt "search_series_fairtrade" msgid "Fair trade" -msgstr "Fair trade" +msgstr "" msgctxt "search_series_fairtrade_label" msgid "fair-trade" -msgstr "fair-trade" +msgstr "" msgctxt "search_series_nutrition_grades" msgid "Use nutrition grades colors" -msgstr "Use nutrition grades colors" +msgstr "" msgctxt "search_series_organic" msgid "Organic" -msgstr "Organic" +msgstr "" msgctxt "search_series_organic_label" msgid "organic" -msgstr "organic" +msgstr "" msgctxt "search_series_with_sweeteners" msgid "With sweeteners" -msgstr "With sweeteners" +msgstr "" msgctxt "search_tag" msgid "choose a criterion..." -msgstr "choose a criterion..." +msgstr "" msgctxt "search_tags" msgid "Criteria" -msgstr "Criteria" +msgstr "" msgctxt "search_terms" msgid "Search terms" -msgstr "Search terms" +msgstr "" msgctxt "search_terms_note" msgid "Search for words present in the product name, generic name, brands, categories, origins and labels" -msgstr "Search for words present in the product name, generic name, brands, categories, origins and labels" +msgstr "" msgctxt "search_title" msgid "Search a product, brand, ingredient, nutriment etc." -msgstr "Search a product, brand, ingredient, nutriment etc." +msgstr "" msgctxt "search_title_graph" msgid "Results graph" -msgstr "Results graph" +msgstr "" msgctxt "search_title_map" msgid "Results map" -msgstr "Results map" +msgstr "" msgctxt "search_tools" msgid "Search tools" -msgstr "Search tools" +msgstr "" msgctxt "search_value" msgid "value" -msgstr "value" +msgstr "" msgctxt "search_with" msgid "With" -msgstr "With" +msgstr "" msgctxt "search_without" msgid "Without" -msgstr "Without" +msgstr "" msgctxt "see_product_page" msgid "See the product page" -msgstr "See the product page" +msgstr "" msgctxt "select_country" msgid "Country" -msgstr "Country" +msgstr "" msgctxt "select_lang" msgid "Language" @@ -2305,23 +2268,23 @@ msgstr "Languages" msgctxt "send_image" msgid "Send a picture..." -msgstr "Send a picture..." +msgstr "" msgctxt "send_image_error" msgid "Upload error" -msgstr "Upload error" +msgstr "" msgctxt "sending_image" msgid "Sending image" -msgstr "Sending image" +msgstr "" msgctxt "serving_size" msgid "Serving size" -msgstr "Serving size" +msgstr "" msgctxt "serving_size_example" msgid "60 g, 12 oz, 20cl, 2 fl oz" -msgstr "60 g, 12 oz, 20cl, 2 fl oz" +msgstr "" msgctxt "session_title" msgid "Sign-in" @@ -2329,245 +2292,244 @@ msgstr "Sign in" msgctxt "share" msgid "Share" -msgstr "Share" +msgstr "" msgctxt "show_category_stats" msgid "Show detailed stats" -msgstr "Show detailed stats" +msgstr "" msgctxt "show_category_stats_details" msgid "standard deviation, minimum, maximum, 10th and 90th percentiles" -msgstr "standard deviation, minimum, maximum, 10th and 90th percentiles" +msgstr "" msgctxt "signin_before_submit" msgid "If you already have an account on , please sign-in before filling this form." -msgstr "If you already have an account on , please sign-in before filling this form." +msgstr "" msgctxt "signout" msgid "Sign-out" -msgstr "Sign-out" +msgstr "" msgctxt "site_description" msgid "A collaborative, free and open database of ingredients, nutrition facts and information on food products from around the world" -msgstr "A collaborative, free and open database of ingredients, nutrition facts and information on food products from around the world" +msgstr "" msgctxt "site_name" msgid "Open Food Facts" -msgstr "Open Food Facts" +msgstr "" msgctxt "sort_by" msgid "Sort by" -msgstr "Sort by" +msgstr "" msgctxt "sort_created_t" msgid "Add date" -msgstr "Add date" +msgstr "" msgctxt "sort_modified_t" msgid "Edit date" -msgstr "Edit date" +msgstr "" msgctxt "sort_popularity" msgid "Popularity" -msgstr "Popularity" +msgstr "" msgctxt "sort_product_name" msgid "Product name" -msgstr "Product name" +msgstr "" msgctxt "state" msgid "State" -msgstr "State" +msgstr "" msgctxt "states_p" msgid "states" -msgstr "states" +msgstr "" msgctxt "states_s" msgid "state" -msgstr "state" +msgstr "" msgctxt "stores" msgid "Stores" -msgstr "Stores" +msgstr "" msgctxt "stores_note" msgid "Name of the shop or supermarket chain" -msgstr "Name of the shop or supermarket chain" +msgstr "" msgctxt "stores_p" msgid "stores" -msgstr "stores" +msgstr "" msgctxt "stores_products" msgid "Products sold at %s" -msgstr "Products sold at %s" +msgstr "" msgctxt "stores_s" msgid "store" -msgstr "store" +msgstr "" msgctxt "stores_tagsinput" msgid "add a store" -msgstr "add a store" +msgstr "" msgctxt "stores_without_products" msgid "Products not bought at %s" -msgstr "Products not bought at %s" +msgstr "" msgctxt "subscribe" msgid "Subscribe" -msgstr "Subscribe" +msgstr "" msgctxt "tag_belongs_to" msgid "Belongs to:" -msgstr "Belongs to:" +msgstr "" msgctxt "tag_contains" msgid "Contains:" -msgstr "Contains:" +msgstr "" msgctxt "tag_weblinks" msgid "Weblinks" -msgstr "Weblinks" +msgstr "" msgctxt "tagstable_filtered" msgid "out of _MAX_" -msgstr "out of _MAX_" +msgstr "" msgctxt "tagstable_search" msgid "Search:" -msgstr "Search:" +msgstr "" msgctxt "traces" msgid "Traces" -msgstr "Traces" +msgstr "" msgctxt "traces_example" msgid "Milk, Gluten, Nuts" -msgstr "Milk, Gluten, Nuts" +msgstr "" msgctxt "traces_note" msgid "Indicate ingredients from mentions like \"May contain traces of\", \"Made in a factory that also uses\" etc." -msgstr "Indicate ingredients from mentions like \"May contain traces of\", \"Made in a factory that also uses\" etc." +msgstr "" msgctxt "traces_p" msgid "traces" -msgstr "traces" +msgstr "" msgctxt "traces_s" msgid "trace" -msgstr "trace" +msgstr "" msgctxt "twitter" msgid "Twitter username (optional)" -msgstr "Twitter username (optional)" +msgstr "" msgctxt "twitter_account" msgid "OpenFoodFacts" -msgstr "OpenFoodFacts" +msgstr "" msgctxt "unknown" msgid "Unknown" -msgstr "Unknown" +msgstr "" msgctxt "unknown_nutrients_p" msgid "unknown nutrients" -msgstr "unknown nutrients" +msgstr "" msgctxt "unknown_nutrients_s" msgid "unknown nutrient" -msgstr "unknown nutrient" +msgstr "" msgctxt "unsubscribe" msgid "Unsubscribe" -msgstr "Unsubscribe" +msgstr "" msgctxt "unsubscribe_info" msgid "You can unsubscribe from the lists at any time." -msgstr "You can unsubscribe from the lists at any time." +msgstr "" msgctxt "userid_or_email" msgid "Username or e-mail address: " -msgstr "Username or e-mail address: " +msgstr "" msgctxt "username" msgid "User name" -msgstr "User name" +msgstr "" msgctxt "username_info" msgid "(non-accented letters, digits and/or dashes)" -msgstr "(non-accented letters, digits and/or dashes)" +msgstr "" msgctxt "username_or_email" msgid "Username or email address" -msgstr "Username or email address" +msgstr "" msgctxt "users_add_products" msgid "Products that were added by the user %s" -msgstr "Products that were added by the user %s" +msgstr "" msgctxt "users_add_without_products" msgid "Products that were not added by the user %s" -msgstr "Products that were not added by the user %s" +msgstr "" msgctxt "users_edit_products" msgid "Products that were edited by the user %s" -msgstr "Products that were edited by the user %s" +msgstr "" msgctxt "users_edit_without_products" msgid "Products that were not edited by the user %s" -msgstr "Products that were not edited by the user %s" +msgstr "" msgctxt "users_p" msgid "contributors" -msgstr "contributors" +msgstr "" msgctxt "users_products" msgid "Products added by %s" -msgstr "Products added by %s" +msgstr "" msgctxt "users_s" msgid "contributor" -msgstr "contributor" +msgstr "" msgctxt "users_without_products" msgid "Products not added by %s" -msgstr "Products not added by %s" +msgstr "" msgctxt "view" msgid "view" -msgstr "view" +msgstr "" msgctxt "view_list_for_products_from_the_entire_world" msgid "View the list for matching products from the entire world" -msgstr "View the list for matching products from the entire world" +msgstr "" msgctxt "view_products_from_the_entire_world" msgid "View matching products from the entire world" -msgstr "View matching products from the entire world" +msgstr "" msgctxt "view_results_from_the_entire_world" msgid "View results from the entire world" -msgstr "View results from the entire world" +msgstr "" msgctxt "warning_3rd_party_content" msgid "Information and data must come from the product package and label (and not from other sites or the manufacturer's site), and you must have taken the pictures yourself.
    \n" "→ Why it matters" -msgstr "Information and data must come from the product package and label (and not from other sites or the manufacturer's site), and you must have taken the pictures yourself.
    \n" -"→ Why it matters" +msgstr "" msgctxt "website" msgid "Site or blog address" -msgstr "Site or blog address" +msgstr "" msgctxt "weekdays" msgid "['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday']" -msgstr "['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday']" +msgstr "" msgctxt "windows_phone_app_badge" msgid "\"Windows" -msgstr "\"Windows" +msgstr "" msgctxt "windows_phone_app_link" msgid "https://www.windowsphone.com/en-us/store/app/openfoodfacts/5d7cf939-cfd9-4ac0-86d7-91b946f4df34" @@ -2575,27 +2537,27 @@ msgstr "" msgctxt "you_are_connected_as_x" msgid "You are connected as %s." -msgstr "You are connected as %s." +msgstr "" msgctxt "product_js_unselect_image" msgid "Unselect image" -msgstr "Unselect image" +msgstr "" msgctxt "product_js_unselecting_image" msgid "Unselecting image." -msgstr "Unselecting image." +msgstr "" msgctxt "product_js_unselected_image_ok" msgid "Unselected image." -msgstr "Unselected image." +msgstr "" msgctxt "product_js_unselected_image_nok" msgid "Error while unselecting image." -msgstr "Error while unselecting image." +msgstr "" msgctxt "nutrition_grade_fr_fiber_warning" msgid "Warning: the amount of fiber is not specified, their possible positive contribution to the grade could not be taken into account." -msgstr "Warning: the amount of fiber is not specified, their possible positive contribution to the grade could not be taken into account." +msgstr "" msgctxt "nutrition_grade_fr_no_fruits_vegetables_nuts_warning" msgid "Warning: the amount of fruits, vegetables and nuts is not specified, their possible positive contribution to the grade could not be taken into account." @@ -2611,69 +2573,73 @@ msgstr "" msgctxt "nutrition_grade_fr_title" msgid "NutriScore color nutrition grade" -msgstr "NutriScore color nutrition grade" +msgstr "" msgctxt "nutrition_grade_fr_formula" msgid "How the color nutrition grade is computed" -msgstr "How the color nutrition grade is computed" +msgstr "" msgctxt "nutrition_grade_fr_alt" msgid "NutriScore nutrition grade" -msgstr "NutriScore nutrition grade" +msgstr "" msgctxt "delete_product_page" msgid "Delete the product page" -msgstr "Delete the product page" +msgstr "" msgctxt "deleting_product" msgid "Deleting product" -msgstr "Deleting product" +msgstr "" msgctxt "has_deleted_product" msgid "has deleted product" -msgstr "has deleted product" +msgstr "" msgctxt "delete_product_confirm" msgid "Are you sure that you want to delete the page for this product?" -msgstr "Are you sure that you want to delete the page for this product?" +msgstr "" msgctxt "delete_user" msgid "Delete the user" -msgstr "Delete the user" +msgstr "" msgctxt "sources_openfood_ch" msgid "Some of the data and/or images comes from the OpenFood.ch database (the exact list is available in the product edit history). Those elements are licenced under the Creative Commons Attribution 4.0 International License." -msgstr "Some of the data and/or images comes from the OpenFood.ch database (the exact list is available in the product edit history). Those elements are licenced under the Creative Commons Attribution 4.0 International License." +msgstr "" msgctxt "sources_openfood_ch_product_page" msgid "Product page on openfood.ch" -msgstr "Product page on openfood.ch" +msgstr "" msgctxt "sources_usda_ndb" msgid "Some of the data comes from the USDA National Nutrients Database for Branded Foods (the exact list is available in the product edit history)." -msgstr "Some of the data comes from the USDA National Nutrients Database for Branded Foods (the exact list is available in the product edit history)." +msgstr "" msgctxt "sources_usda_ndb_product_page" msgid "Product page on USDA NDB" -msgstr "Product page on USDA NDB" +msgstr "" msgctxt "donate" msgid "Donate to Open Food Facts" -msgstr "Donate to Open Food Facts" +msgstr "" msgctxt "donate_link" msgid "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" -msgstr "https://www.helloasso.com/associations/open-food-facts/formulaires/1/widget/en" +msgstr "" msgctxt "sources_fleurymichon" msgid "Some of the data and images have been provided directly by the manufacturer Fleury Michon." -msgstr "Some of the data and images have been provided directly by the manufacturer Fleury Michon." +msgstr "" msgctxt "sources_manufacturer" msgid "Some of the data for this product has been provided directly by the manufacturer %s" -msgstr "Some of the data for this product has been provided directly by the manufacturer %s" +msgstr "" msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" -msgstr "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" +msgstr "" + +msgctxt "title_separator" +msgid " — " +msgstr "" diff --git a/po/common/eo.po b/po/common/eo.po index 9c05fa3c54d4a..c048931249203 100644 --- a/po/common/eo.po +++ b/po/common/eo.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: eo_UY\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:54-0400\n" +"PO-Revision-Date: 2017-09-22 04:13-0400\n" "Language-Team: Esperanto\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/es.po b/po/common/es.po index e65b886bdd4d5..12cca0d4d135f 100644 --- a/po/common/es.po +++ b/po/common/es.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: es_ES\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:46-0400\n" +"PO-Revision-Date: 2017-09-22 04:07-0400\n" "Language-Team: Spanish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2662,3 +2662,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/et.po b/po/common/et.po index 2c5f64d0f4c79..46beba775b888 100644 --- a/po/common/et.po +++ b/po/common/et.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: et_EE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:54-0400\n" +"PO-Revision-Date: 2017-09-22 04:13-0400\n" "Language-Team: Estonian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/eu.po b/po/common/eu.po index fd904d6c1cfeb..8239f71613ce1 100644 --- a/po/common/eu.po +++ b/po/common/eu.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: eu_ES\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:50-0400\n" +"PO-Revision-Date: 2017-09-22 04:11-0400\n" "Language-Team: Basque\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/fa.po b/po/common/fa.po index 57403432711f3..5ad94e9e4ce20 100644 --- a/po/common/fa.po +++ b/po/common/fa.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: fa_IR\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:43-0400\n" +"PO-Revision-Date: 2017-09-22 04:03-0400\n" "Language-Team: Persian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2639,3 +2639,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/fi.po b/po/common/fi.po index b300c6d336f0b..4700314ba072c 100644 --- a/po/common/fi.po +++ b/po/common/fi.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: fi_FI\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:54-0400\n" +"PO-Revision-Date: 2017-09-22 04:13-0400\n" "Language-Team: Finnish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/fil.po b/po/common/fil.po index f905021f90c9b..ef7867342745c 100644 --- a/po/common/fil.po +++ b/po/common/fil.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: fil_PH\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:54-0400\n" +"PO-Revision-Date: 2017-09-22 04:14-0400\n" "Language-Team: Filipino\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/fo.po b/po/common/fo.po index eacb96c66fddc..85d28bf9a4ad7 100644 --- a/po/common/fo.po +++ b/po/common/fo.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: fo_FO\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:54-0400\n" +"PO-Revision-Date: 2017-09-22 04:14-0400\n" "Language-Team: Faroese\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/ga.po b/po/common/ga.po index bfb07c66782a8..3e5e409bb9267 100644 --- a/po/common/ga.po +++ b/po/common/ga.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ga_IE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:53-0400\n" +"PO-Revision-Date: 2017-09-22 04:13-0400\n" "Language-Team: Irish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/gd.po b/po/common/gd.po index 28292eb2eb41f..a887c2ee4b0c4 100644 --- a/po/common/gd.po +++ b/po/common/gd.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: gd_GB\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:41-0400\n" +"PO-Revision-Date: 2017-09-22 04:02-0400\n" "Language-Team: Scottish Gaelic\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n>2 && n<20) ? 2 : 3;\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/gl.po b/po/common/gl.po index fa2819e46ef20..3e349dad77f4a 100644 --- a/po/common/gl.po +++ b/po/common/gl.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: gl_ES\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:54-0400\n" +"PO-Revision-Date: 2017-09-22 04:13-0400\n" "Language-Team: Galician\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/gu.po b/po/common/gu.po index 333d248ae236d..009928ad42182 100644 --- a/po/common/gu.po +++ b/po/common/gu.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: gu_IN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:55-0400\n" +"PO-Revision-Date: 2017-09-22 04:14-0400\n" "Language-Team: Gujarati\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/he.po b/po/common/he.po index d0036f9584bfd..3b83fc714f13c 100644 --- a/po/common/he.po +++ b/po/common/he.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: he_IL\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:55-0400\n" +"PO-Revision-Date: 2017-09-22 04:14-0400\n" "Language-Team: Hebrew\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n" @@ -2651,3 +2651,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/hi.po b/po/common/hi.po index 76dda59543cfe..a7ee83c3c7f42 100644 --- a/po/common/hi.po +++ b/po/common/hi.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: hi_IN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-13 16:00-0400\n" +"PO-Revision-Date: 2017-09-22 04:14-0400\n" "Language-Team: Hindi\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/hr.po b/po/common/hr.po index 698b8a4db5155..b0ccab1b613c0 100644 --- a/po/common/hr.po +++ b/po/common/hr.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: hr_HR\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:49-0400\n" +"PO-Revision-Date: 2017-09-22 04:09-0400\n" "Language-Team: Croatian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/hu.po b/po/common/hu.po index dc9127cc90ac7..73e03d8c85200 100644 --- a/po/common/hu.po +++ b/po/common/hu.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: hu_HU\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:54-0400\n" +"PO-Revision-Date: 2017-09-22 04:14-0400\n" "Language-Team: Hungarian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2703,3 +2703,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/hy.po b/po/common/hy.po index 46a61f47ac8b4..0c2c8dd82fd13 100644 --- a/po/common/hy.po +++ b/po/common/hy.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: hy_AM\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:49-0400\n" +"PO-Revision-Date: 2017-09-22 04:10-0400\n" "Language-Team: Armenian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/id.po b/po/common/id.po index 99b08a237a11b..eeeadfc5e4fc7 100644 --- a/po/common/id.po +++ b/po/common/id.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: id_ID\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:55-0400\n" +"PO-Revision-Date: 2017-09-22 04:14-0400\n" "Language-Team: Indonesian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/ii.po b/po/common/ii.po index 4711b9d3630ce..bbf9e359e26c3 100644 --- a/po/common/ii.po +++ b/po/common/ii.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ii_CN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:43-0400\n" +"PO-Revision-Date: 2017-09-22 04:03-0400\n" "Language-Team: Sichuan Yi\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/is.po b/po/common/is.po index 75e0037e60d11..e8ed0a3e035ad 100644 --- a/po/common/is.po +++ b/po/common/is.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: is_IS\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:55-0400\n" +"PO-Revision-Date: 2017-09-22 04:14-0400\n" "Language-Team: Icelandic\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/it.po b/po/common/it.po index bef533ea523b3..f66b15e86bb42 100644 --- a/po/common/it.po +++ b/po/common/it.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: it_IT\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:53-0400\n" +"PO-Revision-Date: 2017-09-22 04:12-0400\n" "Language-Team: Italian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2640,3 +2640,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/iu.po b/po/common/iu.po index cfb15f4712f58..9f9f45cc91593 100644 --- a/po/common/iu.po +++ b/po/common/iu.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: iu_NU\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:53-0400\n" +"PO-Revision-Date: 2017-09-22 04:14-0400\n" "Language-Team: Inuktitut\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/ja.po b/po/common/ja.po index d28b7aa1d789f..e703e6109d1de 100644 --- a/po/common/ja.po +++ b/po/common/ja.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ja_JP\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:53-0400\n" +"PO-Revision-Date: 2017-09-22 04:12-0400\n" "Language-Team: Japanese\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -2722,3 +2722,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "この商品ページは完成していません。既存の写真からデータを編集または追加したり、 Android または iPhone/iPad のアプリを使用して写真を撮影して、手伝ってください。ありがとうございます!" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/jv.po b/po/common/jv.po index 3dde32853f29c..9baf898c5198b 100644 --- a/po/common/jv.po +++ b/po/common/jv.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: jv_ID\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:53-0400\n" +"PO-Revision-Date: 2017-09-22 04:12-0400\n" "Language-Team: Javanese\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 0);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/ka.po b/po/common/ka.po index 8ea5cbafac0bb..f66c2a3459ce9 100644 --- a/po/common/ka.po +++ b/po/common/ka.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ka_GE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:55-0400\n" +"PO-Revision-Date: 2017-09-22 04:13-0400\n" "Language-Team: Georgian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/kab.po b/po/common/kab.po index 4d2f0418844e2..b6d6bf53d8da5 100644 --- a/po/common/kab.po +++ b/po/common/kab.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: kab_KAB\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:53-0400\n" +"PO-Revision-Date: 2017-09-22 04:12-0400\n" "Language-Team: Kabyle\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/kk.po b/po/common/kk.po index b91227163e569..303033e2ff8ce 100644 --- a/po/common/kk.po +++ b/po/common/kk.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: kk_KZ\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:53-0400\n" +"PO-Revision-Date: 2017-09-22 04:11-0400\n" "Language-Team: Kazakh\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/km.po b/po/common/km.po index 50a3636b23898..7910eb8bc5716 100644 --- a/po/common/km.po +++ b/po/common/km.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: km_KH\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:53-0400\n" +"PO-Revision-Date: 2017-09-22 04:12-0400\n" "Language-Team: Khmer\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/kn.po b/po/common/kn.po index 75e2b2f007634..87c217274a258 100644 --- a/po/common/kn.po +++ b/po/common/kn.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: kn_IN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:53-0400\n" +"PO-Revision-Date: 2017-09-22 04:11-0400\n" "Language-Team: Kannada\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/ko.po b/po/common/ko.po index 19f6552d40aa8..28f0166f40735 100644 --- a/po/common/ko.po +++ b/po/common/ko.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ko_KR\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:53-0400\n" +"PO-Revision-Date: 2017-09-22 04:11-0400\n" "Language-Team: Korean\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/ku.po b/po/common/ku.po index 817e2da3dfeb9..321e45ff6b25b 100644 --- a/po/common/ku.po +++ b/po/common/ku.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ku_TR\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:54-0400\n" +"PO-Revision-Date: 2017-09-22 04:12-0400\n" "Language-Team: Kurdish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/kw.po b/po/common/kw.po index ed03be6cb2e59..df317741a04c8 100644 --- a/po/common/kw.po +++ b/po/common/kw.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: kw_GB\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:49-0400\n" +"PO-Revision-Date: 2017-09-22 04:09-0400\n" "Language-Team: Cornish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n==3) ? 2 : 3;\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/ky.po b/po/common/ky.po index 77f43048e27b1..e560a9b9e74a9 100644 --- a/po/common/ky.po +++ b/po/common/ky.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ky_KG\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:54-0400\n" +"PO-Revision-Date: 2017-09-22 04:13-0400\n" "Language-Team: Kyrgyz\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/lb.po b/po/common/lb.po index 5dde321df79d0..d3c89a4e11ef4 100644 --- a/po/common/lb.po +++ b/po/common/lb.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: lb_LU\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:53-0400\n" +"PO-Revision-Date: 2017-09-22 04:12-0400\n" "Language-Team: Luxembourgish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/lo.po b/po/common/lo.po index ac71a7005fe40..8ff20f4f78e39 100644 --- a/po/common/lo.po +++ b/po/common/lo.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: lo_LA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:54-0400\n" +"PO-Revision-Date: 2017-09-22 04:13-0400\n" "Language-Team: Lao\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/lol.po b/po/common/lol.po index 21e5241892a1a..113bd75833524 100644 --- a/po/common/lol.po +++ b/po/common/lol.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: lol_US\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:45-0400\n" +"PO-Revision-Date: 2017-09-22 04:06-0400\n" "Language-Team: LOLCAT\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "crwdns36778:0crwdne36778:0" +msgctxt "title_separator" +msgid " — " +msgstr "crwdns36867:0crwdne36867:0" + diff --git a/po/common/lt.po b/po/common/lt.po index 870d85b61d951..4c20bb202602c 100644 --- a/po/common/lt.po +++ b/po/common/lt.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: lt_LT\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:53-0400\n" +"PO-Revision-Date: 2017-09-22 04:13-0400\n" "Language-Team: Lithuanian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/lv.po b/po/common/lv.po index 130881f23fb01..f344d89e7ff2d 100644 --- a/po/common/lv.po +++ b/po/common/lv.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: lv_LV\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:54-0400\n" +"PO-Revision-Date: 2017-09-22 04:13-0400\n" "Language-Team: Latvian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n==0 ? 0 : n%10==1 && n%100!=11 ? 1 : 2);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/mg.po b/po/common/mg.po index a6dd5adb132d9..54eb8d07b058d 100644 --- a/po/common/mg.po +++ b/po/common/mg.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: mg_MG\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:53-0400\n" +"PO-Revision-Date: 2017-09-22 04:12-0400\n" "Language-Team: Malagasy\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/mi.po b/po/common/mi.po index e57fd2506da96..3f76540096f5d 100644 --- a/po/common/mi.po +++ b/po/common/mi.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: mi_NZ\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:43-0400\n" +"PO-Revision-Date: 2017-09-22 04:04-0400\n" "Language-Team: Maori\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/ml.po b/po/common/ml.po index dbfeb66f28907..5e06b7475005e 100644 --- a/po/common/ml.po +++ b/po/common/ml.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ml_IN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:47-0400\n" +"PO-Revision-Date: 2017-09-22 04:12-0400\n" "Language-Team: Malayalam\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/mn.po b/po/common/mn.po index f6e824dea06ce..53a77f157c086 100644 --- a/po/common/mn.po +++ b/po/common/mn.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: mn_MN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:43-0400\n" +"PO-Revision-Date: 2017-09-22 04:04-0400\n" "Language-Team: Mongolian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/mr.po b/po/common/mr.po index 2f7ad980223bb..f2764a97e83f2 100644 --- a/po/common/mr.po +++ b/po/common/mr.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: mr_IN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:43-0400\n" +"PO-Revision-Date: 2017-09-22 04:04-0400\n" "Language-Team: Marathi\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/ms.po b/po/common/ms.po index c015fd7783e4e..26546b618d423 100644 --- a/po/common/ms.po +++ b/po/common/ms.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ms_MY\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:53-0400\n" +"PO-Revision-Date: 2017-09-22 04:13-0400\n" "Language-Team: Malay\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/mt.po b/po/common/mt.po index e74d4a5ae9dd7..7b1dbe8e80e6f 100644 --- a/po/common/mt.po +++ b/po/common/mt.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: mt_MT\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:43-0400\n" +"PO-Revision-Date: 2017-09-22 04:08-0400\n" "Language-Team: Maltese\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n==0 || (n%100>1 && n%100<11) ? 1 : (n%100>10 && n%100<20) ? 2 : 3);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/my.po b/po/common/my.po index 782db5b763870..4965a8dfc0a79 100644 --- a/po/common/my.po +++ b/po/common/my.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: my_MM\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:48-0400\n" +"PO-Revision-Date: 2017-09-22 04:08-0400\n" "Language-Team: Burmese\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/nb.po b/po/common/nb.po index c0ddaf89f25ca..fb21ca7b7386f 100644 --- a/po/common/nb.po +++ b/po/common/nb.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: nb_NO\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:43-0400\n" +"PO-Revision-Date: 2017-09-22 04:03-0400\n" "Language-Team: Norwegian Bokmal\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2641,3 +2641,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/nl_BE.po b/po/common/nl_BE.po index 80d9f6fbd998e..a8f798e7f011a 100644 --- a/po/common/nl_BE.po +++ b/po/common/nl_BE.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: nl_BE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:48-0400\n" +"PO-Revision-Date: 2017-09-22 04:09-0400\n" "Language-Team: Dutch, Belgium\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2659,3 +2659,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/nl_NL.po b/po/common/nl_NL.po index 685b8506e79e5..924eda65aff08 100644 --- a/po/common/nl_NL.po +++ b/po/common/nl_NL.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: nl_NL\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:48-0400\n" +"PO-Revision-Date: 2017-09-22 04:09-0400\n" "Language-Team: Dutch\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2650,3 +2650,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/nn.po b/po/common/nn.po index d61937a1c65fb..12b933941459b 100644 --- a/po/common/nn.po +++ b/po/common/nn.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: nn_NO\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:43-0400\n" +"PO-Revision-Date: 2017-09-22 04:03-0400\n" "Language-Team: Norwegian Nynorsk\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2641,3 +2641,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/no.po b/po/common/no.po index 59acfd73d5393..6bc0bada58f4e 100644 --- a/po/common/no.po +++ b/po/common/no.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: no_NO\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:43-0400\n" +"PO-Revision-Date: 2017-09-22 04:04-0400\n" "Language-Team: Norwegian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2641,3 +2641,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/nr.po b/po/common/nr.po index b14e6a3887465..0014072db4fa6 100644 --- a/po/common/nr.po +++ b/po/common/nr.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: nr_ZA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:46-0400\n" +"PO-Revision-Date: 2017-09-22 04:05-0400\n" "Language-Team: Southern Ndebele\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/oc.po b/po/common/oc.po index 7bc7aa512ac86..5485b4884922f 100644 --- a/po/common/oc.po +++ b/po/common/oc.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: oc_FR\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:43-0400\n" +"PO-Revision-Date: 2017-09-22 04:04-0400\n" "Language-Team: Occitan\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/pa.po b/po/common/pa.po index 0188c8215a120..a308a66a8eb83 100644 --- a/po/common/pa.po +++ b/po/common/pa.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: pa_IN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:44-0400\n" +"PO-Revision-Date: 2017-09-22 04:05-0400\n" "Language-Team: Punjabi\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/pl.po b/po/common/pl.po index b9c60ab597f8f..daaaf3e74ad73 100644 --- a/po/common/pl.po +++ b/po/common/pl.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: pl_PL\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:44-0400\n" +"PO-Revision-Date: 2017-09-22 04:04-0400\n" "Language-Team: Polish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/pt_BR.po b/po/common/pt_BR.po index adac07cbe3bbe..95c2d5915fdf6 100644 --- a/po/common/pt_BR.po +++ b/po/common/pt_BR.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:44-0400\n" +"PO-Revision-Date: 2017-09-22 04:05-0400\n" "Language-Team: Portuguese, Brazilian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2674,3 +2674,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "Esta página de produto não está completa. Você pode ajudar a completá-la ao editar e adicionar mais dados a partir das fotos existentes, ou tirando mais fotos usando a App para Android ou iPhone/iPad. Obrigado!" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/pt_PT.po b/po/common/pt_PT.po index d054bdbd0cd5f..851b794529fe2 100644 --- a/po/common/pt_PT.po +++ b/po/common/pt_PT.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: pt_PT\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:44-0400\n" +"PO-Revision-Date: 2017-09-22 04:04-0400\n" "Language-Team: Portuguese\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2673,3 +2673,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "Esta página de produto não está completa. Você pode ajudar a completá-la ao editar e adicionar mais dados a partir das fotos existentes, ou tirando mais fotos usando a App para Android ou iPhone/iPad. Obrigado!" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/qu.po b/po/common/qu.po index 07f50bfe0fbf9..6b0f57f137661 100644 --- a/po/common/qu.po +++ b/po/common/qu.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: qu_PE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:43-0400\n" +"PO-Revision-Date: 2017-09-22 04:05-0400\n" "Language-Team: Quechua\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/rm.po b/po/common/rm.po index e4c33241d9d84..8c0020e004e23 100644 --- a/po/common/rm.po +++ b/po/common/rm.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: rm_CH\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:43-0400\n" +"PO-Revision-Date: 2017-09-22 04:04-0400\n" "Language-Team: Romansh\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/ro.po b/po/common/ro.po index c4e583c777786..18451aac6fb98 100644 --- a/po/common/ro.po +++ b/po/common/ro.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ro_RO\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:43-0400\n" +"PO-Revision-Date: 2017-09-22 04:04-0400\n" "Language-Team: Romanian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n" @@ -2648,3 +2648,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/ru.po b/po/common/ru.po index 86de39d4af368..125d1cbb48822 100644 --- a/po/common/ru.po +++ b/po/common/ru.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ru_RU\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:43-0400\n" +"PO-Revision-Date: 2017-09-22 04:04-0400\n" "Language-Team: Russian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" @@ -2720,3 +2720,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "Эта страница продукта не завершена. Вы можете помочь заполнить её, отредактировав и добавив больше данных с фотографий, которые у нас есть, или сделав дополнительные фотографий с помощью приложения для Android или iPhone/iPad. Спасибо!" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/ry.po b/po/common/ry.po index 458dc8ffd9121..3c948d5e27001 100644 --- a/po/common/ry.po +++ b/po/common/ry.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ry_UA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:43-0400\n" +"PO-Revision-Date: 2017-09-22 04:04-0400\n" "Language-Team: Rusyn\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/sa.po b/po/common/sa.po index 3210e3fff6ef8..249b47829d5a5 100644 --- a/po/common/sa.po +++ b/po/common/sa.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sa_IN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:42-0400\n" +"PO-Revision-Date: 2017-09-22 04:02-0400\n" "Language-Team: Sanskrit\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1 : 2);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/sat.po b/po/common/sat.po index 109c78834dfd9..9c323378b5156 100644 --- a/po/common/sat.po +++ b/po/common/sat.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sat_IN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:42-0400\n" +"PO-Revision-Date: 2017-09-22 04:02-0400\n" "Language-Team: Santali\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/sc.po b/po/common/sc.po index 9e8a87e8098ff..dd047068a8d4d 100644 --- a/po/common/sc.po +++ b/po/common/sc.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sc_IT\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:42-0400\n" +"PO-Revision-Date: 2017-09-22 04:02-0400\n" "Language-Team: Sardinian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/sco.po b/po/common/sco.po index d6334b9c51cf9..1737925ea4684 100644 --- a/po/common/sco.po +++ b/po/common/sco.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sco_GB\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:41-0400\n" +"PO-Revision-Date: 2017-09-22 04:02-0400\n" "Language-Team: Scots\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/sd.po b/po/common/sd.po index 4d17f31326971..636b69bf668ac 100644 --- a/po/common/sd.po +++ b/po/common/sd.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sd_PK\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:42-0400\n" +"PO-Revision-Date: 2017-09-22 04:03-0400\n" "Language-Team: Sindhi\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/sg.po b/po/common/sg.po index 0e3ead35742b1..20cce4b15a4cc 100644 --- a/po/common/sg.po +++ b/po/common/sg.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sg_CF\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:42-0400\n" +"PO-Revision-Date: 2017-09-22 04:03-0400\n" "Language-Team: Sango\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/sh.po b/po/common/sh.po index 42efb1175884e..ad86f2331f381 100644 --- a/po/common/sh.po +++ b/po/common/sh.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sh_HR\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:42-0400\n" +"PO-Revision-Date: 2017-09-22 04:02-0400\n" "Language-Team: Serbo-Croatian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=4; plural=(n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/si.po b/po/common/si.po index 21f1746536bf3..917cddb2fe393 100644 --- a/po/common/si.po +++ b/po/common/si.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: si_LK\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:42-0400\n" +"PO-Revision-Date: 2017-09-22 04:03-0400\n" "Language-Team: Sinhala\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/sk.po b/po/common/sk.po index 3027498d702a4..8feb70370f7a3 100644 --- a/po/common/sk.po +++ b/po/common/sk.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sk_SK\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:42-0400\n" +"PO-Revision-Date: 2017-09-22 04:03-0400\n" "Language-Team: Slovak\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/sl.po b/po/common/sl.po index a0ee8d689fcda..a4aa20f76546a 100644 --- a/po/common/sl.po +++ b/po/common/sl.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sl_SI\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:42-0400\n" +"PO-Revision-Date: 2017-09-22 04:02-0400\n" "Language-Team: Slovenian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/sma.po b/po/common/sma.po index 8ac8ee43856fd..105f6c7f79523 100644 --- a/po/common/sma.po +++ b/po/common/sma.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sma_NO\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:46-0400\n" +"PO-Revision-Date: 2017-09-22 04:07-0400\n" "Language-Team: Southern Sami\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/sn.po b/po/common/sn.po index 559432fb1cc20..41d6613fc3dda 100644 --- a/po/common/sn.po +++ b/po/common/sn.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sn_ZW\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:42-0400\n" +"PO-Revision-Date: 2017-09-22 04:03-0400\n" "Language-Team: Shona\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/so.po b/po/common/so.po index ecd73dc6f6680..1889c40593b6d 100644 --- a/po/common/so.po +++ b/po/common/so.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: so_SO\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:42-0400\n" +"PO-Revision-Date: 2017-09-22 04:03-0400\n" "Language-Team: Somali\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/son.po b/po/common/son.po index 1a69242e018bc..71ca91dc46556 100644 --- a/po/common/son.po +++ b/po/common/son.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: son_ZA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:42-0400\n" +"PO-Revision-Date: 2017-09-22 04:03-0400\n" "Language-Team: Songhay\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/sq.po b/po/common/sq.po index eb297bf97a699..20ec7baa2dd12 100644 --- a/po/common/sq.po +++ b/po/common/sq.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sq_AL\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:49-0400\n" +"PO-Revision-Date: 2017-09-22 04:10-0400\n" "Language-Team: Albanian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/sr.po b/po/common/sr.po index 0d4f0ebd17dde..b4b686ccd754c 100644 --- a/po/common/sr.po +++ b/po/common/sr.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sr_SP\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:42-0400\n" +"PO-Revision-Date: 2017-09-22 04:02-0400\n" "Language-Team: Serbian (Cyrillic)\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/sr_CS.po b/po/common/sr_CS.po index b38a2ced4bf64..b4696c165bd37 100644 --- a/po/common/sr_CS.po +++ b/po/common/sr_CS.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sr_CS\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:42-0400\n" +"PO-Revision-Date: 2017-09-22 04:02-0400\n" "Language-Team: Serbian (Latin)\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" @@ -2655,3 +2655,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/ss.po b/po/common/ss.po index f502c843bbb70..d72d1a659e761 100644 --- a/po/common/ss.po +++ b/po/common/ss.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ss_ZA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:45-0400\n" +"PO-Revision-Date: 2017-09-22 04:06-0400\n" "Language-Team: Swati\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/st.po b/po/common/st.po index 4d61ecaa7b092..da42cad80f3f8 100644 --- a/po/common/st.po +++ b/po/common/st.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: st_ZA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:46-0400\n" +"PO-Revision-Date: 2017-09-22 04:07-0400\n" "Language-Team: Southern Sotho\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/sv.po b/po/common/sv.po index 57da3e177f525..9d6504591c6bb 100644 --- a/po/common/sv.po +++ b/po/common/sv.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sv_SE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:45-0400\n" +"PO-Revision-Date: 2017-09-22 04:06-0400\n" "Language-Team: Swedish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/sw.po b/po/common/sw.po index 47011d6e475b5..021108ebb03ca 100644 --- a/po/common/sw.po +++ b/po/common/sw.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sw_KE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:46-0400\n" +"PO-Revision-Date: 2017-09-22 04:07-0400\n" "Language-Team: Swahili\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/ta.po b/po/common/ta.po index 3358afa4706fa..38551652077ad 100644 --- a/po/common/ta.po +++ b/po/common/ta.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ta_IN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:47-0400\n" +"PO-Revision-Date: 2017-09-22 04:08-0400\n" "Language-Team: Tamil\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/te.po b/po/common/te.po index 961a94997f8cc..acf639e4bc27f 100644 --- a/po/common/te.po +++ b/po/common/te.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: te_IN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:47-0400\n" +"PO-Revision-Date: 2017-09-22 04:08-0400\n" "Language-Team: Telugu\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/tg.po b/po/common/tg.po index f307ef317dafb..f5b2591ff13eb 100644 --- a/po/common/tg.po +++ b/po/common/tg.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: tg_TJ\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:47-0400\n" +"PO-Revision-Date: 2017-09-22 04:07-0400\n" "Language-Team: Tajik\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/th.po b/po/common/th.po index 4ad4e20f02ebe..d9a141b859e8e 100644 --- a/po/common/th.po +++ b/po/common/th.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: th_TH\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:46-0400\n" +"PO-Revision-Date: 2017-09-22 04:07-0400\n" "Language-Team: Thai\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/ti.po b/po/common/ti.po index 09f3ce4d22750..1a99c0084ffce 100644 --- a/po/common/ti.po +++ b/po/common/ti.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ti_ER\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:46-0400\n" +"PO-Revision-Date: 2017-09-22 04:07-0400\n" "Language-Team: Tigrinya\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/tl.po b/po/common/tl.po index 289578ffde238..4c586e027fa54 100644 --- a/po/common/tl.po +++ b/po/common/tl.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: tl_PH\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:46-0400\n" +"PO-Revision-Date: 2017-09-22 04:07-0400\n" "Language-Team: Tagalog\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/tn.po b/po/common/tn.po index 33ba995269508..0357f86595bed 100644 --- a/po/common/tn.po +++ b/po/common/tn.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: tn_ZA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:44-0400\n" +"PO-Revision-Date: 2017-09-22 04:06-0400\n" "Language-Team: Tswana\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/tr.po b/po/common/tr.po index d78741f15681e..26f4937baaefb 100644 --- a/po/common/tr.po +++ b/po/common/tr.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: tr_TR\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:44-0400\n" +"PO-Revision-Date: 2017-09-22 04:05-0400\n" "Language-Team: Turkish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/ts.po b/po/common/ts.po index 13548718f9d65..1d9b160f7e0b9 100644 --- a/po/common/ts.po +++ b/po/common/ts.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ts_ZA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:46-0400\n" +"PO-Revision-Date: 2017-09-22 04:07-0400\n" "Language-Team: Tsonga\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/tt.po b/po/common/tt.po index bb9672cc9f7a7..759b16f109a2e 100644 --- a/po/common/tt.po +++ b/po/common/tt.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: tt_RU\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:47-0400\n" +"PO-Revision-Date: 2017-09-22 04:08-0400\n" "Language-Team: Tatar\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/tw.po b/po/common/tw.po index 0848b9f0735dd..e83b3a2b90998 100644 --- a/po/common/tw.po +++ b/po/common/tw.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: tw_TW\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:50-0400\n" +"PO-Revision-Date: 2017-09-22 04:10-0400\n" "Language-Team: Akan, Twi\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/ty.po b/po/common/ty.po index 0c418a5557a24..262c94b22f9dc 100644 --- a/po/common/ty.po +++ b/po/common/ty.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ty_PF\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:46-0400\n" +"PO-Revision-Date: 2017-09-22 04:07-0400\n" "Language-Team: Tahitian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/tzl.po b/po/common/tzl.po index ad57ef644afa6..93a9a96b828bf 100644 --- a/po/common/tzl.po +++ b/po/common/tzl.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: tzl_TZL\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:47-0400\n" +"PO-Revision-Date: 2017-09-22 04:08-0400\n" "Language-Team: Talossan\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/ug.po b/po/common/ug.po index 623c2bb1d6666..5bf64c0fddf06 100644 --- a/po/common/ug.po +++ b/po/common/ug.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ug_CN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:44-0400\n" +"PO-Revision-Date: 2017-09-22 04:06-0400\n" "Language-Team: Uyghur\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/uk.po b/po/common/uk.po index 8d895985dc2b7..63f0da39146ca 100644 --- a/po/common/uk.po +++ b/po/common/uk.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: uk_UA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:44-0400\n" +"PO-Revision-Date: 2017-09-22 04:05-0400\n" "Language-Team: Ukrainian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/uz.po b/po/common/uz.po index d12addb825995..1b708900942bd 100644 --- a/po/common/uz.po +++ b/po/common/uz.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: uz_UZ\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:44-0400\n" +"PO-Revision-Date: 2017-09-22 04:05-0400\n" "Language-Team: Uzbek\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/val.po b/po/common/val.po index d239386abf755..02ae58a3fa78c 100644 --- a/po/common/val.po +++ b/po/common/val.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: val_ES\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:44-0400\n" +"PO-Revision-Date: 2017-09-22 04:05-0400\n" "Language-Team: Valencian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/ve.po b/po/common/ve.po index 39528c174b6fb..3a1fe719b9724 100644 --- a/po/common/ve.po +++ b/po/common/ve.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ve_ZA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:44-0400\n" +"PO-Revision-Date: 2017-09-22 04:05-0400\n" "Language-Team: Venda\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/vec.po b/po/common/vec.po index 71c420932f202..341bae748ae76 100644 --- a/po/common/vec.po +++ b/po/common/vec.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: vec_IT\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:44-0400\n" +"PO-Revision-Date: 2017-09-22 04:05-0400\n" "Language-Team: Venetian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/vi.po b/po/common/vi.po index 658ba8423417b..b77023c956cd6 100644 --- a/po/common/vi.po +++ b/po/common/vi.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: vi_VN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:44-0400\n" +"PO-Revision-Date: 2017-09-22 04:05-0400\n" "Language-Team: Vietnamese\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/vls.po b/po/common/vls.po index 5d33b41aa7ff3..8b2a23962e134 100644 --- a/po/common/vls.po +++ b/po/common/vls.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: vls_BE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:54-0400\n" +"PO-Revision-Date: 2017-09-22 04:13-0400\n" "Language-Team: Flemish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/wa.po b/po/common/wa.po index 9e4f6de0c0f07..b32616215f509 100644 --- a/po/common/wa.po +++ b/po/common/wa.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: wa_BE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:44-0400\n" +"PO-Revision-Date: 2017-09-22 04:06-0400\n" "Language-Team: Walloon\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/wo.po b/po/common/wo.po index 45c9c0efc81b1..ee70610330ab9 100644 --- a/po/common/wo.po +++ b/po/common/wo.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: wo_SN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:45-0400\n" +"PO-Revision-Date: 2017-09-22 04:06-0400\n" "Language-Team: Wolof\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/xh.po b/po/common/xh.po index a946287d2c284..31958a99f07f0 100644 --- a/po/common/xh.po +++ b/po/common/xh.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: xh_ZA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:45-0400\n" +"PO-Revision-Date: 2017-09-22 04:06-0400\n" "Language-Team: Xhosa\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/yi.po b/po/common/yi.po index f6999afcedf13..7efeb0bb8028a 100644 --- a/po/common/yi.po +++ b/po/common/yi.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: yi_DE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:45-0400\n" +"PO-Revision-Date: 2017-09-22 04:06-0400\n" "Language-Team: Yiddish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/yo.po b/po/common/yo.po index 82e9c8e3e3162..66f66b797622b 100644 --- a/po/common/yo.po +++ b/po/common/yo.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: yo_NG\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:45-0400\n" +"PO-Revision-Date: 2017-09-22 04:06-0400\n" "Language-Team: Yoruba\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/zea.po b/po/common/zea.po index c2973365ecd47..033e68c52b47a 100644 --- a/po/common/zea.po +++ b/po/common/zea.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: zea_ZEA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:45-0400\n" +"PO-Revision-Date: 2017-09-22 04:06-0400\n" "Language-Team: Zeelandic\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/zh_CN.po b/po/common/zh_CN.po index b90fb53a43027..640f64a67c1ef 100644 --- a/po/common/zh_CN.po +++ b/po/common/zh_CN.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:47-0400\n" +"PO-Revision-Date: 2017-09-22 04:08-0400\n" "Language-Team: Chinese Simplified\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/zh_HK.po b/po/common/zh_HK.po index 8b214778ba558..4e9929865e314 100644 --- a/po/common/zh_HK.po +++ b/po/common/zh_HK.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: zh_HK\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:47-0400\n" +"PO-Revision-Date: 2017-09-22 04:08-0400\n" "Language-Team: Chinese Traditional, Hong Kong\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -2640,3 +2640,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/zh_TW.po b/po/common/zh_TW.po index 565a05248deb7..25e6d4f86dcda 100644 --- a/po/common/zh_TW.po +++ b/po/common/zh_TW.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: zh_TW\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:47-0400\n" +"PO-Revision-Date: 2017-09-22 04:08-0400\n" "Language-Team: Chinese Traditional\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -2640,3 +2640,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/common/zu.po b/po/common/zu.po index bd60da5401cb5..152376a9962aa 100644 --- a/po/common/zu.po +++ b/po/common/zu.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: zu_ZA\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:45-0400\n" +"PO-Revision-Date: 2017-09-22 04:06-0400\n" "Language-Team: Zulu\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -2637,3 +2637,7 @@ msgctxt "warning_not_complete" msgid "This product page is not complete. You can help to complete it by editing it and adding more data from the photos we have, or by taking more photos using the app for Android or iPhone/iPad. Thank you!" msgstr "" +msgctxt "title_separator" +msgid " — " +msgstr "" + diff --git a/po/openbeautyfacts/aa.po b/po/openbeautyfacts/aa.po index f5f94db8ada61..f06878ae9319b 100644 --- a/po/openbeautyfacts/aa.po +++ b/po/openbeautyfacts/aa.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: aa_ER\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:36-0400\n" +"PO-Revision-Date: 2017-09-22 04:10-0400\n" "Language-Team: Afar\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -54,4 +54,5 @@ msgstr "" msgctxt "twitter_account" msgid "OpenBeautyFacts" -msgstr "" \ No newline at end of file +msgstr "" + diff --git a/po/openbeautyfacts/en_AU.po b/po/openbeautyfacts/en_AU.po index 4f9e0e50ef83b..e9683fed67ee1 100644 --- a/po/openbeautyfacts/en_AU.po +++ b/po/openbeautyfacts/en_AU.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: en_AU\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:55-0400\n" +"PO-Revision-Date: 2017-09-22 04:09-0400\n" "Language-Team: English, Australia\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -26,7 +26,7 @@ msgstr "English (Australia)" msgctxt "android_apk_app_link" msgid "http://world.openbeautyfacts.org/images/apps/obf.apk" -msgstr "http://world.openbeautyfacts.org/images/apps/obf.apk" +msgstr "" msgctxt "android_app_link" msgid "https://play.google.com/store/apps/details?id=org.openbeautyfacts.scanner&hl=en" @@ -34,25 +34,25 @@ msgstr "" msgctxt "ios_app_link" msgid "https://itunes.apple.com/en/app/open-beauty-facts/id1122926380" -msgstr "https://itunes.apple.com/en/app/open-beauty-facts/id1122926380" +msgstr "" msgctxt "logo" msgid "openbeautyfacts-logo-en-178x150.png" -msgstr "openbeautyfacts-logo-en-178x150.png" +msgstr "" msgctxt "logo2x" msgid "openbeautyfacts-logo-en-356x300.png" -msgstr "openbeautyfacts-logo-en-356x300.png" +msgstr "" msgctxt "site_name" msgid "Open Beauty Facts" -msgstr "Open Beauty Facts" +msgstr "" msgctxt "tagline" msgid "Open Beauty Facts gathers information and data on cosmetic products from around the world." -msgstr "Open Beauty Facts gathers information and data on cosmetic products from around the world." +msgstr "" msgctxt "twitter_account" msgid "OpenBeautyFacts" -msgstr "OpenBeautyFacts" +msgstr "" diff --git a/po/openbeautyfacts/en_GB.po b/po/openbeautyfacts/en_GB.po index af4a846c270e7..aaf7de194a8f8 100644 --- a/po/openbeautyfacts/en_GB.po +++ b/po/openbeautyfacts/en_GB.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: en_GB\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:37-0400\n" +"PO-Revision-Date: 2017-09-22 04:13-0400\n" "Language-Team: English, United Kingdom\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -26,7 +26,7 @@ msgstr "English (United Kingdom)" msgctxt "android_apk_app_link" msgid "http://world.openbeautyfacts.org/images/apps/obf.apk" -msgstr "http://world.openbeautyfacts.org/images/apps/obf.apk" +msgstr "" msgctxt "android_app_link" msgid "https://play.google.com/store/apps/details?id=org.openbeautyfacts.scanner&hl=en" @@ -34,25 +34,25 @@ msgstr "" msgctxt "ios_app_link" msgid "https://itunes.apple.com/en/app/open-beauty-facts/id1122926380" -msgstr "https://itunes.apple.com/en/app/open-beauty-facts/id1122926380" +msgstr "" msgctxt "logo" msgid "openbeautyfacts-logo-en-178x150.png" -msgstr "openbeautyfacts-logo-en-178x150.png" +msgstr "" msgctxt "logo2x" msgid "openbeautyfacts-logo-en-356x300.png" -msgstr "openbeautyfacts-logo-en-356x300.png" +msgstr "" msgctxt "site_name" msgid "Open Beauty Facts" -msgstr "Open Beauty Facts" +msgstr "" msgctxt "tagline" msgid "Open Beauty Facts gathers information and data on cosmetic products from around the world." -msgstr "Open Beauty Facts gathers information and data on cosmetic products from around the world." +msgstr "" msgctxt "twitter_account" msgid "OpenBeautyFacts" -msgstr "OpenBeautyFacts" +msgstr "" diff --git a/po/openbeautyfacts/ko.po b/po/openbeautyfacts/ko.po index c8ae63360419b..a7b6cb16e6cdf 100644 --- a/po/openbeautyfacts/ko.po +++ b/po/openbeautyfacts/ko.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ko_KR\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:35-0400\n" +"PO-Revision-Date: 2017-09-22 04:12-0400\n" "Language-Team: Korean\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -54,4 +54,5 @@ msgstr "" msgctxt "twitter_account" msgid "OpenBeautyFacts" -msgstr "" \ No newline at end of file +msgstr "" + diff --git a/po/openbeautyfacts/sv.po b/po/openbeautyfacts/sv.po index 3659ec11faec3..87e5923d0e59f 100644 --- a/po/openbeautyfacts/sv.po +++ b/po/openbeautyfacts/sv.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sv_SE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:51-0400\n" +"PO-Revision-Date: 2017-09-22 04:06-0400\n" "Language-Team: Swedish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -55,3 +55,4 @@ msgstr "" msgctxt "twitter_account" msgid "OpenBeautyFacts" msgstr "OpenBeautyFacts" + diff --git a/po/openfoodfacts/aa.po b/po/openfoodfacts/aa.po index 7df1300d23aa1..27f13a59cc85f 100644 --- a/po/openfoodfacts/aa.po +++ b/po/openfoodfacts/aa.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: aa_ER\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-04 03:49-0400\n" +"PO-Revision-Date: 2017-09-22 04:10-0400\n" "Language-Team: Afar\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -35,3 +35,4 @@ msgstr "" msgctxt "tagline" msgid "Open Food Facts gathers information and data on food products from around the world." msgstr "" + diff --git a/po/openfoodfacts/am.po b/po/openfoodfacts/am.po index 324d9ed63aacb..80a1367fe88e7 100644 --- a/po/openfoodfacts/am.po +++ b/po/openfoodfacts/am.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: am_ET\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:01-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:55-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:10-0400\n" "Language-Team: Amharic\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/po/openfoodfacts/bg.po b/po/openfoodfacts/bg.po index df3eff8a115e9..383e39175f758 100644 --- a/po/openfoodfacts/bg.po +++ b/po/openfoodfacts/bg.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: bg_BG\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:54-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:08-0400\n" "Language-Team: Bulgarian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/bo.po b/po/openfoodfacts/bo.po index 0289ae2f0a027..bca80af17411c 100644 --- a/po/openfoodfacts/bo.po +++ b/po/openfoodfacts/bo.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: bo_BT\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:52-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:07-0400\n" "Language-Team: Tibetan\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/po/openfoodfacts/br.po b/po/openfoodfacts/br.po index c78f258e47805..563a425ecb467 100644 --- a/po/openfoodfacts/br.po +++ b/po/openfoodfacts/br.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: br_FR\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:01-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:54-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:08-0400\n" "Language-Team: Breton\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/po/openfoodfacts/ca.po b/po/openfoodfacts/ca.po index aa50173f1a04b..42a065685bf50 100644 --- a/po/openfoodfacts/ca.po +++ b/po/openfoodfacts/ca.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ca_ES\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:54-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:09-0400\n" "Language-Team: Catalan\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/ce.po b/po/openfoodfacts/ce.po index eee6d134bc216..57947374b07d7 100644 --- a/po/openfoodfacts/ce.po +++ b/po/openfoodfacts/ce.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ce_CE\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:54-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:08-0400\n" "Language-Team: Chechen\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/chr.po b/po/openfoodfacts/chr.po index 54f876f182190..fd17cdac8ae0a 100644 --- a/po/openfoodfacts/chr.po +++ b/po/openfoodfacts/chr.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: chr_US\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:53-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:08-0400\n" "Language-Team: Cherokee\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/co.po b/po/openfoodfacts/co.po index 777ec51b2dc10..ef218a66701e7 100644 --- a/po/openfoodfacts/co.po +++ b/po/openfoodfacts/co.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: co_FR\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:01-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:55-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:09-0400\n" "Language-Team: Corsican\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/po/openfoodfacts/crs.po b/po/openfoodfacts/crs.po index 5883a548b1dbd..c04128cfd5943 100644 --- a/po/openfoodfacts/crs.po +++ b/po/openfoodfacts/crs.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: crs_SC\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:46-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:03-0400\n" "Language-Team: Seychellois Creole\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/cs.po b/po/openfoodfacts/cs.po index 9dfc6298852db..cdb9cf7500ca2 100644 --- a/po/openfoodfacts/cs.po +++ b/po/openfoodfacts/cs.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:01-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:55-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:09-0400\n" "Language-Team: Czech\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" diff --git a/po/openfoodfacts/cv.po b/po/openfoodfacts/cv.po index 10d305e677351..f48120b40413e 100644 --- a/po/openfoodfacts/cv.po +++ b/po/openfoodfacts/cv.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: cv_CU\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:54-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:09-0400\n" "Language-Team: Chuvash\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/po/openfoodfacts/da.po b/po/openfoodfacts/da.po index 2f1ee342eab4b..89156ca8feedf 100644 --- a/po/openfoodfacts/da.po +++ b/po/openfoodfacts/da.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: da_DK\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:54-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:09-0400\n" "Language-Team: Danish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/en_AU.po b/po/openfoodfacts/en_AU.po index a8f2d55e9eef8..6f551f09850c6 100644 --- a/po/openfoodfacts/en_AU.po +++ b/po/openfoodfacts/en_AU.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: en_AU\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:37-0400\n" +"PO-Revision-Date: 2017-09-22 04:09-0400\n" "Language-Team: English, Australia\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -26,13 +26,13 @@ msgstr "English (Australia)" msgctxt "logo" msgid "openfoodfacts-logo-en-178x150.png" -msgstr "openfoodfacts-logo-en-178x150.png" +msgstr "" msgctxt "logo2x" msgid "openfoodfacts-logo-en-356x300.png" -msgstr "openfoodfacts-logo-en-356x300.png" +msgstr "" msgctxt "tagline" msgid "Open Food Facts gathers information and data on food products from around the world." -msgstr "Open Food Facts gathers information and data on food products from around the world." +msgstr "" diff --git a/po/openfoodfacts/en_GB.po b/po/openfoodfacts/en_GB.po index 8c5d250157b93..f040f21a0026b 100644 --- a/po/openfoodfacts/en_GB.po +++ b/po/openfoodfacts/en_GB.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: en_GB\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:37-0400\n" +"PO-Revision-Date: 2017-09-22 04:13-0400\n" "Language-Team: English, United Kingdom\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -26,13 +26,13 @@ msgstr "English (United Kingdom)" msgctxt "logo" msgid "openfoodfacts-logo-en-178x150.png" -msgstr "openfoodfacts-logo-en-178x150.png" +msgstr "" msgctxt "logo2x" msgid "openfoodfacts-logo-en-356x300.png" -msgstr "openfoodfacts-logo-en-356x300.png" +msgstr "" msgctxt "tagline" msgid "Open Food Facts gathers information and data on food products from around the world." -msgstr "Open Food Facts gathers information and data on food products from around the world." +msgstr "" diff --git a/po/openfoodfacts/es.po b/po/openfoodfacts/es.po index 3c313259af6b2..d8f65ab596b86 100644 --- a/po/openfoodfacts/es.po +++ b/po/openfoodfacts/es.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: es_ES\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:52-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:07-0400\n" "Language-Team: Spanish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/fa.po b/po/openfoodfacts/fa.po index 797d03cf89525..3474b3a0a4df7 100644 --- a/po/openfoodfacts/fa.po +++ b/po/openfoodfacts/fa.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: fa_IR\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:48-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:03-0400\n" "Language-Team: Persian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/gd.po b/po/openfoodfacts/gd.po index 6b423066b2127..ea91f1dc0421b 100644 --- a/po/openfoodfacts/gd.po +++ b/po/openfoodfacts/gd.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: gd_GB\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:44-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:02-0400\n" "Language-Team: Scottish Gaelic\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n>2 && n<20) ? 2 : 3;\n" diff --git a/po/openfoodfacts/hr.po b/po/openfoodfacts/hr.po index 3ae78e9bdcbee..287c6b00b5b9f 100644 --- a/po/openfoodfacts/hr.po +++ b/po/openfoodfacts/hr.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: hr_HR\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:01-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:55-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:09-0400\n" "Language-Team: Croatian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" diff --git a/po/openfoodfacts/hy.po b/po/openfoodfacts/hy.po index 711b0a348608b..393d70ee7c9d7 100644 --- a/po/openfoodfacts/hy.po +++ b/po/openfoodfacts/hy.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: hy_AM\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:01-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:56-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:10-0400\n" "Language-Team: Armenian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/ii.po b/po/openfoodfacts/ii.po index af1caf81ad8a2..5b86dae34576c 100644 --- a/po/openfoodfacts/ii.po +++ b/po/openfoodfacts/ii.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ii_CN\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:47-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:03-0400\n" "Language-Team: Sichuan Yi\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/kw.po b/po/openfoodfacts/kw.po index 28e6c138676e8..d2eb562d387fa 100644 --- a/po/openfoodfacts/kw.po +++ b/po/openfoodfacts/kw.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: kw_GB\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:55-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:09-0400\n" "Language-Team: Cornish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n==3) ? 2 : 3;\n" diff --git a/po/openfoodfacts/mi.po b/po/openfoodfacts/mi.po index c667f6ef25dfe..acb9371c790c7 100644 --- a/po/openfoodfacts/mi.po +++ b/po/openfoodfacts/mi.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: mi_NZ\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:47-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:04-0400\n" "Language-Team: Maori\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/po/openfoodfacts/ml.po b/po/openfoodfacts/ml.po index ae1237a55b9cc..f156374326ede 100644 --- a/po/openfoodfacts/ml.po +++ b/po/openfoodfacts/ml.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ml_IN\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:47-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:12-0400\n" "Language-Team: Malayalam\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/mn.po b/po/openfoodfacts/mn.po index 33349ca3eff10..542271e06b6dc 100644 --- a/po/openfoodfacts/mn.po +++ b/po/openfoodfacts/mn.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: mn_MN\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:47-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:04-0400\n" "Language-Team: Mongolian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/mr.po b/po/openfoodfacts/mr.po index 89191d8d4a958..c13b8a393f769 100644 --- a/po/openfoodfacts/mr.po +++ b/po/openfoodfacts/mr.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: mr_IN\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:48-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:04-0400\n" "Language-Team: Marathi\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/mt.po b/po/openfoodfacts/mt.po index 1234ed8aef676..495bc37d0bdd3 100644 --- a/po/openfoodfacts/mt.po +++ b/po/openfoodfacts/mt.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: mt_MT\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:47-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:04-0400\n" "Language-Team: Maltese\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n==0 || (n%100>1 && n%100<11) ? 1 : (n%100>10 && n%100<20) ? 2 : 3);\n" diff --git a/po/openfoodfacts/my.po b/po/openfoodfacts/my.po index d1815c16ee3d7..e0e4caf05b41e 100644 --- a/po/openfoodfacts/my.po +++ b/po/openfoodfacts/my.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: my_MM\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:54-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:09-0400\n" "Language-Team: Burmese\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/po/openfoodfacts/nb.po b/po/openfoodfacts/nb.po index 75472034b49bf..05ae6ab2d8f5c 100644 --- a/po/openfoodfacts/nb.po +++ b/po/openfoodfacts/nb.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: nb_NO\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:47-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:03-0400\n" "Language-Team: Norwegian Bokmal\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/nl_BE.po b/po/openfoodfacts/nl_BE.po index ee76ce12504b6..bc15b95bf83b5 100644 --- a/po/openfoodfacts/nl_BE.po +++ b/po/openfoodfacts/nl_BE.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: nl_BE\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:54-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:09-0400\n" "Language-Team: Dutch, Belgium\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/nl_NL.po b/po/openfoodfacts/nl_NL.po index 41b0dff23d2b3..b1b9801146a0f 100644 --- a/po/openfoodfacts/nl_NL.po +++ b/po/openfoodfacts/nl_NL.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: nl_NL\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:54-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:09-0400\n" "Language-Team: Dutch\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/nn.po b/po/openfoodfacts/nn.po index cd719739cde98..52772d344dedd 100644 --- a/po/openfoodfacts/nn.po +++ b/po/openfoodfacts/nn.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: nn_NO\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:47-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:03-0400\n" "Language-Team: Norwegian Nynorsk\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/no.po b/po/openfoodfacts/no.po index fc3c10900f516..1288ea1ead09a 100644 --- a/po/openfoodfacts/no.po +++ b/po/openfoodfacts/no.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: no_NO\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:47-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:04-0400\n" "Language-Team: Norwegian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/nr.po b/po/openfoodfacts/nr.po index 00f8d8a60afc3..9942f99c7b061 100644 --- a/po/openfoodfacts/nr.po +++ b/po/openfoodfacts/nr.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: nr_ZA\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:52-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:07-0400\n" "Language-Team: Southern Ndebele\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/oc.po b/po/openfoodfacts/oc.po index 76a68872d7119..b58b44f81019a 100644 --- a/po/openfoodfacts/oc.po +++ b/po/openfoodfacts/oc.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: oc_FR\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:47-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:04-0400\n" "Language-Team: Occitan\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/po/openfoodfacts/pa.po b/po/openfoodfacts/pa.po index b753be8b39d5d..97658b7b867d4 100644 --- a/po/openfoodfacts/pa.po +++ b/po/openfoodfacts/pa.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: pa_IN\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:48-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:05-0400\n" "Language-Team: Punjabi\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/pl.po b/po/openfoodfacts/pl.po index 424b1f869ebd9..cebe6ec5bce5e 100644 --- a/po/openfoodfacts/pl.po +++ b/po/openfoodfacts/pl.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: pl_PL\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:48-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:05-0400\n" "Language-Team: Polish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" diff --git a/po/openfoodfacts/pt_BR.po b/po/openfoodfacts/pt_BR.po index 367d9d199d659..5f511d584e75b 100644 --- a/po/openfoodfacts/pt_BR.po +++ b/po/openfoodfacts/pt_BR.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:49-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:05-0400\n" "Language-Team: Portuguese, Brazilian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/pt_PT.po b/po/openfoodfacts/pt_PT.po index 87e9e237df61c..23d9b178716fe 100644 --- a/po/openfoodfacts/pt_PT.po +++ b/po/openfoodfacts/pt_PT.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: pt_PT\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:49-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:04-0400\n" "Language-Team: Portuguese\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/qu.po b/po/openfoodfacts/qu.po index decef82f3ab6a..8a61e39462525 100644 --- a/po/openfoodfacts/qu.po +++ b/po/openfoodfacts/qu.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: qu_PE\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:48-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:04-0400\n" "Language-Team: Quechua\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/rm.po b/po/openfoodfacts/rm.po index 7b98a659919aa..10e04d6c58674 100644 --- a/po/openfoodfacts/rm.po +++ b/po/openfoodfacts/rm.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: rm_CH\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:48-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:04-0400\n" "Language-Team: Romansh\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/ro.po b/po/openfoodfacts/ro.po index f33df743be959..a718f26eb6d9f 100644 --- a/po/openfoodfacts/ro.po +++ b/po/openfoodfacts/ro.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ro_RO\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:48-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:04-0400\n" "Language-Team: Romanian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n" diff --git a/po/openfoodfacts/ru.po b/po/openfoodfacts/ru.po index 593966307e81c..0b2894950ffba 100644 --- a/po/openfoodfacts/ru.po +++ b/po/openfoodfacts/ru.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ru_RU\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:48-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:04-0400\n" "Language-Team: Russian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" diff --git a/po/openfoodfacts/ry.po b/po/openfoodfacts/ry.po index b0bc7c774f7c8..58752abf8faf3 100644 --- a/po/openfoodfacts/ry.po +++ b/po/openfoodfacts/ry.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ry_UA\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:45-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:04-0400\n" "Language-Team: Rusyn\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" diff --git a/po/openfoodfacts/sa.po b/po/openfoodfacts/sa.po index 4401e5dbcb67e..d0fd9f1ec1327 100644 --- a/po/openfoodfacts/sa.po +++ b/po/openfoodfacts/sa.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sa_IN\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:45-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:02-0400\n" "Language-Team: Sanskrit\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1 : 2);\n" diff --git a/po/openfoodfacts/sat.po b/po/openfoodfacts/sat.po index 77501c1e0bcea..9a8c16e19ee88 100644 --- a/po/openfoodfacts/sat.po +++ b/po/openfoodfacts/sat.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sat_IN\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:45-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:02-0400\n" "Language-Team: Santali\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/sc.po b/po/openfoodfacts/sc.po index 0735c8519de8b..d7e37c067c3ae 100644 --- a/po/openfoodfacts/sc.po +++ b/po/openfoodfacts/sc.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sc_IT\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:45-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:02-0400\n" "Language-Team: Sardinian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/sco.po b/po/openfoodfacts/sco.po index a9b417dddfbd6..6cb6d6c31df6e 100644 --- a/po/openfoodfacts/sco.po +++ b/po/openfoodfacts/sco.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sco_GB\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:45-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:02-0400\n" "Language-Team: Scots\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/sd.po b/po/openfoodfacts/sd.po index 729e94a3fa24a..7e2922a4f18fb 100644 --- a/po/openfoodfacts/sd.po +++ b/po/openfoodfacts/sd.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sd_PK\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:46-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:03-0400\n" "Language-Team: Sindhi\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/sg.po b/po/openfoodfacts/sg.po index daa49ab390ec5..7fed102291965 100644 --- a/po/openfoodfacts/sg.po +++ b/po/openfoodfacts/sg.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sg_CF\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:45-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:02-0400\n" "Language-Team: Sango\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/po/openfoodfacts/sh.po b/po/openfoodfacts/sh.po index 1db8c64dbb02c..fd3184511f751 100644 --- a/po/openfoodfacts/sh.po +++ b/po/openfoodfacts/sh.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sh_HR\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:46-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:02-0400\n" "Language-Team: Serbo-Croatian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=4; plural=(n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" diff --git a/po/openfoodfacts/si.po b/po/openfoodfacts/si.po index d86f6bc1c0263..52720788d04e2 100644 --- a/po/openfoodfacts/si.po +++ b/po/openfoodfacts/si.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: si_LK\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:46-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:03-0400\n" "Language-Team: Sinhala\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/sk.po b/po/openfoodfacts/sk.po index 56a79a803e900..75da2655d9bed 100644 --- a/po/openfoodfacts/sk.po +++ b/po/openfoodfacts/sk.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sk_SK\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:46-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:03-0400\n" "Language-Team: Slovak\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" diff --git a/po/openfoodfacts/sl.po b/po/openfoodfacts/sl.po index d433f48f72f7b..e695679d00527 100644 --- a/po/openfoodfacts/sl.po +++ b/po/openfoodfacts/sl.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sl_SI\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:46-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:02-0400\n" "Language-Team: Slovenian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n" diff --git a/po/openfoodfacts/sma.po b/po/openfoodfacts/sma.po index cd10c068640e0..b29c244c55af1 100644 --- a/po/openfoodfacts/sma.po +++ b/po/openfoodfacts/sma.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sma_NO\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:52-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:07-0400\n" "Language-Team: Southern Sami\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/sn.po b/po/openfoodfacts/sn.po index 692921d8efa89..e81db9f0f884b 100644 --- a/po/openfoodfacts/sn.po +++ b/po/openfoodfacts/sn.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sn_ZW\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:46-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:03-0400\n" "Language-Team: Shona\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/so.po b/po/openfoodfacts/so.po index 86c8d569fc49c..04d2afa84736a 100644 --- a/po/openfoodfacts/so.po +++ b/po/openfoodfacts/so.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: so_SO\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:46-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:03-0400\n" "Language-Team: Somali\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/son.po b/po/openfoodfacts/son.po index 00ed1543b9fb3..f71fb3c565b0e 100644 --- a/po/openfoodfacts/son.po +++ b/po/openfoodfacts/son.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: son_ZA\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:49-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:03-0400\n" "Language-Team: Songhay\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/sq.po b/po/openfoodfacts/sq.po index 349a2b82190ff..de871c073b436 100644 --- a/po/openfoodfacts/sq.po +++ b/po/openfoodfacts/sq.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sq_AL\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:01-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:55-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:10-0400\n" "Language-Team: Albanian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/sr.po b/po/openfoodfacts/sr.po index e6d691033eb55..54fe9d8c907fc 100644 --- a/po/openfoodfacts/sr.po +++ b/po/openfoodfacts/sr.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sr_SP\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:45-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:02-0400\n" "Language-Team: Serbian (Cyrillic)\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" diff --git a/po/openfoodfacts/sr_CS.po b/po/openfoodfacts/sr_CS.po index 5f4d2d604de9d..97456c68a2b27 100644 --- a/po/openfoodfacts/sr_CS.po +++ b/po/openfoodfacts/sr_CS.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sr_CS\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 08:59-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:45-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:02-0400\n" "Language-Team: Serbian (Latin)\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" diff --git a/po/openfoodfacts/ss.po b/po/openfoodfacts/ss.po index a7f4a52ef5189..15743cfde8435 100644 --- a/po/openfoodfacts/ss.po +++ b/po/openfoodfacts/ss.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ss_ZA\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:51-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:06-0400\n" "Language-Team: Swati\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/st.po b/po/openfoodfacts/st.po index 37914ad98f128..5f4b3151c8df9 100644 --- a/po/openfoodfacts/st.po +++ b/po/openfoodfacts/st.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: st_ZA\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:52-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:07-0400\n" "Language-Team: Southern Sotho\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/sv.po b/po/openfoodfacts/sv.po index 0c6a07541c9dd..d53bf890c6381 100644 --- a/po/openfoodfacts/sv.po +++ b/po/openfoodfacts/sv.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sv_SE\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:51-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:06-0400\n" "Language-Team: Swedish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/sw.po b/po/openfoodfacts/sw.po index 0b011642561da..2df50fd4a5e9f 100644 --- a/po/openfoodfacts/sw.po +++ b/po/openfoodfacts/sw.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sw_KE\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:51-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:07-0400\n" "Language-Team: Swahili\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/ta.po b/po/openfoodfacts/ta.po index 729f373e89dbc..d6b24a2f8d809 100644 --- a/po/openfoodfacts/ta.po +++ b/po/openfoodfacts/ta.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ta_IN\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:53-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:08-0400\n" "Language-Team: Tamil\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/te.po b/po/openfoodfacts/te.po index 6ec967141b04c..3aa2aa63b0341 100644 --- a/po/openfoodfacts/te.po +++ b/po/openfoodfacts/te.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: te_IN\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:52-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:08-0400\n" "Language-Team: Telugu\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/tg.po b/po/openfoodfacts/tg.po index 207b82a1d3c8e..40c5e4aab8bf4 100644 --- a/po/openfoodfacts/tg.po +++ b/po/openfoodfacts/tg.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: tg_TJ\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:53-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:08-0400\n" "Language-Team: Tajik\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/po/openfoodfacts/th.po b/po/openfoodfacts/th.po index 312aa477161d3..a8e83e470c03c 100644 --- a/po/openfoodfacts/th.po +++ b/po/openfoodfacts/th.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: th_TH\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:52-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:07-0400\n" "Language-Team: Thai\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/po/openfoodfacts/ti.po b/po/openfoodfacts/ti.po index 52df6bcc0ff23..2df700aa30ec5 100644 --- a/po/openfoodfacts/ti.po +++ b/po/openfoodfacts/ti.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ti_ER\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:52-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:08-0400\n" "Language-Team: Tigrinya\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/po/openfoodfacts/tl.po b/po/openfoodfacts/tl.po index a196f4cc3f0d9..58375fa5d6615 100644 --- a/po/openfoodfacts/tl.po +++ b/po/openfoodfacts/tl.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: tl_PH\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:51-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:07-0400\n" "Language-Team: Tagalog\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/po/openfoodfacts/tr.po b/po/openfoodfacts/tr.po index f8b566529a42e..0dfb9df07d22c 100644 --- a/po/openfoodfacts/tr.po +++ b/po/openfoodfacts/tr.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: tr_TR\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:49-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:05-0400\n" "Language-Team: Turkish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/ts.po b/po/openfoodfacts/ts.po index a0ef9a2b4159b..6c60f05e0d88d 100644 --- a/po/openfoodfacts/ts.po +++ b/po/openfoodfacts/ts.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ts_ZA\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:52-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:07-0400\n" "Language-Team: Tsonga\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/tt.po b/po/openfoodfacts/tt.po index 0e17f3c0636ea..3736765dd903e 100644 --- a/po/openfoodfacts/tt.po +++ b/po/openfoodfacts/tt.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: tt_RU\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:53-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:08-0400\n" "Language-Team: Tatar\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/po/openfoodfacts/ty.po b/po/openfoodfacts/ty.po index 6009f8f9548f8..d336487098a27 100644 --- a/po/openfoodfacts/ty.po +++ b/po/openfoodfacts/ty.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ty_PF\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:51-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:07-0400\n" "Language-Team: Tahitian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/po/openfoodfacts/tzl.po b/po/openfoodfacts/tzl.po index 2f4b9cfed732d..2c5130647a797 100644 --- a/po/openfoodfacts/tzl.po +++ b/po/openfoodfacts/tzl.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: tzl_TZL\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:53-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:08-0400\n" "Language-Team: Talossan\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/uz.po b/po/openfoodfacts/uz.po index 261cb5a507cda..c4fc46741c6db 100644 --- a/po/openfoodfacts/uz.po +++ b/po/openfoodfacts/uz.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: uz_UZ\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:49-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:05-0400\n" "Language-Team: Uzbek\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/po/openfoodfacts/val.po b/po/openfoodfacts/val.po index d17c775beb662..62b6d481bd2af 100644 --- a/po/openfoodfacts/val.po +++ b/po/openfoodfacts/val.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: val_ES\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:49-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:05-0400\n" "Language-Team: Valencian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/ve.po b/po/openfoodfacts/ve.po index be76ce6d29dcc..6f81e819662ce 100644 --- a/po/openfoodfacts/ve.po +++ b/po/openfoodfacts/ve.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ve_ZA\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:49-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:05-0400\n" "Language-Team: Venda\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/vec.po b/po/openfoodfacts/vec.po index 1ee0126f3e800..05d4a23993e16 100644 --- a/po/openfoodfacts/vec.po +++ b/po/openfoodfacts/vec.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: vec_IT\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:49-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:05-0400\n" "Language-Team: Venetian\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/vi.po b/po/openfoodfacts/vi.po index 95c4912a57faf..ecca615cff047 100644 --- a/po/openfoodfacts/vi.po +++ b/po/openfoodfacts/vi.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: vi_VN\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:49-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:05-0400\n" "Language-Team: Vietnamese\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/po/openfoodfacts/wa.po b/po/openfoodfacts/wa.po index 25ba9689921d4..b5be046f9ef49 100644 --- a/po/openfoodfacts/wa.po +++ b/po/openfoodfacts/wa.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: wa_BE\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:51-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:06-0400\n" "Language-Team: Walloon\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/po/openfoodfacts/wo.po b/po/openfoodfacts/wo.po index edd68c04b7685..3c5b7ea5bc668 100644 --- a/po/openfoodfacts/wo.po +++ b/po/openfoodfacts/wo.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: wo_SN\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:51-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:06-0400\n" "Language-Team: Wolof\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/po/openfoodfacts/xh.po b/po/openfoodfacts/xh.po index 7482769182660..c9e84a06e0ac3 100644 --- a/po/openfoodfacts/xh.po +++ b/po/openfoodfacts/xh.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: xh_ZA\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:51-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:06-0400\n" "Language-Team: Xhosa\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/openfoodfacts/zh_CN.po b/po/openfoodfacts/zh_CN.po index 94d565e4d7c79..0b6936b184349 100644 --- a/po/openfoodfacts/zh_CN.po +++ b/po/openfoodfacts/zh_CN.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:53-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:08-0400\n" "Language-Team: Chinese Simplified\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/po/openfoodfacts/zh_HK.po b/po/openfoodfacts/zh_HK.po index 393037428664c..b4571cc423f03 100644 --- a/po/openfoodfacts/zh_HK.po +++ b/po/openfoodfacts/zh_HK.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: zh_HK\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:53-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:08-0400\n" "Language-Team: Chinese Traditional, Hong Kong\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/po/openfoodfacts/zh_TW.po b/po/openfoodfacts/zh_TW.po index 584f3ec6e1217..c03e8730613bd 100644 --- a/po/openfoodfacts/zh_TW.po +++ b/po/openfoodfacts/zh_TW.po @@ -5,11 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: zh_TW\n" "Project-Id-Version: openfoodfacts\n" -<<<<<<< HEAD -"PO-Revision-Date: 2017-07-10 09:00-0400\n" -======= -"PO-Revision-Date: 2017-09-02 10:54-0400\n" ->>>>>>> l10n_master +"PO-Revision-Date: 2017-09-22 04:08-0400\n" "Language-Team: Chinese Traditional\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/po/openpetfoodfacts/en_AU.po b/po/openpetfoodfacts/en_AU.po index dea10c48b5233..f6b8c85851a96 100644 --- a/po/openpetfoodfacts/en_AU.po +++ b/po/openpetfoodfacts/en_AU.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: en_AU\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:37-0400\n" +"PO-Revision-Date: 2017-09-22 04:09-0400\n" "Language-Team: English, Australia\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -24,15 +24,15 @@ msgstr "English (Australia)" msgctxt "logo" msgid "openfoodfacts-logo-en-178x150.png" -msgstr "openfoodfacts-logo-en-178x150.png" +msgstr "" msgctxt "logo2x" msgid "openfoodfacts-logo-en-356x300.png" -msgstr "openfoodfacts-logo-en-356x300.png" +msgstr "" msgctxt "site_name" msgid "Open Pet Food Facts" -msgstr "Open Pet Food Facts" +msgstr "" msgctxt "tagline" msgid "Open Pet Food Facts gathers information and data on pet food products from around the world.
    " @@ -40,5 +40,5 @@ msgstr "" msgctxt "android_app_link" msgid "https://play.google.com/store/apps/details?id=org.openpetfoodfacts.scanner&hl=en" -msgstr "https://play.google.com/store/apps/details?id=org.openpetfoodfacts.scanner&hl=en" +msgstr "" diff --git a/po/openpetfoodfacts/en_GB.po b/po/openpetfoodfacts/en_GB.po index ca8bb93641a36..0ce98110ee008 100644 --- a/po/openpetfoodfacts/en_GB.po +++ b/po/openpetfoodfacts/en_GB.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: en_GB\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:37-0400\n" +"PO-Revision-Date: 2017-09-22 04:13-0400\n" "Language-Team: English, United Kingdom\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -24,11 +24,11 @@ msgstr "English (United Kingdom)" msgctxt "logo" msgid "openfoodfacts-logo-en-178x150.png" -msgstr "openfoodfacts-logo-en-178x150.png" +msgstr "" msgctxt "logo2x" msgid "openfoodfacts-logo-en-356x300.png" -msgstr "openfoodfacts-logo-en-356x300.png" +msgstr "" msgctxt "site_name" msgid "Open Pet Food Facts" diff --git a/po/openpetfoodfacts/sv.po b/po/openpetfoodfacts/sv.po index 71db4b12a7ed6..578afb828e927 100644 --- a/po/openpetfoodfacts/sv.po +++ b/po/openpetfoodfacts/sv.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: sv_SE\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:56-0400\n" +"PO-Revision-Date: 2017-09-22 04:06-0400\n" "Language-Team: Swedish\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -41,3 +41,4 @@ msgstr "" msgctxt "android_app_link" msgid "https://play.google.com/store/apps/details?id=org.openpetfoodfacts.scanner&hl=en" msgstr "https://play.google.com/store/apps/details?id=org.openpetfoodfacts.scanner&hl=en" + diff --git a/po/openpetfoodfacts/zh_TW.po b/po/openpetfoodfacts/zh_TW.po index f312b88576fa0..f4e3bedede425 100644 --- a/po/openpetfoodfacts/zh_TW.po +++ b/po/openpetfoodfacts/zh_TW.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: zh_TW\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:56-0400\n" +"PO-Revision-Date: 2017-09-17 03:10-0400\n" "Language-Team: Chinese Traditional\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -32,7 +32,7 @@ msgstr "" msgctxt "site_name" msgid "Open Pet Food Facts" -msgstr "" +msgstr "開放寵物食品事實" msgctxt "tagline" msgid "Open Pet Food Facts gathers information and data on pet food products from around the world.
    " diff --git a/po/tags/en_AU.po b/po/tags/en_AU.po index f11c1bc1b85ab..9e61f4eafc5db 100644 --- a/po/tags/en_AU.po +++ b/po/tags/en_AU.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: en_AU\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:37-0400\n" +"PO-Revision-Date: 2017-09-22 04:11-0400\n" "Language-Team: English, Australia\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -26,43 +26,43 @@ msgstr "English (Australia)" msgctxt "additives:plural" msgid "additives" -msgstr "additives" +msgstr "" msgctxt "additives:singular" msgid "additive" -msgstr "additive" +msgstr "" msgctxt "allergens:plural" msgid "allergens" -msgstr "allergens" +msgstr "" msgctxt "allergens:singular" msgid "allergen" -msgstr "allergen" +msgstr "" msgctxt "brands:plural" msgid "brands" -msgstr "brands" +msgstr "" msgctxt "brands:singular" msgid "brand" -msgstr "brand" +msgstr "" msgctxt "categories:plural" msgid "categories" -msgstr "categories" +msgstr "" msgctxt "categories:singular" msgid "category" -msgstr "category" +msgstr "" msgctxt "checkers:plural" msgid "checkers" -msgstr "checkers" +msgstr "" msgctxt "checkers:singular" msgid "checker" -msgstr "checker" +msgstr "" msgctxt "cities:plural" msgid "cities" @@ -90,27 +90,27 @@ msgstr "correction" msgctxt "countries:plural" msgid "countries" -msgstr "countries" +msgstr "" msgctxt "countries:singular" msgid "country" -msgstr "country" +msgstr "" msgctxt "debug:plural" msgid "debug" -msgstr "debug" +msgstr "" msgctxt "debug:singular" msgid "debug" -msgstr "debug" +msgstr "" msgctxt "editors:plural" msgid "editors" -msgstr "editors" +msgstr "" msgctxt "editors:singular" msgid "editor" -msgstr "editor" +msgstr "" msgctxt "emb_codes:plural" msgid "packager-codes" @@ -130,7 +130,7 @@ msgstr "" msgctxt "informers:plural" msgid "informers" -msgstr "informers" +msgstr "" msgctxt "informers:singular" msgid "informer" @@ -138,11 +138,11 @@ msgstr "" msgctxt "ingredients:plural" msgid "ingredients" -msgstr "ingredients" +msgstr "" msgctxt "ingredients:singular" msgid "ingredient" -msgstr "ingredient" +msgstr "" msgctxt "ingredients_from_palm_oil:plural" msgid "ingredients-from-palm-oil" @@ -178,19 +178,19 @@ msgstr "" msgctxt "labels:plural" msgid "labels" -msgstr "labels" +msgstr "" msgctxt "labels:singular" msgid "label" -msgstr "label" +msgstr "" msgctxt "languages:plural" msgid "languages" -msgstr "languages" +msgstr "" msgctxt "languages:singular" msgid "language" -msgstr "language" +msgstr "" msgctxt "last_edit_dates:plural" msgid "last-edit-dates" @@ -258,11 +258,11 @@ msgstr "" msgctxt "packaging:plural" msgid "packaging" -msgstr "packaging" +msgstr "" msgctxt "packaging:singular" msgid "packaging" -msgstr "packaging" +msgstr "" msgctxt "periods_after_opening:plural" msgid "periods-after-opening" @@ -274,11 +274,11 @@ msgstr "" msgctxt "photographers:plural" msgid "photographers" -msgstr "photographers" +msgstr "" msgctxt "photographers:singular" msgid "photographer" -msgstr "photographer" +msgstr "" msgctxt "pnns_groups_1:plural" msgid "pnns-groups-1" @@ -298,7 +298,7 @@ msgstr "" msgctxt "products:plural" msgid "products" -msgstr "products" +msgstr "" msgctxt "products:singular" msgid "product" @@ -314,27 +314,27 @@ msgstr "" msgctxt "states:plural" msgid "states" -msgstr "states" +msgstr "" msgctxt "states:singular" msgid "state" -msgstr "state" +msgstr "" msgctxt "stores:plural" msgid "stores" -msgstr "stores" +msgstr "" msgctxt "stores:singular" msgid "store" -msgstr "store" +msgstr "" msgctxt "traces:plural" msgid "traces" -msgstr "traces" +msgstr "" msgctxt "traces:singular" msgid "trace" -msgstr "trace" +msgstr "" msgctxt "unknown_nutrients:plural" msgid "unknown-nutrients" @@ -346,9 +346,9 @@ msgstr "" msgctxt "users:plural" msgid "contributors" -msgstr "contributors" +msgstr "" msgctxt "users:singular" msgid "contributor" -msgstr "contributor" +msgstr "" diff --git a/po/tags/en_GB.po b/po/tags/en_GB.po index 13ad68db21023..a36a53ff7c142 100644 --- a/po/tags/en_GB.po +++ b/po/tags/en_GB.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: en_GB\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-03 10:37-0400\n" +"PO-Revision-Date: 2017-09-22 04:13-0400\n" "Language-Team: English, United Kingdom\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -26,43 +26,43 @@ msgstr "English (United Kingdom)" msgctxt "additives:plural" msgid "additives" -msgstr "additives" +msgstr "" msgctxt "additives:singular" msgid "additive" -msgstr "additive" +msgstr "" msgctxt "allergens:plural" msgid "allergens" -msgstr "allergens" +msgstr "" msgctxt "allergens:singular" msgid "allergen" -msgstr "allergen" +msgstr "" msgctxt "brands:plural" msgid "brands" -msgstr "brands" +msgstr "" msgctxt "brands:singular" msgid "brand" -msgstr "brand" +msgstr "" msgctxt "categories:plural" msgid "categories" -msgstr "categories" +msgstr "" msgctxt "categories:singular" msgid "category" -msgstr "category" +msgstr "" msgctxt "checkers:plural" msgid "checkers" -msgstr "checkers" +msgstr "" msgctxt "checkers:singular" msgid "checker" -msgstr "checker" +msgstr "" msgctxt "cities:plural" msgid "cities" @@ -82,35 +82,35 @@ msgstr "" msgctxt "correctors:plural" msgid "correctors" -msgstr "correctors" +msgstr "" msgctxt "correctors:singular" msgid "corrector" -msgstr "corrector" +msgstr "" msgctxt "countries:plural" msgid "countries" -msgstr "countries" +msgstr "" msgctxt "countries:singular" msgid "country" -msgstr "country" +msgstr "" msgctxt "debug:plural" msgid "debug" -msgstr "debug" +msgstr "" msgctxt "debug:singular" msgid "debug" -msgstr "debug" +msgstr "" msgctxt "editors:plural" msgid "editors" -msgstr "editors" +msgstr "" msgctxt "editors:singular" msgid "editor" -msgstr "editor" +msgstr "" msgctxt "emb_codes:plural" msgid "packager-codes" @@ -130,7 +130,7 @@ msgstr "" msgctxt "informers:plural" msgid "informers" -msgstr "informers" +msgstr "" msgctxt "informers:singular" msgid "informer" @@ -138,11 +138,11 @@ msgstr "" msgctxt "ingredients:plural" msgid "ingredients" -msgstr "ingredients" +msgstr "" msgctxt "ingredients:singular" msgid "ingredient" -msgstr "ingredient" +msgstr "" msgctxt "ingredients_from_palm_oil:plural" msgid "ingredients-from-palm-oil" @@ -178,19 +178,19 @@ msgstr "" msgctxt "labels:plural" msgid "labels" -msgstr "labels" +msgstr "" msgctxt "labels:singular" msgid "label" -msgstr "label" +msgstr "" msgctxt "languages:plural" msgid "languages" -msgstr "languages" +msgstr "" msgctxt "languages:singular" msgid "language" -msgstr "language" +msgstr "" msgctxt "last_edit_dates:plural" msgid "last-edit-dates" @@ -258,11 +258,11 @@ msgstr "" msgctxt "packaging:plural" msgid "packaging" -msgstr "packaging" +msgstr "" msgctxt "packaging:singular" msgid "packaging" -msgstr "packaging" +msgstr "" msgctxt "periods_after_opening:plural" msgid "periods-after-opening" @@ -274,11 +274,11 @@ msgstr "" msgctxt "photographers:plural" msgid "photographers" -msgstr "photographers" +msgstr "" msgctxt "photographers:singular" msgid "photographer" -msgstr "photographer" +msgstr "" msgctxt "pnns_groups_1:plural" msgid "pnns-groups-1" @@ -298,7 +298,7 @@ msgstr "" msgctxt "products:plural" msgid "products" -msgstr "products" +msgstr "" msgctxt "products:singular" msgid "product" @@ -314,27 +314,27 @@ msgstr "" msgctxt "states:plural" msgid "states" -msgstr "states" +msgstr "" msgctxt "states:singular" msgid "state" -msgstr "state" +msgstr "" msgctxt "stores:plural" msgid "stores" -msgstr "stores" +msgstr "" msgctxt "stores:singular" msgid "store" -msgstr "store" +msgstr "" msgctxt "traces:plural" msgid "traces" -msgstr "traces" +msgstr "" msgctxt "traces:singular" msgid "trace" -msgstr "trace" +msgstr "" msgctxt "unknown_nutrients:plural" msgid "unknown-nutrients" @@ -346,9 +346,9 @@ msgstr "" msgctxt "users:plural" msgid "contributors" -msgstr "contributors" +msgstr "" msgctxt "users:singular" msgid "contributor" -msgstr "contributor" +msgstr "" diff --git a/po/tags/zh_HK.po b/po/tags/zh_HK.po index e9425dc79f60d..c977a7c8e7ccb 100644 --- a/po/tags/zh_HK.po +++ b/po/tags/zh_HK.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: zh_HK\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:53-0400\n" +"PO-Revision-Date: 2017-09-22 04:09-0400\n" "Language-Team: Chinese Traditional, Hong Kong\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -66,7 +66,7 @@ msgstr "檢查" msgctxt "cities:plural" msgid "cities" -msgstr "" +msgstr "城市" msgctxt "cities:singular" msgid "city" diff --git a/po/tags/zh_TW.po b/po/tags/zh_TW.po index 7e991465c4ecc..14e32cfc2c529 100644 --- a/po/tags/zh_TW.po +++ b/po/tags/zh_TW.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: zh_TW\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-02 10:54-0400\n" +"PO-Revision-Date: 2017-09-17 03:31-0400\n" "Language-Team: Chinese Traditional\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -66,7 +66,7 @@ msgstr "檢查" msgctxt "cities:plural" msgid "cities" -msgstr "" +msgstr "城市" msgctxt "cities:singular" msgid "city" From 349f7ab9a2c8c9efee764985a360b026d57b641b Mon Sep 17 00:00:00 2001 From: Pierre Slamich Date: Mon, 25 Sep 2017 13:06:06 +0200 Subject: [PATCH 18/21] New Crowdin translations (#895) * New translations common.pot (Danish) * New translations common.pot (Danish) * New translations common.pot (Danish) * New translations openpetfoodfacts.pot (Chinese Traditional) * New translations tags.pot (Chinese Traditional) * New translations common.pot (Serbian (Cyrillic)) * New translations openfoodfacts.pot (Serbian (Cyrillic)) * New translations common.pot (Scottish Gaelic) * New translations openfoodfacts.pot (Scottish Gaelic) * New translations common.pot (Serbian (Latin)) * New translations openfoodfacts.pot (Serbo-Croatian) * New translations common.pot (Serbo-Croatian) * New translations openfoodfacts.pot (Serbian (Latin)) * New translations openfoodfacts.pot (Scots) * New translations openfoodfacts.pot (Sanskrit) * New translations common.pot (Santali) * New translations common.pot (Sanskrit) * New translations openfoodfacts.pot (Sango) * New translations openfoodfacts.pot (Santali) * New translations common.pot (Scots) * New translations openfoodfacts.pot (Sardinian) * New translations common.pot (Sardinian) * New translations common.pot (Seychellois Creole) * New translations common.pot (Slovenian) * New translations openfoodfacts.pot (Slovenian) * New translations common.pot (Slovak) * New translations openfoodfacts.pot (Slovak) * New translations common.pot (Somali) * New translations openfoodfacts.pot (Songhay) * New translations common.pot (Songhay) * New translations openfoodfacts.pot (Somali) * New translations openfoodfacts.pot (Sinhala) * New translations openfoodfacts.pot (Shona) * New translations common.pot (Sichuan Yi) * New translations common.pot (Shona) * New translations openfoodfacts.pot (Seychellois Creole) * New translations openfoodfacts.pot (Sichuan Yi) * New translations common.pot (Sinhala) * New translations openfoodfacts.pot (Sindhi) * New translations common.pot (Sindhi) * New translations common.pot (Sango) * New translations common.pot (Norwegian Nynorsk) * New translations openfoodfacts.pot (Norwegian Nynorsk) * New translations openfoodfacts.pot (Norwegian Bokmal) * New translations common.pot (Norwegian Bokmal) * New translations common.pot (Persian) * New translations openfoodfacts.pot (Persian) * New translations common.pot (Occitan) * New translations openfoodfacts.pot (Occitan) * New translations openfoodfacts.pot (Norwegian) * New translations openfoodfacts.pot (Maori) * New translations common.pot (Maori) * New translations openfoodfacts.pot (Maltese) * New translations common.pot (Marathi) * New translations openfoodfacts.pot (Mongolian) * New translations common.pot (Norwegian) * New translations common.pot (Mongolian) * New translations openfoodfacts.pot (Marathi) * New translations common.pot (Polish) * New translations common.pot (Romansh) * New translations openfoodfacts.pot (Romansh) * New translations openfoodfacts.pot (Romanian) * New translations common.pot (Romanian) * New translations common.pot (Rusyn) * New translations openfoodfacts.pot (Rusyn) * New translations common.pot (Russian) * New translations openfoodfacts.pot (Russian) * New translations openfoodfacts.pot (Quechua) * New translations openfoodfacts.pot (Portuguese) * New translations common.pot (Portuguese) * New translations openfoodfacts.pot (Polish) * New translations common.pot (Portuguese, Brazilian) * New translations openfoodfacts.pot (Punjabi) * New translations common.pot (Quechua) * New translations common.pot (Punjabi) * New translations openfoodfacts.pot (Portuguese, Brazilian) * New translations common.pot (Southern Ndebele) * New translations common.pot (Venda) * New translations openfoodfacts.pot (Venda) * New translations common.pot (Valencian) * New translations openfoodfacts.pot (Valencian) * New translations common.pot (Venetian) * New translations openfoodfacts.pot (Vietnamese) * New translations common.pot (Vietnamese) * New translations openfoodfacts.pot (Venetian) * New translations openfoodfacts.pot (Uzbek) * New translations openfoodfacts.pot (Turkish) * New translations common.pot (Ukrainian) * New translations common.pot (Turkish) * New translations common.pot (Uzbek) * New translations common.pot (Uyghur) * New translations common.pot (Walloon) * New translations common.pot (Zeelandic) * New translations common.pot (Yoruba) * New translations common.pot (Zulu) * New translations common.pot (LOLCAT) * New translations common.pot (Wolof) * New translations common.pot (Welsh) * New translations openfoodfacts.pot (Walloon) * New translations openfoodfacts.pot (Wolof) * New translations common.pot (Yiddish) * New translations openfoodfacts.pot (Xhosa) * New translations common.pot (Xhosa) * New translations common.pot (Tswana) * New translations common.pot (Swedish) * New translations openbeautyfacts.pot (Swedish) * New translations openfoodfacts.pot (Swedish) * New translations openpetfoodfacts.pot (Swedish) * New translations common.pot (Swati) * New translations openfoodfacts.pot (Swati) * New translations common.pot (Tagalog) * New translations openfoodfacts.pot (Tahitian) * New translations common.pot (Tahitian) * New translations openfoodfacts.pot (Tagalog) * New translations openfoodfacts.pot (Swahili) * New translations openfoodfacts.pot (Southern Sami) * New translations common.pot (Southern Sotho) * New translations common.pot (Southern Sami) * New translations openfoodfacts.pot (Southern Ndebele) * New translations openfoodfacts.pot (Southern Sotho) * New translations common.pot (Swahili) * New translations openfoodfacts.pot (Spanish) * New translations common.pot (Spanish) * New translations common.pot (Tajik) * New translations common.pot (Tibetan) * New translations openfoodfacts.pot (Tibetan) * New translations common.pot (Thai) * New translations openfoodfacts.pot (Thai) * New translations common.pot (Tigrinya) * New translations openfoodfacts.pot (Tsonga) * New translations common.pot (Tsonga) * New translations openfoodfacts.pot (Tigrinya) * New translations openfoodfacts.pot (Telugu) * New translations openfoodfacts.pot (Talossan) * New translations common.pot (Tamil) * New translations common.pot (Talossan) * New translations openfoodfacts.pot (Tajik) * New translations openfoodfacts.pot (Tamil) * New translations common.pot (Telugu) * New translations openfoodfacts.pot (Tatar) * New translations common.pot (Tatar) * New translations common.pot (Maltese) * New translations common.pot (Chinese Simplified) * New translations openfoodfacts.pot (Chinese Simplified) * New translations openfoodfacts.pot (Cherokee) * New translations common.pot (Cherokee) * New translations common.pot (Chinese Traditional, Hong Kong) * New translations openfoodfacts.pot (Chinese Traditional, Hong Kong) * New translations common.pot (Chinese Traditional) * New translations openfoodfacts.pot (Chinese Traditional) * New translations openfoodfacts.pot (Chechen) * New translations openfoodfacts.pot (Bulgarian) * New translations common.pot (Bulgarian) * New translations openfoodfacts.pot (Breton) * New translations common.pot (Burmese) * New translations openfoodfacts.pot (Catalan) * New translations common.pot (Chechen) * New translations common.pot (Catalan) * New translations openfoodfacts.pot (Burmese) * New translations tags.pot (Chinese Traditional, Hong Kong) * New translations common.pot (Chuvash) * New translations common.pot (Dutch) * New translations openfoodfacts.pot (Dutch) * New translations openfoodfacts.pot (Danish) * New translations common.pot (Danish) * New translations common.pot (English, Australia) * New translations openbeautyfacts.pot (English, Australia) * New translations openfoodfacts.pot (English, Australia) * New translations openpetfoodfacts.pot (English, Australia) * New translations common.pot (Dutch, Belgium) * New translations openfoodfacts.pot (Dutch, Belgium) * New translations openfoodfacts.pot (Czech) * New translations openfoodfacts.pot (Cornish) * New translations common.pot (Cornish) * New translations openfoodfacts.pot (Chuvash) * New translations common.pot (Corsican) * New translations openfoodfacts.pot (Croatian) * New translations common.pot (Czech) * New translations common.pot (Croatian) * New translations openfoodfacts.pot (Corsican) * New translations common.pot (Breton) * New translations common.pot (Amharic) * New translations openfoodfacts.pot (Albanian) * New translations common.pot (Albanian) * New translations openfoodfacts.pot (Amharic) * New translations common.pot (Armenian) * New translations openfoodfacts.pot (Armenian) * New translations common.pot (Arabic) * New translations common.pot (Akan, Twi) * New translations common.pot (Afar) * New translations openbeautyfacts.pot (Afar) * New translations openfoodfacts.pot (Afar) * New translations common.pot (Acholi) * New translations common.pot (Afrikaans) * New translations common.pot (Akan) * New translations common.pot (Assamese) * New translations common.pot (Bengali) * New translations common.pot (Belarusian) * New translations common.pot (Bosnian) * New translations common.pot (Berber) * New translations common.pot (Asturian) * New translations common.pot (Azerbaijani) * New translations common.pot (Basque) * New translations common.pot (Bambara) * New translations tags.pot (English, Australia) * New translations common.pot (English, United Kingdom) * New translations common.pot (Kazakh) * New translations common.pot (Kannada) * New translations common.pot (Korean) * New translations openbeautyfacts.pot (Korean) * New translations common.pot (Khmer) * New translations common.pot (Italian) * New translations common.pot (Japanese) * New translations common.pot (Kabyle) * New translations common.pot (Javanese) * New translations common.pot (Kurdish) * New translations common.pot (Malagasy) * New translations common.pot (Luxembourgish) * New translations common.pot (Malayalam) * New translations openfoodfacts.pot (Malayalam) * New translations common.pot (Malay) * New translations common.pot (Kyrgyz) * New translations common.pot (Lao) * New translations common.pot (Lithuanian) * New translations common.pot (Latvian) * New translations common.pot (Irish) * New translations common.pot (Flemish) * New translations common.pot (Finnish) * New translations common.pot (Georgian) * New translations common.pot (Galician) * New translations common.pot (Esperanto) * New translations tags.pot (English, United Kingdom) * New translations openbeautyfacts.pot (English, United Kingdom) * New translations openfoodfacts.pot (English, United Kingdom) * New translations openpetfoodfacts.pot (English, United Kingdom) * New translations common.pot (Estonian) * New translations common.pot (Filipino) * New translations common.pot (Faroese) * New translations common.pot (German) * New translations common.pot (Icelandic) * New translations common.pot (Hungarian) * New translations common.pot (Inuktitut) * New translations common.pot (Indonesian) * New translations common.pot (Greek) * New translations common.pot (Gujarati) * New translations common.pot (Hindi) * New translations common.pot (Hebrew) * New translations common.pot (Japanese) --- po/common/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/common/ja.po b/po/common/ja.po index e703e6109d1de..ca6c3343a201f 100644 --- a/po/common/ja.po +++ b/po/common/ja.po @@ -5,7 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language: ja_JP\n" "Project-Id-Version: openfoodfacts\n" -"PO-Revision-Date: 2017-09-22 04:12-0400\n" +"PO-Revision-Date: 2017-09-25 04:50-0400\n" "Language-Team: Japanese\n" "Last-Translator: pierreslamich \n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -2724,5 +2724,5 @@ msgstr "この商品ページは完成していません。既存の写真から msgctxt "title_separator" msgid " — " -msgstr "" +msgstr " — " From 6cba6076bc7ea4c06fa3ed4387faf6673ee143cd Mon Sep 17 00:00:00 2001 From: hangy Date: Wed, 27 Sep 2017 11:35:29 +0200 Subject: [PATCH 19/21] Added cgi/product_multilingual.pl to Travis CI build. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4e201691e3019..aab2152f04224 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,7 +32,7 @@ install: - sed -i -e 's|\/home\/off|'$TRAVIS_BUILD_DIR'|g' $TRAVIS_BUILD_DIR/lib/ProductOpener/Config2.pm script: - prove -l - - perl -c -CS -I$TRAVIS_BUILD_DIR/lib lib/startup_apache2.pl + - perl -c -CS -I$TRAVIS_BUILD_DIR/lib lib/startup_apache2.pl cgi/product_multilingual.pl - node_modules/.bin/jshint --show-non-errors html/js/product-multilingual.js html/js/search.js notifications: slack: openfoodfacts:Pre9ZXKFH1CYtix8DeJAaFi2 From 1a615d4d06a010eb0ed7daf41c4be99ac5db2358 Mon Sep 17 00:00:00 2001 From: hangy Date: Wed, 27 Sep 2017 11:39:46 +0200 Subject: [PATCH 20/21] Fix compilation errors. --- .travis.yml | 3 ++- cgi/product_multilingual.pl | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index aab2152f04224..2d1eaf5e96498 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,7 +32,8 @@ install: - sed -i -e 's|\/home\/off|'$TRAVIS_BUILD_DIR'|g' $TRAVIS_BUILD_DIR/lib/ProductOpener/Config2.pm script: - prove -l - - perl -c -CS -I$TRAVIS_BUILD_DIR/lib lib/startup_apache2.pl cgi/product_multilingual.pl + - perl -c -CS -I$TRAVIS_BUILD_DIR/lib lib/startup_apache2.pl + - perl -c -CS -I$TRAVIS_BUILD_DIR/lib cgi/product_multilingual.pl - node_modules/.bin/jshint --show-non-errors html/js/product-multilingual.js html/js/search.js notifications: slack: openfoodfacts:Pre9ZXKFH1CYtix8DeJAaFi2 diff --git a/cgi/product_multilingual.pl b/cgi/product_multilingual.pl index 7335d74de3666..c1f7ca9ae7bfb 100755 --- a/cgi/product_multilingual.pl +++ b/cgi/product_multilingual.pl @@ -1892,7 +1892,7 @@ ($$$$$$) if (defined $product_ref->{server}) { # product that was moved to OBF from OFF etc. - my $product_url = "https://" . $subdomain . "." . $options{other_servers}{$product_ref->{server}}{domain} . $product_url; + my $product_url = "https://" . $subdomain . "." . $options{other_servers}{$product_ref->{server}}{domain} . product_url($product_ref);; $html .= "

    " . lang("product_changes_saved") . "

    " . lang("see_product_page") . "

    "; } From 80089c5c194ecbb9d12fe5d8b233900f06179439 Mon Sep 17 00:00:00 2001 From: hangy Date: Wed, 27 Sep 2017 12:06:02 +0200 Subject: [PATCH 21/21] Fix nutriment_unit_percent not being renumbered correctly. --- cgi/product_multilingual.pl | 4 ++-- html/js/product-multilingual.js | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/cgi/product_multilingual.pl b/cgi/product_multilingual.pl index c1f7ca9ae7bfb..4c50b902b75a3 100755 --- a/cgi/product_multilingual.pl +++ b/cgi/product_multilingual.pl @@ -3,7 +3,7 @@ # This file is part of Product Opener. # # Product Opener -# Copyright (C) 2011-2016 Association Open Food Facts +# Copyright (C) 2011-2017 Association Open Food Facts # Contact: contact@openfoodfacts.org # Address: 21 rue des Iles, 94100 Saint-Maur des Fossés, France # @@ -1584,7 +1584,7 @@ ($$$$$$) } $input .= <% +%