aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-06-02 13:55:46 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-06-02 13:55:46 +0200
commit0e12d62b0c66a33c5a873090395d390523d6ce56 (patch)
tree2ffc18b3029e8f658979f2f2af999fc1ef9b83ef
parentd15e4218e8afa4c646aee6db27e32e536ea85d45 (diff)
downloadwww-0e12d62b0c66a33c5a873090395d390523d6ce56.tar.gz
www-0e12d62b0c66a33c5a873090395d390523d6ce56.zip
fix i18n whitespace normalization
-rw-r--r--i18nfix.py21
-rw-r--r--locale/de/LC_MESSAGES/messages.po4234
-rw-r--r--locale/en/LC_MESSAGES/messages.po1896
-rw-r--r--locale/es/LC_MESSAGES/messages.po1896
-rw-r--r--locale/fr/LC_MESSAGES/messages.po1896
-rw-r--r--locale/it/LC_MESSAGES/messages.po1896
-rwxr-xr-xtemplate.py4
m---------web-common0
8 files changed, 8584 insertions, 3259 deletions
diff --git a/i18nfix.py b/i18nfix.py
index b0395507..7edbcb1e 100644
--- a/i18nfix.py
+++ b/i18nfix.py
@@ -10,11 +10,26 @@ Extract translations from a Jinja2 template, stripping leading newlines.
10import jinja2.ext 10import jinja2.ext
11import re 11import re
12 12
13r = re.compile(r"\n[ \t]+") 13def normalize(message):
14 message = message.strip()
15 # collapse whitespaces (including newlines) into one space.
16 message = re.sub("\s+", " ", message)
17 return message
18
14 19
15def babel_extract(fileobj, keywords, comment_tags, options): 20def babel_extract(fileobj, keywords, comment_tags, options):
16 res = jinja2.ext.babel_extract(fileobj, keywords, comment_tags, options) 21 res = jinja2.ext.babel_extract(fileobj, keywords, comment_tags, options)
17 for lineno, funcname, message, comments in res: 22 for lineno, funcname, message, comments in res:
18 message = message.lstrip() 23 message = normalize(message)
19 message = r.sub("\n", message) 24 print("extracting", repr(message))
20 yield lineno, funcname, message, comments 25 yield lineno, funcname, message, comments
26
27def wrap_gettext(f):
28 """
29 Call gettext with whitespace normalized.
30 """
31 def wrapper(message):
32 message = normalize(message)
33 print("translating", repr(message))
34 return f(message)
35 return wrapper
diff --git a/locale/de/LC_MESSAGES/messages.po b/locale/de/LC_MESSAGES/messages.po
index f86c2269..f73ade20 100644
--- a/locale/de/LC_MESSAGES/messages.po
+++ b/locale/de/LC_MESSAGES/messages.po
@@ -1,29 +1,41 @@
1
1msgid "" 2msgid ""
2msgstr "" 3msgstr ""
3"Project-Id-Version: PROJECT VERSION\n" 4"Project-Id-Version: PROJECT VERSION Report-Msgid-Bugs-To: EMAIL@ADDRESS "
5"POT-Creation-Date: 2017-03-15 11:57+0100 PO-Revision-Date: 2017-06-02 "
6"09:46+0100 Last-Translator: Stefan Kügel <skuegel@web.de> Language: en "
7"Language-Team: de <LL@li.org, de@taler.net> Plural-Forms: nplurals=2; "
8"plural=(n!=1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 "
9"Content-Transfer-Encoding: 8bit Generated-By: Babel 2.3.4 X-Poedit-"
10"Language: German X-Poedit-Country: GERMANY X-Poedit-SourceCharset: utf-8 "
11"X-Poedit-Basepath: "
12"/media/654486d0-a081-4ff1-a846-47fba14a0efe/home/baer/Promotion/Taler/messages.po"
13" \n"
4"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" 14"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
5"POT-Creation-Date: 2017-03-15 11:57+0100\n" 15"POT-Creation-Date: 2017-06-02 13:48+0200\n"
6"PO-Revision-Date: 2017-06-02 09:46+0100\n" 16"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
7"Last-Translator: Stefan Kügel <skuegel@web.de>\n" 17"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8"Language: en\n" 18"Language: de\n"
9"Language-Team: de <LL@li.org, de@taler.net>\n" 19"Language-Team: de <LL@li.org>\n"
10"Plural-Forms: nplurals=2; plural=(n!=1)\n" 20"Plural-Forms: nplurals=2; plural=(n != 1)\n"
11"MIME-Version: 1.0\n" 21"MIME-Version: 1.0\n"
12"Content-Type: text/plain; charset=utf-8\n" 22"Content-Type: text/plain; charset=utf-8\n"
13"Content-Transfer-Encoding: 8bit\n" 23"Content-Transfer-Encoding: 8bit\n"
14"Generated-By: Babel 2.3.4\n" 24"Generated-By: Babel 2.4.0\n"
15"X-Poedit-Language: German\n"
16"X-Poedit-Country: GERMANY\n"
17"X-Poedit-SourceCharset: utf-8\n"
18"X-Poedit-Basepath: /media/654486d0-a081-4ff1-a846-47fba14a0efe/home/baer/Promotion/Taler/messages.po\n"
19 25
20#: about.html.j2:8 26#: about.html.j2:8
21msgid "GNU maintainer. Network security &amp; privacy researcher. Software architect." 27msgid ""
28"GNU maintainer. Network security &amp; privacy researcher. Software "
29"architect."
22msgstr "GNU Maintainer. Netzwerksicherheit und Privatsphäre. Software-Architekt." 30msgstr "GNU Maintainer. Netzwerksicherheit und Privatsphäre. Software-Architekt."
23 31
24#: about.html.j2:13 32#: about.html.j2:13
25msgid "Entrepreneur, Investor, Fortune 100 CIO, IT company director in different industries, …." 33msgid ""
26msgstr "Unternehmer, Investor, CIO bei Marktführern, Leiter von IT-Firmen in verschiedenen Branchen..." 34"Entrepreneur, Investor, Fortune 100 CIO, IT company director in different"
35" industries, …."
36msgstr ""
37"Unternehmer, Investor, CIO bei Marktführern, Leiter von IT-Firmen in "
38"verschiedenen Branchen..."
27 39
28#: about.html.j2:20 40#: about.html.j2:20
29msgid "Applied cryptography. Contact to W3c &amp; Tor." 41msgid "Applied cryptography. Contact to W3c &amp; Tor."
@@ -45,8 +57,7 @@ msgstr "Doktorand an der TU München. Zurzeit lehrend tätig."
45msgid "PhD Student, Inria.." 57msgid "PhD Student, Inria.."
46msgstr "Doktorand, Inria." 58msgstr "Doktorand, Inria."
47 59
48#: about.html.j2:47 60#: about.html.j2:47 about.html.j2:62
49#: about.html.j2:62
50msgid "Software engineer." 61msgid "Software engineer."
51msgstr "Software-Ingenieur." 62msgstr "Software-Ingenieur."
52 63
@@ -62,8 +73,7 @@ msgstr "Software-Ingenieur. Arbeitet an libebics."
62msgid "Translator (Spanish)" 73msgid "Translator (Spanish)"
63msgstr "Übersetzer (Spanisch)." 74msgstr "Übersetzer (Spanisch)."
64 75
65#: about.html.j2:72 76#: about.html.j2:72 about.html.j2:76
66#: about.html.j2:76
67msgid "Translator (Italian)" 77msgid "Translator (Italian)"
68msgstr "Übersetzer (Italienisch)." 78msgstr "Übersetzer (Italienisch)."
69 79
@@ -91,16 +101,12 @@ msgstr "Systemarchitektur von Taler"
91msgid "GNU Taler Bibliography" 101msgid "GNU Taler Bibliography"
92msgstr "Bibliografie von GNU Taler" 102msgstr "Bibliografie von GNU Taler"
93 103
94#: bibliography.html.j2:9 104#: bibliography.html.j2:9 bibliography.html.j2:16 bibliography.html.j2:23
95#: bibliography.html.j2:16
96#: bibliography.html.j2:23
97#: bibliography.html.j2:29 105#: bibliography.html.j2:29
98msgid "by" 106msgid "by"
99msgstr "von" 107msgstr "von"
100 108
101#: bibliography.html.j2:16 109#: bibliography.html.j2:16 bibliography.html.j2:23 bibliography.html.j2:29
102#: bibliography.html.j2:23
103#: bibliography.html.j2:29
104msgid "and" 110msgid "and"
105msgstr "und" 111msgstr "und"
106 112
@@ -114,45 +120,47 @@ msgstr "Vorteile für Taler-Nutzer"
114 120
115#: citizens.html.j2:9 121#: citizens.html.j2:9
116msgid "" 122msgid ""
117"Taler largely functions like digital cash. You\n" 123"Taler largely functions like digital cash. You withdraw money from your "
118"withdraw money from your bank account into your\n" 124"bank account into your electronic wallet, and can henceforth spend "
119"electronic wallet, and can henceforth spend digital\n" 125"digital cash. The electronic wallet can carry multiple currencies."
120"cash. The electronic wallet can carry multiple\n" 126msgstr ""
121"currencies.\n"
122msgstr "Taler funktioniert generell ähnlich wie jede virtuelle Währung. Man überweist Geld vom konventionellen Bankkonto in die Taler-Geldbörse, um aus ihrem Guthaben Einkäufe zu bezahlen. Die elektronische Geldbörse kann dabei mehrere digitale Währungen enthalten."
123 127
124#: citizens.html.j2:25 128#: citizens.html.j2:25 governments.html.j2:58 index.html.j2:56
125#: governments.html.j2:58
126#: index.html.j2:55
127#: merchants.html.j2:41 129#: merchants.html.j2:41
128msgid "Secure" 130msgid "Secure"
129msgstr "Sicher" 131msgstr "Sicher"
130 132
131#: citizens.html.j2:27 133#: citizens.html.j2:27
132msgid "" 134msgid ""
133"Taler uses modern cryptography, ensuring that there\n" 135"Taler uses modern cryptography, ensuring that there is no counterfeit. "
134"is no counterfeit. Your digital wallet is safer\n" 136"Your digital wallet is safer than your physical wallet. At most, you can "
135"than your physical wallet. At most, you can lose\n" 137"lose its contents because your computer or mobile is irreparably damaged "
136"its contents because your computer or mobile is\n" 138"or compromised. Unlike a physical wallet, you can make backups to secure "
137"irreparably damaged or compromised. Unlike a\n"
138"physical wallet, you can make backups to secure\n"
139"against data loss." 139"against data loss."
140msgstr "Taler verwendet aktuellste kryptografische Mittel, die jeden Betrug systematisch unterbinden. Die elektronische Geldbörse ist sogar sicherer als echtes Geld. Ein Schaden entsteht erst, wenn das Speichermedium, das die Daten der Geldbörse enthält, zerstört oder entwendet wurde. Dies kann man jedoch verhindern durch regelmäßige Datensicherungen und Backups des Speichermediums." 140msgstr ""
141 141"Taler verwendet aktuellste kryptografische Mittel, die jeden Betrug "
142#: citizens.html.j2:37 142"systematisch unterbinden. Die elektronische Geldbörse ist sogar sicherer "
143#: index.html.j2:83 143"als echtes Geld. Ein Schaden entsteht erst, wenn das Speichermedium, das "
144"die Daten der Geldbörse enthält, zerstört oder entwendet wurde. Dies kann"
145" man jedoch verhindern durch regelmäßige Datensicherungen und Backups des"
146" Speichermediums."
147
148#: citizens.html.j2:37 index.html.j2:84
144msgid "Private" 149msgid "Private"
145msgstr "Anonym" 150msgstr "Anonym"
146 151
147#: citizens.html.j2:39 152#: citizens.html.j2:39
148msgid "" 153msgid ""
149"Your transactions are private, neither the payment\n" 154"Your transactions are private, neither the payment service provider nor "
150"service provider nor merchant needs to learn your\n" 155"merchant needs to learn your identity. There is no need to give out "
151"identity. There is no need to give out credit card\n" 156"credit card numbers or other sensitive information. The merchant will "
152"numbers or other sensitive information. The merchant\n" 157"only be able to do exactly the transaction you agreed to."
153"will only be able to do exactly the transaction you\n" 158msgstr ""
154"agreed to." 159"Die Überweisungen der Käufer sind anonym. Weder das Taler-Bezahlsystem "
155msgstr "Die Überweisungen der Käufer sind anonym. Weder das Taler-Bezahlsystem noch die Verkäufer können die Identität der Käufer feststellen. Es besteht auch keine Notwendigkeit, sensible Daten wie Kreditkartennummern anzugeben. Die Verkäufer können zudem nur Überweisungen ausführen lassen, die die Käufer genehmigt haben." 160"noch die Verkäufer können die Identität der Käufer feststellen. Es "
161"besteht auch keine Notwendigkeit, sensible Daten wie Kreditkartennummern "
162"anzugeben. Die Verkäufer können zudem nur Überweisungen ausführen lassen,"
163" die die Käufer genehmigt haben."
156 164
157#: citizens.html.j2:50 165#: citizens.html.j2:50
158msgid "Convenient" 166msgid "Convenient"
@@ -160,28 +168,34 @@ msgstr "Bequem"
160 168
161#: citizens.html.j2:52 169#: citizens.html.j2:52
162msgid "" 170msgid ""
163"You will be able to withdraw money to replenish the\n" 171"You will be able to withdraw money to replenish the digital coins in your"
164"digital coins in your wallet using your credit card\n" 172" wallet using your credit card or wire transfers. Afterwards you can pay "
165"or wire transfers. Afterwards you can pay with\n" 173"with one-click using the Taler wallet, which optionally keeps your "
166"one-click using the Taler wallet, which optionally\n" 174"transaction history on your computer."
167"keeps your transaction history on your computer." 175msgstr ""
168msgstr "Die Aufladung der Taler-Geldbörse erfolgt durch eine gewöhnliche Banküberweisung oder mit einer Kreditkarte. Die Zahlung mit der Geldbörse funktioniert so einfach wie ein Mausklick. Im Gegensatz zu Bargeld entfällt das lästige Zählen von Banknoten und Münzen. Alle Transaktionen können optional auf dem Computer gespeichert werden." 176"Die Aufladung der Taler-Geldbörse erfolgt durch eine gewöhnliche "
177"Banküberweisung oder mit einer Kreditkarte. Die Zahlung mit der Geldbörse"
178" funktioniert so einfach wie ein Mausklick. Im Gegensatz zu Bargeld "
179"entfällt das lästige Zählen von Banknoten und Münzen. Alle Transaktionen "
180"können optional auf dem Computer gespeichert werden."
169 181
170#: citizens.html.j2:61 182#: citizens.html.j2:61 index.html.j2:42
171#: index.html.j2:41
172msgid "Stable" 183msgid "Stable"
173msgstr "Stabil" 184msgstr "Stabil"
174 185
175#: citizens.html.j2:63 186#: citizens.html.j2:63
176msgid "" 187msgid ""
177"Coins in your digital wallet will be of the same\n" 188"Coins in your digital wallet will be of the same denomination as the cash"
178"denomination as the cash in your physical wallet.\n" 189" in your physical wallet. Taler is not a crypto-currency, so you do not "
179"Taler is not a crypto-currency, so you do not have\n" 190"have to worry about cryto-currency related value fluctuations. Banking "
180"to worry about cryto-currency related value\n" 191"with Taler is subject to the usual government protections for financial "
181"fluctuations. Banking with Taler is subject to the\n"
182"usual government protections for financial\n"
183"services." 192"services."
184msgstr "Münzen in der Taler-Geldbörse haben die gleiche Wertigkeit wie physisches Geld in der normalen Brieftasche. Taler ist keine Kryptowährung, nominale Wertänderungen der Zahlungsmittel sind ausgeschlossen. Das Bezahlsystem Taler unterliegt der gewöhnlichen Bankenaufsicht und staatlichen Währungskontrolle." 193msgstr ""
194"Münzen in der Taler-Geldbörse haben die gleiche Wertigkeit wie physisches"
195" Geld in der normalen Brieftasche. Taler ist keine Kryptowährung, "
196"nominale Wertänderungen der Zahlungsmittel sind ausgeschlossen. Das "
197"Bezahlsystem Taler unterliegt der gewöhnlichen Bankenaufsicht und "
198"staatlichen Währungskontrolle."
185 199
186#: citizens.html.j2:79 200#: citizens.html.j2:79
187msgid "Wallet Browser Extension" 201msgid "Wallet Browser Extension"
@@ -189,57 +203,69 @@ msgstr "Die Taler-Geldbörse als Browser-Erweiterung"
189 203
190#: citizens.html.j2:81 204#: citizens.html.j2:81
191msgid "" 205msgid ""
192"We currently provide a <a href=\"wallet.html\">wallet browser extension</a> for Chromium, Chrome, Firefox, Opera\n" 206"We currently provide a <a href=\"wallet.html\">wallet browser "
193"and Edge. Wallets for mobile phones and other platforms will be available in the future.\n" 207"extension</a> for Chromium, Chrome, Firefox, Opera and Edge. Wallets for "
194msgstr "Zurzeit gibt es Erweiterungen für die Browser Chromium, Chrome, Firefox, Opera und Edge. Für Mobilfunktelefone und andere Plattformen entwickeln wir ebenfalss Taler-Geldbörsen." 208"mobile phones and other platforms will be available in the future."
209msgstr ""
195 210
196#: citizens.html.j2:88 211#: citizens.html.j2:88
197msgid "Taler Demo" 212msgid "Taler Demo"
198msgstr "Demoversion von Taler" 213msgstr "Demoversion von Taler"
199 214
200#: citizens.html.j2:90 215#: citizens.html.j2:90
201msgid "You can see how Taler works in practice by visiting our <a href=\"https://demo.taler.net\">demo page</a>.\n" 216msgid ""
202msgstr "Auf der <a href=\"https://demo.taler.net\">Demo-Seite</a> kann man die Funktionsweise von Taler kennenlernen." 217"You can see how Taler works in practice by visiting our <a "
218"href=\"https://demo.taler.net\">demo page</a>."
219msgstr ""
203 220
204#: citizens.html.j2:103 221#: citizens.html.j2:103
205msgid "The Taler Wallet for customers" 222msgid "The Taler Wallet for customers"
206msgstr "Die Taler-Geldbörse für Käufer" 223msgstr "Die Taler-Geldbörse für Käufer"
207 224
208#: citizens.html.j2:105 225#: citizens.html.j2:105
209msgid "" 226msgid "Customers interact with the Taler system using the Taler wallet:"
210"Customers interact with the Taler system using\n"
211"the Taler wallet:"
212msgstr "So verwendet man die Taler-Geldbörse:" 227msgstr "So verwendet man die Taler-Geldbörse:"
213 228
214#: citizens.html.j2:110 229#: citizens.html.j2:110
215msgid "" 230msgid ""
216"To <b>withdraw</b> electronic coins, the customer\n" 231"To <b>withdraw</b> electronic coins, the customer transfers funds from "
217"transfers funds from his bank account to the Taler\n" 232"his bank account to the Taler payment service provider (the exchange). "
218"payment service provider (the exchange). The wire\n" 233"The wire transfer subject must match a code identifying the customer's "
219"transfer subject must match a code identifying the\n" 234"wallet. After the wire transfer is complete, the wallet will "
220"customer's wallet. After the wire transfer is\n" 235"automatically withdraw the coins from the exchange."
221"complete, the wallet will automatically withdraw the\n" 236msgstr ""
222"coins from the exchange." 237"Um digitale Münzen in die Taler-Geldbörse zu laden, müssen Taler-Nutzer "
223msgstr "Um digitale Münzen in die Taler-Geldbörse zu laden, müssen Taler-Nutzer zuerst Geld von ihrem Girokonto bei ihrer Geschäftsbank an die Taler-Wechselstube überweisen. Als Verwendungszweck geben sie die Nummer der empfangenden Taler-Geldbörse an. Die Weiterbuchung von der Taler-Wechselstube an die Taler-Geldbörse erfolgt automatisch." 238"zuerst Geld von ihrem Girokonto bei ihrer Geschäftsbank an die Taler-"
239"Wechselstube überweisen. Als Verwendungszweck geben sie die Nummer der "
240"empfangenden Taler-Geldbörse an. Die Weiterbuchung von der Taler-"
241"Wechselstube an die Taler-Geldbörse erfolgt automatisch."
224 242
225#: citizens.html.j2:118 243#: citizens.html.j2:118
226msgid "" 244msgid ""
227"To <b>spend</b> electronic coins, a merchant must\n" 245"To <b>spend</b> electronic coins, a merchant must cause the wallet to "
228"cause the wallet to display a proposal for some\n" 246"display a proposal for some purchase. The wallet will ask the customer "
229"purchase. The wallet will ask the customer for\n" 247"for one-click confirmation. Payment is then instant. Transaction "
230"one-click confirmation. Payment is then instant.\n" 248"histories and digitally signed contracts can be preserved by the wallet."
231"Transaction histories and digitally signed contracts\n" 249msgstr ""
232"can be preserved by the wallet." 250"Die Abbuchung von der privaten Taler-Geldbörse erfolgt nur, wenn sich die"
233msgstr "Die Abbuchung von der privaten Taler-Geldbörse erfolgt nur, wenn sich die Verkäufer den jeweiligen Rechnungsbetrag von der Taler-Geldbörse anzeigen lassen und die Käufer mit einem Klick die Zahlung dieses Rechnungsbetrags bestätigen. Die Zahlung geschieht dann im selben Augenblick. Alle Zahlungen und digital signierte Kaufverträge können in der Geldbörse gespeichert werden." 251" Verkäufer den jeweiligen Rechnungsbetrag von der Taler-Geldbörse "
252"anzeigen lassen und die Käufer mit einem Klick die Zahlung dieses "
253"Rechnungsbetrags bestätigen. Die Zahlung geschieht dann im selben "
254"Augenblick. Alle Zahlungen und digital signierte Kaufverträge können in "
255"der Geldbörse gespeichert werden."
234 256
235#: citizens.html.j2:125 257#: citizens.html.j2:125
236msgid "" 258msgid ""
237"The customer can use the wallet to <b>review</b> his\n" 259"The customer can use the wallet to <b>review</b> his balance. The wallet "
238"balance. The wallet can contain different\n" 260"can contain different currencies, and may be shared across devices. "
239"currencies, and may be shared across\n" 261"Customers can make backups of the wallet to secure its contents against "
240"devices. Customers can make backups of the wallet to\n" 262"hardware failures."
241"secure its contents against hardware failures." 263msgstr ""
242msgstr "Taler-Nutzer können in der Geldbörse alle Buchungen überprüfen. Die Geldbörse kann verschiedene Währungen enthalten und auf unterschiedlichen Endgeräten angezeigt werden. Es ist möglich, mehrere Kopien der Taler-Geldbörse zu speichern, um sie auch bei einem Geräteausfall oder Verlust der Hardware stets gesichert zu haben." 264"Taler-Nutzer können in der Geldbörse alle Buchungen überprüfen. Die "
265"Geldbörse kann verschiedene Währungen enthalten und auf unterschiedlichen"
266" Endgeräten angezeigt werden. Es ist möglich, mehrere Kopien der Taler-"
267"Geldbörse zu speichern, um sie auch bei einem Geräteausfall oder Verlust "
268"der Hardware stets gesichert zu haben."
243 269
244#: contact.html.j2:6 270#: contact.html.j2:6
245msgid "Contact information" 271msgid "Contact information"
@@ -251,11 +277,11 @@ msgstr "Die Mailing-Liste"
251 277
252#: contact.html.j2:15 278#: contact.html.j2:15
253msgid "" 279msgid ""
254"An archived, public mailing list for GNU Taler is\n" 280"An archived, public mailing list for GNU Taler is hosted at <a "
255"hosted at\n" 281"href=\"https://lists.gnu.org/mailman/listinfo/taler\">https://lists.gnu.org/mailman/listinfo/taler</a>."
256"<a href=\"https://lists.gnu.org/mailman/listinfo/taler\">https://lists.gnu.org/mailman/listinfo/taler</a>. You can send messages to the list\n" 282" You can send messages to the list at <a "
257"at <a href=\"mailto:taler@gnu.org\">taler@gnu.org</a>.\n" 283"href=\"mailto:taler@gnu.org\">taler@gnu.org</a>."
258msgstr "Eine öffentliche Mailing-Liste wird archiviert bereitgestellt auf <a href=\"https://lists.gnu.org/mailman/listinfo/taler\">https://lists.gnu.org/mailman/listinfo/taler</a>. Nachrichten an die Liste sendet man an <a href=\"mailto:taler@gnu.org\">taler@gnu.org</a>.\n" 284msgstr ""
259 285
260#: contact.html.j2:25 286#: contact.html.j2:25
261msgid "Contacting individuals" 287msgid "Contacting individuals"
@@ -263,10 +289,9 @@ msgstr "Mitglieder kontaktieren"
263 289
264#: contact.html.j2:27 290#: contact.html.j2:27
265msgid "" 291msgid ""
266"Team members are generally reachable at\n" 292"Team members are generally reachable at <tt>LASTNAME@taler.net</tt>. All "
267"<tt>LASTNAME@taler.net</tt>. All of us\n" 293"of us support receiving GnuPG encrypted e-mails."
268"support receiving GnuPG encrypted e-mails.\n" 294msgstr ""
269msgstr "Die Mitglieder des Taler-Teams sind erreichbar mit einer E-Mail an <tt>LASTNAME@taler.net</tt>, die GnuPG-verschlüsselt empfangen wird. "
270 295
271#: contact.html.j2:36 296#: contact.html.j2:36
272msgid "Reporting bugs" 297msgid "Reporting bugs"
@@ -274,14 +299,11 @@ msgstr "Funktionserweiterungen, Fehler und Bugs melden"
274 299
275#: contact.html.j2:38 300#: contact.html.j2:38
276msgid "" 301msgid ""
277"We track open feature requests and bugs in our\n" 302"We track open feature requests and bugs in our <a "
278"<a href=\"https://gnunet.org/bugs/\">Bug tracker</a>,\n" 303"href=\"https://gnunet.org/bugs/\">Bug tracker</a>, which is shared with "
279"which is shared with the GNUnet project.\n" 304"the GNUnet project. You can also report bugs or feature requests to the "
280"You can also report bugs or feature requests to the\n" 305"mailing list."
281"mailing list.\n"
282msgstr "" 306msgstr ""
283"Wir verfolgen Bugs und Anfragen zu erweiterten Funktionalitäten zusammen mit dem GNU-Project auf <a href=\"https://gnunet.org/bugs/\">Bug tracker</a>.\n"
284" Bugs oder Funktionsanfragen können auch an die Mailing-Liste gesendet werden."
285 307
286#: contact.html.j2:49 308#: contact.html.j2:49
287msgid "Executive team" 309msgid "Executive team"
@@ -289,33 +311,60 @@ msgstr "Leitungsteam"
289 311
290#: contact.html.j2:51 312#: contact.html.j2:51
291msgid "" 313msgid ""
292"For non-technical commercial requests, please contact\n" 314"For non-technical commercial requests, please contact <tt>ceo AT "
293"<tt>ceo AT taler.net</tt>.\n" 315"taler.net</tt>."
294msgstr "Für alle nicht-technischen Anfragen bitten wir <tt>ceo AT taler.net</tt> anzumailen.\n" 316msgstr ""
317
318#: copyright.html.j2:6
319msgid "Copyright Assignment"
320msgstr ""
321
322#: copyright.html.j2:8
323msgid ""
324"<p>Contributors to GNU Taler with Git access must sign the <a "
325"href=\"pdf/copyright.pdf\">copyright assignment</a> to ensure that the <a"
326" href=\"https://gnunet.org/git/gnunet-"
327"ev.git/tree/gnunet_taler_agreement.tex\">GNUnet e.V. --- Taler Systems SA"
328" agreement on licensing and collaborative development</a> of the GNUnet "
329"and GNU Taler projects is satisfied.</p>"
330msgstr ""
331
332#: copyright.html.j2:17
333msgid ""
334"<p>The agreements ensure that the code will continue to be made available"
335" under free software licenses, but gives developers the freedom to move "
336"code between GNUnet and GNU Taler without worrying about licenses and the"
337" company the ability to dual-license (for example, so that we can "
338"distribute via App-stores that are hostile to free software).</p>"
339msgstr ""
340
341#: copyright.html.j2:25
342msgid ""
343"<p>Minor contributions (basically, anyone without Git access) do not "
344"require copyright assignment. Pseudonymous contributions are accepted, in"
345" this case simply sign the agreement with your pseudonym. Scanned copies "
346"are sufficient, but snail mail is preferred.</p>"
347msgstr ""
295 348
296#: developers.html.j2:5 349#: developers.html.j2:5
297msgid "Taler for developers" 350msgid "Taler for developers"
298msgstr "Taler für Entwickler" 351msgstr "Taler für Entwickler"
299 352
300#: developers.html.j2:12 353#: developers.html.j2:12 merchants.html.j2:58
301#: merchants.html.j2:58
302msgid "Free" 354msgid "Free"
303msgstr "Frei" 355msgstr "Frei"
304 356
305#: developers.html.j2:15 357#: developers.html.j2:15
306msgid "" 358msgid ""
307"GNU Taler is free software implementing an open\n" 359"GNU Taler is free software implementing an open protocol. Anybody is "
308"protocol. Anybody is welcome to integrate our reference\n" 360"welcome to integrate our reference implementation into their "
309"implementation into their applications. Different\n" 361"applications. Different components of Taler are being made available "
310"components of Taler are being made available under\n" 362"under different licenses. The Affero GPLv3+ is used for the exchange, the"
311"different licenses. The Affero GPLv3+ is used for the\n" 363" LGPLv3+ is used for reference code demonstrating integration with "
312"exchange, the LGPLv3+ is used for reference code\n" 364"merchant platforms, and licenses like GPLv3+ are used for wallets and "
313"demonstrating integration with merchant platforms, and\n" 365"related customer-facing software. We are open for constructive "
314"licenses like GPLv3+ are used for\n" 366"suggestions for maximizing the adoption of this payment platform."
315"wallets and related customer-facing software. We are\n" 367msgstr ""
316"open for constructive suggestions for maximizing the\n"
317"adoption of this payment platform.\n"
318msgstr "Taler ist freie Software mit einem offenen Protokoll. Alle Programmierer sind dazu eingeladen, unseren Referenzcode in ihre Anwendungen aufzunehmen. Verschiedene Taler-Komponenten sind unter verschiedenen Lizenzformen verfügbar. Für die Taler-Wechselstube (den \"Exchange\") dient Affero GPLv3+, LGPLv3+ für den Referenzcode der Integration in Handelsplattformen, GPLv3+-Lizenzen gelten für Geldbörsen (\"Wallets\") und Kundeninteraktions-Software. Wir heißen alle konstruktiven Vorschläge willkommen, die Taler-Komponenten in eigene Anwendungen zu integrieren."
319 368
320#: developers.html.j2:32 369#: developers.html.j2:32
321msgid "RESTful" 370msgid "RESTful"
@@ -323,19 +372,15 @@ msgstr "RESTful-basiert"
323 372
324#: developers.html.j2:35 373#: developers.html.j2:35
325msgid "" 374msgid ""
326"Taler is designed to work on the Internet. To\n" 375"Taler is designed to work on the Internet. To ensure that Taler payments "
327"ensure that Taler payments can work with\n" 376"can work with restrictive network setups, Taler uses a RESTful protocol "
328"restrictive network setups, Taler uses a RESTful\n" 377"over HTTP or HTTPS. Taler's security does not depend upon the use of "
329"protocol over HTTP or HTTPS. Taler's security does\n" 378"HTTPS, but obviously merchants may choose to offer HTTPS for consistency "
330"not depend upon the use of HTTPS, but obviously\n" 379"and because it generally is better for privacy compared to HTTP. Taler "
331"merchants may choose to offer HTTPS for consistency\n" 380"uses JSON to encode structure data, making it easy to integrate Taler "
332"and because it generally is better for privacy\n" 381"with existing Web applications. Taler's protocol is documented in detail "
333"compared to HTTP. Taler uses JSON to encode\n" 382"at <a href=\"https://api.taler.net/\">api.taler.net</a>."
334"structure data, making it easy to integrate Taler\n" 383msgstr ""
335"with existing Web applications. Taler's protocol\n"
336"is documented in\n"
337"detail at <a href=\"https://api.taler.net/\">api.taler.net</a>.\n"
338msgstr "Taler als Bezahlsystem benutzt ein RESTful-Protokoll über HTTP oder HTTPS-Verbindungen, um auch in eingeschränkten Netzwerkumgebungen sichere Buchungen über das Internet auszuführen. Das Sicherheitskonzept von Taler hängt nicht vom Gebrauch der HTTPS-Verbindungen ab, doch werden Handelsunternehmen aus Gründen der Konsistenz mit ihren Webshops HTTPS vorziehen, das auch gerade wegen seiner Verschlüsselung eine noch höhere Sicherheit als eine HTTP-Verbindung bietet. Taler nutzt das JSON-Format, um strukturierte Daten zu verschlüsseln. Dies erleichtert die Integration von Taler in bestehende Webseiten und Anwendungen. Eine ausführliche Dokumentation des Taler-Protokolls befindet sich auf <a href=\"https://api.taler.net/\">api.taler.net</a>."
339 384
340#: developers.html.j2:58 385#: developers.html.j2:58
341msgid "Code" 386msgid "Code"
@@ -343,16 +388,14 @@ msgstr "Code"
343 388
344#: developers.html.j2:61 389#: developers.html.j2:61
345msgid "" 390msgid ""
346"Taler is currently primarily developed by a\n" 391"Taler is currently primarily developed by a research team at <a "
347"research team at <a href=\"http://www.inria.fr/\">Inria</a> and\n" 392"href=\"http://www.inria.fr/\">Inria</a> and <a "
348"<a href=\"https://gnunet.org/\">GNUnet</a>. However,\n" 393"href=\"https://gnunet.org/\">GNUnet</a>. However, contributions from "
349"contributions from anyone are welcome. Our Git\n" 394"anyone are welcome. Our Git repositories can be cloned using the Git and "
350"repositories can be cloned using the Git and HTTP\n" 395"HTTP access methods against <tt>git.taler.net</tt> with the name of the "
351"access methods against <tt>git.taler.net</tt> with\n" 396"respective repository. A list of repositories can be found in our <a "
352"the name of the respective repository. A list of\n" 397"href=\"https://git.taler.net/\">GitWeb</a>."
353"repositories can be found in\n" 398msgstr ""
354"our <a href=\"https://git.taler.net/\">GitWeb</a>.\n"
355msgstr "Taler wird hauptsächlich entwickelt von einem Forscherteam bei <a href=\"http://www.inria.fr/\">Inria</a> und <a href=\"https://gnunet.org/\">GNUnet</a>. Unterstützung von externen Beitragenden ist immer willkommen. Unsere Git-Repositories können mit Git und HTTP-basiertem Zugriff auf <tt>git.taler.net</tt> geklont werden. Eine Liste der Repositories befindet sich auf unserem <a href=\"https://git.taler.net/\">GitWeb</a>."
356 399
357#: developers.html.j2:75 400#: developers.html.j2:75
358msgid "Documentation" 401msgid "Documentation"
@@ -360,12 +403,11 @@ msgstr "Dokumentation"
360 403
361#: developers.html.j2:78 404#: developers.html.j2:78
362msgid "" 405msgid ""
363"In addition to this website, the <a\n" 406"In addition to this website, the <a "
364"href=\"https://git.taler.net/\">documented code</a> and\n" 407"href=\"https://git.taler.net/\">documented code</a> and the <a "
365"the <a href=\"https://api.taler.net/\">API\n" 408"href=\"https://api.taler.net/\">API documentation</a>. Technical papers "
366"documentation</a>. Technical papers can be found in\n" 409"can be found in our <a href=\"bibliography.html\">bibliography</a>."
367"our <a href=\"bibliography.html\">bibliography</a>.\n" 410msgstr ""
368msgstr "Neben dieser Webseite bestehen die <a href=\"https://git.taler.net/\">Code-Dokumentation</a>, die <a href=\"https://docs.taler.net\">Entwicklerdokumentation</a> und die <a href=\"https://api.taler.net/\">API-Schnittstellendokumentation</a>. Wissenschaftliche Literatur findet man in der <a href=\"bibliography.html\">Bibliographie</a>."
369 411
370#: developers.html.j2:88 412#: developers.html.j2:88
371msgid "Discussion" 413msgid "Discussion"
@@ -373,10 +415,10 @@ msgstr "Diskussion"
373 415
374#: developers.html.j2:91 416#: developers.html.j2:91
375msgid "" 417msgid ""
376"We have a mailing list for developer discussions.\n" 418"We have a mailing list for developer discussions. You can subscribe to or"
377"You can subscribe to or read the list archive at\n" 419" read the list archive at <a "
378"<a href=\"http://lists.gnu.org/mailman/listinfo/taler\">http://lists.gnu.org/mailman/listinfo/taler</a>.\n" 420"href=\"http://lists.gnu.org/mailman/listinfo/taler\">http://lists.gnu.org/mailman/listinfo/taler</a>."
379msgstr "Zum Austausch unter Entwicklern haben wir eine Mailingliste. Um sich einzutragen oder das Listenarchiv zu lesen besuche man <a href=\"http://lists.gnu.org/mailman/listinfo/taler\">http://lists.gnu.org/mailman/listinfo/taler</a>." 421msgstr ""
380 422
381#: developers.html.j2:101 423#: developers.html.j2:101
382msgid "Regression Testing" 424msgid "Regression Testing"
@@ -384,11 +426,10 @@ msgstr "Regressiontests mit Buildbot"
384 426
385#: developers.html.j2:104 427#: developers.html.j2:104
386msgid "" 428msgid ""
387"We have <a href=\"https://buildbot.net/\">Buildbot</a>\n" 429"We have <a href=\"https://buildbot.net/\">Buildbot</a> automation tests "
388"automation tests to detect regressions and check for\n" 430"to detect regressions and check for portability at <a "
389"portability at <a\n" 431"href=\"https://buildbot.taler.net/\">buildbot.taler.net</a>."
390"href=\"https://buildbot.taler.net/\">buildbot.taler.net</a>.\n" 432msgstr ""
391msgstr "Unter <a href=\"https://buildbot.taler.net/\">buildbot.taler.net</a> befinden sich Ergebnisse der Testumgebung <a href=\"https://buildbot.net/\">Buildbot</a>, um Fehler nach Modifikationen aufzeigen zu können und die Portabilität des Codes zu gewährleisten."
392 433
393#: developers.html.j2:113 434#: developers.html.j2:113
394msgid "Code Coverage Analysis" 435msgid "Code Coverage Analysis"
@@ -396,12 +437,10 @@ msgstr "Testabdeckung"
396 437
397#: developers.html.j2:116 438#: developers.html.j2:116
398msgid "" 439msgid ""
399"We use\n" 440"We use <a href=\"http://ltp.sourceforge.net/coverage/lcov.php\">LCOV</a> "
400"<a href=\"http://ltp.sourceforge.net/coverage/lcov.php\">LCOV</a>\n" 441"to analyze the code coverage of our tests, the results are available at "
401"to analyze the code coverage of our tests, the\n" 442"<a href=\"https://lcov.taler.net/\">lcov.taler.net</a>."
402"results are available\n" 443msgstr ""
403"at <a href=\"https://lcov.taler.net/\">lcov.taler.net</a>.\n"
404msgstr "Wir verwenden <a href=\"http://ltp.sourceforge.net/coverage/lcov.php\">LCOV</a>, um die Testabdeckung unserer Funktionstests zu analysieren, die Ergebnisse sind auf <a href=\"https://lcov.taler.net/\">lcov.taler.net</a>."
405 444
406#: developers.html.j2:126 445#: developers.html.j2:126
407msgid "Performance Analysis" 446msgid "Performance Analysis"
@@ -409,12 +448,10 @@ msgstr "Performanceanalyse"
409 448
410#: developers.html.j2:129 449#: developers.html.j2:129
411msgid "" 450msgid ""
412"We\n" 451"We use <a href=\"https://gnunet.org/gauger\">Gauger</a> for performance "
413"use <a href=\"https://gnunet.org/gauger\">Gauger</a>\n" 452"regression analysis of the exchange backend at <a "
414"for performance regression analysis of the exchange\n" 453"href=\"https://gauger.taler.net/\">gauger.taler.net</a>."
415"backend\n" 454msgstr ""
416"at <a href=\"https://gauger.taler.net/\">gauger.taler.net</a>.\n"
417msgstr "Wir verwenden <a href=\"https://gnunet.org/gauger\">Gauger</a>, um die Performance zu messen. Ergebnisse sind auf <a href=\"https://gauger.taler.net/\">gauger.taler.net</a>."
418 455
419#: developers.html.j2:145 456#: developers.html.j2:145
420msgid "Taler system overview" 457msgid "Taler system overview"
@@ -422,121 +459,89 @@ msgstr "Das Taler-System im Überblick"
422 459
423#: developers.html.j2:148 460#: developers.html.j2:148
424msgid "" 461msgid ""
425"The Taler system consists of protocols executed among\n" 462"The Taler system consists of protocols executed among a number of actors "
426"a number of actors as illustrated in the illustration on the right.\n" 463"as illustrated in the illustration on the right. Typical transactions "
427"Typical transactions involve the following steps:\n" 464"involve the following steps:"
428msgstr "Das Taler-Bezahlsystem verwendet Protokolle für den Geldfluss zwischen den Beteiligten. Die grundlegenden Transaktionen sind in der Grafik dargestellt:" 465msgstr ""
429 466
430#: developers.html.j2:158 467#: developers.html.j2:158
431msgid "" 468msgid ""
432"A customer instructs his <b>bank</b> to\n" 469"A customer instructs his <b>bank</b> to transfer funds from his account "
433"transfer funds from his account to the Taler\n" 470"to the Taler exchange (top left). In the subject of the transaction, he "
434"exchange (top left). In the subject of the\n" 471"includes an authentication token from his electronic <b>wallet</b>. In "
435"transaction, he includes an authentication\n" 472"Taler terminology, the customer creates a reserve at the exchange."
436"token from his electronic <b>wallet</b>. In\n" 473msgstr ""
437"Taler terminology, the customer creates a\n"
438"reserve at the exchange.\n"
439msgstr "Zuerst überweisen Taler-Nutzer Geld von ihren herkömmlichen Girokonten in den Währungen der Geschäftsbanken (in der Grafik oben links) an die Taler-Wechselstube (der sog. \"Exchange\" in der Mitte der Grafik). Im Betreff der Überweisung nennen sie eine Transaktionsnummer ihrer Taler-Geldbörse. Damit bilden sie eine Münzen-Reserve bei der Taler-Wechselstube."
440 474
441#: developers.html.j2:170 475#: developers.html.j2:170
442msgid "" 476msgid ""
443"Once the exchange has received the wire\n" 477"Once the exchange has received the wire transfer, it allows the "
444"transfer, it allows the customer's electronic\n" 478"customer's electronic wallet to <b>withdraw</b> electronic coins. The "
445"wallet to <b>withdraw</b> electronic coins.\n" 479"electronic coins are digital representations of the original currency "
446"The electronic coins are digital\n" 480"from the transfer. It is important to note that the exchange does not "
447"representations of the original currency from\n" 481"learn the &quot;serial numbers&quot; of the coins created in this "
448"the transfer. It is important to note that the\n" 482"process, so it cannot tell later which customer purchased what at which "
449"exchange does not learn the &quot;serial\n" 483"merchant. The use of Taler does not change the currency or the total "
450"numbers&quot; of the coins created in this\n" 484"value of the funds (except for fees which the exchange may charge for the"
451"process, so it cannot tell later which customer\n" 485" service)."
452"purchased what at which merchant. The use of\n" 486msgstr ""
453"Taler does not change the currency or the total\n"
454"value of the funds (except for fees which the\n"
455"exchange may charge for the service).\n"
456msgstr "Sobald die Taler-Wechselstube die Überweisung von der Bank erhalten hat, erlaubt sie die Verwendung der digitalen Münzen in der Taler-Geldbörse. Die Ursprungswährungen werden dabei zu gleichnamigen Währungen in der Taler-Geldbörse und behalten ihren ursprünglichen nominellen Wert abzüglich einer gegebenenfalls von der Wechselstube geforderten Tauschgebühr. Wichtig zu wissen ist, dass die Taler-Wechselstube keine Kenntnis der \"Seriennummern\" der erzeugten digitalen Münzen erlangt. Dies hat zur Folge, dass später nicht mehr nachvollzogen werden kann, welcher Käufer von welchem Verkäufer welche Güter erwarb. Auch die Güter selbst bleiben unbekannt."
457 487
458#: developers.html.j2:188 488#: developers.html.j2:188
459msgid "" 489msgid ""
460"Once the customer has the digital coins in his\n" 490"Once the customer has the digital coins in his wallet, the wallet can be "
461"wallet, the wallet can be used to <b>spend</b>\n" 491"used to <b>spend</b> the coins with merchant portals that support the "
462"the coins with merchant portals that support\n" 492"Taler payment system and accept the respective exchange as a business "
463"the Taler payment system and accept the\n" 493"partner (bottom arrow). This creates a digital contract signed by the "
464"respective exchange as a business partner\n" 494"customer's coins and the merchant. If necessary, the customer can later "
465"(bottom arrow). This creates a digital contract\n" 495"use this digitally signed contract in a court of law to prove the exact "
466"signed by the customer's coins and the\n" 496"terms of the contract and that he paid the respective amount. The "
467"merchant. If necessary, the customer can later\n" 497"customer does not learn the banking details of the merchant, and Taler "
468"use this digitally signed contract in a court\n" 498"does not require the merchant to learn the identity of the customer. "
469"of law to prove the exact terms of the contract\n" 499"Naturally, the customer can spend any fraction of his digital coins (the "
470"and that he paid the respective amount. The\n" 500"system takes care of customers getting change)."
471"customer does not learn the banking details of\n" 501msgstr ""
472"the merchant, and Taler does not require the\n"
473"merchant to learn the identity of the\n"
474"customer. Naturally, the customer can spend any\n"
475"fraction of his digital coins (the system takes\n"
476"care of customers getting change).\n"
477msgstr "Die digitalen Münzen der Geldbörse kann man ausgeben bei allen Verkäufern, die das Taler-Bezahlsystem unterstützen und eine Taler-Wechselstube als Geschäftspartner akzeptieren (in der Grafik unten rechts). Dieser Vorgang erzeugt einen digitalen Vertrag, der sowohl von den Verkäufern als auch von den Käufern mit einer Signatur versehen wird (in der Grafik unten als Pfeil dargestellt). Dieser elektronisch \"unterschriebene\" Vertrag enthält die genauen Vertragsbedingungen und ist für eventuelle Streitfälle auch vor Gericht verwendbar als Eigentumsnachweis eines gekauften Gutes zum gegebenen Kaufpreis. Dazu müssen weder Käufer noch Verkäufer über die Identität oder Bankdaten ihrer Geschäftspartner Bescheid wissen. Natürlich kann jeder beliebige Teilbetrag von Münzen aus der Taler-Geldbörse verwendet werden, das System sorgt für das korrekte Wechselgeld."
478 502
479#: developers.html.j2:210 503#: developers.html.j2:210
480msgid "" 504msgid ""
481"Merchants receiving digital\n" 505"Merchants receiving digital coins <b>deposit</b> the respective claims "
482"coins <b>deposit</b> the respective claims\n" 506"that resulted from the contract signing with the customer at the exchange"
483"that resulted from the contract signing with\n" 507" to redeem the coins. The deposit step does not reveal the details of the"
484"the customer at the exchange to redeem the\n" 508" contract between the customer and the merchant or the identity of the "
485"coins. The deposit step does not reveal the\n" 509"customer to the exchange in any way. However, the exchange does learn the"
486"details of the contract between the customer\n" 510" identity of the merchant via the provided bank routing information. The "
487"and the merchant or the identity of the\n" 511"merchant can, for example when compelled by the state for taxation, "
488"customer to the exchange in any way. However,\n" 512"provide information linking the individual deposit to the respective "
489"the exchange does learn the identity of the\n" 513"contract signed by the customer. Thus, the exchange's database allows the"
490"merchant via the provided bank routing\n" 514" state to enforce that merchants pay applicable taxes (and do not engage "
491"information. The merchant can, for example\n" 515"in illegal contracts)."
492"when compelled by the state for taxation,\n" 516msgstr ""
493"provide information linking the individual\n"
494"deposit to the respective contract signed by\n"
495"the customer. Thus, the exchange's database\n"
496"allows the state to enforce that merchants pay\n"
497"applicable taxes (and do not engage in illegal\n"
498"contracts).\n"
499msgstr "Nach dem Vertragsabschluss übertragen die Käufer ihre digitalen Münzen an die Verkäufer, die sich die entsprechenden Forderungen von der Taler-Wechselstube auf ihre Girokonten erstatten lassen. Die Wechselstube veröffentlicht dabei weder Vertragsdetails noch Käuferdaten und kennt nur die Identität der Verkäufer durch ihre Bankverbindungen. Die Verkäufer können daher gegenüber staatlichen Steuerbehörden einen Nachweis ihrer rechtmäßigen Geschäfte erbringen. Die Datenbank der Wechselstube unterstützt auf diese Weise den Staat, ausnahmslos alle Verkäufer zu ihren Steuerzahlungen zu verpflichten und von illegalen Geschäften abzuhalten."
500 517
501#: developers.html.j2:233 518#: developers.html.j2:233
502msgid "" 519msgid ""
503"Finally, the exchange transfers funds\n" 520"Finally, the exchange transfers funds corresponding to the digital coins "
504"corresponding to the digital coins redeemed by\n" 521"redeemed by the merchants to the merchant's <b>bank</b> account. The "
505"the merchants to the merchant's <b>bank</b>\n" 522"exchange may combine multiple small transactions into one larger bank "
506"account. The exchange may combine multiple\n" 523"transfer. The merchant can query the exchange about the relationship "
507"small transactions into one larger bank\n" 524"between the bank transfers and the individual claims that were deposited."
508"transfer. The merchant can query the exchange\n" 525msgstr ""
509"about the relationship between the bank\n"
510"transfers and the individual claims that were\n"
511"deposited.\n"
512msgstr "Als letzten Schritt überweist die Taler-Wechselstube die Forderungen der Verkäufer an deren Geschäftsbanken (in der Grafik oben rechts). Die Geldbeträge entsprechen den Werten der digitalen Münzen. Die Taler-Wechselstube kann mehrere kleinere Beträge zu einem Gesamtbetrag zusammenfassen und an die Geschäftsbank überweisen. Die Verkäufer haben die Möglichkeit, ihre angemeldeten Forderungen und deren Überweisung an die Geschäftsbank bei der Taler-Wechselstube abzufragen."
513 526
514#: developers.html.j2:247 527#: developers.html.j2:247
515msgid "" 528msgid ""
516"Most importantly, the exchange keeps\n" 529"Most importantly, the exchange keeps cryptographic proofs that allow it "
517"cryptographic proofs that allow it to\n" 530"to demonstrate that it is operating correctly to third parties. The "
518"demonstrate that it is operating correctly to\n" 531"system requires an external <b>auditor</b>, such as a government-"
519"third parties. The system requires an\n" 532"appointed financial regulatory body, to frequently verify the exchange's "
520"external <b>auditor</b>, such as a\n" 533"databases and check that its bank balance matches the total value of the "
521"government-appointed financial regulatory body,\n" 534"remaining coins in circulation."
522"to frequently verify the exchange's databases\n" 535msgstr ""
523"and check that its bank balance matches the\n"
524"total value of the remaining coins in\n"
525"circulation.\n"
526msgstr "Eine bedeutende Eigenschaft der Wechselstube besteht darin, dass sie kryptografisch verschlüsselte Prüfdaten bereitstellt, um ihre korrekte Funktionalität nachzuweisen. Diese verschlüsselten Prüfdaten werden unabhängigen Parteien wie z.B. von Regierungen ernannten Finanzaufsichtsbehörden oder Auditoren zur Verfügung gestellt, die regelmäßig die Wechselstube-Datenbanken auf Funktionalität überprüfen können. Dabei vergleichen sie die Übereinstimmung der im Umlauf befindlichen Summe von digitalen Münzen mit den Überweisungen an Geschäftsbanken."
527 536
528#: developers.html.j2:262 537#: developers.html.j2:262
529msgid "" 538msgid ""
530"Without the auditor, the exchange operators\n" 539"Without the auditor, the exchange operators could embezzle funds they are"
531"could embezzle funds they are holding in\n" 540" holding in reserve. Customers and merchants cannot cheat each other or "
532"reserve. Customers and merchants cannot cheat\n" 541"the exchange. If any party's computers are compromised, the financial "
533"each other or the exchange. If any party's\n" 542"damage is limited to the respective party and proportional to the funds "
534"computers are compromised, the financial damage\n" 543"they have in circulation during the period of the compromise."
535"is limited to the respective party and\n" 544msgstr ""
536"proportional to the funds they have in\n"
537"circulation during the period of the\n"
538"compromise.\n"
539msgstr "Die Rolle des Auditors sorgt dafür, dass die Taler-Wechselstube keine Forderungen oder Überweisungen unterschlagen kann. Ebenso wenig können Käufer oder Verkäufer sich gegenseitig oder die Wechselstube betrügen. Sollte der Computer eines Beteiligten beschädigt oder korrumpiert worden sein, beschränkt sich der finanzielle Schaden immer nur auf den Wert der digitalen Münzen auf dem jeweiligen Computer zum Zeitpunkt der Schadensentstehung."
540 545
541#: faq.html.j2:5 546#: faq.html.j2:5
542msgid "How is Taler related to Bitcoin or Blockchains?" 547msgid "How is Taler related to Bitcoin or Blockchains?"
@@ -544,18 +549,18 @@ msgstr "In welchem Zusammenhang steht Taler mit Bitcoin oder Blockchains?"
544 549
545#: faq.html.j2:6 550#: faq.html.j2:6
546msgid "" 551msgid ""
547"<p>Taler does not use any Blockchain technology or Bitcoin directly.\n" 552"<p>Taler does not use any Blockchain technology or Bitcoin directly. "
548"Taler is not based on proof-of-work or any other distributed consensus\n" 553"Taler is not based on proof-of-work or any other distributed consensus "
549"mechanism. Instead Taler is based on blind signatures.</p>\n" 554"mechanism. Instead Taler is based on blind signatures.</p>"
550msgstr "Taler verwendet keine Blockchain-Technologie oder Bitcoin selbst. Auch auf elektronisches gegenseitiges Beglaubigen in einem Web-of-trust- oder proof-of-work-Verfahren verzichtet Taler. Stattdessen setzt Taler auf Verfahren mit blinden Signaturen." 555msgstr ""
551 556
552#: faq.html.j2:11 557#: faq.html.j2:11
553msgid "" 558msgid ""
554"<p>It would be possible, however, to withdraw coins denominated in\n" 559"<p>It would be possible, however, to withdraw coins denominated in "
555"Bitcoin into a Taler wallet (with an appropriate exchange), which\n" 560"Bitcoin into a Taler wallet (with an appropriate exchange), which would "
556"would give some benefits over plain Bitcoin, such as instant\n" 561"give some benefits over plain Bitcoin, such as instant confirmation "
557"confirmation times.</p>\n" 562"times.</p>"
558msgstr "Es ist jedoch möglich, Bitcoin als Münzen in eine Taler-Geldbörse mittels einer dafür geeigneten Wechselstube zu überweisen. Dies brächte gegenüber Bitcoin sogar den Vorteil von sofortigen Zahlungsbestätigungen." 563msgstr ""
559 564
560#: faq.html.j2:18 565#: faq.html.j2:18
561msgid "Where is the balance in my wallet stored?" 566msgid "Where is the balance in my wallet stored?"
@@ -563,10 +568,10 @@ msgstr "Wo ist der Münzbestand in meiner Taler-Geldbörse gespeichert?"
563 568
564#: faq.html.j2:19 569#: faq.html.j2:19
565msgid "" 570msgid ""
566"<p>Your wallet stores digital coins and thus ultimately your computer\n" 571"<p>Your wallet stores digital coins and thus ultimately your computer "
567"holds your balance. The exchange keeps funds matching all unspent\n" 572"holds your balance. The exchange keeps funds matching all unspent coins "
568"coins in an escrow bank account.</p>\n" 573"in an escrow bank account.</p>"
569msgstr "Die Taler-Geldbörse speichert digitale Münzen nur auf deinem Computer. Das heißt, nur dieser kennt den Bestand deiner Münzen. Die Taler-Wechselstube speichert dagegen auf einem Konto, das sie treuhänderisch verwaltet, die Forderungen von noch nicht gebuchten Münzen." 574msgstr ""
570 575
571#: faq.html.j2:25 576#: faq.html.j2:25
572msgid "What if my wallet is lost?" 577msgid "What if my wallet is lost?"
@@ -574,17 +579,17 @@ msgstr "Was passiert bei Verlust der Taler-Geldbörse?"
574 579
575#: faq.html.j2:26 580#: faq.html.j2:26
576msgid "" 581msgid ""
577"<p>Since the digital coins of value in your wallet are anonymized, the\n" 582"<p>Since the digital coins of value in your wallet are anonymized, the "
578"exchange can not assist you in recovering a lost or stolen wallet.\n" 583"exchange can not assist you in recovering a lost or stolen wallet. Just "
579"Just like with a physical wallet for cash, you are responsible for\n" 584"like with a physical wallet for cash, you are responsible for keeping it "
580"keeping it safe.</p>\n" 585"safe.</p>"
581msgstr "Weil die digitalen Münzen in der Geldbörse anonymisiert gespeichert werden, kann sie die Wechselstube bei einem Verlust oder Diebstahl nicht wiederherstellen. Wie bei echten Geldbörsen mit Banknoten und Münzen sind ihre Eigentümer allein verantwortlich für deren Sicherung." 586msgstr ""
582 587
583#: faq.html.j2:32 588#: faq.html.j2:32
584msgid "" 589msgid ""
585"<p>The risk of losing a wallet can be mitigated by making backups or\n" 590"<p>The risk of losing a wallet can be mitigated by making backups or "
586"keeping the balance reasonably low.</p>\n" 591"keeping the balance reasonably low.</p>"
587msgstr "Das Risiko eines Verlusts der Taler-Geldbörsen kann vermieden werden, indem man Backups von ihnen anfertigt oder ihren Bestand an digitalen Münzen niedrig hält." 592msgstr ""
588 593
589#: faq.html.j2:37 594#: faq.html.j2:37
590msgid "What if my computer is hacked?" 595msgid "What if my computer is hacked?"
@@ -592,27 +597,29 @@ msgstr "Was ist, wenn mein Computer gehackt wurde?"
592 597
593#: faq.html.j2:38 598#: faq.html.j2:38
594msgid "" 599msgid ""
595"<p>In case of a compromise of one of your devices, an attacker can\n" 600"<p>In case of a compromise of one of your devices, an attacker can spend "
596"spend coins from your wallet. Checking your balance might reveal\n" 601"coins from your wallet. Checking your balance might reveal to you that "
597"to you that your device has been compromised.</p>\n" 602"your device has been compromised.</p>"
598msgstr "Im Fall eines Einbruchs in die Geräte können tatsächlich digitale Münzen aus dem Bestand in der Taler-Geldbörse ausgegeben werden. Es bietet sich daher an, den Bestand regelmäßig zu kontrollieren, um einen solchen Einbruch festzustellen." 603msgstr ""
599 604
600#: faq.html.j2:44 605#: faq.html.j2:44
601msgid "Can I send money to my friend with Taler?" 606msgid "Can I send money to my friend with Taler?"
602msgstr "Kann ich mit Taler anderen Personen oder Freunden meine digitalen Münzen senden?" 607msgstr ""
608"Kann ich mit Taler anderen Personen oder Freunden meine digitalen Münzen "
609"senden?"
603 610
604#: faq.html.j2:45 611#: faq.html.j2:45
605msgid "" 612msgid ""
606"<p>If your friend provides goods or services for you in exchange for a\n" 613"<p>If your friend provides goods or services for you in exchange for a "
607"payment, they can easily set up a Taler merchant and receive the\n" 614"payment, they can easily set up a Taler merchant and receive the payment "
608"payment in their bank account.</p>\n" 615"in their bank account.</p>"
609msgstr "Falls andere Personen Waren oder Dienstleistungen verkaufen wollen, können sie die Rolle eines Verkäufers einnehmen und diese schnell und einfach einrichten, um deine Zahlung von der Taler-Geldbörse auf dem Girokonto ihrer Geschäftsbank zu erhalten." 616msgstr ""
610 617
611#: faq.html.j2:50 618#: faq.html.j2:50
612msgid "" 619msgid ""
613"<p>Future versions of the Taler wallet may allow exchanging coins\n" 620"<p>Future versions of the Taler wallet may allow exchanging coins among "
614"among friends directly as well.</p>\n" 621"friends directly as well.</p>"
615msgstr "Zukünftige Versionen der Taler-Geldbörse sehen vor, unter Freunden auch direkt digitale Münzen auszutauschen." 622msgstr ""
616 623
617#: faq.html.j2:56 624#: faq.html.j2:56
618msgid "How does Taler handle payments in different currencies?" 625msgid "How does Taler handle payments in different currencies?"
@@ -620,13 +627,13 @@ msgstr "Wie geht Taler um mit digitalen Münzen anderer Währungen?"
620 627
621#: faq.html.j2:57 628#: faq.html.j2:57
622msgid "" 629msgid ""
623"<p>Taler wallets can store digital coins corresponding to multiple\n" 630"<p>Taler wallets can store digital coins corresponding to multiple "
624"different currencies such as the Euro, US Dollars or Bitcoins.</p>\n" 631"different currencies such as the Euro, US Dollars or Bitcoins.</p>"
625msgstr "Taler-Geldbörsen können gleichzeitig verschiedene digitale Münzen speichern, die in unterschiedlichen Währungen wie Euro, US-Dollar oder Bitcoin notiert sind." 632msgstr ""
626 633
627#: faq.html.j2:61 634#: faq.html.j2:61
628msgid "<p>Taler currently does not offer conversion between currencies.</p>\n" 635msgid "<p>Taler currently does not offer conversion between currencies.</p>"
629msgstr "Taler bietet jedoch derzeitig keinen Umtausch zwischen Währungen." 636msgstr ""
630 637
631#: faq.html.j2:65 638#: faq.html.j2:65
632msgid "How does Taler protect my privacy?" 639msgid "How does Taler protect my privacy?"
@@ -634,13 +641,302 @@ msgstr "Wie schützt Taler meine privaten Daten?"
634 641
635#: faq.html.j2:66 642#: faq.html.j2:66
636msgid "" 643msgid ""
637"<p>Your wallet stores digital coins that are <a\n" 644"<p>Your wallet stores digital coins that are <a "
638"href=\"https://en.wikipedia.org/wiki/Blind_signature\">blindly\n" 645"href=\"https://en.wikipedia.org/wiki/Blind_signature\">blindly signed</a>"
639"signed</a> by an exchange. The use of a blind signature protects your\n" 646" by an exchange. The use of a blind signature protects your privacy as it"
640"privacy as it prevents the exchange from knowing which coin it signed\n" 647" prevents the exchange from knowing which coin it signed for which "
641"for which customer.</p>\n" 648"customer.</p>"
642"\n" 649msgstr ""
643msgstr "Deine Geldbörse speichert digitale \"Münzen\", die von der Wechselstube blind signiert sind (siehe <a href=\"https://de.wikipedia.org/wiki/Digitale_Signatur\">Digitale Signatur</a>). Dieses Verfahren schützt die privaten Daten, weil die Taler-Wechselstube dadurch keine Kenntnis davon erlangt, welche der Münzen von welchen Käufern sie signiert." 650
651#: glossary.html.j2:6
652msgid "auditor"
653msgstr ""
654
655#: glossary.html.j2:8
656msgid ""
657"trusted third party that verifies that the `exchange` is operating "
658"correctly"
659msgstr ""
660
661#: glossary.html.j2:12
662msgid "bank"
663msgstr ""
664
665#: glossary.html.j2:14
666msgid ""
667"traditional financial service provider who offers wire `transfers` "
668"between accounts"
669msgstr ""
670
671#: glossary.html.j2:18
672msgid "coin"
673msgstr ""
674
675#: glossary.html.j2:20
676msgid ""
677"coins are individual token representing a certain amount of value, also "
678"known as the `denomination` of the coin"
679msgstr ""
680
681#: glossary.html.j2:24
682msgid "contract"
683msgstr ""
684
685#: glossary.html.j2:26
686msgid "the proposal signed by the wallet."
687msgstr ""
688
689#: glossary.html.j2:30
690msgid "denomination"
691msgstr ""
692
693#: glossary.html.j2:32
694msgid ""
695"unit of currency, specifies both the currency and the face value of a "
696"`coin`"
697msgstr ""
698
699#: glossary.html.j2:36
700msgid "denomination key"
701msgstr ""
702
703#: glossary.html.j2:38
704msgid ""
705"RSA key used by the exchange to certify that a given `coin` is valid and "
706"of a particular `denomination`"
707msgstr ""
708
709#: glossary.html.j2:42
710msgid "deposit"
711msgstr ""
712
713#: glossary.html.j2:44
714msgid ""
715"operation by which a merchant passes coins to an exchange, expecting the "
716"exchange to credit his `bank` account in the future using a wire "
717"`transfer`"
718msgstr ""
719
720#: glossary.html.j2:48
721msgid "dirty"
722msgstr ""
723
724#: glossary.html.j2:50
725msgid ""
726"a `coin` is dirty if its public key may be known to an entity other than "
727"the customer, thereby creating the danger of some entity being able to "
728"link multiple transactions of coin's owner if the coin is not refreshed "
729"first"
730msgstr ""
731
732#: glossary.html.j2:54
733msgid "exchange"
734msgstr ""
735
736#: glossary.html.j2:56
737msgid ""
738"Taler's payment service provider. Issues eletronic `coins` during "
739"`withdrawal` and redeems them when they are `deposited` by merchants."
740msgstr ""
741
742#: glossary.html.j2:60
743msgid "extension"
744msgstr ""
745
746#: glossary.html.j2:62
747msgid "implementation of a `wallet` for browsers"
748msgstr ""
749
750#: glossary.html.j2:66
751msgid "fresh coin"
752msgstr ""
753
754#: glossary.html.j2:68
755msgid "a `coin` is fresh if its public key is only known to the customer"
756msgstr ""
757
758#: glossary.html.j2:72
759msgid "master key"
760msgstr ""
761
762#: glossary.html.j2:74
763msgid ""
764"offline key used by the exchange to certify denomination keys and message"
765" signing keys"
766msgstr ""
767
768#: glossary.html.j2:78
769msgid "message signing key"
770msgstr ""
771
772#: glossary.html.j2:80
773msgid "key used by the exchange to sign online messages, other than coins"
774msgstr ""
775
776#: glossary.html.j2:84
777msgid "offer"
778msgstr ""
779
780#: glossary.html.j2:86
781msgid ""
782"specification of the details of a transaction, specifies the payment "
783"obligations for the customer (i.e. the amount), the deliverables of the "
784"merchant and other related information, such as deadlines or locations; "
785"However, it lacks some information that the backend is supposed to "
786"provide. In other words, after the backend adds the missing information "
787"to the offer and signs it, it becomes a proposal."
788msgstr ""
789
790#: glossary.html.j2:95
791msgid "owner"
792msgstr ""
793
794#: glossary.html.j2:97
795msgid "a `coin` is owned by the entity that knows the private key of the coin"
796msgstr ""
797
798#: glossary.html.j2:101
799msgid "proof"
800msgstr ""
801
802#: glossary.html.j2:103
803msgid ""
804"message that cryptographically demonstrates that a particular claim is "
805"correct"
806msgstr ""
807
808#: glossary.html.j2:107
809msgid "proposal"
810msgstr ""
811
812#: glossary.html.j2:109
813msgid "a sketch that has been completed and signed by the merchant backend."
814msgstr ""
815
816#: glossary.html.j2:113
817msgid "reserve"
818msgstr ""
819
820#: glossary.html.j2:115
821msgid ""
822"funds set aside for future use; either the balance of a customer at the "
823"exchange ready for `withdrawal`, or the funds kept in the exchange's bank"
824" account to cover obligations from coins in circulation"
825msgstr ""
826
827#: glossary.html.j2:119
828msgid "refreshing"
829msgstr ""
830
831#: glossary.html.j2:121
832msgid ""
833"operation by which a `dirty` `coin` is converted into one or more `fresh`"
834" coins"
835msgstr ""
836
837#: glossary.html.j2:125
838msgid "refund"
839msgstr ""
840
841#: glossary.html.j2:127
842msgid ""
843"operation by which a merchant steps back from the right to funds that he "
844"obtained from a `deposit` operation, giving the right to the funds back "
845"to the customer"
846msgstr ""
847
848#: glossary.html.j2:131
849msgid "sharing"
850msgstr ""
851
852#: glossary.html.j2:133
853msgid ""
854"users can share ownership of a `coin` by sharing access to the coin's "
855"private key, thereby allowing all co-owners to spend the coin at any "
856"time."
857msgstr ""
858
859#: glossary.html.j2:137
860msgid "signing key"
861msgstr ""
862
863#: glossary.html.j2:139
864msgid "see message signing key."
865msgstr ""
866
867#: glossary.html.j2:143
868msgid "spending"
869msgstr ""
870
871#: glossary.html.j2:145
872msgid ""
873"operation by which a customer gives a merchant the right to `deposit` "
874"coins in return for merchandise"
875msgstr ""
876
877#: glossary.html.j2:149
878msgid "transfer"
879msgstr ""
880
881#: glossary.html.j2:151
882msgid "method of sending funds between `bank` accounts"
883msgstr ""
884
885#: glossary.html.j2:155
886msgid "transaction"
887msgstr ""
888
889#: glossary.html.j2:157
890msgid ""
891"method by which ownership is exclusively transferred from one entity to "
892"another"
893msgstr ""
894
895#: glossary.html.j2:161
896msgid "transaction id"
897msgstr ""
898
899#: glossary.html.j2:163
900msgid "unique number by which a merchant identifies a `transaction`"
901msgstr ""
902
903#: glossary.html.j2:167
904msgid "wallet"
905msgstr ""
906
907#: glossary.html.j2:169
908msgid ""
909"software running on a customer's computer; withdraws, stores and spends "
910"coins"
911msgstr ""
912
913#: glossary.html.j2:173
914msgid "wire transfer"
915msgstr ""
916
917#: glossary.html.j2:175
918msgid "see `transfer`"
919msgstr ""
920
921#: glossary.html.j2:179
922msgid "wire transfer identifier"
923msgstr ""
924
925#: glossary.html.j2:181
926msgid ""
927"subject of a wire `transfer`; usually a random string to uniquely "
928"identify the `transfer`"
929msgstr ""
930
931#: glossary.html.j2:185
932msgid "withdrawal"
933msgstr ""
934
935#: glossary.html.j2:187
936msgid ""
937"operation by which a `wallet` can convert funds from a reserve to fresh "
938"coins"
939msgstr ""
644 940
645#: governments.html.j2:6 941#: governments.html.j2:6
646msgid "Advantages for Governments" 942msgid "Advantages for Governments"
@@ -648,81 +944,70 @@ msgstr "Vorteile für Staatsregierungen"
648 944
649#: governments.html.j2:8 945#: governments.html.j2:8
650msgid "" 946msgid ""
651"Taler provides accountability to ensure business operate\n" 947"Taler provides accountability to ensure business operate legally, while "
652"legally, while also respecting civil liberties of\n" 948"also respecting civil liberties of citizens. Taler is a payment system "
653"citizens. Taler is a payment system based on\n" 949"based on open standards and free software. Taler needs governments as "
654"open standards and free software. Taler needs\n" 950"they set a financial framework and act as trusted regulators. Taler "
655"governments as they set a financial framework and act as\n" 951"contributes to digital sovereignty in the critical financial "
656"trusted regulators. Taler contributes to digital\n" 952"infrastructure."
657"sovereignty in the critical financial infrastructure.\n" 953msgstr ""
658msgstr "Taler fordert von den Wirtschaftsunternehmen Rechenschaft darüber, dass sie legale Geschäfte betreiben und gleichzeitig die Persönlichkeitsrechte und Privatsphäre der Menschen respektieren. Taler ist ein Bezahlsystem, das auf einem offenen Standard und freier Software basiert. Taler braucht Staatregierungen, die finanzrechtliche Rahmenbedingungen schaffen und als zuverlässige Kontrollorgane auftreten. Damit trägt dieses Bezahlsystem auch zur digitalen Selbstbestimmung von Einzelpersonen im Finanzsektor bei." 954
659 955#: governments.html.j2:25 index.html.j2:71
660#: governments.html.j2:25
661#: index.html.j2:70
662msgid "Taxable" 956msgid "Taxable"
663msgstr "Besteuerbar" 957msgstr "Besteuerbar"
664 958
665#: governments.html.j2:28 959#: governments.html.j2:28
666msgid "" 960msgid ""
667"Taler was built with the goal of fighting corruption and\n" 961"Taler was built with the goal of fighting corruption and supporting "
668"supporting taxation. With Taler, the receiver of any\n" 962"taxation. With Taler, the receiver of any form of payment is easily "
669"form of payment is easily identified by the government,\n" 963"identified by the government, and the merchant can be compelled to "
670"and the merchant can be compelled to provide the contract\n" 964"provide the contract that was accepted by the customer. Governments can "
671"that was accepted by the customer. Governments can use\n" 965"use this data to tax businesses and individuals based on their income, "
672"this data to tax businesses and individuals based on\n" 966"making tax evasion and black markets less viable."
673"their income, making tax evasion and black markets less\n" 967msgstr ""
674"viable.\n"
675msgstr "Taler wurde mit dem Ziel entwickelt, Korruption zu unterbinden und sichere Besteuerungsgrundlagen bereitzustellen. Jeder Empfänger von Zahlungen aus Taler-Geldbörsen wird gegenüber der staatlichen fiskalischen Autorität eindeutig identifizierbar und ist demnach gezwungen, sich steuerlich zu veranlagen. Den Nachweis des Umsatzes können Verkäufer erbringen mithilfe des digital signierten Kaufvertrags, den ihre Kunden mit ihnen geschlossen haben. Staatsregierungen haben dadurch die Möglichkeit, die digitalen Kaufverträge von Handelsunternehmen bzw. die Einkommen von einzelnen privaten Verkäufern als Grundlage der Besteuerung heranzuziehen. Auf diese Weise haben Steuerflucht und Schwarzmarktgeschäfte nur noch eine minimale Wahrscheinlichkeit."
676 968
677#: governments.html.j2:41 969#: governments.html.j2:41
678msgid "" 970msgid ""
679"Thus, despite offering anonymity for citizens spending\n" 971"Thus, despite offering anonymity for citizens spending digital cash to "
680"digital cash to buy goods and services, Taler also\n" 972"buy goods and services, Taler also ensures that the state can observe "
681"ensures that the state can observe incoming funds. This\n" 973"incoming funds. This can be used to ensure businesses engage only in "
682"can be used to ensure businesses engage only in legal\n" 974"legal activities, and do not evade income tax, sales tax or value-added "
683"activities, and do not evade income tax, sales tax or\n" 975"tax. However, this observational capability does not extend to the "
684"value-added tax. However, this observational capability\n" 976"immediate personal domain. In particular, monitoring does not cover "
685"does not extend to the immediate personal domain. In\n" 977"shared access to funds with trusted friends and family, or synchronizing "
686"particular, monitoring does not cover shared access to\n" 978"wallets across multiple devices."
687"funds with trusted friends and family, or synchronizing\n" 979msgstr ""
688"wallets across multiple devices.\n"
689msgstr "Auf der einen Seite versichert Taler als digitales Bezahlsystem die vollständige Anonymität der Käufer, die Waren und Dienstleistungen kaufen und bezahlen, auf der anderen Seite liefert Taler den Staatsregierungen eine sichere Besteuerungsgrundlage, mit der sie ihre öffentlichen Güter finanzieren können. Dieses Verfahren stellt gleichzeitig sicher, dass Handelsunternehmen nur legale Geschäfte abschließen und keine Steuern hinterziehen oder Mehrwertsteuern unterschlagen. Diese Überwachungsfunktion bezieht sich jedoch keinesfalls auf die Privatsphäre von Personen und erfasst ebenso wenig den geduldeten gemeinsamen Zugriff auf die Taler-Geldbörse durch Berechtigte wie Freunde oder Familienmitglieder sowie miteinander synchronisierte Geldbörsen auf verschiedenen Endgeräten."
690 980
691#: governments.html.j2:61 981#: governments.html.j2:61
692msgid "" 982msgid ""
693"Taler's payments are cryptographically secured. Thus,\n" 983"Taler's payments are cryptographically secured. Thus, customers, "
694"customers, merchants and the Taler payment service provider\n" 984"merchants and the Taler payment service provider (the exchange) can "
695"(the exchange) can mathematically\n" 985"mathematically demonstrate their lawful behavior in court in case of "
696"demonstrate their lawful behavior in court in case of\n" 986"disputes. Financial damages are strictly limited, improving economic "
697"disputes. Financial damages are strictly limited,\n" 987"security for individuals, merchants, the exchange and the state."
698"improving economic security for individuals, merchants,\n" 988msgstr ""
699"the exchange and the state.\n"
700msgstr "Zahlungen in Taler sind kryptographisch verschlüsselt. Sowohl Käufer als auch Verkäufer und das Taler-Bezahlsystem selbst (die Taler-Wechselstube) können die Rechtschaffenheit ihrer Geschäfte mit ihren digitalen Kaufverträgen sogar vor Gericht beweisen, falls es zu einem Rechtsstreit kommen sollte. Ebenso sind die finanziellen Risiken äußerst beschränkt, was die Sicherheit des gemeinsamen Handelns für Einzelpersonen, Händler, die Taler-Wechselstube und den Staat enorm verbessert."
701 989
702#: governments.html.j2:73 990#: governments.html.j2:73
703msgid "" 991msgid ""
704"As a payment service provider, the Taler exchange is\n" 992"As a payment service provider, the Taler exchange is subject to financial"
705"subject to financial regulation. Financial regulation and\n" 993" regulation. Financial regulation and regular audits are critical to "
706"regular audits are critical to establish trust. In\n" 994"establish trust. In particular, the Taler design mandates the existence "
707"particular, the Taler design mandates the existence of an\n" 995"of an independent auditor who checks cryptographic proofs that accumulate"
708"independent auditor who checks cryptographic proofs that\n" 996" at the exchange to ensure that the escrow account is managed honestly. "
709"accumulate at the exchange to ensure that the escrow\n" 997"This ensures that the exchange does not threaten the economy due to "
710"account is managed honestly. This ensures that the\n" 998"fraud."
711"exchange does not threaten the economy due to fraud.\n" 999msgstr ""
712msgstr "Als Finanzdienstleister sind Taler-Wechselstuben der Finanzaufsicht unterstellt. Die Einhaltung von Gesetzen und regelmäßige Audits sind unerlässlich zur Bildung einer Vertrauensgrundlage. Zusätzlich fordert das Konzept des Taler-Bezahlsystems aber ganz bewusst einen unabhängigen Auditor. Der Auditor hat zu bestätigen, dass die von den Wechselstuben treuhänderisch verwalteten Konten stets korrekt gebucht werden. Dies sorgt dafür, dass keine einzige Wechselstube betrügerisch handelt." 1000
713 1001#: governments.html.j2:88 index.html.j2:97
714#: governments.html.j2:88
715#: index.html.j2:96
716msgid "Libre" 1002msgid "Libre"
717msgstr "Frei" 1003msgstr "Frei"
718 1004
719#: governments.html.j2:91 1005#: governments.html.j2:91
720msgid "" 1006msgid ""
721"Taler is free software implementing an open protocol\n" 1007"Taler is free software implementing an open protocol standard. Thus, "
722"standard. Thus, Taler will enable competition and avoid\n" 1008"Taler will enable competition and avoid the monopolization of payment "
723"the monopolization of payment systems that threatens\n" 1009"systems that threatens global political and financial stability today."
724"global political and financial stability today.\n" 1010msgstr ""
725msgstr "Taler ist eine freie Software, die ein offenes Protokoll verwendet. Dadurch fördert Taler den Wettbewerb von freien Lösungen und verhindert gleichzeitig Bezahlsysteme, deren gegenwärtige Monopolstellungen die politische und finanzielle Stabilität weltweit akut bedrohen."
726 1011
727#: governments.html.j2:101 1012#: governments.html.j2:101
728msgid "Efficient" 1013msgid "Efficient"
@@ -730,12 +1015,10 @@ msgstr "Effizient"
730 1015
731#: governments.html.j2:104 1016#: governments.html.j2:104
732msgid "" 1017msgid ""
733"Taler has an efficient design. Unlike\n" 1018"Taler has an efficient design. Unlike Blockchain-based payment systems, "
734"Blockchain-based payment systems, such as Bitcoin,\n" 1019"such as Bitcoin, Taler will not threaten the availability of national "
735"Taler will not threaten the availability of\n" 1020"electric grids or (significantly) contribute to environmental pollution."
736"national electric grids or (significantly)\n" 1021msgstr ""
737"contribute to environmental pollution.\n"
738msgstr "Taler arbeitet effizient und ressourcenschonend. Im Gegensatz zu Bezahlsystemen, die das Blockchain-Prinzip verwenden, verbraucht Taler keine Unmengen von Energie und überlastet kein Stromnetz. Damit bringt Taler auch einen erheblichen Vorteil in Sachen Umweltschutz."
739 1022
740#: governments.html.j2:120 1023#: governments.html.j2:120
741msgid "Taler and regulation" 1024msgid "Taler and regulation"
@@ -746,32 +1029,50 @@ msgid "Anti money laundering (AML)"
746msgstr "Gesetz gegen Geldwäsche" 1029msgstr "Gesetz gegen Geldwäsche"
747 1030
748#: governments.html.j2:123 1031#: governments.html.j2:123
749msgid "With Taler, income is visible and can be tied to the contract signed by both parties." 1032msgid ""
750msgstr "Im Taler-Bezahlsystem sind nur Verkäufe und Einkommen öffentlich sichtbar, die in einem signierten Kaufvertrag vereinbart wurden." 1033"With Taler, income is visible and can be tied to the contract signed by "
1034"both parties."
1035msgstr ""
1036"Im Taler-Bezahlsystem sind nur Verkäufe und Einkommen öffentlich "
1037"sichtbar, die in einem signierten Kaufvertrag vereinbart wurden."
751 1038
752#: governments.html.j2:124 1039#: governments.html.j2:124
753msgid "Know your customer (KYC)" 1040msgid "Know your customer (KYC)"
754msgstr "Kenne deine Kunden" 1041msgstr "Kenne deine Kunden"
755 1042
756#: governments.html.j2:125 1043#: governments.html.j2:125
757msgid "In Taler, payer and payee are known by their bank accounts when withdrawing or depositing coins respectively" 1044msgid ""
758msgstr "Käufer und Verkäufer werden anhand ihrer Bankverbindungen erkannt, wenn sie Münzen abheben oder erstatten lassen." 1045"In Taler, payer and payee are known by their bank accounts when "
1046"withdrawing or depositing coins respectively"
1047msgstr ""
1048"Käufer und Verkäufer werden anhand ihrer Bankverbindungen erkannt, wenn "
1049"sie Münzen abheben oder erstatten lassen."
759 1050
760#: governments.html.j2:126 1051#: governments.html.j2:126
761msgid "General Data Protection Regulation (GDPR)" 1052msgid "General Data Protection Regulation (GDPR)"
762msgstr "General Data Protection Regulation (GDPR)" 1053msgstr "General Data Protection Regulation (GDPR)"
763 1054
764#: governments.html.j2:127 1055#: governments.html.j2:127
765msgid "Taler cryptographically protects citizen's privacy, and by design implements data minimization and privacy by default." 1056msgid ""
766msgstr "Taler schützt die Privatsphäre der Bürger durch kryptographische Verschlüsselung. Das Konzept des Bezahlsystems ist zudem so angelegt, dass es nur die absolut notwendigen Daten verwendet." 1057"Taler cryptographically protects citizen's privacy, and by design "
1058"implements data minimization and privacy by default."
1059msgstr ""
1060"Taler schützt die Privatsphäre der Bürger durch kryptographische "
1061"Verschlüsselung. Das Konzept des Bezahlsystems ist zudem so angelegt, "
1062"dass es nur die absolut notwendigen Daten verwendet."
767 1063
768#: governments.html.j2:128 1064#: governments.html.j2:128
769msgid "Payment Services Directive (PSD2)" 1065msgid "Payment Services Directive (PSD2)"
770msgstr "Payment Services Directive (PSD2)" 1066msgstr "Payment Services Directive (PSD2)"
771 1067
772#: governments.html.j2:129 1068#: governments.html.j2:129
773msgid "Taler provides an open standard with public APIs contributing to a competitive banking sector." 1069msgid ""
774msgstr "Taler verwendet einen quelloffenen Code mit nicht-proprietären Programmierschnittstellen und trägt auf diese Weise zu einer Vielfalt von Angeboten in der Bankenbranche bei." 1070"Taler provides an open standard with public APIs contributing to a "
1071"competitive banking sector."
1072msgstr ""
1073"Taler verwendet einen quelloffenen Code mit nicht-proprietären "
1074"Programmierschnittstellen und trägt auf diese Weise zu einer Vielfalt von"
1075" Angeboten in der Bankenbranche bei."
775 1076
776#: governments.html.j2:137 1077#: governments.html.j2:137
777msgid "Taler provides privacy and accountability" 1078msgid "Taler provides privacy and accountability"
@@ -779,42 +1080,37 @@ msgstr "Taler bietet Privatsphäre und Verantwortung in der Geldwirtschaft"
779 1080
780#: governments.html.j2:140 1081#: governments.html.j2:140
781msgid "" 1082msgid ""
782"Taler assumes governments can observe traditional wire transfers\n" 1083"Taler assumes governments can observe traditional wire transfers entering"
783"entering and leaving the Taler payment system. Starting with the\n" 1084" and leaving the Taler payment system. Starting with the wire transfers, "
784"wire transfers, governments can obtain:\n" 1085"governments can obtain:"
785msgstr "Taler beruht auf der Annahme, dass Staatsregierungen die herkömmlichen Bankverbindungen nachverfolgen können, wenn Überweisungen zwischen dem Taler-Bezahlsystem und den Geschäftsbanken stattfinden (Aufladungen der Taler-Geldbörse und Erstattung von Ansprüchen aus Geschäften). Regierungen besitzen damit die Informationen über" 1086msgstr ""
786 1087
787#: governments.html.j2:148 1088#: governments.html.j2:148
788msgid "" 1089msgid ""
789"The total amount of digital currency withdrawn by a\n" 1090"The total amount of digital currency withdrawn by a customer. The "
790"customer. The government can impose limits on how much\n" 1091"government can impose limits on how much digital cash a customer can "
791"digital cash a customer can withdraw within a\n" 1092"withdraw within a given time frame."
792"given time frame.\n" 1093msgstr ""
793msgstr "den Gesamtbetrag digitaler Münzen, die Käufer an die Geldbörse überweisen - die Regierung kann dabei Höchstbeträge pro Zeitperiode festlegen"
794 1094
795#: governments.html.j2:157 1095#: governments.html.j2:157
796msgid "" 1096msgid "The income received by any merchant via the Taler system."
797"The income received by any merchant via the Taler\n" 1097msgstr ""
798"system.\n"
799msgstr "das Einkommen, das Verkäufer im Taler-Bezahlsystem erhalten"
800 1098
801#: governments.html.j2:164 1099#: governments.html.j2:164
802msgid "" 1100msgid ""
803"The exact details of the underlying contract that was\n" 1101"The exact details of the underlying contract that was signed between "
804"signed between customer and merchant. However, this\n" 1102"customer and merchant. However, this information would typically not "
805"information would typically not include the identity\n" 1103"include the identity of the customer."
806"of the customer.\n" 1104msgstr ""
807msgstr "die genauen Inhalte der zugrunde liegenden digitalen Kaufverträge zwischen Käufern und Verkäufern - ausgenommen jedoch private Daten der Käufer"
808 1105
809#: governments.html.j2:174 1106#: governments.html.j2:174
810msgid "" 1107msgid ""
811"The amounts of digital coins legitimately withdrawn\n" 1108"The amounts of digital coins legitimately withdrawn by customers from the"
812"by customers from the exchange, the value of\n" 1109" exchange, the value of non-redeemed digital coins in customer's wallets,"
813"non-redeemed digital coins in customer's wallets, the\n" 1110" the value and corresponding wire details of deposit operations performed"
814"value and corresponding wire details of deposit\n" 1111" by merchants with the exchange, and the income of the exchange from "
815"operations performed by merchants with the exchange,\n" 1112"transaction fees."
816"and the income of the exchange from transaction fees.\n" 1113msgstr ""
817msgstr "die Beträge digitaler Münzen, die Käufer von Taler-Wechselstuben abbuchten, die verfügbaren Werte der Münzen in Geldbörsen, die Werte der Forderungen von Verkäufern und deren Rückerstattung durch Banküberweisung von den Wechselstuben an Geschäftsbanken sowie die Einkünfte der Wechselstuben aus Transaktionsgebühren"
818 1114
819#: index.html.j2:10 1115#: index.html.j2:10
820msgid "One-Click Cash Payments!" 1116msgid "One-Click Cash Payments!"
@@ -822,101 +1118,96 @@ msgstr "Bezahlen mit einem Klick!"
822 1118
823#: index.html.j2:13 1119#: index.html.j2:13
824msgid "" 1120msgid ""
825"GNU Taler is an electronic payment system under development at\n" 1121"GNU Taler is an electronic payment system under development at <a "
826"<a href=\"http://www.inria.fr/\">Inria</a>. We expect to make it\n" 1122"href=\"http://www.inria.fr/\">Inria</a>. We expect to make it operational"
827"operational in 2017. You can learn about Taler on this website,\n" 1123" in 2017. You can learn about Taler on this website, try the <a "
828"try the <a href=\"https://demo.taler.net\">demo</a> and look at\n" 1124"href=\"https://demo.taler.net\">demo</a> and look at our <a "
829"our <a href=\"https://docs.taler.net\">developer</a> and <a\n" 1125"href=\"https://docs.taler.net\">developer</a> and <a "
830"href=\"https://api.taler.net\">API</a> documentation.\n" 1126"href=\"https://api.taler.net\">API</a> documentation."
831msgstr "Taler ist ein elektronisches Bezahlsystem, das bei <a href=\"http://www.inria.fr/\">Inria</a> entwickelt wird. Wir rechnen mit seiner Einführung im Jahr 2017. Auf der <a href=\"https://demo.taler.net\">Demo-Seite</a> kann man die Funktionsweise von Taler kennenlernen. Neben dieser Webseite bestehen die <a href=\"https://git.taler.net/\">Code-Dokumentation</a>, die <a href=\"https://docs.taler.net\">Entwicklerdokumentation</a> und die <a href=\"https://api.taler.net/\">API-Schnittstellendokumentation</a>. Wissenschaftliche Literatur findet man in der <a href=\"bibliography.html\">Bibliographie</a>." 1127msgstr ""
832 1128
833#: index.html.j2:28 1129#: index.html.j2:29
834msgid "Practical" 1130msgid "Practical"
835msgstr "Praktisch" 1131msgstr "Praktisch"
836 1132
837#: index.html.j2:31 1133#: index.html.j2:32
838msgid "" 1134msgid ""
839"Taler is easy to integrate with existing Web\n" 1135"Taler is easy to integrate with existing Web applications. Payments are "
840"applications. Payments are cryptographically\n" 1136"cryptographically secured and are confirmed within milliseconds with "
841"secured and are confirmed within milliseconds with\n" 1137"extremely low transaction costs."
842"extremely low transaction costs.\n" 1138msgstr ""
843msgstr "Taler integriert sich einfach und leicht in bestehende Webanwendungen. Die Zahlungen sind kryptographisch verschlüsselt, innerhalb von Millisekunden bestätigt und extrem kostengünstig."
844 1139
845#: index.html.j2:44 1140#: index.html.j2:45
846msgid "" 1141msgid ""
847"Taler does not introduce a new currency. Taler\n" 1142"Taler does not introduce a new currency. Taler uses a digital wallet "
848"uses a digital wallet storing coins and payment service\n" 1143"storing coins and payment service providers with escrow accounts in "
849"providers with escrow accounts in existing currencies.\n" 1144"existing currencies. Thus, Taler's cryptographic coins correspond to "
850"Thus, Taler's cryptographic coins correspond to existing\n" 1145"existing currencies, such as US Dollars, Euros or even Bitcoins."
851"currencies, such as US Dollars, Euros or even Bitcoins.\n" 1146msgstr ""
852msgstr "Als Bezahlsystem stellt Taler noch keine neue Währung dar. Taler verbindet elektronische Geldbörsen, die digitale Münzen enthalten, und Anbieter für die Zahlungsabwicklung in bestehenden Währungen auf Treuhandkonten. Man kann also sagen, dass die kryptografischen Taler-Münzen herkömmlichen Währungen wie US-Dollar, Euro oder sogar Bitcoin entsprechen."
853 1147
854#: index.html.j2:58 1148#: index.html.j2:59
855msgid "" 1149msgid ""
856"By design Taler does not suffer from many classes\n" 1150"By design Taler does not suffer from many classes of security problems "
857"of security problems such as phishing or counterfeit.\n" 1151"such as phishing or counterfeit. Thanks to its security features, Taler "
858"Despite its security features, Taler never rejects a legitimate\n" 1152"never rejects a legitimate customer due to a fraud-detection false "
859"customer due to a fraud-detection false positive.\n" 1153"positive."
860msgstr "Schon vom Konzept her verhindert Taler Falschgeld oder Sicherheitslücken wie Phishing und wird gleichzeitig jedoch niemals Käufern betrügerische Absichten unterstellen können." 1154msgstr ""
861 1155
862#: index.html.j2:73 1156#: index.html.j2:74
863msgid "" 1157msgid ""
864"When using Taler, merchant's revenue is transparent for tax\n" 1158"When using Taler, merchant's revenue is transparent for tax collection "
865"collection authorities. Unlike cash and most digital currencies,\n" 1159"authorities. Unlike cash and most digital currencies, Taler helps prevent"
866"Taler helps prevent black markets. Taler is not suitable for\n" 1160" black markets. Taler is not suitable for illegal activities."
867"illegal activities.\n" 1161msgstr ""
868msgstr "Taler macht das Einkommen von Verkäufern (Einzelpersonen und Handelsunternehmen) den Steuerbehörden einsehbar. Im Gegensatz zu Bargeld und den meisten virtuellen Währungen unterbindet Taler somit jede Art von Schwarzmarkt. Dieses Bezahlsystem eignet sich aus Prinzip nicht für illegale Geschäfte."
869 1162
870#: index.html.j2:85 1163#: index.html.j2:86
871msgid "" 1164msgid ""
872"When you pay with Taler, your identity does not\n" 1165"When you pay with Taler, your identity does not have to be revealed. Just"
873"have to be revealed to the merchant. Just like\n" 1166" like payments in cash, nobody else can track how you spent your "
874"payments in cash, nobody else can track how you\n" 1167"electronic money. However, you obtain a legally valid proof of payment."
875"spent your electronic money. However, you obtain a\n" 1168msgstr ""
876"legally valid proof of payment.\n"
877msgstr "Taler hält die Identität der Käufer geheim, auch gegenüber den Verkäufern. Genauso wie beim Kauf mit Bargeld kann niemand Auskunft darüber erlangen, was mit dem Taler-Bezahlsystem gekauft wurde. Die Käufer erhalten jedoch garantiert einen Nachweis über ihre Zahlung und den erfolgten Eigentumsübergang."
878 1169
879#: index.html.j2:99 1170#: index.html.j2:100
880msgid "" 1171msgid ""
881"Taler provides protocols and reference implementations that in\n" 1172"Taler provides protocols and reference implementations that in principle "
882"principle enables anybody to run their own payment infrastructure,\n" 1173"enables anybody to run their own payment infrastructure, be it "
883"be it individuals, organizations or whole countries. Since the\n" 1174"individuals, organizations or whole countries. Since the reference "
884"reference implementation is a <a href=\"http://www.gnu.org/\">GNU</a>\n" 1175"implementation is a <a href=\"http://www.gnu.org/\">GNU</a> package, it "
885"package, it will always remain free software.\n" 1176"will always remain free software."
886msgstr "Taler bietet Protokolle und Referenzanwendungen, die prinzipiell für alle möglichen Bezahlsysteme von Einzelpersonen, Organisationen und sogar ganzen Staaten geeignet sind. Die Referenzanwendung als <a href=\"http://www.gnu.org/\">GNU-Package</a> wird immer freie Software sein und bleiben." 1177msgstr ""
887 1178
888#: index.html.j2:116 1179#: index.html.j2:117
889msgid "Paying with Taler" 1180msgid "Paying with Taler"
890msgstr "Bezahlen mit Taler" 1181msgstr "Bezahlen mit Taler"
891 1182
892#: index.html.j2:117 1183#: index.html.j2:118
893msgid "" 1184msgid ""
894"<p>To pay with Taler, customers install an electronic wallet\n" 1185"<p>To pay with Taler, customers install an electronic wallet on their "
895"on their device. Before the first payment, the wallet's balance must\n" 1186"device. Before the first payment, the wallet's balance must be charged in"
896"be charged in the desired currency by some other means of payment.</p>\n" 1187" the desired currency by some other means of payment.</p> <p>Once the "
897"<p>Once the wallet is charged, payments on websites take only one click,\n" 1188"wallet is charged, payments on websites take only one click, are never "
898"are never falsely rejected by fraud detection and do not pose any risk\n" 1189"falsely rejected by fraud detection and do not pose any risk of phishing "
899"of phishing or identity theft.</p>\n" 1190"or identity theft.</p>"
900msgstr "Um mit dem Taler-Bezahlsystem einkaufen zu können, muss man eine elektronische Geldbörse auf einem Endgerät installieren. Vor der ersten Bezahlung ist es nötig, einen Wert in der gewünschten Währung an die Geldbörse zu überweisen. Dies erfolgt durch herkömmliche Banküberweisung oder durch Kreditkarten. Der aufgeladene Wert der Geldbörse kann dann mit nur einem Klick zum Bezahlen auf Webseiten verwendet werden. Die Verkäufer müssen diese Bezahlung als berechtigt annehmen. Ein Datendiebstahl (Phishing) ist dabei technisch ausgeschlossen, es werden keine persönlichen Daten übermittelt." 1191msgstr ""
901 1192
902#: index.html.j2:127 1193#: index.html.j2:128
903msgid "Receiving payments with Taler" 1194msgid "Receiving payments with Taler"
904msgstr "Verkaufen mit Taler" 1195msgstr "Verkaufen mit Taler"
905 1196
906#: index.html.j2:128 1197#: index.html.j2:129
907msgid "" 1198msgid ""
908"<p>To receive Taler payments, a merchant needs a bank account\n" 1199"<p>To receive Taler payments, a merchant needs a bank account in the "
909"in the desired currency. We provide supporting software\n" 1200"desired currency. We provide supporting software in various programming "
910"in various programming languages to make the integration painless.\n" 1201"languages to make the integration painless. The merchant's backend for "
911"The merchant's backend for Taler transaction processing can run\n" 1202"Taler transaction processing can run on the merchant's premises or be "
912"on the merchant's premises or be hosted by a third party.</p>\n" 1203"hosted by a third party.</p>"
913msgstr "Um Zahlungen erhalten zu können, brauchen Verkäufer ein Girokonto in der gewünschten Währung bei einer Geschäftsbank. Das Taler-Bezahlsystem unterstützt die Software verschiedener Verkaufsplattformen in mehreren Programmiersprachen, um die Integration so einfach wie möglich zu machen. Das Backend der Händlerplattform kann dabei auf dem eigenen Rechner des Verkäufers oder gehostet laufen, um die Taler-Buchungen durchzuführen." 1204msgstr ""
914 1205
915#: index.html.j2:144 1206#: index.html.j2:145
916msgid "Taler News" 1207msgid "Taler News"
917msgstr "Taler-News" 1208msgstr "Taler-News"
918 1209
919#: index.html.j2:148 1210#: index.html.j2:149
920msgid "Financial News" 1211msgid "Financial News"
921msgstr "Nachrichten aus der Finanzwelt" 1212msgstr "Nachrichten aus der Finanzwelt"
922 1213
@@ -926,11 +1217,9 @@ msgstr "In Taler investieren!"
926 1217
927#: investors.html.j2:9 1218#: investors.html.j2:9
928msgid "" 1219msgid ""
929"We have created a company, Taler Systems SA in\n" 1220"We have created a company, Taler Systems SA in Luxembourg.<br> Please "
930"Luxembourg.<br>\n" 1221"contact <tt>invest@taler.net</tt> if you want to invest in Taler."
931"Please contact <tt>invest@taler.net</tt>\n" 1222msgstr ""
932"if you want to invest in Taler.\n"
933msgstr "Taler Systems SA in Luxemburg ist die Gesellschaft, die Investitionen in das Taler-Bezahlsystem ermöglicht. Bitte kontaktieren Sie dafür <tt>invest@taler.net</tt>."
934 1223
935#: investors.html.j2:24 1224#: investors.html.j2:24
936msgid "The Team" 1225msgid "The Team"
@@ -938,19 +1227,19 @@ msgstr "Das Taler-Team"
938 1227
939#: investors.html.j2:27 1228#: investors.html.j2:27
940msgid "" 1229msgid ""
941"Our <a href=\"about.html\">team</a> combines world-class business leaders,\n" 1230"Our <a href=\"about.html\">team</a> combines world-class business "
942"cryptographers, software engineers, civil-rights\n" 1231"leaders, cryptographers, software engineers, civil-rights activists and "
943"activists and academics. We are unified by a vision\n" 1232"academics. We are unified by a vision of how payments should work and the"
944"of how payments should work and the goal of\n" 1233" goal of imposing this vision upon the world."
945"imposing this vision upon the world.\n" 1234msgstr ""
946msgstr "Unser <a href=\"about.html\">team</a> vereint Unternehmensleiter, Kryptographen, Softwareingenieure, Aktivisten und Akademiker. Uns verbindet die Vision eines einwandfreien Bezahlsystems und die Zielsetzung, diese Vision in die Welt zu bringen."
947 1235
948#: investors.html.j2:37 1236#: investors.html.j2:37
949msgid "" 1237msgid ""
950"We are currently supported by <a href=\"http://www.inria.fr/\">Inria</a>, the French\n" 1238"We are currently supported by <a href=\"http://www.inria.fr/\">Inria</a>,"
951"national institute for research in informatics and\n" 1239" the French national institute for research in informatics and "
952"automation, and the <a href=\"https://renewablefreedom.org/\">Renewable Freedom Foundation</a>.\n" 1240"automation, and the <a href=\"https://renewablefreedom.org/\">Renewable "
953msgstr "Gegenwärtig unterstützen uns <a href=\"http://www.inria.fr/\">Inria</a>, das Nationale Forschungsinstitut für Informatik und Automatisierung, sowie die <a href=\"https://renewablefreedom.org/\">Renewable Freedom Foundation</a>." 1241"Freedom Foundation</a>."
1242msgstr ""
954 1243
955#: investors.html.j2:45 1244#: investors.html.j2:45
956msgid "The Technology" 1245msgid "The Technology"
@@ -958,17 +1247,15 @@ msgstr "Die Technologie"
958 1247
959#: investors.html.j2:48 1248#: investors.html.j2:48
960msgid "" 1249msgid ""
961"All transactions in Taler are secured using <a href=\"bibliography.html\">modern\n" 1250"All transactions in Taler are secured using <a "
962"cryptography</a> and trust in all parties is\n" 1251"href=\"bibliography.html\">modern cryptography</a> and trust in all "
963"minimized. Financial damage is bounded (for\n" 1252"parties is minimized. Financial damage is bounded (for customers, "
964"customers, merchants and the exchange) even in the\n" 1253"merchants and the exchange) even in the case that systems are compromised"
965"case that systems are compromised and private keys\n" 1254" and private keys are stolen. Databases can be audited for consistency, "
966"are stolen. Databases can be audited for\n" 1255"resulting in either the detection of compromised systems or the "
967"consistency, resulting in either the detection of\n" 1256"demonstration that participants were honest. Actual transaction costs are"
968"compromised systems or the demonstration that\n" 1257" fractions of a cent."
969"participants were honest. Actual transaction costs\n" 1258msgstr ""
970"are fractions of a cent.\n"
971msgstr "Alle Buchungen im Taler-Bezahlsystem sind mit aktuellen Methoden der <a href=\"bibliography.html\">Kryptographie</a> geschützt. Selbst im Fall eines Verlusts oder Diebstahls privater Schlüssel ist ein eventueller Schaden für Käufer, Verkäufer und Wechselstuben begrenzt. Die Datenbanken unterstehen einem unabhängigen Auditing, das die Konsistenz ihrer Daten und Verfahren überprüft. Kompromittierte Endgeräte können so schnell erkannt werden. Das Auditing stellt zudem die Beweisgrundlage für die Rechtschaffenheit aller Beteiligten dar. Die Buchungskosten betragen übrigens nur Bruchteile eines Cent pro Buchung."
972 1259
973#: investors.html.j2:63 1260#: investors.html.j2:63
974msgid "The Business" 1261msgid "The Business"
@@ -976,16 +1263,14 @@ msgstr "Das Geschäftsmodell des Taler-Bezahlsystems"
976 1263
977#: investors.html.j2:66 1264#: investors.html.j2:66
978msgid "" 1265msgid ""
979"The scalable business model for Taler is the operation\n" 1266"The scalable business model for Taler is the operation of the payment "
980"of the payment service provider, which converts money from\n" 1267"service provider, which converts money from traditional payment systems "
981"traditional payment systems (MasterCard, SEPA, UPI,\n" 1268"(MasterCard, SEPA, UPI, Visa, Bitcoin, ACH, SWIFT, etc.) to anonymous "
982"Visa, Bitcoin, ACH, SWIFT, etc.) to anonymous\n" 1269"electronic coins in the same currency. The customer can then redeem the "
983"electronic coins in the same currency. The customer\n" 1270"electronic coins at a merchant, who can exchange them for money "
984"can then redeem the electronic coins at a merchant,\n" 1271"represented using traditional payment systems at the exchange. The "
985"who can exchange them for money represented using\n" 1272"exchange charges fees to facilitate the transactions."
986"traditional payment systems at the exchange. The\n" 1273msgstr ""
987"exchange charges fees to facilitate the transactions.\n"
988msgstr "Das Geschäftsmodell von Taler liegt im Betrieb des Bezahlsystems, das Geld aus herkömmlichen Bezahlsystemen (wie z.B. MasterCard, SEPA, UPI, Visa, Bitcoin, ACH, SWIFT usw.) in anonymisierte digitale Münzen des selben nominalen Werts in der gegebenen Währung umtauscht. Die Käufer können diese digitalen Münzen bei einem Verkäufer ausgeben, der sie wiederum bei einer Taler-Wechselstube in Geld eintauscht, das er auf sein Girokonto gutgeschrieben bekommt. Die Wechselstube erhebt für die Überweisungen geringe Gebühren."
989 1274
990#: investors.html.j2:85 1275#: investors.html.j2:85
991msgid "The Business Case" 1276msgid "The Business Case"
@@ -997,23 +1282,38 @@ msgstr "Ein Taler-Bezahlsystem als Serviceanbieter betreiben"
997 1282
998#: investors.html.j2:110 1283#: investors.html.j2:110
999msgid "" 1284msgid ""
1000"The payment service operator runs the <em>Taler exchange</em>.\n" 1285"The payment service operator runs the <em>Taler exchange</em>. The "
1001"The exchange charges <b>transaction fees</b> to customers or merchants.\n" 1286"exchange charges <b>transaction fees</b> to customers or merchants. Its "
1002"Its operational expenses are from wire transfers with the banking\n" 1287"operational expenses are from wire transfers with the banking system and "
1003"system and the operation of the computing infrastructure.\n" 1288"the operation of the computing infrastructure."
1004msgstr "Der Serviceanbieter betreibt ein Bezahlsystem mit einer Taler-Wechselstube. Die Wechselstube erhebt Gebühren für die Überweisungen von Käufern oder Verkäufern. Die Gebühren enthalten die notwendigen Kosten für die Banküberweisungen von und zu Geschäftsbanken und für den Betrieb der IT-Infrastruktur." 1289msgstr ""
1005 1290
1006#: investors.html.j2:120 1291#: investors.html.j2:120
1007msgid "Cryptographic operations, bandwidth and storage costs are less than 0.01 cent per transaction." 1292msgid ""
1008msgstr "Die Kosten für die kryptographischen Berechnungen, die Bandbreite und Datenspeicherung betragen weniger als 0,01 Eurocent pro Transaktion." 1293"Cryptographic operations, bandwidth and storage costs are less than 0.01 "
1294"cent per transaction."
1295msgstr ""
1296"Die Kosten für die kryptographischen Berechnungen, die Bandbreite und "
1297"Datenspeicherung betragen weniger als 0,01 Eurocent pro Transaktion."
1009 1298
1010#: investors.html.j2:122 1299#: investors.html.j2:122
1011msgid "Multiple Taler transactions can be aggregated into larger wire transfers to merchants to minimize wire transfer costs." 1300msgid ""
1012msgstr "Um die Transaktionskosten des Taler-Bezahlsystems noch weiter zu reduzieren, können mehrere kleine Überweisungen auf das Girokonto der Verkäufer in einer Transaktion zusammengefasst und übertragen werden." 1301"Multiple Taler transactions can be aggregated into larger wire transfers "
1302"to merchants to minimize wire transfer costs."
1303msgstr ""
1304"Um die Transaktionskosten des Taler-Bezahlsystems noch weiter zu "
1305"reduzieren, können mehrere kleine Überweisungen auf das Girokonto der "
1306"Verkäufer in einer Transaktion zusammengefasst und übertragen werden."
1013 1307
1014#: investors.html.j2:124 1308#: investors.html.j2:124
1015msgid "Protocol allows the exchange to charge fees for any expensive operation (withdraw, deposit, refresh, refund or aggregated wire transfers)." 1309msgid ""
1016msgstr " Die Wechselstube kann protokollbasiert verschieden hohe Gebühren verlangen z.B. bei teureren Transaktionen wie Überweisungen von Geschäftsbanken an die Geldbörse, Deponieren von Münzen, Refresh-Funktion, Erstattungen und aggregierte Überweisungen an Geschäftsbanken." 1310"Protocol allows the exchange to charge fees for any expensive operation "
1311"(withdraw, deposit, refresh, refund or aggregated wire transfers)."
1312msgstr ""
1313" Die Wechselstube kann protokollbasiert verschieden hohe Gebühren "
1314"verlangen z.B. bei teureren Transaktionen wie Überweisungen von "
1315"Geschäftsbanken an die Geldbörse, Deponieren von Münzen, Refresh-"
1316"Funktion, Erstattungen und aggregierte Überweisungen an Geschäftsbanken."
1017 1317
1018#: investors.html.j2:126 1318#: investors.html.j2:126
1019msgid "Partnership with banks establishes consumer trust." 1319msgid "Partnership with banks establishes consumer trust."
@@ -1021,7 +1321,9 @@ msgstr "Partnerschaften mit Banken erhöhen das Kundenvertrauen."
1021 1321
1022#: investors.html.j2:128 1322#: investors.html.j2:128
1023msgid "Partnership with free software community enables rapid deployment." 1323msgid "Partnership with free software community enables rapid deployment."
1024msgstr "Partnerschaften mit der Free-Software-Bewegung ermöglichen eine rasche Einführung." 1324msgstr ""
1325"Partnerschaften mit der Free-Software-Bewegung ermöglichen eine rasche "
1326"Einführung."
1025 1327
1026#: merchants.html.j2:5 1328#: merchants.html.j2:5
1027msgid "Advantages for Merchants" 1329msgid "Advantages for Merchants"
@@ -1029,12 +1331,11 @@ msgstr "Vorteile für Händler"
1029 1331
1030#: merchants.html.j2:8 1332#: merchants.html.j2:8
1031msgid "" 1333msgid ""
1032"Taler is a cost-effective electronic payment system\n" 1334"Taler is a cost-effective electronic payment system which provides you "
1033"which provides you with cryptographic proof that\n" 1335"with cryptographic proof that the payment worked correctly within "
1034"the payment worked correctly within milliseconds.\n" 1336"milliseconds. Your Web customers pay with previously unknown levels of "
1035"Your Web customers pay with previously unknown\n" 1337"convenience without risk of fraud."
1036"levels of convenience without risk of fraud.\n" 1338msgstr ""
1037msgstr "Taler ist ein kostengünstiges elektronisches Bezahlsystem, das eine fehlerfrei abgewickelte Bezahlung innerhalb von Millisekunden kryptographisch bestätigt. Die Kunden Ihrer Webshops zahlen mit einem bisher noch nie dagewesenen Komfort und werden keine Betrugsgefahren mehr fürchten müssen."
1038 1339
1039#: merchants.html.j2:22 1340#: merchants.html.j2:22
1040msgid "Fast" 1341msgid "Fast"
@@ -1042,40 +1343,33 @@ msgstr "Schnell"
1042 1343
1043#: merchants.html.j2:25 1344#: merchants.html.j2:25
1044msgid "" 1345msgid ""
1045"Processing transactions with Taler is fast,\n" 1346"Processing transactions with Taler is fast, allowing you to confirm the "
1046"allowing you to confirm the transaction with your\n" 1347"transaction with your customer virtually immediately. Your customers will"
1047"customer virtually immediately. Your customers\n" 1348" appreciate that they do not have to type in credit card information and "
1048"will appreciate that they do not have to type in\n" 1349"play the &quot;verified by&quot; game. By making payments significantly "
1049"credit card information and play the &quot;verified\n" 1350"more convenient for your customers, you may be able to use Taler for "
1050"by&quot; game. By making payments significantly\n" 1351"small transactions that would not work with credit card payments due to "
1051"more convenient for your customers, you may be able\n" 1352"the mental overhead for customers."
1052"to use Taler for small transactions that would not\n" 1353msgstr ""
1053"work with credit card payments due to the mental\n"
1054"overhead for customers.\n"
1055msgstr "Die Verarbeitung von Transaktionen im Taler-Bezahlsystem erfolgt blitzschnell und bestätigt Käufern und Verkäufern im gleichen Augenblick die erfolgte Bezahlung. Ihre Kunden müssen keine Kreditkarteninformationen preisgeben. Mit Taler werden vor allem kleinere Zahlbeträge wesentlich effizienter und bequemer verbucht als in anderen, teureren und komplizierteren Verfahren. "
1056 1354
1057#: merchants.html.j2:44 1355#: merchants.html.j2:44
1058msgid "" 1356msgid ""
1059"You will have cryptographic proof of payment from the\n" 1357"You will have cryptographic proof of payment from the Taler payment "
1060"Taler payment service provider. With Taler you never\n" 1358"service provider. With Taler you never handle sensitive customer account "
1061"handle sensitive customer account information and thus\n" 1359"information and thus do not have to undergo any particular security "
1062"do not have to undergo any particular security audits\n" 1360"audits (such as PCI DSS). Your systems will have customer contracts with "
1063"(such as PCI DSS). Your systems will have customer\n" 1361"qualified signatures for all transactions which you can use in court in "
1064"contracts with qualified signatures for all\n" 1362"case of disputes."
1065"transactions which you can use in court in case of\n" 1363msgstr ""
1066"disputes.\n"
1067msgstr "Verkäufer erhalten eine kryptographisch verschlüsselte Zahlungsbestätigung vom Betreiber des Taler-Bezahlsystems. Taler verarbeitet nie sensible Bankdaten der Kunden, daher müssen sich die Verkäufer auch keinen Sicherheitsaudits (wie PCI DSS) unterziehen. Die Verkäufer bekommen stattdessen digital signierte Kaufverträge, die sie mit den Käufern abgeschlossen haben, mit denen sie sogar bei Gerichtsprozessen Transaktionsnachweise erbringen können."
1068 1364
1069#: merchants.html.j2:61 1365#: merchants.html.j2:61
1070msgid "" 1366msgid ""
1071"Taler is free software, and you can use the\n" 1367"Taler is free software, and you can use the liberally-licensed reference "
1072"liberally-licensed reference code as a starting\n" 1368"code as a starting point to integrate Taler into your services. To use "
1073"point to integrate Taler into your services. To use\n" 1369"Taler, you do not need to pay license fees, and the free software "
1074"Taler, you do not need to pay license fees, and the\n" 1370"development model will ensure that you can select from many competing "
1075"free software development model will ensure that\n" 1371"integrators for support."
1076"you can select from many competing integrators for\n" 1372msgstr ""
1077"support.\n"
1078msgstr "Taler ist freie Software. Der Referenzcode darf aufgrund seiner öffentlichen Lizenz in die bestehenden Bezahlsysteme und Handelsplattformen integriert werden und für seine Verwendung fallen auch keine Lizenzgebühren an. Das Entwicklungsprinzip freier Software stellt zudem sicher, dass man immer aus einer Vielzahl von Anbietern für Integration und Support wählen kann."
1079 1373
1080#: merchants.html.j2:76 1374#: merchants.html.j2:76
1081msgid "Cheap" 1375msgid "Cheap"
@@ -1083,12 +1377,11 @@ msgstr "Günstig"
1083 1377
1084#: merchants.html.j2:79 1378#: merchants.html.j2:79
1085msgid "" 1379msgid ""
1086"Taler is uses efficient cryptographic constructions with low\n" 1380"Taler is uses efficient cryptographic constructions with low bandwidth "
1087"bandwidth and storage requirements. Combined with Taler's strong\n" 1381"and storage requirements. Combined with Taler's strong security which "
1088"security which makes fraud impossible, Taler payment service\n" 1382"makes fraud impossible, Taler payment service providers can operate with "
1089"providers can operate with very low overhead and\n" 1383"very low overhead and thus offer low transaction fees."
1090"thus offer low transaction fees.\n" 1384msgstr ""
1091msgstr "Taler verwendet effiziente kryptographische Algorithmen mit nur geringem Bedarf an Bandbreite und Speicherplatz. Betreiber von Taler-Bezahlsystemen müssen von ihren Kunden nur minimale Gebühren verlangen, weil sie einen hohen Sicherheitsstand bieten, der Verluste durch Betrug von vornherein ausschließt, und ihre Anlagen gleichzeitig sehr geringe Fixkosten erfordern."
1092 1385
1093#: merchants.html.j2:89 1386#: merchants.html.j2:89
1094msgid "Flexible" 1387msgid "Flexible"
@@ -1096,11 +1389,10 @@ msgstr "Flexibel"
1096 1389
1097#: merchants.html.j2:92 1390#: merchants.html.j2:92
1098msgid "" 1391msgid ""
1099"Taler can be used for different currencies (such as\n" 1392"Taler can be used for different currencies (such as Euros, US Dollars or "
1100"Euros, US Dollars or Bitcoins) and any amount, limited\n" 1393"Bitcoins) and any amount, limited only by applicable regulatation and "
1101"only by applicable regulatation and what denominations\n" 1394"what denominations the payment service provider supports."
1102"the payment service provider supports.\n" 1395msgstr ""
1103msgstr "Taler kann man einsetzen für verschiedene Währungen (wie Euro, US-Dollar oder Bitcoin) und für jeden Betrag bis zu den Grenzen, die allein gesetzliche Regulierungen bzw. die Betreiber von Bezahlsystemen festlegen."
1104 1396
1105#: merchants.html.j2:101 1397#: merchants.html.j2:101
1106msgid "Ethical" 1398msgid "Ethical"
@@ -1108,12 +1400,11 @@ msgstr "Ethisch"
1108 1400
1109#: merchants.html.j2:104 1401#: merchants.html.j2:104
1110msgid "" 1402msgid ""
1111"Taler prevents tax evasion and money laundering.\n" 1403"Taler prevents tax evasion and money laundering. Taler's protocols are "
1112"Taler's protocols are efficient and do not use wasteful\n" 1404"efficient and do not use wasteful proof-of-work calculations. Taler "
1113"proof-of-work calculations. Taler encourages\n" 1405"encourages transparency by providing an open standard and free software "
1114"transparency by providing an open standard and free\n" 1406"reference implementations."
1115"software reference implementations.\n" 1407msgstr ""
1116msgstr "Taler verhindert Steuerhinterziehung und Geldwäsche. Die Protokolle von Taler sind effizient und benötigen kein stromfressendes Mining. Taler unterstützt die Transparenz mit einem offenen Standard und freier Software."
1117 1408
1118#: merchants.html.j2:119 1409#: merchants.html.j2:119
1119msgid "Manuals for merchants" 1410msgid "Manuals for merchants"
@@ -1141,29 +1432,26 @@ msgstr "Händler verwenden das Taler-Backend zur Zahlungsabwicklung:"
1141 1432
1142#: merchants.html.j2:147 1433#: merchants.html.j2:147
1143msgid "" 1434msgid ""
1144"The backend <b>signs</b> and <b>stores</b> the\n" 1435"The backend <b>signs</b> and <b>stores</b> the complete terms of offers "
1145"complete terms of offers made by the merchant to customers.\n" 1436"made by the merchant to customers. For this, the merchant's frontend "
1146"For this, the merchant's frontend needs to give the\n" 1437"needs to give the customer's order in a JSON format to the backend."
1147"customer's order in a JSON format to the backend.\n" 1438msgstr ""
1148msgstr "Das Backend signiert und speichert sämtliche Bedingungen der Verträge, die Käufer und Verkäufer vorher vereinbart hatten. Das Händlerfrontend liefert dafür die vom Käufer bestellten Artikelnummern im JSON-Format an das Backend."
1149 1439
1150#: merchants.html.j2:156 1440#: merchants.html.j2:156
1151msgid "" 1441msgid ""
1152"The backend <b>validates</b> payments received from\n" 1442"The backend <b>validates</b> payments received from the wallet and "
1153"the wallet and <b>executes</b> them with the Taler\n" 1443"<b>executes</b> them with the Taler payment service provider (the "
1154"payment service provider (the exchange). For this,\n" 1444"exchange). For this, the merchant's frontend must pass the payment "
1155"the merchant's frontend must pass the payment\n" 1445"request through to the Taler backend and check the HTTP status code that "
1156"request through to the Taler backend and check the\n" 1446"is returned."
1157"HTTP status code that is returned.\n" 1447msgstr ""
1158msgstr "Das Backend validiert die Signaturen aus den Taler-Geldbörsen und sendet sie der Taler-Wechselstube zur Ausführung. Das Händlerfrontend muss dann die Zahlungsaufforderung an das Taler-Backend senden und den zurückgemeldeten HTTP-Statuscode gegenprüfen."
1159 1448
1160#: merchants.html.j2:167 1449#: merchants.html.j2:167
1161msgid "" 1450msgid ""
1162"The backend can <b>list</b> completed transactions\n" 1451"The backend can <b>list</b> completed transactions and <b>map</b> wire "
1163"and <b>map</b> wire transfers to sets of business\n" 1452"transfers to sets of business transactions, including the exact terms of "
1164"transactions, including the exact terms of each\n" 1453"each contract."
1165"contract.\n" 1454msgstr ""
1166msgstr "Das Backend kann die erfolgreich abgewickelten Transaktionen auflisten und die Überweisungen an Girokonten der Geschäftsbanken mit den genauen Bedingungen jedes Kaufvertrags und nach Geschäftsvorfällen geordnet anzeigen."
1167 1455
1168#: press.html.j2:4 1456#: press.html.j2:4
1169msgid "GNU Taler in the Press" 1457msgid "GNU Taler in the Press"
@@ -1384,898 +1672,2262 @@ msgstr "Taxierbare Anonyme Liberale Elektronische Reserven"
1384#~ msgid "Low Fees" 1672#~ msgid "Low Fees"
1385#~ msgstr "" 1673#~ msgstr ""
1386 1674
1387#~ msgid "" 1675#~ msgid " "
1388#~ "\n"
1389#~ " "
1390#~ msgstr "" 1676#~ msgstr ""
1391 1677
1392#~ msgid "" 1678#~ msgid ""
1393#~ "\n" 1679#~ " Taler largely functions like digital"
1394#~ " Taler largely functions like digital cash. You\n" 1680#~ " cash. You withdraw money from your"
1395#~ " withdraw money from your bank account into your\n" 1681#~ " bank account into your electronic "
1396#~ " electronic wallet, and can henceforth spend digital\n" 1682#~ "wallet, and can henceforth spend digital"
1397#~ " cash. The electronic wallet can carry multiple\n" 1683#~ " cash. The electronic wallet can "
1398#~ " currencies.\n" 1684#~ "carry multiple currencies. "
1399#~ " "
1400#~ msgstr "" 1685#~ msgstr ""
1401 1686
1402#~ msgid "" 1687#~ msgid ""
1403#~ "Taler uses modern cryptography, ensuring that there\n" 1688#~ "Taler uses modern cryptography, ensuring "
1404#~ " is no counterfeit. Your digital wallet is safer\n" 1689#~ "that there is no counterfeit. Your "
1405#~ " than your physical wallet. At most, you can lose\n" 1690#~ "digital wallet is safer than your "
1406#~ " its contents because your computer or mobile is\n" 1691#~ "physical wallet. At most, you can "
1407#~ " irreparably damaged or compromised. Unlike a\n" 1692#~ "lose its contents because your computer"
1408#~ " physical wallet, you can make backups to secure\n" 1693#~ " or mobile is irreparably damaged or"
1409#~ " against data loss." 1694#~ " compromised. Unlike a physical wallet,"
1695#~ " you can make backups to secure "
1696#~ "against data loss."
1410#~ msgstr "" 1697#~ msgstr ""
1411 1698
1412#~ msgid "" 1699#~ msgid ""
1413#~ "Your transactions are private, neither the payment\n" 1700#~ "Your transactions are private, neither "
1414#~ " service provider nor merchant needs to learn your\n" 1701#~ "the payment service provider nor "
1415#~ " identity. There is no need to give out credit card\n" 1702#~ "merchant needs to learn your identity."
1416#~ " numbers or other sensitive information. The merchant\n" 1703#~ " There is no need to give out"
1417#~ " will only be able to do exactly the transaction you\n" 1704#~ " credit card numbers or other "
1418#~ " agreed to." 1705#~ "sensitive information. The merchant will "
1706#~ "only be able to do exactly the "
1707#~ "transaction you agreed to."
1419#~ msgstr "" 1708#~ msgstr ""
1420 1709
1421#~ msgid "" 1710#~ msgid ""
1422#~ "You will be able to withdraw money to replenish the\n" 1711#~ "You will be able to withdraw money"
1423#~ " digital coins in your wallet using your credit card\n" 1712#~ " to replenish the digital coins in"
1424#~ " or wire transfers. Afterwards you can pay with\n" 1713#~ " your wallet using your credit card"
1425#~ " one-click using the Taler wallet, which optionally\n" 1714#~ " or wire transfers. Afterwards you "
1426#~ " keeps your transaction history on your computer." 1715#~ "can pay with one-click using the"
1716#~ " Taler wallet, which optionally keeps "
1717#~ "your transaction history on your "
1718#~ "computer."
1427#~ msgstr "" 1719#~ msgstr ""
1428 1720
1429#~ msgid "" 1721#~ msgid ""
1430#~ "Coins in your digital wallet will be of the same\n" 1722#~ "Coins in your digital wallet will "
1431#~ " denomination as the cash in your physical wallet.\n" 1723#~ "be of the same denomination as "
1432#~ " Taler is not a crypto-currency, so you do not have\n" 1724#~ "the cash in your physical wallet. "
1433#~ " to worry about cryto-currency related value\n" 1725#~ "Taler is not a crypto-currency, so"
1434#~ " fluctuations. Banking with Taler is subject to the\n" 1726#~ " you do not have to worry "
1435#~ " usual government protections for financial\n" 1727#~ "about cryto-currency related value "
1436#~ " services." 1728#~ "fluctuations. Banking with Taler is "
1729#~ "subject to the usual government "
1730#~ "protections for financial services."
1437#~ msgstr "" 1731#~ msgstr ""
1438 1732
1439#~ msgid "" 1733#~ msgid ""
1440#~ "\n" 1734#~ " We currently provide a <a "
1441#~ " We currently provide a <a "
1442#~ "href=\"wallet.html\">wallet browser extension</a> " 1735#~ "href=\"wallet.html\">wallet browser extension</a> "
1443#~ "for Chromium, Chrome, Firefox, Opera\n" 1736#~ "for Chromium, Chrome, Firefox, Opera "
1444#~ " and Edge. Wallets for mobile" 1737#~ "and Edge. Wallets for mobile phones "
1445#~ " phones and other platforms will be" 1738#~ "and other platforms will be available"
1446#~ " available in the future.\n" 1739#~ " in the future. "
1447#~ " "
1448#~ msgstr "" 1740#~ msgstr ""
1449 1741
1450#~ msgid "" 1742#~ msgid ""
1451#~ "\n" 1743#~ " You can see how Taler works "
1452#~ " You can see how Taler " 1744#~ "in practice by visiting our <a "
1453#~ "works in practice by visiting our " 1745#~ "href=\"https://demo.taler.net\">demo page</a>. "
1454#~ "<a href=\"https://demo.taler.net\">demo page</a>.\n"
1455#~ " "
1456#~ msgstr "" 1746#~ msgstr ""
1457 1747
1458#~ msgid "" 1748#~ msgid "Customers interact with the Taler system using the Taler wallet:"
1459#~ "Customers interact with the Taler system using\n"
1460#~ " the Taler wallet:"
1461#~ msgstr "" 1749#~ msgstr ""
1462 1750
1463#~ msgid "" 1751#~ msgid ""
1464#~ "To <b>withdraw</b> electronic coins, the customer\n" 1752#~ "To <b>withdraw</b> electronic coins, the "
1465#~ " transfers funds from his bank account to the Taler\n" 1753#~ "customer transfers funds from his bank"
1466#~ " payment service provider (the exchange). The wire\n" 1754#~ " account to the Taler payment "
1467#~ " transfer subject must match a code identifying the\n" 1755#~ "service provider (the exchange). The "
1468#~ " customer's wallet. After the wire transfer is\n" 1756#~ "wire transfer subject must match a "
1469#~ " complete, the wallet will automatically withdraw the\n" 1757#~ "code identifying the customer's wallet. "
1470#~ " coins from the exchange." 1758#~ "After the wire transfer is complete,"
1759#~ " the wallet will automatically withdraw "
1760#~ "the coins from the exchange."
1471#~ msgstr "" 1761#~ msgstr ""
1472 1762
1473#~ msgid "" 1763#~ msgid ""
1474#~ "To <b>spend</b> electronic coins, a merchant must\n" 1764#~ "To <b>spend</b> electronic coins, a "
1475#~ " cause the wallet to display a proposal for some\n" 1765#~ "merchant must cause the wallet to "
1476#~ " purchase. The wallet will ask the customer for\n" 1766#~ "display a proposal for some purchase."
1477#~ " one-click confirmation. Payment is then instant.\n" 1767#~ " The wallet will ask the customer "
1478#~ " Transaction histories and " 1768#~ "for one-click confirmation. Payment is"
1479#~ "digitally signed contracts\n" 1769#~ " then instant. Transaction histories and"
1480#~ " can be preserved by the wallet." 1770#~ " digitally signed contracts can be "
1771#~ "preserved by the wallet."
1481#~ msgstr "" 1772#~ msgstr ""
1482 1773
1483#~ msgid "" 1774#~ msgid ""
1484#~ "The customer can use the wallet to <b>review</b> his\n" 1775#~ "The customer can use the wallet to"
1485#~ " balance. The wallet can contain different\n" 1776#~ " <b>review</b> his balance. The wallet "
1486#~ " currencies, and may be shared across\n" 1777#~ "can contain different currencies, and "
1487#~ " devices. Customers can make" 1778#~ "may be shared across devices. Customers"
1488#~ " backups of the wallet to\n" 1779#~ " can make backups of the wallet "
1489#~ " secure its contents against hardware failures." 1780#~ "to secure its contents against hardware"
1781#~ " failures."
1490#~ msgstr "" 1782#~ msgstr ""
1491 1783
1492#~ msgid "" 1784#~ msgid ""
1493#~ "\n" 1785#~ " An archived, public mailing list "
1494#~ " An archived, public mailing list for GNU Taler is\n" 1786#~ "for GNU Taler is hosted at <a"
1495#~ " hosted at\n" 1787#~ " "
1496#~ " <a "
1497#~ "href=\"https://lists.gnu.org/mailman/listinfo/taler\">https://lists.gnu.org/mailman/listinfo/taler</a>." 1788#~ "href=\"https://lists.gnu.org/mailman/listinfo/taler\">https://lists.gnu.org/mailman/listinfo/taler</a>."
1498#~ " You can send messages to the " 1789#~ " You can send messages to the "
1499#~ "list\n" 1790#~ "list at <a "
1500#~ " at <a href=\"mailto:taler@gnu.org\">taler@gnu.org</a>.\n" 1791#~ "href=\"mailto:taler@gnu.org\">taler@gnu.org</a>. "
1501#~ " "
1502#~ msgstr "" 1792#~ msgstr ""
1503 1793
1504#~ msgid "" 1794#~ msgid ""
1505#~ "\n" 1795#~ " Team members are generally reachable"
1506#~ " Team members are generally reachable at\n" 1796#~ " at <tt>LASTNAME@taler.net</tt>. All of us"
1507#~ " <tt>LASTNAME@taler.net</tt>. All of us\n" 1797#~ " support receiving GnuPG encrypted "
1508#~ " support receiving GnuPG encrypted e-mails.\n" 1798#~ "e-mails. "
1509#~ " "
1510#~ msgstr "" 1799#~ msgstr ""
1511 1800
1512#~ msgid "" 1801#~ msgid ""
1513#~ "\n" 1802#~ " We track open feature requests "
1514#~ " We track open feature requests and bugs in our\n" 1803#~ "and bugs in our <a "
1515#~ " <a href=\"https://gnunet.org/bugs/\">Bug tracker</a>,\n" 1804#~ "href=\"https://gnunet.org/bugs/\">Bug tracker</a>, which"
1516#~ " which is shared with the GNUnet project.\n" 1805#~ " is shared with the GNUnet project."
1517#~ " You can also report bugs or feature requests to the\n" 1806#~ " You can also report bugs or "
1518#~ " mailing list.\n" 1807#~ "feature requests to the mailing list."
1519#~ " " 1808#~ " "
1520#~ msgstr "" 1809#~ msgstr ""
1521 1810
1522#~ msgid "" 1811#~ msgid ""
1523#~ "\n" 1812#~ " For non-technical commercial requests,"
1524#~ " For non-technical commercial requests, please contact\n" 1813#~ " please contact <tt>ceo AT taler.net</tt>."
1525#~ " <tt>ceo AT taler.net</tt>.\n" 1814#~ " "
1526#~ " "
1527#~ msgstr "" 1815#~ msgstr ""
1528 1816
1529#~ msgid "" 1817#~ msgid ""
1530#~ "\n" 1818#~ " GNU Taler is free software "
1531#~ " GNU Taler is free software implementing an open\n" 1819#~ "implementing an open protocol. Anybody "
1532#~ " protocol. Anybody is welcome" 1820#~ "is welcome to integrate our reference"
1533#~ " to integrate our reference\n" 1821#~ " implementation into their applications. "
1534#~ " implementation into their applications. Different\n" 1822#~ "Different components of Taler are being"
1535#~ " components of Taler are being made available under\n" 1823#~ " made available under different licenses."
1536#~ " different licenses. The Affero GPLv3+ is used for the\n" 1824#~ " The Affero GPLv3+ is used for "
1537#~ " exchange, the LGPLv3+ is used for reference code\n" 1825#~ "the exchange, the LGPLv3+ is used "
1538#~ " demonstrating integration with merchant platforms, and\n" 1826#~ "for reference code demonstrating integration"
1539#~ " licenses like GPLv3+ are used for\n" 1827#~ " with merchant platforms, and licenses "
1540#~ " wallets and related customer-facing software. We are\n" 1828#~ "like GPLv3+ are used for wallets "
1541#~ " open for constructive suggestions for maximizing the\n" 1829#~ "and related customer-facing software. We"
1542#~ " adoption of this payment platform.\n" 1830#~ " are open for constructive suggestions "
1543#~ " " 1831#~ "for maximizing the adoption of this "
1832#~ "payment platform. "
1544#~ msgstr "" 1833#~ msgstr ""
1545 1834
1546#~ msgid "" 1835#~ msgid ""
1547#~ "\n" 1836#~ " Taler is designed to work on "
1548#~ " Taler is designed to work on the Internet. To\n" 1837#~ "the Internet. To ensure that Taler "
1549#~ " ensure that Taler payments can work with\n" 1838#~ "payments can work with restrictive "
1550#~ " restrictive network setups, Taler uses a RESTful\n" 1839#~ "network setups, Taler uses a RESTful"
1551#~ " protocol over HTTP or HTTPS. Taler's security does\n" 1840#~ " protocol over HTTP or HTTPS. "
1552#~ " not depend upon the use of HTTPS, but obviously\n" 1841#~ "Taler's security does not depend upon"
1553#~ " merchants may choose to offer HTTPS for consistency\n" 1842#~ " the use of HTTPS, but obviously "
1554#~ " and because it generally is better for privacy\n" 1843#~ "merchants may choose to offer HTTPS "
1555#~ " compared to HTTP. Taler uses JSON to encode\n" 1844#~ "for consistency and because it "
1556#~ " structure data, making it easy to integrate Taler\n" 1845#~ "generally is better for privacy "
1557#~ " with existing Web applications. Taler's protocol\n" 1846#~ "compared to HTTP. Taler uses JSON "
1558#~ " is documented in\n" 1847#~ "to encode structure data, making it "
1559#~ " detail at <a " 1848#~ "easy to integrate Taler with existing"
1560#~ "href=\"https://api.taler.net/\">api.taler.net</a>.\n" 1849#~ " Web applications. Taler's protocol is "
1561#~ " " 1850#~ "documented in detail at <a "
1851#~ "href=\"https://api.taler.net/\">api.taler.net</a>. "
1562#~ msgstr "" 1852#~ msgstr ""
1563 1853
1564#~ msgid "" 1854#~ msgid ""
1565#~ "\n" 1855#~ " Taler is currently primarily developed"
1566#~ " Taler is currently primarily developed by a\n" 1856#~ " by a research team at <a "
1567#~ " research team at <a " 1857#~ "href=\"http://www.inria.fr/\">Inria</a> and <a "
1568#~ "href=\"http://www.inria.fr/\">Inria</a> and\n" 1858#~ "href=\"https://gnunet.org/\">GNUnet</a>. However, "
1569#~ " <a href=\"https://gnunet.org/\">GNUnet</a>. However,\n" 1859#~ "contributions from anyone are welcome. "
1570#~ " contributions from anyone are welcome. Our Git\n" 1860#~ "Our Git repositories can be cloned "
1571#~ " repositories can be cloned using the Git and HTTP\n" 1861#~ "using the Git and HTTP access "
1572#~ " access methods against <tt>git.taler.net</tt> with\n" 1862#~ "methods against <tt>git.taler.net</tt> with "
1573#~ " the name of the respective repository. A list of\n" 1863#~ "the name of the respective repository."
1574#~ " repositories can be found in\n" 1864#~ " A list of repositories can be "
1575#~ " our <a href=\"https://git.taler.net/\">GitWeb</a>.\n" 1865#~ "found in our <a "
1576#~ " " 1866#~ "href=\"https://git.taler.net/\">GitWeb</a>. "
1577#~ msgstr "" 1867#~ msgstr ""
1578 1868
1579#~ msgid "" 1869#~ msgid ""
1580#~ "\n" 1870#~ " In addition to this website, the"
1581#~ " In addition to this website, the <a\n" 1871#~ " <a href=\"https://git.taler.net/\">documented "
1582#~ " href=\"https://git.taler.net/\">documented " 1872#~ "code</a> and the <a "
1583#~ "code</a> and\n" 1873#~ "href=\"https://api.taler.net/\">API documentation</a>. "
1584#~ " the <a href=\"https://api.taler.net/\">API\n" 1874#~ "Technical papers can be found in "
1585#~ " documentation</a>. Technical papers can be found in\n" 1875#~ "our <a href=\"bibliography.html\">bibliography</a>. \n"
1586#~ " our <a href=\"bibliography.html\">bibliography</a>.\n"
1587#~ " "
1588#~ msgstr "" 1876#~ msgstr ""
1589 1877
1590#~ msgid "" 1878#~ msgid ""
1591#~ "\n" 1879#~ " We have a mailing list for "
1592#~ " We have a mailing list for developer discussions.\n" 1880#~ "developer discussions. You can subscribe "
1593#~ " You can subscribe to or read the list archive at\n" 1881#~ "to or read the list archive at"
1594#~ " <a " 1882#~ " <a "
1595#~ "href=\"http://lists.gnu.org/mailman/listinfo/taler\">http://lists.gnu.org/mailman/listinfo/taler</a>." 1883#~ "href=\"http://lists.gnu.org/mailman/listinfo/taler\">http://lists.gnu.org/mailman/listinfo/taler</a>."
1596#~ "\n" 1884#~ " "
1597#~ " " 1885#~ msgstr ""
1598#~ msgstr "" 1886
1599 1887#~ msgid ""
1600#~ msgid "" 1888#~ " We have <a "
1601#~ "\n" 1889#~ "href=\"https://buildbot.net/\">Buildbot</a> automation "
1602#~ " We have <a href=\"https://buildbot.net/\">Buildbot</a>\n" 1890#~ "tests to detect regressions and check"
1603#~ " automation tests to detect regressions and check for\n" 1891#~ " for portability at <a "
1604#~ " portability at <a\n" 1892#~ "href=\"https://buildbot.taler.net/\">buildbot.taler.net</a>. "
1605#~ " " 1893#~ msgstr ""
1606#~ "href=\"https://buildbot.taler.net/\">buildbot.taler.net</a>.\n" 1894
1607#~ " " 1895#~ msgid ""
1608#~ msgstr "" 1896#~ " We use <a "
1609 1897#~ "href=\"http://ltp.sourceforge.net/coverage/lcov.php\">LCOV</a> "
1610#~ msgid "" 1898#~ "to analyze the code coverage of "
1611#~ "\n" 1899#~ "our tests, the results are available"
1612#~ " We use\n" 1900#~ " at <a "
1613#~ " <a " 1901#~ "href=\"https://lcov.taler.net/\">lcov.taler.net</a>. "
1614#~ "href=\"http://ltp.sourceforge.net/coverage/lcov.php\">LCOV</a>\n" 1902#~ msgstr ""
1615#~ " to analyze the code coverage of our tests, the\n" 1903
1616#~ " results are available\n" 1904#~ msgid ""
1617#~ " at <a " 1905#~ " We use <a "
1618#~ "href=\"https://lcov.taler.net/\">lcov.taler.net</a>.\n" 1906#~ "href=\"https://gnunet.org/gauger\">Gauger</a> for "
1619#~ " " 1907#~ "performance regression analysis of the "
1620#~ msgstr "" 1908#~ "exchange backend at <a "
1621 1909#~ "href=\"https://gauger.taler.net/\">gauger.taler.net</a>. "
1622#~ msgid "" 1910#~ msgstr ""
1623#~ "\n" 1911
1624#~ " We\n" 1912#~ msgid ""
1625#~ " use <a href=\"https://gnunet.org/gauger\">Gauger</a>\n" 1913#~ " The Taler system consists of "
1626#~ " for performance regression analysis of the exchange\n" 1914#~ "protocols executed among a number of"
1627#~ " backend\n" 1915#~ " actors as illustrated in the "
1628#~ " at <a " 1916#~ "illustration on the right. Typical "
1629#~ "href=\"https://gauger.taler.net/\">gauger.taler.net</a>.\n" 1917#~ "transactions involve the following steps: \n"
1630#~ " " 1918#~ msgstr ""
1631#~ msgstr "" 1919
1632 1920#~ msgid ""
1633#~ msgid "" 1921#~ " A customer instructs his <b>bank</b>"
1634#~ "\n" 1922#~ " to transfer funds from his account"
1635#~ " The Taler system consists of protocols executed among\n" 1923#~ " to the Taler exchange (top left)."
1636#~ " a number of actors as " 1924#~ " In the subject of the transaction,"
1637#~ "illustrated in the illustration on the" 1925#~ " he includes an authentication token "
1638#~ " right.\n" 1926#~ "from his electronic <b>wallet</b>. In "
1639#~ " Typical transactions involve the following steps:\n" 1927#~ "Taler terminology, the customer creates "
1640#~ " " 1928#~ "a reserve at the exchange. "
1641#~ msgstr "" 1929#~ msgstr ""
1642 1930
1643#~ msgid "" 1931#~ msgid ""
1644#~ "\n" 1932#~ " Once the exchange has received "
1645#~ " A customer instructs his <b>bank</b> to\n" 1933#~ "the wire transfer, it allows the "
1646#~ " transfer funds from his account to the Taler\n" 1934#~ "customer's electronic wallet to "
1647#~ " exchange (top left). In the subject of the\n" 1935#~ "<b>withdraw</b> electronic coins. The "
1648#~ " transaction, he includes an authentication\n" 1936#~ "electronic coins are digital representations"
1649#~ " token from his electronic <b>wallet</b>. In\n" 1937#~ " of the original currency from the"
1650#~ " Taler terminology, the customer creates a\n" 1938#~ " transfer. It is important to note"
1651#~ " reserve at the exchange.\n" 1939#~ " that the exchange does not learn"
1652#~ " " 1940#~ " the &quot;serial numbers&quot; of the "
1653#~ msgstr "" 1941#~ "coins created in this process, so "
1654 1942#~ "it cannot tell later which customer "
1655#~ msgid "" 1943#~ "purchased what at which merchant. The"
1656#~ "\n" 1944#~ " use of Taler does not change "
1657#~ " Once the exchange has received the wire\n" 1945#~ "the currency or the total value "
1658#~ " transfer, it allows the customer's electronic\n" 1946#~ "of the funds (except for fees "
1659#~ " wallet to <b>withdraw</b> electronic coins.\n" 1947#~ "which the exchange may charge for "
1660#~ " The electronic coins are digital\n" 1948#~ "the service). "
1661#~ " representations of the original currency from\n" 1949#~ msgstr ""
1662#~ " the transfer. It is important to note that the\n" 1950
1663#~ " exchange does not learn the &quot;serial\n" 1951#~ msgid ""
1664#~ " numbers&quot; of the coins created in this\n" 1952#~ " Once the customer has the "
1665#~ " process, so it cannot tell later which customer\n" 1953#~ "digital coins in his wallet, the "
1666#~ " purchased what at which merchant. The use of\n" 1954#~ "wallet can be used to <b>spend</b> "
1667#~ " Taler does not change the currency or the total\n" 1955#~ "the coins with merchant portals that "
1668#~ " value of the funds (except for fees which the\n" 1956#~ "support the Taler payment system and"
1669#~ " exchange may charge for the service).\n" 1957#~ " accept the respective exchange as a"
1670#~ " " 1958#~ " business partner (bottom arrow). This "
1671#~ msgstr "" 1959#~ "creates a digital contract signed by"
1672 1960#~ " the customer's coins and the "
1673#~ msgid "" 1961#~ "merchant. If necessary, the customer can"
1674#~ "\n" 1962#~ " later use this digitally signed "
1675#~ " Once the customer has the digital coins in his\n" 1963#~ "contract in a court of law to "
1676#~ " wallet, the wallet can be used to <b>spend</b>\n" 1964#~ "prove the exact terms of the "
1677#~ " the coins with merchant portals that support\n" 1965#~ "contract and that he paid the "
1678#~ " the Taler payment system and accept the\n" 1966#~ "respective amount. The customer does "
1679#~ " respective exchange as a business partner\n" 1967#~ "not learn the banking details of "
1680#~ " (bottom arrow). This creates a digital contract\n" 1968#~ "the merchant, and Taler does not "
1681#~ " signed by the customer's coins and the\n" 1969#~ "require the merchant to learn the "
1682#~ " merchant. If necessary, the customer can later\n" 1970#~ "identity of the customer. Naturally, "
1683#~ " use this digitally signed contract in a court\n" 1971#~ "the customer can spend any fraction "
1684#~ " of law to prove the exact terms of the contract\n" 1972#~ "of his digital coins (the system "
1685#~ " and that he paid the respective amount. The\n" 1973#~ "takes care of customers getting "
1686#~ " customer does not learn the banking details of\n" 1974#~ "change). "
1687#~ " the merchant, and Taler does not require the\n" 1975#~ msgstr ""
1688#~ " merchant to learn the identity of the\n" 1976
1689#~ " customer. Naturally, the customer can spend any\n" 1977#~ msgid ""
1690#~ " fraction of his digital coins (the system takes\n" 1978#~ " Merchants receiving digital coins "
1691#~ " care of customers getting change).\n" 1979#~ "<b>deposit</b> the respective claims that "
1692#~ " " 1980#~ "resulted from the contract signing with"
1693#~ msgstr "" 1981#~ " the customer at the exchange to "
1694 1982#~ "redeem the coins. The deposit step "
1695#~ msgid "" 1983#~ "does not reveal the details of "
1696#~ "\n" 1984#~ "the contract between the customer and"
1697#~ " Merchants receiving digital\n" 1985#~ " the merchant or the identity of "
1698#~ " coins <b>deposit</b> the respective claims\n" 1986#~ "the customer to the exchange in "
1699#~ " that resulted from the contract signing with\n" 1987#~ "any way. However, the exchange does "
1700#~ " the customer at the exchange to redeem the\n" 1988#~ "learn the identity of the merchant "
1701#~ " coins. The deposit step does not reveal the\n" 1989#~ "via the provided bank routing "
1702#~ " details of the contract between the customer\n" 1990#~ "information. The merchant can, for "
1703#~ " and the merchant or the identity of the\n" 1991#~ "example when compelled by the state "
1704#~ " customer to the exchange in any way. However,\n" 1992#~ "for taxation, provide information linking "
1705#~ " the exchange does learn the identity of the\n" 1993#~ "the individual deposit to the "
1706#~ " merchant via the provided bank routing\n" 1994#~ "respective contract signed by the "
1707#~ " information. The merchant can, for example\n" 1995#~ "customer. Thus, the exchange's database "
1708#~ " when compelled by the state for taxation,\n" 1996#~ "allows the state to enforce that "
1709#~ " provide information linking the individual\n" 1997#~ "merchants pay applicable taxes (and do"
1710#~ " deposit to the respective contract signed by\n" 1998#~ " not engage in illegal contracts). "
1711#~ " the customer. Thus, the exchange's database\n" 1999#~ msgstr ""
1712#~ " allows the state to enforce that merchants pay\n" 2000
1713#~ " applicable taxes (and do not engage in illegal\n" 2001#~ msgid ""
1714#~ " contracts).\n" 2002#~ " Finally, the exchange transfers funds"
1715#~ " " 2003#~ " corresponding to the digital coins "
1716#~ msgstr "" 2004#~ "redeemed by the merchants to the "
1717 2005#~ "merchant's <b>bank</b> account. The exchange"
1718#~ msgid "" 2006#~ " may combine multiple small transactions"
1719#~ "\n" 2007#~ " into one larger bank transfer. The"
1720#~ " Finally, the exchange transfers funds\n" 2008#~ " merchant can query the exchange "
1721#~ " corresponding to the digital coins redeemed by\n" 2009#~ "about the relationship between the bank"
1722#~ " the merchants to the merchant's <b>bank</b>\n" 2010#~ " transfers and the individual claims "
1723#~ " account. The exchange may combine multiple\n" 2011#~ "that were deposited. "
1724#~ " small transactions into one larger bank\n" 2012#~ msgstr ""
1725#~ " transfer. The merchant can query the exchange\n" 2013
1726#~ " about the relationship between the bank\n" 2014#~ msgid ""
1727#~ " transfers and the individual claims that were\n" 2015#~ " Most importantly, the exchange keeps"
1728#~ " deposited.\n" 2016#~ " cryptographic proofs that allow it "
1729#~ " " 2017#~ "to demonstrate that it is operating "
1730#~ msgstr "" 2018#~ "correctly to third parties. The system"
1731 2019#~ " requires an external <b>auditor</b>, such"
1732#~ msgid "" 2020#~ " as a government-appointed financial "
1733#~ "\n" 2021#~ "regulatory body, to frequently verify "
1734#~ " Most importantly, the exchange keeps\n" 2022#~ "the exchange's databases and check that"
1735#~ " cryptographic proofs that allow it to\n" 2023#~ " its bank balance matches the total"
1736#~ " demonstrate that it is operating correctly to\n" 2024#~ " value of the remaining coins in "
1737#~ " third parties. The system requires an\n" 2025#~ "circulation. "
1738#~ " external <b>auditor</b>, such as a\n" 2026#~ msgstr ""
1739#~ " government-appointed financial regulatory body,\n" 2027
1740#~ " to frequently verify the exchange's databases\n" 2028#~ msgid ""
1741#~ " and check that its bank balance matches the\n" 2029#~ " Without the auditor, the exchange "
1742#~ " total value of the remaining coins in\n" 2030#~ "operators could embezzle funds they are"
1743#~ " circulation.\n" 2031#~ " holding in reserve. Customers and "
1744#~ " " 2032#~ "merchants cannot cheat each other or"
1745#~ msgstr "" 2033#~ " the exchange. If any party's "
1746 2034#~ "computers are compromised, the financial "
1747#~ msgid "" 2035#~ "damage is limited to the respective "
1748#~ "\n" 2036#~ "party and proportional to the funds "
1749#~ " Without the auditor, the exchange operators\n" 2037#~ "they have in circulation during the "
1750#~ " could embezzle funds they are holding in\n" 2038#~ "period of the compromise. "
1751#~ " reserve. Customers and merchants cannot cheat\n" 2039#~ msgstr ""
1752#~ " each other or the exchange. If any party's\n" 2040
1753#~ " computers are compromised, the financial damage\n" 2041#~ msgid ""
1754#~ " is limited to the respective party and\n" 2042#~ " <p>Taler does not use any "
1755#~ " proportional to the funds they have in\n" 2043#~ "Blockchain technology or Bitcoin directly. "
1756#~ " circulation during the period of the\n"
1757#~ " compromise.\n"
1758#~ " "
1759#~ msgstr ""
1760
1761#~ msgid ""
1762#~ "\n"
1763#~ "<p>Taler does not use any Blockchain technology or Bitcoin directly.\n"
1764#~ "Taler is not based on proof-of-" 2044#~ "Taler is not based on proof-of-"
1765#~ "work or any other distributed consensus" 2045#~ "work or any other distributed consensus"
1766#~ "\n" 2046#~ " mechanism. Instead Taler is based on"
1767#~ "mechanism. Instead Taler is based on blind signatures.</p>\n" 2047#~ " blind signatures.</p> "
1768#~ msgstr "" 2048#~ msgstr ""
1769 2049
1770#~ msgid "" 2050#~ msgid ""
1771#~ "\n" 2051#~ " <p>It would be possible, however, "
1772#~ "<p>It would be possible, however, to withdraw coins denominated in\n" 2052#~ "to withdraw coins denominated in Bitcoin"
1773#~ "Bitcoin into a Taler wallet (with an appropriate exchange), which\n" 2053#~ " into a Taler wallet (with an "
1774#~ "would give some benefits over plain Bitcoin, such as instant\n" 2054#~ "appropriate exchange), which would give "
1775#~ "confirmation times.</p>\n" 2055#~ "some benefits over plain Bitcoin, such"
2056#~ " as instant confirmation times.</p> "
1776#~ msgstr "" 2057#~ msgstr ""
1777 2058
1778#~ msgid "" 2059#~ msgid ""
1779#~ "\n" 2060#~ " <p>Your wallet stores digital coins "
1780#~ "<p>Your wallet stores digital coins and thus ultimately your computer\n" 2061#~ "and thus ultimately your computer holds"
1781#~ "holds your balance. The exchange keeps funds matching all unspent\n" 2062#~ " your balance. The exchange keeps "
1782#~ "coins in an escrow bank account.</p>\n" 2063#~ "funds matching all unspent coins in "
2064#~ "an escrow bank account.</p> "
1783#~ msgstr "" 2065#~ msgstr ""
1784 2066
1785#~ msgid "" 2067#~ msgid ""
1786#~ "\n" 2068#~ " <p>Since the digital coins of "
1787#~ "<p>Since the digital coins of value " 2069#~ "value in your wallet are anonymized, "
1788#~ "in your wallet are anonymized, the\n" 2070#~ "the exchange can not assist you in"
1789#~ "" 2071#~ " recovering a lost or stolen wallet."
1790#~ "exchange can not assist you in recovering a lost or stolen wallet.\n" 2072#~ " Just like with a physical wallet "
1791#~ "Just like with a physical wallet for cash, you are responsible for\n" 2073#~ "for cash, you are responsible for "
1792#~ "keeping it safe.</p>\n" 2074#~ "keeping it safe.</p> "
1793#~ msgstr "" 2075#~ msgstr ""
1794 2076
1795#~ msgid "" 2077#~ msgid ""
1796#~ "\n" 2078#~ " <p>The risk of losing a wallet"
1797#~ "<p>The risk of losing a wallet can be mitigated by making backups or\n" 2079#~ " can be mitigated by making backups"
1798#~ "keeping the balance reasonably low.</p>\n" 2080#~ " or keeping the balance reasonably "
2081#~ "low.</p> "
1799#~ msgstr "" 2082#~ msgstr ""
1800 2083
1801#~ msgid "" 2084#~ msgid ""
1802#~ "\n" 2085#~ " <p>In case of a compromise of "
1803#~ "<p>In case of a compromise of one of your devices, an attacker can\n" 2086#~ "one of your devices, an attacker "
1804#~ "spend coins from your wallet. Checking your balance might reveal\n" 2087#~ "can spend coins from your wallet. "
1805#~ "to you that your device has been compromised.</p>\n" 2088#~ "Checking your balance might reveal to"
2089#~ " you that your device has been "
2090#~ "compromised.</p> "
1806#~ msgstr "" 2091#~ msgstr ""
1807 2092
1808#~ msgid "" 2093#~ msgid ""
1809#~ "\n" 2094#~ " <p>If your friend provides goods "
1810#~ "<p>If your friend provides goods or " 2095#~ "or services for you in exchange "
1811#~ "services for you in exchange for a" 2096#~ "for a payment, they can easily set"
1812#~ "\n" 2097#~ " up a Taler merchant and receive "
1813#~ "payment, they can easily set up a Taler merchant and receive the\n" 2098#~ "the payment in their bank account.</p>"
1814#~ "payment in their bank account.</p>\n" 2099#~ " "
1815#~ msgstr "" 2100#~ msgstr ""
1816 2101
1817#~ msgid "" 2102#~ msgid ""
1818#~ "\n" 2103#~ " <p>Future versions of the Taler "
1819#~ "<p>Future versions of the Taler wallet may allow exchanging coins\n" 2104#~ "wallet may allow exchanging coins among"
1820#~ "among friends directly as well.</p>\n" 2105#~ " friends directly as well.</p> "
1821#~ msgstr "" 2106#~ msgstr ""
1822 2107
1823#~ msgid "" 2108#~ msgid ""
1824#~ "\n" 2109#~ " <p>Taler wallets can store digital "
1825#~ "<p>Taler wallets can store digital coins corresponding to multiple\n" 2110#~ "coins corresponding to multiple different "
1826#~ "different currencies such as the Euro, US Dollars or Bitcoins.</p>\n" 2111#~ "currencies such as the Euro, US "
2112#~ "Dollars or Bitcoins.</p> "
2113#~ msgstr ""
2114
2115#~ msgid " <p>Taler currently does not offer conversion between currencies.</p> "
1827#~ msgstr "" 2116#~ msgstr ""
1828 2117
1829#~ msgid "" 2118#~ msgid ""
1830#~ "\n" 2119#~ " <p>Your wallet stores digital coins"
1831#~ "<p>Taler currently does not offer conversion between currencies.</p>\n" 2120#~ " that are <a "
2121#~ "href=\"https://en.wikipedia.org/wiki/Blind_signature\">blindly "
2122#~ "signed</a> by an exchange. The use "
2123#~ "of a blind signature protects your "
2124#~ "privacy as it prevents the exchange "
2125#~ "from knowing which coin it signed "
2126#~ "for which customer.</p> "
1832#~ msgstr "" 2127#~ msgstr ""
1833 2128
1834#~ msgid "" 2129#~ msgid ""
1835#~ "\n" 2130#~ " Taler provides accountability to "
1836#~ "\n" 2131#~ "ensure business operate legally, while "
1837#~ "<p>Your wallet stores digital coins that are <a\n" 2132#~ "also respecting civil liberties of "
1838#~ "href=\"https://en.wikipedia.org/wiki/Blind_signature\">blindly\n" 2133#~ "citizens. Taler is a payment system "
1839#~ "signed</a> by an exchange. The use " 2134#~ "based on open standards and free "
1840#~ "of a blind signature protects your\n" 2135#~ "software. Taler needs governments as "
1841#~ "" 2136#~ "they set a financial framework and "
1842#~ "privacy as it prevents the exchange from knowing which coin it signed\n" 2137#~ "act as trusted regulators. Taler "
1843#~ "for which customer.</p>\n" 2138#~ "contributes to digital sovereignty in "
1844#~ "\n" 2139#~ "the critical financial infrastructure. "
1845#~ msgstr "" 2140#~ msgstr ""
1846 2141
1847#~ msgid "" 2142#~ msgid ""
1848#~ "\n" 2143#~ " Taler was built with the goal"
1849#~ " Taler provides accountability to ensure business operate\n" 2144#~ " of fighting corruption and supporting "
1850#~ " legally, while also respecting civil liberties of\n" 2145#~ "taxation. With Taler, the receiver of"
1851#~ " citizens. Taler is a payment system based on\n" 2146#~ " any form of payment is easily "
1852#~ " open standards and free software. Taler needs\n" 2147#~ "identified by the government, and the"
1853#~ " governments as they set a financial framework and act as\n" 2148#~ " merchant can be compelled to provide"
1854#~ " trusted regulators. Taler contributes to digital\n" 2149#~ " the contract that was accepted by"
1855#~ " sovereignty in the critical financial infrastructure.\n" 2150#~ " the customer. Governments can use "
1856#~ " " 2151#~ "this data to tax businesses and "
2152#~ "individuals based on their income, "
2153#~ "making tax evasion and black markets "
2154#~ "less viable. "
1857#~ msgstr "" 2155#~ msgstr ""
1858 2156
1859#~ msgid "" 2157#~ msgid ""
1860#~ "\n" 2158#~ " Thus, despite offering anonymity for"
1861#~ " Taler was built with the goal of fighting corruption and\n" 2159#~ " citizens spending digital cash to "
1862#~ " supporting taxation. With Taler, the receiver of any\n" 2160#~ "buy goods and services, Taler also "
1863#~ " form of payment is easily identified by the government,\n" 2161#~ "ensures that the state can observe "
1864#~ " and the merchant can be " 2162#~ "incoming funds. This can be used "
1865#~ "compelled to provide the contract\n" 2163#~ "to ensure businesses engage only in "
1866#~ " that was accepted by the customer. Governments can use\n" 2164#~ "legal activities, and do not evade "
1867#~ " this data to tax businesses and individuals based on\n" 2165#~ "income tax, sales tax or value-"
1868#~ " their income, making tax evasion and black markets less\n" 2166#~ "added tax. However, this observational "
1869#~ " viable.\n" 2167#~ "capability does not extend to the "
1870#~ " " 2168#~ "immediate personal domain. In particular, "
2169#~ "monitoring does not cover shared access"
2170#~ " to funds with trusted friends and"
2171#~ " family, or synchronizing wallets across"
2172#~ " multiple devices. "
1871#~ msgstr "" 2173#~ msgstr ""
1872 2174
1873#~ msgid "" 2175#~ msgid ""
1874#~ "\n" 2176#~ " Taler's payments are cryptographically "
1875#~ " Thus, despite offering anonymity for citizens spending\n" 2177#~ "secured. Thus, customers, merchants and "
1876#~ " digital cash to buy goods and services, Taler also\n" 2178#~ "the Taler payment service provider (the"
1877#~ " ensures that the state can observe incoming funds. This\n" 2179#~ " exchange) can mathematically demonstrate "
1878#~ " can be used to ensure businesses engage only in legal\n" 2180#~ "their lawful behavior in court in "
1879#~ " activities, and do not evade income tax, sales tax or\n" 2181#~ "case of disputes. Financial damages are"
1880#~ " value-added tax. However, this observational capability\n" 2182#~ " strictly limited, improving economic "
1881#~ " does not extend to the immediate personal domain. In\n" 2183#~ "security for individuals, merchants, the "
1882#~ " particular, monitoring does not cover shared access to\n" 2184#~ "exchange and the state. "
1883#~ " funds with trusted friends and family, or synchronizing\n"
1884#~ " wallets across multiple devices.\n"
1885#~ " "
1886#~ msgstr "" 2185#~ msgstr ""
1887 2186
1888#~ msgid "" 2187#~ msgid ""
1889#~ "\n" 2188#~ " As a payment service provider, "
1890#~ " Taler's payments are cryptographically secured. Thus,\n" 2189#~ "the Taler exchange is subject to "
1891#~ " customers, merchants and the " 2190#~ "financial regulation. Financial regulation and"
1892#~ "Taler payment service provider\n" 2191#~ " regular audits are critical to "
1893#~ " (the exchange) can mathematically\n" 2192#~ "establish trust. In particular, the "
1894#~ " demonstrate their lawful behavior in court in case of\n" 2193#~ "Taler design mandates the existence of"
1895#~ " disputes. Financial damages are strictly limited,\n" 2194#~ " an independent auditor who checks "
1896#~ " improving economic security for individuals, merchants,\n" 2195#~ "cryptographic proofs that accumulate at "
1897#~ " the exchange and the state.\n" 2196#~ "the exchange to ensure that the "
1898#~ " " 2197#~ "escrow account is managed honestly. "
2198#~ "This ensures that the exchange does "
2199#~ "not threaten the economy due to "
2200#~ "fraud. "
1899#~ msgstr "" 2201#~ msgstr ""
1900 2202
1901#~ msgid "" 2203#~ msgid ""
1902#~ "\n" 2204#~ " Taler is free software implementing"
1903#~ " As a payment service provider, the Taler exchange is\n" 2205#~ " an open protocol standard. Thus, "
1904#~ " subject to financial regulation." 2206#~ "Taler will enable competition and avoid"
1905#~ " Financial regulation and\n" 2207#~ " the monopolization of payment systems "
1906#~ " regular audits are critical to establish trust. In\n" 2208#~ "that threatens global political and "
1907#~ " particular, the Taler design " 2209#~ "financial stability today. "
1908#~ "mandates the existence of an\n"
1909#~ " independent auditor who checks cryptographic proofs that\n"
1910#~ " accumulate at the exchange to ensure that the escrow\n"
1911#~ " account is managed honestly. This ensures that the\n"
1912#~ " exchange does not threaten the economy due to fraud.\n"
1913#~ " "
1914#~ msgstr "" 2210#~ msgstr ""
1915 2211
1916#~ msgid "" 2212#~ msgid ""
1917#~ "\n" 2213#~ " Taler has an efficient design. "
1918#~ " Taler is free software implementing an open protocol\n" 2214#~ "Unlike Blockchain-based payment systems, "
1919#~ " standard. Thus, Taler will enable competition and avoid\n" 2215#~ "such as Bitcoin, Taler will not "
1920#~ " the monopolization of payment systems that threatens\n" 2216#~ "threaten the availability of national "
1921#~ " global political and financial stability today.\n" 2217#~ "electric grids or (significantly) contribute"
1922#~ " " 2218#~ " to environmental pollution. "
1923#~ msgstr "" 2219#~ msgstr ""
1924 2220
1925#~ msgid "" 2221#~ msgid ""
1926#~ "\n" 2222#~ " Taler assumes governments can observe"
1927#~ " Taler has an efficient design. Unlike\n" 2223#~ " traditional wire transfers entering and"
1928#~ " Blockchain-based payment systems, such as Bitcoin,\n" 2224#~ " leaving the Taler payment system. "
1929#~ " Taler will not threaten the availability of\n" 2225#~ "Starting with the wire transfers, "
1930#~ " national electric grids or (significantly)\n" 2226#~ "governments can obtain: "
1931#~ " contribute to environmental pollution.\n"
1932#~ " "
1933#~ msgstr "" 2227#~ msgstr ""
1934 2228
1935#~ msgid "" 2229#~ msgid ""
1936#~ "\n" 2230#~ " The total amount of digital "
1937#~ " Taler assumes governments can " 2231#~ "currency withdrawn by a customer. The"
1938#~ "observe traditional wire transfers\n" 2232#~ " government can impose limits on how"
1939#~ " entering and leaving the " 2233#~ " much digital cash a customer can"
1940#~ "Taler payment system. Starting with the" 2234#~ " withdraw within a given time frame."
1941#~ "\n" 2235#~ " "
1942#~ " wire transfers, governments can obtain:\n" 2236#~ msgstr ""
1943#~ " " 2237
2238#~ msgid " The income received by any merchant via the Taler system. "
1944#~ msgstr "" 2239#~ msgstr ""
1945 2240
1946#~ msgid "" 2241#~ msgid ""
1947#~ "\n" 2242#~ " The exact details of the "
1948#~ " The total amount of digital currency withdrawn by a\n" 2243#~ "underlying contract that was signed "
1949#~ " customer. The government can" 2244#~ "between customer and merchant. However, "
1950#~ " impose limits on how much\n" 2245#~ "this information would typically not "
1951#~ " digital cash a customer can withdraw within a\n" 2246#~ "include the identity of the customer."
1952#~ " given time frame.\n" 2247#~ " "
1953#~ " "
1954#~ msgstr "" 2248#~ msgstr ""
1955 2249
1956#~ msgid "" 2250#~ msgid ""
1957#~ "\n" 2251#~ " The amounts of digital coins "
1958#~ " The income received by any merchant via the Taler\n" 2252#~ "legitimately withdrawn by customers from "
1959#~ " system.\n" 2253#~ "the exchange, the value of non-"
1960#~ " " 2254#~ "redeemed digital coins in customer's "
2255#~ "wallets, the value and corresponding "
2256#~ "wire details of deposit operations "
2257#~ "performed by merchants with the "
2258#~ "exchange, and the income of the "
2259#~ "exchange from transaction fees. "
1961#~ msgstr "" 2260#~ msgstr ""
1962 2261
1963#~ msgid "" 2262#~ msgid ""
1964#~ "\n" 2263#~ " GNU Taler is an electronic "
1965#~ "\n" 2264#~ "payment system under development at <a"
1966#~ " The exact details of the underlying contract that was\n" 2265#~ " href=\"http://www.inria.fr/\">Inria</a>. We expect "
1967#~ " signed between customer and merchant. However, this\n" 2266#~ "to make it operational in 2017. "
1968#~ " information would typically not include the identity\n" 2267#~ "You can learn about Taler on this"
1969#~ " of the customer.\n" 2268#~ " website, try the <a "
1970#~ " " 2269#~ "href=\"https://demo.taler.net\">demo</a> and look at"
2270#~ " our <a href=\"https://docs.taler.net\">developer</a>"
2271#~ " and <a href=\"https://api.taler.net\">API</a> "
2272#~ "documentation. "
1971#~ msgstr "" 2273#~ msgstr ""
1972 2274
1973#~ msgid "" 2275#~ msgid ""
1974#~ "\n" 2276#~ " Taler is easy to integrate with"
1975#~ " The amounts of digital coins legitimately withdrawn\n" 2277#~ " existing Web applications. Payments are"
1976#~ " by customers from the exchange, the value of\n" 2278#~ " cryptographically secured and are "
1977#~ " non-redeemed digital coins" 2279#~ "confirmed within milliseconds with extremely"
1978#~ " in customer's wallets, the\n" 2280#~ " low transaction costs. "
1979#~ " value and corresponding wire details of deposit\n"
1980#~ " operations performed by merchants with the exchange,\n"
1981#~ " and the income of the"
1982#~ " exchange from transaction fees.\n"
1983#~ " "
1984#~ msgstr "" 2281#~ msgstr ""
1985 2282
1986#~ msgid "" 2283#~ msgid ""
1987#~ "\n" 2284#~ " Taler does not introduce a new"
1988#~ " GNU Taler is an electronic payment system under development at\n" 2285#~ " currency. Taler uses a digital "
1989#~ " <a href=\"http://www.inria.fr/\">Inria</a>. " 2286#~ "wallet storing coins and payment service"
1990#~ "We expect to make it\n" 2287#~ " providers with escrow accounts in "
1991#~ " operational in 2017. You can " 2288#~ "existing currencies. Thus, Taler's "
1992#~ "learn about Taler on this website,\n" 2289#~ "cryptographic coins correspond to existing"
1993#~ "" 2290#~ " currencies, such as US Dollars, "
1994#~ " try the <a href=\"https://demo.taler.net\">demo</a> and look at\n" 2291#~ "Euros or even Bitcoins. "
1995#~ " our <a href=\"https://docs.taler.net\">developer</a> and <a\n"
1996#~ " href=\"https://api.taler.net\">API</a> documentation.\n"
1997#~ " "
1998#~ msgstr "" 2292#~ msgstr ""
1999 2293
2000#~ msgid "" 2294#~ msgid ""
2001#~ "\n" 2295#~ " By design Taler does not suffer"
2002#~ " Taler is easy to integrate with existing Web\n" 2296#~ " from many classes of security "
2003#~ " applications. Payments are cryptographically\n" 2297#~ "problems such as phishing or "
2004#~ " secured and are confirmed within milliseconds with\n" 2298#~ "counterfeit. Despite its security features,"
2005#~ " extremely low transaction costs.\n" 2299#~ " Taler never rejects a legitimate "
2006#~ " " 2300#~ "customer due to a fraud-detection "
2301#~ "false positive. "
2007#~ msgstr "" 2302#~ msgstr ""
2008 2303
2009#~ msgid "" 2304#~ msgid ""
2010#~ "\n" 2305#~ " When using Taler, merchant's revenue"
2011#~ " Taler does not introduce a new currency. Taler\n" 2306#~ " is transparent for tax collection "
2012#~ " uses a digital wallet storing coins and payment service\n" 2307#~ "authorities. Unlike cash and most "
2013#~ " providers with escrow accounts in existing currencies.\n" 2308#~ "digital currencies, Taler helps prevent "
2014#~ " Thus, Taler's cryptographic coins correspond to existing\n" 2309#~ "black markets. Taler is not suitable "
2015#~ " currencies, such as US Dollars, Euros or even Bitcoins.\n" 2310#~ "for illegal activities. "
2016#~ " "
2017#~ msgstr "" 2311#~ msgstr ""
2018 2312
2019#~ msgid "" 2313#~ msgid ""
2020#~ "\n" 2314#~ " When you pay with Taler, your"
2021#~ " By design Taler does not suffer from many classes\n" 2315#~ " identity does not have to be "
2022#~ " of security problems such as phishing or counterfeit.\n" 2316#~ "revealed to the merchant. Just like "
2023#~ " Despite its security features, " 2317#~ "payments in cash, nobody else can "
2024#~ "Taler never rejects a legitimate\n" 2318#~ "track how you spent your electronic "
2025#~ " customer due to a fraud-detection false positive.\n" 2319#~ "money. However, you obtain a legally"
2026#~ " " 2320#~ " valid proof of payment. "
2027#~ msgstr "" 2321#~ msgstr ""
2028 2322
2029#~ msgid "" 2323#~ msgid ""
2030#~ "\n" 2324#~ " Taler provides protocols and reference"
2031#~ " When using Taler, merchant's revenue is transparent for tax\n" 2325#~ " implementations that in principle enables"
2032#~ " collection authorities. Unlike cash" 2326#~ " anybody to run their own payment "
2033#~ " and most digital currencies,\n" 2327#~ "infrastructure, be it individuals, "
2034#~ " Taler helps prevent black markets. Taler is not suitable for\n" 2328#~ "organizations or whole countries. Since "
2035#~ " illegal activities.\n" 2329#~ "the reference implementation is a <a"
2036#~ " " 2330#~ " href=\"http://www.gnu.org/\">GNU</a> package, it "
2331#~ "will always remain free software. "
2037#~ msgstr "" 2332#~ msgstr ""
2038 2333
2039#~ msgid "" 2334#~ msgid ""
2040#~ "\n" 2335#~ " <p>To pay with Taler, customers "
2041#~ " When you pay with Taler, your identity does not\n" 2336#~ "install an electronic wallet on their"
2042#~ " have to be revealed to the merchant. Just like\n" 2337#~ " device. Before the first payment, "
2043#~ " payments in cash, nobody else can track how you\n" 2338#~ "the wallet's balance must be charged"
2044#~ " spent your electronic money. However, you obtain a\n" 2339#~ " in the desired currency by some "
2045#~ " legally valid proof of payment.\n" 2340#~ "other means of payment.</p> <p>Once the"
2046#~ " " 2341#~ " wallet is charged, payments on "
2342#~ "websites take only one click, are "
2343#~ "never falsely rejected by fraud "
2344#~ "detection and do not pose any risk"
2345#~ " of phishing or identity theft.</p> \n"
2047#~ msgstr "" 2346#~ msgstr ""
2048 2347
2049#~ msgid "" 2348#~ msgid ""
2050#~ "\n" 2349#~ " <p>To receive Taler payments, a "
2051#~ " Taler provides protocols and " 2350#~ "merchant needs a bank account in "
2052#~ "reference implementations that in\n" 2351#~ "the desired currency. We provide "
2053#~ " principle enables anybody to run" 2352#~ "supporting software in various programming"
2054#~ " their own payment infrastructure,\n" 2353#~ " languages to make the integration "
2055#~ " be it individuals, organizations " 2354#~ "painless. The merchant's backend for "
2056#~ "or whole countries. Since the\n" 2355#~ "Taler transaction processing can run on"
2057#~ " reference implementation is a <a" 2356#~ " the merchant's premises or be hosted"
2058#~ " href=\"http://www.gnu.org/\">GNU</a>\n" 2357#~ " by a third party.</p> "
2059#~ " package, it will always remain free software.\n"
2060#~ " "
2061#~ msgstr "" 2358#~ msgstr ""
2062 2359
2063#~ msgid "" 2360#~ msgid ""
2064#~ "\n" 2361#~ " We have created a company, Taler"
2065#~ " <p>To pay with Taler, customers install an electronic wallet\n" 2362#~ " Systems SA in Luxembourg.<br> Please "
2066#~ " on their device. Before the " 2363#~ "contact <tt>invest@taler.net</tt> if you want"
2067#~ "first payment, the wallet's balance must" 2364#~ " to invest in Taler. "
2068#~ "\n"
2069#~ " be charged in the desired "
2070#~ "currency by some other means of "
2071#~ "payment.</p>\n"
2072#~ " <p>Once the wallet is charged, "
2073#~ "payments on websites take only one "
2074#~ "click,\n"
2075#~ " are never falsely rejected by "
2076#~ "fraud detection and do not pose "
2077#~ "any risk\n"
2078#~ " of phishing or identity theft.</p>\n"
2079#~ " "
2080#~ msgstr "" 2365#~ msgstr ""
2081 2366
2082#~ msgid "" 2367#~ msgid ""
2083#~ "\n" 2368#~ " Our <a href=\"about.html\">team</a> combines"
2084#~ " <p>To receive Taler payments, a merchant needs a bank account\n" 2369#~ " world-class business leaders, "
2085#~ " in the desired currency. We provide supporting software\n" 2370#~ "cryptographers, software engineers, civil-"
2086#~ " in various programming languages to" 2371#~ "rights activists and academics. We are"
2087#~ " make the integration painless.\n" 2372#~ " unified by a vision of how "
2088#~ " The merchant's backend for Taler transaction processing can run\n" 2373#~ "payments should work and the goal "
2089#~ " on the merchant's premises or be hosted by a third party.</p>\n" 2374#~ "of imposing this vision upon the "
2090#~ " " 2375#~ "world. "
2091#~ msgstr "" 2376#~ msgstr ""
2092 2377
2093#~ msgid "" 2378#~ msgid ""
2094#~ "\n" 2379#~ " We are currently supported by <a"
2095#~ " We have created a company, Taler Systems SA in\n" 2380#~ " href=\"http://www.inria.fr/\">Inria</a>, the French"
2096#~ " Luxembourg.<br>\n" 2381#~ " national institute for research in "
2097#~ " Please contact <tt>invest@taler.net</tt>\n" 2382#~ "informatics and automation, and the <a"
2098#~ " if you want to invest in Taler.\n" 2383#~ " href=\"https://renewablefreedom.org/\">Renewable Freedom "
2099#~ " " 2384#~ "Foundation</a>. "
2100#~ msgstr "" 2385#~ msgstr ""
2101 2386
2102#~ msgid "" 2387#~ msgid ""
2103#~ "\n" 2388#~ " All transactions in Taler are "
2104#~ " Our <a href=\"about.html\">team</a> " 2389#~ "secured using <a href=\"bibliography.html\">modern"
2105#~ "combines world-class business leaders,\n" 2390#~ " cryptography</a> and trust in all "
2106#~ " cryptographers, software engineers, civil-rights\n" 2391#~ "parties is minimized. Financial damage "
2107#~ " activists and academics. We are unified by a vision\n" 2392#~ "is bounded (for customers, merchants "
2108#~ " of how payments should work and the goal of\n" 2393#~ "and the exchange) even in the "
2109#~ " imposing this vision upon the world.\n" 2394#~ "case that systems are compromised and"
2110#~ " " 2395#~ " private keys are stolen. Databases "
2396#~ "can be audited for consistency, "
2397#~ "resulting in either the detection of"
2398#~ " compromised systems or the demonstration"
2399#~ " that participants were honest. Actual "
2400#~ "transaction costs are fractions of a"
2401#~ " cent. "
2111#~ msgstr "" 2402#~ msgstr ""
2112 2403
2113#~ msgid "" 2404#~ msgid ""
2114#~ "\n" 2405#~ " The scalable business model for "
2115#~ " We are currently supported " 2406#~ "Taler is the operation of the "
2116#~ "by <a href=\"http://www.inria.fr/\">Inria</a>, the" 2407#~ "payment service provider, which converts "
2117#~ " French\n" 2408#~ "money from traditional payment systems "
2118#~ " national institute for research in informatics and\n" 2409#~ "(MasterCard, SEPA, UPI, Visa, Bitcoin, "
2119#~ " automation, and the <a " 2410#~ "ACH, SWIFT, etc.) to anonymous "
2120#~ "href=\"https://renewablefreedom.org/\">Renewable Freedom " 2411#~ "electronic coins in the same currency."
2121#~ "Foundation</a>.\n" 2412#~ " The customer can then redeem the"
2122#~ " " 2413#~ " electronic coins at a merchant, who"
2123#~ msgstr "" 2414#~ " can exchange them for money "
2124 2415#~ "represented using traditional payment systems"
2125#~ msgid "" 2416#~ " at the exchange. The exchange "
2126#~ "\n" 2417#~ "charges fees to facilitate the "
2127#~ " All transactions in Taler " 2418#~ "transactions. "
2128#~ "are secured using <a " 2419#~ msgstr ""
2129#~ "href=\"bibliography.html\">modern\n"
2130#~ " cryptography</a> and trust in all parties is\n"
2131#~ " minimized. Financial damage is bounded (for\n"
2132#~ " customers, merchants and the exchange) even in the\n"
2133#~ " case that systems are compromised and private keys\n"
2134#~ " are stolen. Databases can be audited for\n"
2135#~ " consistency, resulting in either the detection of\n"
2136#~ " compromised systems or the demonstration that\n"
2137#~ " participants were honest. Actual transaction costs\n"
2138#~ " are fractions of a cent.\n"
2139#~ " "
2140#~ msgstr ""
2141 2420
2142#~ msgid "" 2421#~ msgid ""
2143#~ "\n" 2422#~ " The payment service operator runs "
2144#~ " The scalable business model for Taler is the operation\n" 2423#~ "the <em>Taler exchange</em>. The exchange "
2145#~ " of the payment service " 2424#~ "charges <b>transaction fees</b> to customers"
2146#~ "provider, which converts money from\n" 2425#~ " or merchants. Its operational expenses"
2147#~ " traditional payment systems (MasterCard, SEPA, UPI,\n" 2426#~ " are from wire transfers with the "
2148#~ " Visa, Bitcoin, ACH, SWIFT, etc.) to anonymous\n" 2427#~ "banking system and the operation of "
2149#~ " electronic coins in the same currency. The customer\n" 2428#~ "the computing infrastructure. "
2150#~ " can then redeem the electronic coins at a merchant,\n"
2151#~ " who can exchange them for money represented using\n"
2152#~ " traditional payment systems at the exchange. The\n"
2153#~ " exchange charges fees to facilitate the transactions.\n"
2154#~ " "
2155#~ msgstr "" 2429#~ msgstr ""
2156 2430
2157#~ msgid "" 2431#~ msgid ""
2158#~ "\n" 2432#~ " Taler is a cost-effective "
2159#~ " The payment service operator runs the <em>Taler exchange</em>.\n" 2433#~ "electronic payment system which provides "
2160#~ " The exchange charges <b>transaction " 2434#~ "you with cryptographic proof that the"
2161#~ "fees</b> to customers or merchants.\n" 2435#~ " payment worked correctly within "
2162#~ " Its operational expenses are from" 2436#~ "milliseconds. Your Web customers pay "
2163#~ " wire transfers with the banking\n" 2437#~ "with previously unknown levels of "
2164#~ " system and the operation of the computing infrastructure.\n" 2438#~ "convenience without risk of fraud. "
2165#~ " "
2166#~ msgstr "" 2439#~ msgstr ""
2167 2440
2168#~ msgid "" 2441#~ msgid ""
2169#~ "\n" 2442#~ " Processing transactions with Taler is"
2170#~ " Taler is a cost-effective electronic payment system\n" 2443#~ " fast, allowing you to confirm the"
2171#~ " which provides you with cryptographic proof that\n" 2444#~ " transaction with your customer virtually"
2172#~ " the payment worked correctly within milliseconds.\n" 2445#~ " immediately. Your customers will "
2173#~ " Your Web customers pay with previously unknown\n" 2446#~ "appreciate that they do not have "
2174#~ " levels of convenience without risk of fraud.\n" 2447#~ "to type in credit card information "
2175#~ " " 2448#~ "and play the &quot;verified by&quot; "
2449#~ "game. By making payments significantly "
2450#~ "more convenient for your customers, you"
2451#~ " may be able to use Taler for"
2452#~ " small transactions that would not "
2453#~ "work with credit card payments due "
2454#~ "to the mental overhead for customers."
2455#~ " "
2176#~ msgstr "" 2456#~ msgstr ""
2177 2457
2178#~ msgid "" 2458#~ msgid ""
2179#~ "\n" 2459#~ " You will have cryptographic proof "
2180#~ " Processing transactions with Taler is fast,\n" 2460#~ "of payment from the Taler payment "
2181#~ " allowing you to confirm the transaction with your\n" 2461#~ "service provider. With Taler you never"
2182#~ " customer virtually immediately. Your customers\n" 2462#~ " handle sensitive customer account "
2183#~ " will appreciate that they do not have to type in\n" 2463#~ "information and thus do not have "
2184#~ " credit card information and play the &quot;verified\n" 2464#~ "to undergo any particular security "
2185#~ " by&quot; game. By making payments significantly\n" 2465#~ "audits (such as PCI DSS). Your "
2186#~ " more convenient for your customers, you may be able\n" 2466#~ "systems will have customer contracts "
2187#~ " to use Taler for small transactions that would not\n" 2467#~ "with qualified signatures for all "
2188#~ " work with credit card payments due to the mental\n" 2468#~ "transactions which you can use in "
2189#~ " overhead for customers.\n" 2469#~ "court in case of disputes. "
2190#~ " "
2191#~ msgstr "" 2470#~ msgstr ""
2192 2471
2193#~ msgid "" 2472#~ msgid ""
2194#~ "\n" 2473#~ " Taler is free software, and you"
2195#~ " You will have cryptographic proof of payment from the\n" 2474#~ " can use the liberally-licensed "
2196#~ " Taler payment service provider. With Taler you never\n" 2475#~ "reference code as a starting point "
2197#~ " handle sensitive customer account information and thus\n" 2476#~ "to integrate Taler into your services."
2198#~ " do not have to undergo any particular security audits\n" 2477#~ " To use Taler, you do not need"
2199#~ " (such as PCI DSS). Your systems will have customer\n" 2478#~ " to pay license fees, and the "
2200#~ " contracts with qualified signatures for all\n" 2479#~ "free software development model will "
2201#~ " transactions which you can use in court in case of\n" 2480#~ "ensure that you can select from "
2202#~ " disputes.\n" 2481#~ "many competing integrators for support. \n"
2203#~ " "
2204#~ msgstr "" 2482#~ msgstr ""
2205 2483
2206#~ msgid "" 2484#~ msgid ""
2207#~ "\n" 2485#~ " Taler is uses efficient cryptographic"
2208#~ " Taler is free software, and you can use the\n" 2486#~ " constructions with low bandwidth and "
2209#~ " liberally-licensed reference code as a starting\n" 2487#~ "storage requirements. Combined with Taler's"
2210#~ " point to integrate Taler into your services. To use\n" 2488#~ " strong security which makes fraud "
2211#~ " Taler, you do not need to pay license fees, and the\n" 2489#~ "impossible, Taler payment service providers"
2212#~ " free software development model will ensure that\n" 2490#~ " can operate with very low overhead"
2213#~ " you can select from many competing integrators for\n" 2491#~ " and thus offer low transaction "
2214#~ " support.\n" 2492#~ "fees. "
2215#~ " "
2216#~ msgstr "" 2493#~ msgstr ""
2217 2494
2218#~ msgid "" 2495#~ msgid ""
2219#~ "\n" 2496#~ " Taler can be used for different"
2220#~ " Taler is uses efficient " 2497#~ " currencies (such as Euros, US "
2221#~ "cryptographic constructions with low\n" 2498#~ "Dollars or Bitcoins) and any amount, "
2222#~ " bandwidth and storage " 2499#~ "limited only by applicable regulatation "
2223#~ "requirements. Combined with Taler's strong" 2500#~ "and what denominations the payment "
2224#~ "\n" 2501#~ "service provider supports. "
2225#~ " security which makes fraud " 2502#~ msgstr ""
2226#~ "impossible, Taler payment service\n"
2227#~ " providers can operate with very low overhead and\n"
2228#~ " thus offer low transaction fees.\n"
2229#~ " "
2230#~ msgstr ""
2231 2503
2232#~ msgid "" 2504#~ msgid ""
2233#~ "\n" 2505#~ " Taler prevents tax evasion and "
2234#~ " Taler can be used for different currencies (such as\n" 2506#~ "money laundering. Taler's protocols are "
2235#~ " Euros, US Dollars or Bitcoins) and any amount, limited\n" 2507#~ "efficient and do not use wasteful "
2236#~ " only by applicable regulatation and what denominations\n" 2508#~ "proof-of-work calculations. Taler "
2237#~ " the payment service provider supports.\n" 2509#~ "encourages transparency by providing an "
2238#~ " " 2510#~ "open standard and free software "
2511#~ "reference implementations. "
2239#~ msgstr "" 2512#~ msgstr ""
2240 2513
2241#~ msgid "" 2514#~ msgid ""
2242#~ "\n" 2515#~ " The backend <b>signs</b> and "
2243#~ " Taler prevents tax evasion and money laundering.\n" 2516#~ "<b>stores</b> the complete terms of "
2244#~ " Taler's protocols are efficient" 2517#~ "offers made by the merchant to "
2245#~ " and do not use wasteful\n" 2518#~ "customers. For this, the merchant's "
2246#~ " proof-of-work calculations. Taler encourages\n" 2519#~ "frontend needs to give the customer's"
2247#~ " transparency by providing an open standard and free\n" 2520#~ " order in a JSON format to the"
2248#~ " software reference implementations.\n" 2521#~ " backend. "
2249#~ " "
2250#~ msgstr "" 2522#~ msgstr ""
2251 2523
2252#~ msgid "" 2524#~ msgid ""
2253#~ "\n" 2525#~ " The backend <b>validates</b> payments "
2254#~ " The backend <b>signs</b> and <b>stores</b> the\n" 2526#~ "received from the wallet and "
2255#~ " complete terms of offers " 2527#~ "<b>executes</b> them with the Taler "
2256#~ "made by the merchant to customers.\n" 2528#~ "payment service provider (the exchange). "
2257#~ "" 2529#~ "For this, the merchant's frontend must"
2258#~ " For this, the merchant's frontend needs to give the\n" 2530#~ " pass the payment request through to"
2259#~ " customer's order in a JSON format to the backend.\n" 2531#~ " the Taler backend and check the "
2260#~ " " 2532#~ "HTTP status code that is returned. \n"
2261#~ msgstr "" 2533#~ msgstr ""
2262 2534
2263#~ msgid "" 2535#~ msgid ""
2264#~ "\n" 2536#~ " The backend can <b>list</b> completed"
2265#~ " The backend <b>validates</b> payments received from\n" 2537#~ " transactions and <b>map</b> wire "
2266#~ " the wallet and <b>executes</b> them with the Taler\n" 2538#~ "transfers to sets of business "
2267#~ " payment service provider (the exchange). For this,\n" 2539#~ "transactions, including the exact terms "
2268#~ " the merchant's frontend must pass the payment\n" 2540#~ "of each contract. "
2269#~ " request through to the Taler backend and check the\n"
2270#~ " HTTP status code that is returned.\n"
2271#~ " "
2272#~ msgstr "" 2541#~ msgstr ""
2273 2542
2274#~ msgid "" 2543#~ msgid ""
2275#~ "\n" 2544#~ "Taler largely functions like digital "
2276#~ " The backend can <b>list</b> completed transactions\n" 2545#~ "cash. You withdraw money from your "
2277#~ " and <b>map</b> wire transfers to sets of business\n" 2546#~ "bank account into your electronic "
2278#~ " transactions, including the exact terms of each\n" 2547#~ "wallet, and can henceforth spend digital"
2279#~ " contract.\n" 2548#~ " cash. The electronic wallet can "
2280#~ " " 2549#~ "carry multiple currencies. "
2550#~ msgstr ""
2551#~ "Taler funktioniert generell ähnlich wie "
2552#~ "jede virtuelle Währung. Man überweist "
2553#~ "Geld vom konventionellen Bankkonto in "
2554#~ "die Taler-Geldbörse, um aus ihrem "
2555#~ "Guthaben Einkäufe zu bezahlen. Die "
2556#~ "elektronische Geldbörse kann dabei mehrere "
2557#~ "digitale Währungen enthalten."
2558
2559#~ msgid ""
2560#~ "We currently provide a <a "
2561#~ "href=\"wallet.html\">wallet browser extension</a> "
2562#~ "for Chromium, Chrome, Firefox, Opera and"
2563#~ " Edge. Wallets for mobile phones and"
2564#~ " other platforms will be available in"
2565#~ " the future. "
2281#~ msgstr "" 2566#~ msgstr ""
2567#~ "Zurzeit gibt es Erweiterungen für die"
2568#~ " Browser Chromium, Chrome, Firefox, Opera"
2569#~ " und Edge. Für Mobilfunktelefone und "
2570#~ "andere Plattformen entwickeln wir ebenfalss"
2571#~ " Taler-Geldbörsen."
2572
2573#~ msgid ""
2574#~ "You can see how Taler works in "
2575#~ "practice by visiting our <a "
2576#~ "href=\"https://demo.taler.net\">demo page</a>. "
2577#~ msgstr ""
2578#~ "Auf der <a href=\"https://demo.taler.net\">Demo-"
2579#~ "Seite</a> kann man die Funktionsweise "
2580#~ "von Taler kennenlernen."
2581
2582#~ msgid ""
2583#~ "An archived, public mailing list for "
2584#~ "GNU Taler is hosted at <a "
2585#~ "href=\"https://lists.gnu.org/mailman/listinfo/taler\">https://lists.gnu.org/mailman/listinfo/taler</a>."
2586#~ " You can send messages to the "
2587#~ "list at <a "
2588#~ "href=\"mailto:taler@gnu.org\">taler@gnu.org</a>. "
2589#~ msgstr ""
2590#~ "Eine öffentliche Mailing-Liste wird "
2591#~ "archiviert bereitgestellt auf <a "
2592#~ "href=\"https://lists.gnu.org/mailman/listinfo/taler\">https://lists.gnu.org/mailman/listinfo/taler</a>."
2593#~ " Nachrichten an die Liste sendet man"
2594#~ " an <a href=\"mailto:taler@gnu.org\">taler@gnu.org</a>."
2595#~ " "
2596
2597#~ msgid ""
2598#~ "Team members are generally reachable at"
2599#~ " <tt>LASTNAME@taler.net</tt>. All of us "
2600#~ "support receiving GnuPG encrypted e-mails. \n"
2601#~ msgstr ""
2602#~ "Die Mitglieder des Taler-Teams sind "
2603#~ "erreichbar mit einer E-Mail an "
2604#~ "<tt>LASTNAME@taler.net</tt>, die GnuPG-verschlüsselt"
2605#~ " empfangen wird. "
2606
2607#~ msgid ""
2608#~ "We track open feature requests and "
2609#~ "bugs in our <a "
2610#~ "href=\"https://gnunet.org/bugs/\">Bug tracker</a>, which"
2611#~ " is shared with the GNUnet project."
2612#~ " You can also report bugs or "
2613#~ "feature requests to the mailing list."
2614#~ " "
2615#~ msgstr ""
2616#~ "Wir verfolgen Bugs und Anfragen zu "
2617#~ "erweiterten Funktionalitäten zusammen mit dem"
2618#~ " GNU-Project auf <a "
2619#~ "href=\"https://gnunet.org/bugs/\">Bug tracker</a>. Bugs"
2620#~ " oder Funktionsanfragen können auch an "
2621#~ "die Mailing-Liste gesendet werden."
2622
2623#~ msgid ""
2624#~ "For non-technical commercial requests, "
2625#~ "please contact <tt>ceo AT taler.net</tt>. \n"
2626#~ msgstr ""
2627#~ "Für alle nicht-technischen Anfragen "
2628#~ "bitten wir <tt>ceo AT taler.net</tt> "
2629#~ "anzumailen. "
2630
2631#~ msgid ""
2632#~ "GNU Taler is free software implementing"
2633#~ " an open protocol. Anybody is welcome"
2634#~ " to integrate our reference implementation"
2635#~ " into their applications. Different "
2636#~ "components of Taler are being made "
2637#~ "available under different licenses. The "
2638#~ "Affero GPLv3+ is used for the "
2639#~ "exchange, the LGPLv3+ is used for "
2640#~ "reference code demonstrating integration with"
2641#~ " merchant platforms, and licenses like "
2642#~ "GPLv3+ are used for wallets and "
2643#~ "related customer-facing software. We are"
2644#~ " open for constructive suggestions for "
2645#~ "maximizing the adoption of this payment"
2646#~ " platform. "
2647#~ msgstr ""
2648#~ "Taler ist freie Software mit einem "
2649#~ "offenen Protokoll. Alle Programmierer sind "
2650#~ "dazu eingeladen, unseren Referenzcode in "
2651#~ "ihre Anwendungen aufzunehmen. Verschiedene "
2652#~ "Taler-Komponenten sind unter verschiedenen "
2653#~ "Lizenzformen verfügbar. Für die Taler-"
2654#~ "Wechselstube (den \"Exchange\") dient Affero"
2655#~ " GPLv3+, LGPLv3+ für den Referenzcode "
2656#~ "der Integration in Handelsplattformen, "
2657#~ "GPLv3+-Lizenzen gelten für Geldbörsen "
2658#~ "(\"Wallets\") und Kundeninteraktions-Software. "
2659#~ "Wir heißen alle konstruktiven Vorschläge "
2660#~ "willkommen, die Taler-Komponenten in "
2661#~ "eigene Anwendungen zu integrieren."
2662
2663#~ msgid ""
2664#~ "Taler is designed to work on the"
2665#~ " Internet. To ensure that Taler "
2666#~ "payments can work with restrictive "
2667#~ "network setups, Taler uses a RESTful "
2668#~ "protocol over HTTP or HTTPS. Taler's "
2669#~ "security does not depend upon the "
2670#~ "use of HTTPS, but obviously merchants"
2671#~ " may choose to offer HTTPS for "
2672#~ "consistency and because it generally is"
2673#~ " better for privacy compared to HTTP."
2674#~ " Taler uses JSON to encode structure"
2675#~ " data, making it easy to integrate"
2676#~ " Taler with existing Web applications. "
2677#~ "Taler's protocol is documented in detail"
2678#~ " at <a "
2679#~ "href=\"https://api.taler.net/\">api.taler.net</a>. "
2680#~ msgstr ""
2681#~ "Taler als Bezahlsystem benutzt ein "
2682#~ "RESTful-Protokoll über HTTP oder HTTPS-"
2683#~ "Verbindungen, um auch in eingeschränkten "
2684#~ "Netzwerkumgebungen sichere Buchungen über das"
2685#~ " Internet auszuführen. Das Sicherheitskonzept "
2686#~ "von Taler hängt nicht vom Gebrauch "
2687#~ "der HTTPS-Verbindungen ab, doch werden"
2688#~ " Handelsunternehmen aus Gründen der "
2689#~ "Konsistenz mit ihren Webshops HTTPS "
2690#~ "vorziehen, das auch gerade wegen seiner"
2691#~ " Verschlüsselung eine noch höhere "
2692#~ "Sicherheit als eine HTTP-Verbindung "
2693#~ "bietet. Taler nutzt das JSON-Format, "
2694#~ "um strukturierte Daten zu verschlüsseln. "
2695#~ "Dies erleichtert die Integration von "
2696#~ "Taler in bestehende Webseiten und "
2697#~ "Anwendungen. Eine ausführliche Dokumentation "
2698#~ "des Taler-Protokolls befindet sich auf"
2699#~ " <a href=\"https://api.taler.net/\">api.taler.net</a>."
2700
2701#~ msgid ""
2702#~ "Taler is currently primarily developed "
2703#~ "by a research team at <a "
2704#~ "href=\"http://www.inria.fr/\">Inria</a> and <a "
2705#~ "href=\"https://gnunet.org/\">GNUnet</a>. However, "
2706#~ "contributions from anyone are welcome. "
2707#~ "Our Git repositories can be cloned "
2708#~ "using the Git and HTTP access "
2709#~ "methods against <tt>git.taler.net</tt> with "
2710#~ "the name of the respective repository."
2711#~ " A list of repositories can be "
2712#~ "found in our <a "
2713#~ "href=\"https://git.taler.net/\">GitWeb</a>. "
2714#~ msgstr ""
2715#~ "Taler wird hauptsächlich entwickelt von "
2716#~ "einem Forscherteam bei <a "
2717#~ "href=\"http://www.inria.fr/\">Inria</a> und <a "
2718#~ "href=\"https://gnunet.org/\">GNUnet</a>. Unterstützung von"
2719#~ " externen Beitragenden ist immer "
2720#~ "willkommen. Unsere Git-Repositories können "
2721#~ "mit Git und HTTP-basiertem Zugriff "
2722#~ "auf <tt>git.taler.net</tt> geklont werden. "
2723#~ "Eine Liste der Repositories befindet "
2724#~ "sich auf unserem <a "
2725#~ "href=\"https://git.taler.net/\">GitWeb</a>."
2726
2727#~ msgid ""
2728#~ "In addition to this website, the "
2729#~ "<a href=\"https://git.taler.net/\">documented code</a> "
2730#~ "and the <a href=\"https://api.taler.net/\">API "
2731#~ "documentation</a>. Technical papers can be "
2732#~ "found in our <a "
2733#~ "href=\"bibliography.html\">bibliography</a>. "
2734#~ msgstr ""
2735#~ "Neben dieser Webseite bestehen die <a"
2736#~ " href=\"https://git.taler.net/\">Code-Dokumentation</a>, "
2737#~ "die <a "
2738#~ "href=\"https://docs.taler.net\">Entwicklerdokumentation</a> und"
2739#~ " die <a href=\"https://api.taler.net/\">API-"
2740#~ "Schnittstellendokumentation</a>. Wissenschaftliche "
2741#~ "Literatur findet man in der <a "
2742#~ "href=\"bibliography.html\">Bibliographie</a>."
2743
2744#~ msgid ""
2745#~ "We have a mailing list for "
2746#~ "developer discussions. You can subscribe "
2747#~ "to or read the list archive at "
2748#~ "<a "
2749#~ "href=\"http://lists.gnu.org/mailman/listinfo/taler\">http://lists.gnu.org/mailman/listinfo/taler</a>."
2750#~ " "
2751#~ msgstr ""
2752#~ "Zum Austausch unter Entwicklern haben "
2753#~ "wir eine Mailingliste. Um sich "
2754#~ "einzutragen oder das Listenarchiv zu "
2755#~ "lesen besuche man <a "
2756#~ "href=\"http://lists.gnu.org/mailman/listinfo/taler\">http://lists.gnu.org/mailman/listinfo/taler</a>."
2757
2758#~ msgid ""
2759#~ "We have <a "
2760#~ "href=\"https://buildbot.net/\">Buildbot</a> automation "
2761#~ "tests to detect regressions and check"
2762#~ " for portability at <a "
2763#~ "href=\"https://buildbot.taler.net/\">buildbot.taler.net</a>. "
2764#~ msgstr ""
2765#~ "Unter <a "
2766#~ "href=\"https://buildbot.taler.net/\">buildbot.taler.net</a> "
2767#~ "befinden sich Ergebnisse der Testumgebung "
2768#~ "<a href=\"https://buildbot.net/\">Buildbot</a>, um "
2769#~ "Fehler nach Modifikationen aufzeigen zu "
2770#~ "können und die Portabilität des Codes"
2771#~ " zu gewährleisten."
2772
2773#~ msgid ""
2774#~ "We use <a "
2775#~ "href=\"http://ltp.sourceforge.net/coverage/lcov.php\">LCOV</a> "
2776#~ "to analyze the code coverage of "
2777#~ "our tests, the results are available "
2778#~ "at <a href=\"https://lcov.taler.net/\">lcov.taler.net</a>."
2779#~ " "
2780#~ msgstr ""
2781#~ "Wir verwenden <a "
2782#~ "href=\"http://ltp.sourceforge.net/coverage/lcov.php\">LCOV</a>, "
2783#~ "um die Testabdeckung unserer Funktionstests"
2784#~ " zu analysieren, die Ergebnisse sind "
2785#~ "auf <a "
2786#~ "href=\"https://lcov.taler.net/\">lcov.taler.net</a>."
2787
2788#~ msgid ""
2789#~ "We use <a "
2790#~ "href=\"https://gnunet.org/gauger\">Gauger</a> for "
2791#~ "performance regression analysis of the "
2792#~ "exchange backend at <a "
2793#~ "href=\"https://gauger.taler.net/\">gauger.taler.net</a>. "
2794#~ msgstr ""
2795#~ "Wir verwenden <a "
2796#~ "href=\"https://gnunet.org/gauger\">Gauger</a>, um die "
2797#~ "Performance zu messen. Ergebnisse sind "
2798#~ "auf <a "
2799#~ "href=\"https://gauger.taler.net/\">gauger.taler.net</a>."
2800
2801#~ msgid ""
2802#~ "The Taler system consists of protocols"
2803#~ " executed among a number of actors"
2804#~ " as illustrated in the illustration "
2805#~ "on the right. Typical transactions "
2806#~ "involve the following steps: "
2807#~ msgstr ""
2808#~ "Das Taler-Bezahlsystem verwendet Protokolle"
2809#~ " für den Geldfluss zwischen den "
2810#~ "Beteiligten. Die grundlegenden Transaktionen "
2811#~ "sind in der Grafik dargestellt:"
2812
2813#~ msgid ""
2814#~ "A customer instructs his <b>bank</b> to"
2815#~ " transfer funds from his account to"
2816#~ " the Taler exchange (top left). In"
2817#~ " the subject of the transaction, he"
2818#~ " includes an authentication token from "
2819#~ "his electronic <b>wallet</b>. In Taler "
2820#~ "terminology, the customer creates a "
2821#~ "reserve at the exchange. "
2822#~ msgstr ""
2823#~ "Zuerst überweisen Taler-Nutzer Geld von"
2824#~ " ihren herkömmlichen Girokonten in den "
2825#~ "Währungen der Geschäftsbanken (in der "
2826#~ "Grafik oben links) an die Taler-"
2827#~ "Wechselstube (der sog. \"Exchange\" in "
2828#~ "der Mitte der Grafik). Im Betreff "
2829#~ "der Überweisung nennen sie eine "
2830#~ "Transaktionsnummer ihrer Taler-Geldbörse. "
2831#~ "Damit bilden sie eine Münzen-Reserve "
2832#~ "bei der Taler-Wechselstube."
2833
2834#~ msgid ""
2835#~ "Once the exchange has received the "
2836#~ "wire transfer, it allows the customer's"
2837#~ " electronic wallet to <b>withdraw</b> "
2838#~ "electronic coins. The electronic coins "
2839#~ "are digital representations of the "
2840#~ "original currency from the transfer. It"
2841#~ " is important to note that the "
2842#~ "exchange does not learn the &quot;serial"
2843#~ " numbers&quot; of the coins created "
2844#~ "in this process, so it cannot tell"
2845#~ " later which customer purchased what "
2846#~ "at which merchant. The use of "
2847#~ "Taler does not change the currency "
2848#~ "or the total value of the funds"
2849#~ " (except for fees which the exchange"
2850#~ " may charge for the service). "
2851#~ msgstr ""
2852#~ "Sobald die Taler-Wechselstube die "
2853#~ "Überweisung von der Bank erhalten hat,"
2854#~ " erlaubt sie die Verwendung der "
2855#~ "digitalen Münzen in der Taler-Geldbörse."
2856#~ " Die Ursprungswährungen werden dabei zu "
2857#~ "gleichnamigen Währungen in der Taler-"
2858#~ "Geldbörse und behalten ihren ursprünglichen"
2859#~ " nominellen Wert abzüglich einer "
2860#~ "gegebenenfalls von der Wechselstube "
2861#~ "geforderten Tauschgebühr. Wichtig zu wissen"
2862#~ " ist, dass die Taler-Wechselstube "
2863#~ "keine Kenntnis der \"Seriennummern\" der "
2864#~ "erzeugten digitalen Münzen erlangt. Dies "
2865#~ "hat zur Folge, dass später nicht "
2866#~ "mehr nachvollzogen werden kann, welcher "
2867#~ "Käufer von welchem Verkäufer welche "
2868#~ "Güter erwarb. Auch die Güter selbst "
2869#~ "bleiben unbekannt."
2870
2871#~ msgid ""
2872#~ "Once the customer has the digital "
2873#~ "coins in his wallet, the wallet "
2874#~ "can be used to <b>spend</b> the "
2875#~ "coins with merchant portals that support"
2876#~ " the Taler payment system and accept"
2877#~ " the respective exchange as a "
2878#~ "business partner (bottom arrow). This "
2879#~ "creates a digital contract signed by "
2880#~ "the customer's coins and the merchant."
2881#~ " If necessary, the customer can later"
2882#~ " use this digitally signed contract "
2883#~ "in a court of law to prove "
2884#~ "the exact terms of the contract "
2885#~ "and that he paid the respective "
2886#~ "amount. The customer does not learn "
2887#~ "the banking details of the merchant, "
2888#~ "and Taler does not require the "
2889#~ "merchant to learn the identity of "
2890#~ "the customer. Naturally, the customer "
2891#~ "can spend any fraction of his "
2892#~ "digital coins (the system takes care "
2893#~ "of customers getting change). "
2894#~ msgstr ""
2895#~ "Die digitalen Münzen der Geldbörse kann"
2896#~ " man ausgeben bei allen Verkäufern, "
2897#~ "die das Taler-Bezahlsystem unterstützen "
2898#~ "und eine Taler-Wechselstube als "
2899#~ "Geschäftspartner akzeptieren (in der Grafik"
2900#~ " unten rechts). Dieser Vorgang erzeugt "
2901#~ "einen digitalen Vertrag, der sowohl von"
2902#~ " den Verkäufern als auch von den "
2903#~ "Käufern mit einer Signatur versehen wird"
2904#~ " (in der Grafik unten als Pfeil "
2905#~ "dargestellt). Dieser elektronisch "
2906#~ "\"unterschriebene\" Vertrag enthält die "
2907#~ "genauen Vertragsbedingungen und ist für "
2908#~ "eventuelle Streitfälle auch vor Gericht "
2909#~ "verwendbar als Eigentumsnachweis eines "
2910#~ "gekauften Gutes zum gegebenen Kaufpreis. "
2911#~ "Dazu müssen weder Käufer noch Verkäufer"
2912#~ " über die Identität oder Bankdaten "
2913#~ "ihrer Geschäftspartner Bescheid wissen. "
2914#~ "Natürlich kann jeder beliebige Teilbetrag "
2915#~ "von Münzen aus der Taler-Geldbörse "
2916#~ "verwendet werden, das System sorgt für"
2917#~ " das korrekte Wechselgeld."
2918
2919#~ msgid ""
2920#~ "Merchants receiving digital coins "
2921#~ "<b>deposit</b> the respective claims that "
2922#~ "resulted from the contract signing with"
2923#~ " the customer at the exchange to "
2924#~ "redeem the coins. The deposit step "
2925#~ "does not reveal the details of the"
2926#~ " contract between the customer and "
2927#~ "the merchant or the identity of "
2928#~ "the customer to the exchange in "
2929#~ "any way. However, the exchange does "
2930#~ "learn the identity of the merchant "
2931#~ "via the provided bank routing "
2932#~ "information. The merchant can, for "
2933#~ "example when compelled by the state "
2934#~ "for taxation, provide information linking "
2935#~ "the individual deposit to the respective"
2936#~ " contract signed by the customer. "
2937#~ "Thus, the exchange's database allows the"
2938#~ " state to enforce that merchants pay"
2939#~ " applicable taxes (and do not engage"
2940#~ " in illegal contracts). "
2941#~ msgstr ""
2942#~ "Nach dem Vertragsabschluss übertragen die "
2943#~ "Käufer ihre digitalen Münzen an die "
2944#~ "Verkäufer, die sich die entsprechenden "
2945#~ "Forderungen von der Taler-Wechselstube "
2946#~ "auf ihre Girokonten erstatten lassen. "
2947#~ "Die Wechselstube veröffentlicht dabei weder"
2948#~ " Vertragsdetails noch Käuferdaten und kennt"
2949#~ " nur die Identität der Verkäufer "
2950#~ "durch ihre Bankverbindungen. Die Verkäufer "
2951#~ "können daher gegenüber staatlichen "
2952#~ "Steuerbehörden einen Nachweis ihrer "
2953#~ "rechtmäßigen Geschäfte erbringen. Die "
2954#~ "Datenbank der Wechselstube unterstützt auf "
2955#~ "diese Weise den Staat, ausnahmslos alle"
2956#~ " Verkäufer zu ihren Steuerzahlungen zu "
2957#~ "verpflichten und von illegalen Geschäften "
2958#~ "abzuhalten."
2959
2960#~ msgid ""
2961#~ "Finally, the exchange transfers funds "
2962#~ "corresponding to the digital coins "
2963#~ "redeemed by the merchants to the "
2964#~ "merchant's <b>bank</b> account. The exchange"
2965#~ " may combine multiple small transactions"
2966#~ " into one larger bank transfer. The"
2967#~ " merchant can query the exchange "
2968#~ "about the relationship between the bank"
2969#~ " transfers and the individual claims "
2970#~ "that were deposited. "
2971#~ msgstr ""
2972#~ "Als letzten Schritt überweist die "
2973#~ "Taler-Wechselstube die Forderungen der "
2974#~ "Verkäufer an deren Geschäftsbanken (in "
2975#~ "der Grafik oben rechts). Die Geldbeträge"
2976#~ " entsprechen den Werten der digitalen "
2977#~ "Münzen. Die Taler-Wechselstube kann "
2978#~ "mehrere kleinere Beträge zu einem "
2979#~ "Gesamtbetrag zusammenfassen und an die "
2980#~ "Geschäftsbank überweisen. Die Verkäufer haben"
2981#~ " die Möglichkeit, ihre angemeldeten "
2982#~ "Forderungen und deren Überweisung an die"
2983#~ " Geschäftsbank bei der Taler-Wechselstube"
2984#~ " abzufragen."
2985
2986#~ msgid ""
2987#~ "Most importantly, the exchange keeps "
2988#~ "cryptographic proofs that allow it to"
2989#~ " demonstrate that it is operating "
2990#~ "correctly to third parties. The system"
2991#~ " requires an external <b>auditor</b>, such"
2992#~ " as a government-appointed financial "
2993#~ "regulatory body, to frequently verify "
2994#~ "the exchange's databases and check that"
2995#~ " its bank balance matches the total"
2996#~ " value of the remaining coins in "
2997#~ "circulation. "
2998#~ msgstr ""
2999#~ "Eine bedeutende Eigenschaft der Wechselstube"
3000#~ " besteht darin, dass sie kryptografisch "
3001#~ "verschlüsselte Prüfdaten bereitstellt, um ihre"
3002#~ " korrekte Funktionalität nachzuweisen. Diese "
3003#~ "verschlüsselten Prüfdaten werden unabhängigen "
3004#~ "Parteien wie z.B. von Regierungen "
3005#~ "ernannten Finanzaufsichtsbehörden oder Auditoren "
3006#~ "zur Verfügung gestellt, die regelmäßig "
3007#~ "die Wechselstube-Datenbanken auf "
3008#~ "Funktionalität überprüfen können. Dabei "
3009#~ "vergleichen sie die Übereinstimmung der "
3010#~ "im Umlauf befindlichen Summe von "
3011#~ "digitalen Münzen mit den Überweisungen "
3012#~ "an Geschäftsbanken."
3013
3014#~ msgid ""
3015#~ "Without the auditor, the exchange "
3016#~ "operators could embezzle funds they are"
3017#~ " holding in reserve. Customers and "
3018#~ "merchants cannot cheat each other or "
3019#~ "the exchange. If any party's computers"
3020#~ " are compromised, the financial damage "
3021#~ "is limited to the respective party "
3022#~ "and proportional to the funds they "
3023#~ "have in circulation during the period"
3024#~ " of the compromise. "
3025#~ msgstr ""
3026#~ "Die Rolle des Auditors sorgt dafür, "
3027#~ "dass die Taler-Wechselstube keine "
3028#~ "Forderungen oder Überweisungen unterschlagen "
3029#~ "kann. Ebenso wenig können Käufer oder"
3030#~ " Verkäufer sich gegenseitig oder die "
3031#~ "Wechselstube betrügen. Sollte der Computer "
3032#~ "eines Beteiligten beschädigt oder korrumpiert"
3033#~ " worden sein, beschränkt sich der "
3034#~ "finanzielle Schaden immer nur auf den"
3035#~ " Wert der digitalen Münzen auf dem"
3036#~ " jeweiligen Computer zum Zeitpunkt der "
3037#~ "Schadensentstehung."
3038
3039#~ msgid ""
3040#~ "<p>Taler does not use any Blockchain "
3041#~ "technology or Bitcoin directly. Taler is"
3042#~ " not based on proof-of-work or"
3043#~ " any other distributed consensus mechanism."
3044#~ " Instead Taler is based on blind "
3045#~ "signatures.</p> "
3046#~ msgstr ""
3047#~ "Taler verwendet keine Blockchain-Technologie"
3048#~ " oder Bitcoin selbst. Auch auf "
3049#~ "elektronisches gegenseitiges Beglaubigen in "
3050#~ "einem Web-of-trust- oder proof-"
3051#~ "of-work-Verfahren verzichtet Taler. "
3052#~ "Stattdessen setzt Taler auf Verfahren "
3053#~ "mit blinden Signaturen."
3054
3055#~ msgid ""
3056#~ "<p>It would be possible, however, to "
3057#~ "withdraw coins denominated in Bitcoin "
3058#~ "into a Taler wallet (with an "
3059#~ "appropriate exchange), which would give "
3060#~ "some benefits over plain Bitcoin, such"
3061#~ " as instant confirmation times.</p> "
3062#~ msgstr ""
3063#~ "Es ist jedoch möglich, Bitcoin als "
3064#~ "Münzen in eine Taler-Geldbörse mittels"
3065#~ " einer dafür geeigneten Wechselstube zu "
3066#~ "überweisen. Dies brächte gegenüber Bitcoin "
3067#~ "sogar den Vorteil von sofortigen "
3068#~ "Zahlungsbestätigungen."
3069
3070#~ msgid ""
3071#~ "<p>Your wallet stores digital coins and"
3072#~ " thus ultimately your computer holds "
3073#~ "your balance. The exchange keeps funds"
3074#~ " matching all unspent coins in an "
3075#~ "escrow bank account.</p> "
3076#~ msgstr ""
3077#~ "Die Taler-Geldbörse speichert digitale "
3078#~ "Münzen nur auf deinem Computer. Das "
3079#~ "heißt, nur dieser kennt den Bestand "
3080#~ "deiner Münzen. Die Taler-Wechselstube "
3081#~ "speichert dagegen auf einem Konto, das"
3082#~ " sie treuhänderisch verwaltet, die "
3083#~ "Forderungen von noch nicht gebuchten "
3084#~ "Münzen."
3085
3086#~ msgid ""
3087#~ "<p>Since the digital coins of value "
3088#~ "in your wallet are anonymized, the "
3089#~ "exchange can not assist you in "
3090#~ "recovering a lost or stolen wallet. "
3091#~ "Just like with a physical wallet "
3092#~ "for cash, you are responsible for "
3093#~ "keeping it safe.</p> "
3094#~ msgstr ""
3095#~ "Weil die digitalen Münzen in der "
3096#~ "Geldbörse anonymisiert gespeichert werden, "
3097#~ "kann sie die Wechselstube bei einem "
3098#~ "Verlust oder Diebstahl nicht wiederherstellen."
3099#~ " Wie bei echten Geldbörsen mit "
3100#~ "Banknoten und Münzen sind ihre "
3101#~ "Eigentümer allein verantwortlich für deren "
3102#~ "Sicherung."
3103
3104#~ msgid ""
3105#~ "<p>The risk of losing a wallet can"
3106#~ " be mitigated by making backups or"
3107#~ " keeping the balance reasonably low.</p>"
3108#~ " "
3109#~ msgstr ""
3110#~ "Das Risiko eines Verlusts der Taler-"
3111#~ "Geldbörsen kann vermieden werden, indem "
3112#~ "man Backups von ihnen anfertigt oder "
3113#~ "ihren Bestand an digitalen Münzen "
3114#~ "niedrig hält."
3115
3116#~ msgid ""
3117#~ "<p>In case of a compromise of one"
3118#~ " of your devices, an attacker can "
3119#~ "spend coins from your wallet. Checking"
3120#~ " your balance might reveal to you "
3121#~ "that your device has been "
3122#~ "compromised.</p> "
3123#~ msgstr ""
3124#~ "Im Fall eines Einbruchs in die "
3125#~ "Geräte können tatsächlich digitale Münzen "
3126#~ "aus dem Bestand in der Taler-"
3127#~ "Geldbörse ausgegeben werden. Es bietet "
3128#~ "sich daher an, den Bestand regelmäßig"
3129#~ " zu kontrollieren, um einen solchen "
3130#~ "Einbruch festzustellen."
3131
3132#~ msgid ""
3133#~ "<p>If your friend provides goods or "
3134#~ "services for you in exchange for a"
3135#~ " payment, they can easily set up "
3136#~ "a Taler merchant and receive the "
3137#~ "payment in their bank account.</p> "
3138#~ msgstr ""
3139#~ "Falls andere Personen Waren oder "
3140#~ "Dienstleistungen verkaufen wollen, können sie"
3141#~ " die Rolle eines Verkäufers einnehmen "
3142#~ "und diese schnell und einfach "
3143#~ "einrichten, um deine Zahlung von der "
3144#~ "Taler-Geldbörse auf dem Girokonto ihrer"
3145#~ " Geschäftsbank zu erhalten."
3146
3147#~ msgid ""
3148#~ "<p>Future versions of the Taler wallet"
3149#~ " may allow exchanging coins among "
3150#~ "friends directly as well.</p> "
3151#~ msgstr ""
3152#~ "Zukünftige Versionen der Taler-Geldbörse "
3153#~ "sehen vor, unter Freunden auch direkt"
3154#~ " digitale Münzen auszutauschen."
3155
3156#~ msgid ""
3157#~ "<p>Taler wallets can store digital coins"
3158#~ " corresponding to multiple different "
3159#~ "currencies such as the Euro, US "
3160#~ "Dollars or Bitcoins.</p> "
3161#~ msgstr ""
3162#~ "Taler-Geldbörsen können gleichzeitig "
3163#~ "verschiedene digitale Münzen speichern, die"
3164#~ " in unterschiedlichen Währungen wie Euro,"
3165#~ " US-Dollar oder Bitcoin notiert sind."
3166
3167#~ msgid "<p>Taler currently does not offer conversion between currencies.</p> "
3168#~ msgstr "Taler bietet jedoch derzeitig keinen Umtausch zwischen Währungen."
3169
3170#~ msgid ""
3171#~ "<p>Your wallet stores digital coins that"
3172#~ " are <a "
3173#~ "href=\"https://en.wikipedia.org/wiki/Blind_signature\">blindly "
3174#~ "signed</a> by an exchange. The use "
3175#~ "of a blind signature protects your "
3176#~ "privacy as it prevents the exchange "
3177#~ "from knowing which coin it signed "
3178#~ "for which customer.</p> "
3179#~ msgstr ""
3180#~ "Deine Geldbörse speichert digitale \"Münzen\","
3181#~ " die von der Wechselstube blind "
3182#~ "signiert sind (siehe <a "
3183#~ "href=\"https://de.wikipedia.org/wiki/Digitale_Signatur\">Digitale "
3184#~ "Signatur</a>). Dieses Verfahren schützt die"
3185#~ " privaten Daten, weil die Taler-"
3186#~ "Wechselstube dadurch keine Kenntnis davon "
3187#~ "erlangt, welche der Münzen von welchen"
3188#~ " Käufern sie signiert."
3189
3190#~ msgid ""
3191#~ "Taler provides accountability to ensure "
3192#~ "business operate legally, while also "
3193#~ "respecting civil liberties of citizens. "
3194#~ "Taler is a payment system based on"
3195#~ " open standards and free software. "
3196#~ "Taler needs governments as they set "
3197#~ "a financial framework and act as "
3198#~ "trusted regulators. Taler contributes to "
3199#~ "digital sovereignty in the critical "
3200#~ "financial infrastructure. "
3201#~ msgstr ""
3202#~ "Taler fordert von den Wirtschaftsunternehmen"
3203#~ " Rechenschaft darüber, dass sie legale "
3204#~ "Geschäfte betreiben und gleichzeitig die "
3205#~ "Persönlichkeitsrechte und Privatsphäre der "
3206#~ "Menschen respektieren. Taler ist ein "
3207#~ "Bezahlsystem, das auf einem offenen "
3208#~ "Standard und freier Software basiert. "
3209#~ "Taler braucht Staatregierungen, die "
3210#~ "finanzrechtliche Rahmenbedingungen schaffen und "
3211#~ "als zuverlässige Kontrollorgane auftreten. "
3212#~ "Damit trägt dieses Bezahlsystem auch zur"
3213#~ " digitalen Selbstbestimmung von Einzelpersonen"
3214#~ " im Finanzsektor bei."
3215
3216#~ msgid ""
3217#~ "Taler was built with the goal of"
3218#~ " fighting corruption and supporting "
3219#~ "taxation. With Taler, the receiver of"
3220#~ " any form of payment is easily "
3221#~ "identified by the government, and the"
3222#~ " merchant can be compelled to provide"
3223#~ " the contract that was accepted by"
3224#~ " the customer. Governments can use "
3225#~ "this data to tax businesses and "
3226#~ "individuals based on their income, "
3227#~ "making tax evasion and black markets "
3228#~ "less viable. "
3229#~ msgstr ""
3230#~ "Taler wurde mit dem Ziel entwickelt, "
3231#~ "Korruption zu unterbinden und sichere "
3232#~ "Besteuerungsgrundlagen bereitzustellen. Jeder "
3233#~ "Empfänger von Zahlungen aus Taler-"
3234#~ "Geldbörsen wird gegenüber der staatlichen "
3235#~ "fiskalischen Autorität eindeutig identifizierbar "
3236#~ "und ist demnach gezwungen, sich "
3237#~ "steuerlich zu veranlagen. Den Nachweis "
3238#~ "des Umsatzes können Verkäufer erbringen "
3239#~ "mithilfe des digital signierten Kaufvertrags,"
3240#~ " den ihre Kunden mit ihnen "
3241#~ "geschlossen haben. Staatsregierungen haben "
3242#~ "dadurch die Möglichkeit, die digitalen "
3243#~ "Kaufverträge von Handelsunternehmen bzw. die"
3244#~ " Einkommen von einzelnen privaten "
3245#~ "Verkäufern als Grundlage der Besteuerung "
3246#~ "heranzuziehen. Auf diese Weise haben "
3247#~ "Steuerflucht und Schwarzmarktgeschäfte nur "
3248#~ "noch eine minimale Wahrscheinlichkeit."
3249
3250#~ msgid ""
3251#~ "Thus, despite offering anonymity for "
3252#~ "citizens spending digital cash to buy"
3253#~ " goods and services, Taler also "
3254#~ "ensures that the state can observe "
3255#~ "incoming funds. This can be used "
3256#~ "to ensure businesses engage only in "
3257#~ "legal activities, and do not evade "
3258#~ "income tax, sales tax or value-"
3259#~ "added tax. However, this observational "
3260#~ "capability does not extend to the "
3261#~ "immediate personal domain. In particular, "
3262#~ "monitoring does not cover shared access"
3263#~ " to funds with trusted friends and"
3264#~ " family, or synchronizing wallets across"
3265#~ " multiple devices. "
3266#~ msgstr ""
3267#~ "Auf der einen Seite versichert Taler "
3268#~ "als digitales Bezahlsystem die vollständige"
3269#~ " Anonymität der Käufer, die Waren und"
3270#~ " Dienstleistungen kaufen und bezahlen, auf"
3271#~ " der anderen Seite liefert Taler den"
3272#~ " Staatsregierungen eine sichere "
3273#~ "Besteuerungsgrundlage, mit der sie ihre "
3274#~ "öffentlichen Güter finanzieren können. Dieses"
3275#~ " Verfahren stellt gleichzeitig sicher, dass"
3276#~ " Handelsunternehmen nur legale Geschäfte "
3277#~ "abschließen und keine Steuern hinterziehen "
3278#~ "oder Mehrwertsteuern unterschlagen. Diese "
3279#~ "Überwachungsfunktion bezieht sich jedoch "
3280#~ "keinesfalls auf die Privatsphäre von "
3281#~ "Personen und erfasst ebenso wenig den"
3282#~ " geduldeten gemeinsamen Zugriff auf die "
3283#~ "Taler-Geldbörse durch Berechtigte wie "
3284#~ "Freunde oder Familienmitglieder sowie "
3285#~ "miteinander synchronisierte Geldbörsen auf "
3286#~ "verschiedenen Endgeräten."
3287
3288#~ msgid ""
3289#~ "Taler's payments are cryptographically "
3290#~ "secured. Thus, customers, merchants and "
3291#~ "the Taler payment service provider (the"
3292#~ " exchange) can mathematically demonstrate "
3293#~ "their lawful behavior in court in "
3294#~ "case of disputes. Financial damages are"
3295#~ " strictly limited, improving economic "
3296#~ "security for individuals, merchants, the "
3297#~ "exchange and the state. "
3298#~ msgstr ""
3299#~ "Zahlungen in Taler sind kryptographisch "
3300#~ "verschlüsselt. Sowohl Käufer als auch "
3301#~ "Verkäufer und das Taler-Bezahlsystem "
3302#~ "selbst (die Taler-Wechselstube) können "
3303#~ "die Rechtschaffenheit ihrer Geschäfte mit "
3304#~ "ihren digitalen Kaufverträgen sogar vor "
3305#~ "Gericht beweisen, falls es zu einem "
3306#~ "Rechtsstreit kommen sollte. Ebenso sind "
3307#~ "die finanziellen Risiken äußerst beschränkt,"
3308#~ " was die Sicherheit des gemeinsamen "
3309#~ "Handelns für Einzelpersonen, Händler, die "
3310#~ "Taler-Wechselstube und den Staat enorm"
3311#~ " verbessert."
3312
3313#~ msgid ""
3314#~ "As a payment service provider, the "
3315#~ "Taler exchange is subject to financial"
3316#~ " regulation. Financial regulation and "
3317#~ "regular audits are critical to establish"
3318#~ " trust. In particular, the Taler "
3319#~ "design mandates the existence of an "
3320#~ "independent auditor who checks cryptographic"
3321#~ " proofs that accumulate at the "
3322#~ "exchange to ensure that the escrow "
3323#~ "account is managed honestly. This "
3324#~ "ensures that the exchange does not "
3325#~ "threaten the economy due to fraud. \n"
3326#~ msgstr ""
3327#~ "Als Finanzdienstleister sind Taler-"
3328#~ "Wechselstuben der Finanzaufsicht unterstellt. "
3329#~ "Die Einhaltung von Gesetzen und "
3330#~ "regelmäßige Audits sind unerlässlich zur "
3331#~ "Bildung einer Vertrauensgrundlage. Zusätzlich "
3332#~ "fordert das Konzept des Taler-"
3333#~ "Bezahlsystems aber ganz bewusst einen "
3334#~ "unabhängigen Auditor. Der Auditor hat zu"
3335#~ " bestätigen, dass die von den "
3336#~ "Wechselstuben treuhänderisch verwalteten Konten "
3337#~ "stets korrekt gebucht werden. Dies sorgt"
3338#~ " dafür, dass keine einzige Wechselstube "
3339#~ "betrügerisch handelt."
3340
3341#~ msgid ""
3342#~ "Taler is free software implementing an"
3343#~ " open protocol standard. Thus, Taler "
3344#~ "will enable competition and avoid the"
3345#~ " monopolization of payment systems that "
3346#~ "threatens global political and financial "
3347#~ "stability today. "
3348#~ msgstr ""
3349#~ "Taler ist eine freie Software, die "
3350#~ "ein offenes Protokoll verwendet. Dadurch "
3351#~ "fördert Taler den Wettbewerb von freien"
3352#~ " Lösungen und verhindert gleichzeitig "
3353#~ "Bezahlsysteme, deren gegenwärtige Monopolstellungen"
3354#~ " die politische und finanzielle Stabilität"
3355#~ " weltweit akut bedrohen."
3356
3357#~ msgid ""
3358#~ "Taler has an efficient design. Unlike"
3359#~ " Blockchain-based payment systems, such "
3360#~ "as Bitcoin, Taler will not threaten "
3361#~ "the availability of national electric "
3362#~ "grids or (significantly) contribute to "
3363#~ "environmental pollution. "
3364#~ msgstr ""
3365#~ "Taler arbeitet effizient und "
3366#~ "ressourcenschonend. Im Gegensatz zu "
3367#~ "Bezahlsystemen, die das Blockchain-Prinzip "
3368#~ "verwenden, verbraucht Taler keine Unmengen "
3369#~ "von Energie und überlastet kein "
3370#~ "Stromnetz. Damit bringt Taler auch einen"
3371#~ " erheblichen Vorteil in Sachen "
3372#~ "Umweltschutz."
3373
3374#~ msgid ""
3375#~ "Taler assumes governments can observe "
3376#~ "traditional wire transfers entering and "
3377#~ "leaving the Taler payment system. "
3378#~ "Starting with the wire transfers, "
3379#~ "governments can obtain: "
3380#~ msgstr ""
3381#~ "Taler beruht auf der Annahme, dass "
3382#~ "Staatsregierungen die herkömmlichen Bankverbindungen"
3383#~ " nachverfolgen können, wenn Überweisungen "
3384#~ "zwischen dem Taler-Bezahlsystem und den"
3385#~ " Geschäftsbanken stattfinden (Aufladungen der "
3386#~ "Taler-Geldbörse und Erstattung von "
3387#~ "Ansprüchen aus Geschäften). Regierungen "
3388#~ "besitzen damit die Informationen über"
3389
3390#~ msgid ""
3391#~ "The total amount of digital currency "
3392#~ "withdrawn by a customer. The government"
3393#~ " can impose limits on how much "
3394#~ "digital cash a customer can withdraw "
3395#~ "within a given time frame. "
3396#~ msgstr ""
3397#~ "den Gesamtbetrag digitaler Münzen, die "
3398#~ "Käufer an die Geldbörse überweisen - "
3399#~ "die Regierung kann dabei Höchstbeträge "
3400#~ "pro Zeitperiode festlegen"
3401
3402#~ msgid "The income received by any merchant via the Taler system. "
3403#~ msgstr "das Einkommen, das Verkäufer im Taler-Bezahlsystem erhalten"
3404
3405#~ msgid ""
3406#~ "The exact details of the underlying "
3407#~ "contract that was signed between "
3408#~ "customer and merchant. However, this "
3409#~ "information would typically not include "
3410#~ "the identity of the customer. "
3411#~ msgstr ""
3412#~ "die genauen Inhalte der zugrunde "
3413#~ "liegenden digitalen Kaufverträge zwischen "
3414#~ "Käufern und Verkäufern - ausgenommen "
3415#~ "jedoch private Daten der Käufer"
3416
3417#~ msgid ""
3418#~ "The amounts of digital coins "
3419#~ "legitimately withdrawn by customers from "
3420#~ "the exchange, the value of non-"
3421#~ "redeemed digital coins in customer's "
3422#~ "wallets, the value and corresponding "
3423#~ "wire details of deposit operations "
3424#~ "performed by merchants with the "
3425#~ "exchange, and the income of the "
3426#~ "exchange from transaction fees. "
3427#~ msgstr ""
3428#~ "die Beträge digitaler Münzen, die Käufer"
3429#~ " von Taler-Wechselstuben abbuchten, die "
3430#~ "verfügbaren Werte der Münzen in "
3431#~ "Geldbörsen, die Werte der Forderungen "
3432#~ "von Verkäufern und deren Rückerstattung "
3433#~ "durch Banküberweisung von den Wechselstuben"
3434#~ " an Geschäftsbanken sowie die Einkünfte "
3435#~ "der Wechselstuben aus Transaktionsgebühren"
3436
3437#~ msgid ""
3438#~ "GNU Taler is an electronic payment "
3439#~ "system under development at <a "
3440#~ "href=\"http://www.inria.fr/\">Inria</a>. We expect "
3441#~ "to make it operational in 2017. "
3442#~ "You can learn about Taler on this"
3443#~ " website, try the <a "
3444#~ "href=\"https://demo.taler.net\">demo</a> and look at"
3445#~ " our <a href=\"https://docs.taler.net\">developer</a>"
3446#~ " and <a href=\"https://api.taler.net\">API</a> "
3447#~ "documentation. "
3448#~ msgstr ""
3449#~ "Taler ist ein elektronisches Bezahlsystem, "
3450#~ "das bei <a href=\"http://www.inria.fr/\">Inria</a>"
3451#~ " entwickelt wird. Wir rechnen mit "
3452#~ "seiner Einführung im Jahr 2017. Auf "
3453#~ "der <a href=\"https://demo.taler.net\">Demo-"
3454#~ "Seite</a> kann man die Funktionsweise "
3455#~ "von Taler kennenlernen. Neben dieser "
3456#~ "Webseite bestehen die <a "
3457#~ "href=\"https://git.taler.net/\">Code-Dokumentation</a>, "
3458#~ "die <a "
3459#~ "href=\"https://docs.taler.net\">Entwicklerdokumentation</a> und"
3460#~ " die <a href=\"https://api.taler.net/\">API-"
3461#~ "Schnittstellendokumentation</a>. Wissenschaftliche "
3462#~ "Literatur findet man in der <a "
3463#~ "href=\"bibliography.html\">Bibliographie</a>."
3464
3465#~ msgid ""
3466#~ "Taler is easy to integrate with "
3467#~ "existing Web applications. Payments are "
3468#~ "cryptographically secured and are confirmed"
3469#~ " within milliseconds with extremely low "
3470#~ "transaction costs. "
3471#~ msgstr ""
3472#~ "Taler integriert sich einfach und leicht"
3473#~ " in bestehende Webanwendungen. Die "
3474#~ "Zahlungen sind kryptographisch verschlüsselt, "
3475#~ "innerhalb von Millisekunden bestätigt und "
3476#~ "extrem kostengünstig."
3477
3478#~ msgid ""
3479#~ "Taler does not introduce a new "
3480#~ "currency. Taler uses a digital wallet"
3481#~ " storing coins and payment service "
3482#~ "providers with escrow accounts in "
3483#~ "existing currencies. Thus, Taler's "
3484#~ "cryptographic coins correspond to existing "
3485#~ "currencies, such as US Dollars, Euros"
3486#~ " or even Bitcoins. "
3487#~ msgstr ""
3488#~ "Als Bezahlsystem stellt Taler noch keine"
3489#~ " neue Währung dar. Taler verbindet "
3490#~ "elektronische Geldbörsen, die digitale Münzen"
3491#~ " enthalten, und Anbieter für die "
3492#~ "Zahlungsabwicklung in bestehenden Währungen "
3493#~ "auf Treuhandkonten. Man kann also sagen,"
3494#~ " dass die kryptografischen Taler-Münzen "
3495#~ "herkömmlichen Währungen wie US-Dollar, "
3496#~ "Euro oder sogar Bitcoin entsprechen."
3497
3498#~ msgid ""
3499#~ "By design Taler does not suffer "
3500#~ "from many classes of security problems"
3501#~ " such as phishing or counterfeit. "
3502#~ "Despite its security features, Taler "
3503#~ "never rejects a legitimate customer due"
3504#~ " to a fraud-detection false positive."
3505#~ " "
3506#~ msgstr ""
3507#~ "Schon vom Konzept her verhindert Taler"
3508#~ " Falschgeld oder Sicherheitslücken wie "
3509#~ "Phishing und wird gleichzeitig jedoch "
3510#~ "niemals Käufern betrügerische Absichten "
3511#~ "unterstellen können."
3512
3513#~ msgid ""
3514#~ "When using Taler, merchant's revenue is"
3515#~ " transparent for tax collection "
3516#~ "authorities. Unlike cash and most "
3517#~ "digital currencies, Taler helps prevent "
3518#~ "black markets. Taler is not suitable "
3519#~ "for illegal activities. "
3520#~ msgstr ""
3521#~ "Taler macht das Einkommen von Verkäufern"
3522#~ " (Einzelpersonen und Handelsunternehmen) den "
3523#~ "Steuerbehörden einsehbar. Im Gegensatz zu "
3524#~ "Bargeld und den meisten virtuellen "
3525#~ "Währungen unterbindet Taler somit jede "
3526#~ "Art von Schwarzmarkt. Dieses Bezahlsystem "
3527#~ "eignet sich aus Prinzip nicht für "
3528#~ "illegale Geschäfte."
3529
3530#~ msgid ""
3531#~ "When you pay with Taler, your "
3532#~ "identity does not have to be "
3533#~ "revealed to the merchant. Just like "
3534#~ "payments in cash, nobody else can "
3535#~ "track how you spent your electronic "
3536#~ "money. However, you obtain a legally "
3537#~ "valid proof of payment. "
3538#~ msgstr ""
3539#~ "Taler hält die Identität der Käufer "
3540#~ "geheim, auch gegenüber den Verkäufern. "
3541#~ "Genauso wie beim Kauf mit Bargeld "
3542#~ "kann niemand Auskunft darüber erlangen, "
3543#~ "was mit dem Taler-Bezahlsystem gekauft"
3544#~ " wurde. Die Käufer erhalten jedoch "
3545#~ "garantiert einen Nachweis über ihre "
3546#~ "Zahlung und den erfolgten Eigentumsübergang."
3547
3548#~ msgid ""
3549#~ "Taler provides protocols and reference "
3550#~ "implementations that in principle enables "
3551#~ "anybody to run their own payment "
3552#~ "infrastructure, be it individuals, "
3553#~ "organizations or whole countries. Since "
3554#~ "the reference implementation is a <a "
3555#~ "href=\"http://www.gnu.org/\">GNU</a> package, it "
3556#~ "will always remain free software. "
3557#~ msgstr ""
3558#~ "Taler bietet Protokolle und "
3559#~ "Referenzanwendungen, die prinzipiell für alle"
3560#~ " möglichen Bezahlsysteme von Einzelpersonen, "
3561#~ "Organisationen und sogar ganzen Staaten "
3562#~ "geeignet sind. Die Referenzanwendung als "
3563#~ "<a href=\"http://www.gnu.org/\">GNU-Package</a> wird"
3564#~ " immer freie Software sein und "
3565#~ "bleiben."
3566
3567#~ msgid ""
3568#~ "<p>To pay with Taler, customers install"
3569#~ " an electronic wallet on their "
3570#~ "device. Before the first payment, the"
3571#~ " wallet's balance must be charged in"
3572#~ " the desired currency by some other"
3573#~ " means of payment.</p> <p>Once the "
3574#~ "wallet is charged, payments on websites"
3575#~ " take only one click, are never "
3576#~ "falsely rejected by fraud detection and"
3577#~ " do not pose any risk of "
3578#~ "phishing or identity theft.</p> "
3579#~ msgstr ""
3580#~ "Um mit dem Taler-Bezahlsystem einkaufen"
3581#~ " zu können, muss man eine "
3582#~ "elektronische Geldbörse auf einem Endgerät "
3583#~ "installieren. Vor der ersten Bezahlung "
3584#~ "ist es nötig, einen Wert in der"
3585#~ " gewünschten Währung an die Geldbörse "
3586#~ "zu überweisen. Dies erfolgt durch "
3587#~ "herkömmliche Banküberweisung oder durch "
3588#~ "Kreditkarten. Der aufgeladene Wert der "
3589#~ "Geldbörse kann dann mit nur einem "
3590#~ "Klick zum Bezahlen auf Webseiten "
3591#~ "verwendet werden. Die Verkäufer müssen "
3592#~ "diese Bezahlung als berechtigt annehmen. "
3593#~ "Ein Datendiebstahl (Phishing) ist dabei "
3594#~ "technisch ausgeschlossen, es werden keine "
3595#~ "persönlichen Daten übermittelt."
3596
3597#~ msgid ""
3598#~ "<p>To receive Taler payments, a merchant"
3599#~ " needs a bank account in the "
3600#~ "desired currency. We provide supporting "
3601#~ "software in various programming languages "
3602#~ "to make the integration painless. The"
3603#~ " merchant's backend for Taler transaction"
3604#~ " processing can run on the merchant's"
3605#~ " premises or be hosted by a "
3606#~ "third party.</p> "
3607#~ msgstr ""
3608#~ "Um Zahlungen erhalten zu können, "
3609#~ "brauchen Verkäufer ein Girokonto in der"
3610#~ " gewünschten Währung bei einer "
3611#~ "Geschäftsbank. Das Taler-Bezahlsystem "
3612#~ "unterstützt die Software verschiedener "
3613#~ "Verkaufsplattformen in mehreren Programmiersprachen,"
3614#~ " um die Integration so einfach wie"
3615#~ " möglich zu machen. Das Backend der"
3616#~ " Händlerplattform kann dabei auf dem "
3617#~ "eigenen Rechner des Verkäufers oder "
3618#~ "gehostet laufen, um die Taler-Buchungen"
3619#~ " durchzuführen."
3620
3621#~ msgid ""
3622#~ "We have created a company, Taler "
3623#~ "Systems SA in Luxembourg.<br> Please "
3624#~ "contact <tt>invest@taler.net</tt> if you want"
3625#~ " to invest in Taler. "
3626#~ msgstr ""
3627#~ "Taler Systems SA in Luxemburg ist "
3628#~ "die Gesellschaft, die Investitionen in "
3629#~ "das Taler-Bezahlsystem ermöglicht. Bitte "
3630#~ "kontaktieren Sie dafür <tt>invest@taler.net</tt>."
3631
3632#~ msgid ""
3633#~ "Our <a href=\"about.html\">team</a> combines "
3634#~ "world-class business leaders, cryptographers, "
3635#~ "software engineers, civil-rights activists "
3636#~ "and academics. We are unified by a"
3637#~ " vision of how payments should work"
3638#~ " and the goal of imposing this "
3639#~ "vision upon the world. "
3640#~ msgstr ""
3641#~ "Unser <a href=\"about.html\">team</a> vereint "
3642#~ "Unternehmensleiter, Kryptographen, Softwareingenieure, "
3643#~ "Aktivisten und Akademiker. Uns verbindet "
3644#~ "die Vision eines einwandfreien Bezahlsystems"
3645#~ " und die Zielsetzung, diese Vision in"
3646#~ " die Welt zu bringen."
3647
3648#~ msgid ""
3649#~ "We are currently supported by <a "
3650#~ "href=\"http://www.inria.fr/\">Inria</a>, the French "
3651#~ "national institute for research in "
3652#~ "informatics and automation, and the <a"
3653#~ " href=\"https://renewablefreedom.org/\">Renewable Freedom "
3654#~ "Foundation</a>. "
3655#~ msgstr ""
3656#~ "Gegenwärtig unterstützen uns <a "
3657#~ "href=\"http://www.inria.fr/\">Inria</a>, das Nationale "
3658#~ "Forschungsinstitut für Informatik und "
3659#~ "Automatisierung, sowie die <a "
3660#~ "href=\"https://renewablefreedom.org/\">Renewable Freedom "
3661#~ "Foundation</a>."
3662
3663#~ msgid ""
3664#~ "All transactions in Taler are secured"
3665#~ " using <a href=\"bibliography.html\">modern "
3666#~ "cryptography</a> and trust in all "
3667#~ "parties is minimized. Financial damage "
3668#~ "is bounded (for customers, merchants and"
3669#~ " the exchange) even in the case "
3670#~ "that systems are compromised and private"
3671#~ " keys are stolen. Databases can be"
3672#~ " audited for consistency, resulting in "
3673#~ "either the detection of compromised "
3674#~ "systems or the demonstration that "
3675#~ "participants were honest. Actual transaction"
3676#~ " costs are fractions of a cent. \n"
3677#~ msgstr ""
3678#~ "Alle Buchungen im Taler-Bezahlsystem "
3679#~ "sind mit aktuellen Methoden der <a "
3680#~ "href=\"bibliography.html\">Kryptographie</a> geschützt. "
3681#~ "Selbst im Fall eines Verlusts oder "
3682#~ "Diebstahls privater Schlüssel ist ein "
3683#~ "eventueller Schaden für Käufer, Verkäufer "
3684#~ "und Wechselstuben begrenzt. Die Datenbanken"
3685#~ " unterstehen einem unabhängigen Auditing, "
3686#~ "das die Konsistenz ihrer Daten und "
3687#~ "Verfahren überprüft. Kompromittierte Endgeräte "
3688#~ "können so schnell erkannt werden. Das"
3689#~ " Auditing stellt zudem die Beweisgrundlage"
3690#~ " für die Rechtschaffenheit aller "
3691#~ "Beteiligten dar. Die Buchungskosten betragen"
3692#~ " übrigens nur Bruchteile eines Cent "
3693#~ "pro Buchung."
3694
3695#~ msgid ""
3696#~ "The scalable business model for Taler"
3697#~ " is the operation of the payment "
3698#~ "service provider, which converts money "
3699#~ "from traditional payment systems (MasterCard,"
3700#~ " SEPA, UPI, Visa, Bitcoin, ACH, "
3701#~ "SWIFT, etc.) to anonymous electronic "
3702#~ "coins in the same currency. The "
3703#~ "customer can then redeem the electronic"
3704#~ " coins at a merchant, who can "
3705#~ "exchange them for money represented "
3706#~ "using traditional payment systems at the"
3707#~ " exchange. The exchange charges fees "
3708#~ "to facilitate the transactions. "
3709#~ msgstr ""
3710#~ "Das Geschäftsmodell von Taler liegt im"
3711#~ " Betrieb des Bezahlsystems, das Geld "
3712#~ "aus herkömmlichen Bezahlsystemen (wie z.B. "
3713#~ "MasterCard, SEPA, UPI, Visa, Bitcoin, "
3714#~ "ACH, SWIFT usw.) in anonymisierte "
3715#~ "digitale Münzen des selben nominalen "
3716#~ "Werts in der gegebenen Währung "
3717#~ "umtauscht. Die Käufer können diese "
3718#~ "digitalen Münzen bei einem Verkäufer "
3719#~ "ausgeben, der sie wiederum bei einer "
3720#~ "Taler-Wechselstube in Geld eintauscht, "
3721#~ "das er auf sein Girokonto gutgeschrieben"
3722#~ " bekommt. Die Wechselstube erhebt für "
3723#~ "die Überweisungen geringe Gebühren."
3724
3725#~ msgid ""
3726#~ "The payment service operator runs the"
3727#~ " <em>Taler exchange</em>. The exchange "
3728#~ "charges <b>transaction fees</b> to customers"
3729#~ " or merchants. Its operational expenses "
3730#~ "are from wire transfers with the "
3731#~ "banking system and the operation of "
3732#~ "the computing infrastructure. "
3733#~ msgstr ""
3734#~ "Der Serviceanbieter betreibt ein Bezahlsystem"
3735#~ " mit einer Taler-Wechselstube. Die "
3736#~ "Wechselstube erhebt Gebühren für die "
3737#~ "Überweisungen von Käufern oder Verkäufern. "
3738#~ "Die Gebühren enthalten die notwendigen "
3739#~ "Kosten für die Banküberweisungen von und"
3740#~ " zu Geschäftsbanken und für den "
3741#~ "Betrieb der IT-Infrastruktur."
3742
3743#~ msgid ""
3744#~ "Taler is a cost-effective electronic "
3745#~ "payment system which provides you with"
3746#~ " cryptographic proof that the payment "
3747#~ "worked correctly within milliseconds. Your "
3748#~ "Web customers pay with previously "
3749#~ "unknown levels of convenience without "
3750#~ "risk of fraud. "
3751#~ msgstr ""
3752#~ "Taler ist ein kostengünstiges elektronisches"
3753#~ " Bezahlsystem, das eine fehlerfrei "
3754#~ "abgewickelte Bezahlung innerhalb von "
3755#~ "Millisekunden kryptographisch bestätigt. Die "
3756#~ "Kunden Ihrer Webshops zahlen mit einem"
3757#~ " bisher noch nie dagewesenen Komfort "
3758#~ "und werden keine Betrugsgefahren mehr "
3759#~ "fürchten müssen."
3760
3761#~ msgid ""
3762#~ "Processing transactions with Taler is "
3763#~ "fast, allowing you to confirm the "
3764#~ "transaction with your customer virtually "
3765#~ "immediately. Your customers will appreciate"
3766#~ " that they do not have to type"
3767#~ " in credit card information and play"
3768#~ " the &quot;verified by&quot; game. By "
3769#~ "making payments significantly more convenient"
3770#~ " for your customers, you may be "
3771#~ "able to use Taler for small "
3772#~ "transactions that would not work with"
3773#~ " credit card payments due to the "
3774#~ "mental overhead for customers. "
3775#~ msgstr ""
3776#~ "Die Verarbeitung von Transaktionen im "
3777#~ "Taler-Bezahlsystem erfolgt blitzschnell und "
3778#~ "bestätigt Käufern und Verkäufern im "
3779#~ "gleichen Augenblick die erfolgte Bezahlung."
3780#~ " Ihre Kunden müssen keine "
3781#~ "Kreditkarteninformationen preisgeben. Mit Taler "
3782#~ "werden vor allem kleinere Zahlbeträge "
3783#~ "wesentlich effizienter und bequemer verbucht"
3784#~ " als in anderen, teureren und "
3785#~ "komplizierteren Verfahren. "
3786
3787#~ msgid ""
3788#~ "You will have cryptographic proof of "
3789#~ "payment from the Taler payment service"
3790#~ " provider. With Taler you never "
3791#~ "handle sensitive customer account information"
3792#~ " and thus do not have to "
3793#~ "undergo any particular security audits "
3794#~ "(such as PCI DSS). Your systems "
3795#~ "will have customer contracts with "
3796#~ "qualified signatures for all transactions "
3797#~ "which you can use in court in "
3798#~ "case of disputes. "
3799#~ msgstr ""
3800#~ "Verkäufer erhalten eine kryptographisch "
3801#~ "verschlüsselte Zahlungsbestätigung vom Betreiber "
3802#~ "des Taler-Bezahlsystems. Taler verarbeitet "
3803#~ "nie sensible Bankdaten der Kunden, daher"
3804#~ " müssen sich die Verkäufer auch "
3805#~ "keinen Sicherheitsaudits (wie PCI DSS) "
3806#~ "unterziehen. Die Verkäufer bekommen "
3807#~ "stattdessen digital signierte Kaufverträge, "
3808#~ "die sie mit den Käufern abgeschlossen"
3809#~ " haben, mit denen sie sogar bei "
3810#~ "Gerichtsprozessen Transaktionsnachweise erbringen "
3811#~ "können."
3812
3813#~ msgid ""
3814#~ "Taler is free software, and you "
3815#~ "can use the liberally-licensed reference"
3816#~ " code as a starting point to "
3817#~ "integrate Taler into your services. To"
3818#~ " use Taler, you do not need to"
3819#~ " pay license fees, and the free "
3820#~ "software development model will ensure "
3821#~ "that you can select from many "
3822#~ "competing integrators for support. "
3823#~ msgstr ""
3824#~ "Taler ist freie Software. Der "
3825#~ "Referenzcode darf aufgrund seiner öffentlichen"
3826#~ " Lizenz in die bestehenden Bezahlsysteme"
3827#~ " und Handelsplattformen integriert werden "
3828#~ "und für seine Verwendung fallen auch "
3829#~ "keine Lizenzgebühren an. Das "
3830#~ "Entwicklungsprinzip freier Software stellt "
3831#~ "zudem sicher, dass man immer aus "
3832#~ "einer Vielzahl von Anbietern für "
3833#~ "Integration und Support wählen kann."
3834
3835#~ msgid ""
3836#~ "Taler is uses efficient cryptographic "
3837#~ "constructions with low bandwidth and "
3838#~ "storage requirements. Combined with Taler's"
3839#~ " strong security which makes fraud "
3840#~ "impossible, Taler payment service providers"
3841#~ " can operate with very low overhead"
3842#~ " and thus offer low transaction fees."
3843#~ " "
3844#~ msgstr ""
3845#~ "Taler verwendet effiziente kryptographische "
3846#~ "Algorithmen mit nur geringem Bedarf an"
3847#~ " Bandbreite und Speicherplatz. Betreiber "
3848#~ "von Taler-Bezahlsystemen müssen von "
3849#~ "ihren Kunden nur minimale Gebühren "
3850#~ "verlangen, weil sie einen hohen "
3851#~ "Sicherheitsstand bieten, der Verluste durch"
3852#~ " Betrug von vornherein ausschließt, und "
3853#~ "ihre Anlagen gleichzeitig sehr geringe "
3854#~ "Fixkosten erfordern."
3855
3856#~ msgid ""
3857#~ "Taler can be used for different "
3858#~ "currencies (such as Euros, US Dollars"
3859#~ " or Bitcoins) and any amount, limited"
3860#~ " only by applicable regulatation and "
3861#~ "what denominations the payment service "
3862#~ "provider supports. "
3863#~ msgstr ""
3864#~ "Taler kann man einsetzen für "
3865#~ "verschiedene Währungen (wie Euro, US-"
3866#~ "Dollar oder Bitcoin) und für jeden "
3867#~ "Betrag bis zu den Grenzen, die "
3868#~ "allein gesetzliche Regulierungen bzw. die "
3869#~ "Betreiber von Bezahlsystemen festlegen."
3870
3871#~ msgid ""
3872#~ "Taler prevents tax evasion and money "
3873#~ "laundering. Taler's protocols are efficient"
3874#~ " and do not use wasteful proof-"
3875#~ "of-work calculations. Taler encourages "
3876#~ "transparency by providing an open "
3877#~ "standard and free software reference "
3878#~ "implementations. "
3879#~ msgstr ""
3880#~ "Taler verhindert Steuerhinterziehung und "
3881#~ "Geldwäsche. Die Protokolle von Taler "
3882#~ "sind effizient und benötigen kein "
3883#~ "stromfressendes Mining. Taler unterstützt die"
3884#~ " Transparenz mit einem offenen Standard "
3885#~ "und freier Software."
3886
3887#~ msgid ""
3888#~ "The backend <b>signs</b> and <b>stores</b> "
3889#~ "the complete terms of offers made "
3890#~ "by the merchant to customers. For "
3891#~ "this, the merchant's frontend needs to"
3892#~ " give the customer's order in a "
3893#~ "JSON format to the backend. "
3894#~ msgstr ""
3895#~ "Das Backend signiert und speichert "
3896#~ "sämtliche Bedingungen der Verträge, die "
3897#~ "Käufer und Verkäufer vorher vereinbart "
3898#~ "hatten. Das Händlerfrontend liefert dafür "
3899#~ "die vom Käufer bestellten Artikelnummern "
3900#~ "im JSON-Format an das Backend."
3901
3902#~ msgid ""
3903#~ "The backend <b>validates</b> payments received"
3904#~ " from the wallet and <b>executes</b> "
3905#~ "them with the Taler payment service "
3906#~ "provider (the exchange). For this, the"
3907#~ " merchant's frontend must pass the "
3908#~ "payment request through to the Taler "
3909#~ "backend and check the HTTP status "
3910#~ "code that is returned. "
3911#~ msgstr ""
3912#~ "Das Backend validiert die Signaturen aus"
3913#~ " den Taler-Geldbörsen und sendet sie"
3914#~ " der Taler-Wechselstube zur Ausführung. "
3915#~ "Das Händlerfrontend muss dann die "
3916#~ "Zahlungsaufforderung an das Taler-Backend "
3917#~ "senden und den zurückgemeldeten HTTP-"
3918#~ "Statuscode gegenprüfen."
3919
3920#~ msgid ""
3921#~ "The backend can <b>list</b> completed "
3922#~ "transactions and <b>map</b> wire transfers "
3923#~ "to sets of business transactions, "
3924#~ "including the exact terms of each "
3925#~ "contract. "
3926#~ msgstr ""
3927#~ "Das Backend kann die erfolgreich "
3928#~ "abgewickelten Transaktionen auflisten und die"
3929#~ " Überweisungen an Girokonten der "
3930#~ "Geschäftsbanken mit den genauen Bedingungen"
3931#~ " jedes Kaufvertrags und nach "
3932#~ "Geschäftsvorfällen geordnet anzeigen."
3933
diff --git a/locale/en/LC_MESSAGES/messages.po b/locale/en/LC_MESSAGES/messages.po
index 8e3d522d..bb3307fe 100644
--- a/locale/en/LC_MESSAGES/messages.po
+++ b/locale/en/LC_MESSAGES/messages.po
@@ -1,18 +1,23 @@
1 1
2msgid "" 2msgid ""
3msgstr "" 3msgstr ""
4"Project-Id-Version: PROJECT VERSION\n" 4"Project-Id-Version: PROJECT VERSION Report-Msgid-Bugs-To: EMAIL@ADDRESS "
5"POT-Creation-Date: 2017-05-23 10:32+0200 PO-Revision-Date: YEAR-MO-DA "
6"HO:MI+ZONE Last-Translator: FULL NAME <EMAIL@ADDRESS> Language: en "
7"Language-Team: en <LL@li.org> Plural-Forms: nplurals=2; plural=(n!=1) "
8"MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-"
9"Transfer-Encoding: 8bit Generated-By: Babel 2.3.4 \n"
5"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" 10"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
6"POT-Creation-Date: 2017-05-23 10:32+0200\n" 11"POT-Creation-Date: 2017-06-02 13:48+0200\n"
7"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9"Language: en\n" 14"Language: en\n"
10"Language-Team: en <LL@li.org>\n" 15"Language-Team: en <LL@li.org>\n"
11"Plural-Forms: nplurals=2; plural=(n!=1)\n" 16"Plural-Forms: nplurals=2; plural=(n != 1)\n"
12"MIME-Version: 1.0\n" 17"MIME-Version: 1.0\n"
13"Content-Type: text/plain; charset=utf-8\n" 18"Content-Type: text/plain; charset=utf-8\n"
14"Content-Transfer-Encoding: 8bit\n" 19"Content-Transfer-Encoding: 8bit\n"
15"Generated-By: Babel 2.3.4\n" 20"Generated-By: Babel 2.4.0\n"
16 21
17#: about.html.j2:8 22#: about.html.j2:8
18msgid "" 23msgid ""
@@ -109,11 +114,9 @@ msgstr ""
109 114
110#: citizens.html.j2:9 115#: citizens.html.j2:9
111msgid "" 116msgid ""
112"Taler largely functions like digital cash. You\n" 117"Taler largely functions like digital cash. You withdraw money from your "
113"withdraw money from your bank account into your\n" 118"bank account into your electronic wallet, and can henceforth spend "
114"electronic wallet, and can henceforth spend digital\n" 119"digital cash. The electronic wallet can carry multiple currencies."
115"cash. The electronic wallet can carry multiple\n"
116"currencies.\n"
117msgstr "" 120msgstr ""
118 121
119#: citizens.html.j2:25 governments.html.j2:58 index.html.j2:56 122#: citizens.html.j2:25 governments.html.j2:58 index.html.j2:56
@@ -123,12 +126,10 @@ msgstr ""
123 126
124#: citizens.html.j2:27 127#: citizens.html.j2:27
125msgid "" 128msgid ""
126"Taler uses modern cryptography, ensuring that there\n" 129"Taler uses modern cryptography, ensuring that there is no counterfeit. "
127"is no counterfeit. Your digital wallet is safer\n" 130"Your digital wallet is safer than your physical wallet. At most, you can "
128"than your physical wallet. At most, you can lose\n" 131"lose its contents because your computer or mobile is irreparably damaged "
129"its contents because your computer or mobile is\n" 132"or compromised. Unlike a physical wallet, you can make backups to secure "
130"irreparably damaged or compromised. Unlike a\n"
131"physical wallet, you can make backups to secure\n"
132"against data loss." 133"against data loss."
133msgstr "" 134msgstr ""
134 135
@@ -138,12 +139,10 @@ msgstr ""
138 139
139#: citizens.html.j2:39 140#: citizens.html.j2:39
140msgid "" 141msgid ""
141"Your transactions are private, neither the payment\n" 142"Your transactions are private, neither the payment service provider nor "
142"service provider nor merchant needs to learn your\n" 143"merchant needs to learn your identity. There is no need to give out "
143"identity. There is no need to give out credit card\n" 144"credit card numbers or other sensitive information. The merchant will "
144"numbers or other sensitive information. The merchant\n" 145"only be able to do exactly the transaction you agreed to."
145"will only be able to do exactly the transaction you\n"
146"agreed to."
147msgstr "" 146msgstr ""
148 147
149#: citizens.html.j2:50 148#: citizens.html.j2:50
@@ -152,11 +151,10 @@ msgstr ""
152 151
153#: citizens.html.j2:52 152#: citizens.html.j2:52
154msgid "" 153msgid ""
155"You will be able to withdraw money to replenish the\n" 154"You will be able to withdraw money to replenish the digital coins in your"
156"digital coins in your wallet using your credit card\n" 155" wallet using your credit card or wire transfers. Afterwards you can pay "
157"or wire transfers. Afterwards you can pay with\n" 156"with one-click using the Taler wallet, which optionally keeps your "
158"one-click using the Taler wallet, which optionally\n" 157"transaction history on your computer."
159"keeps your transaction history on your computer."
160msgstr "" 158msgstr ""
161 159
162#: citizens.html.j2:61 index.html.j2:42 160#: citizens.html.j2:61 index.html.j2:42
@@ -165,12 +163,10 @@ msgstr ""
165 163
166#: citizens.html.j2:63 164#: citizens.html.j2:63
167msgid "" 165msgid ""
168"Coins in your digital wallet will be of the same\n" 166"Coins in your digital wallet will be of the same denomination as the cash"
169"denomination as the cash in your physical wallet.\n" 167" in your physical wallet. Taler is not a crypto-currency, so you do not "
170"Taler is not a crypto-currency, so you do not have\n" 168"have to worry about cryto-currency related value fluctuations. Banking "
171"to worry about cryto-currency related value\n" 169"with Taler is subject to the usual government protections for financial "
172"fluctuations. Banking with Taler is subject to the\n"
173"usual government protections for financial\n"
174"services." 170"services."
175msgstr "" 171msgstr ""
176 172
@@ -181,9 +177,8 @@ msgstr ""
181#: citizens.html.j2:81 177#: citizens.html.j2:81
182msgid "" 178msgid ""
183"We currently provide a <a href=\"wallet.html\">wallet browser " 179"We currently provide a <a href=\"wallet.html\">wallet browser "
184"extension</a> for Chromium, Chrome, Firefox, Opera\n" 180"extension</a> for Chromium, Chrome, Firefox, Opera and Edge. Wallets for "
185"and Edge. Wallets for mobile phones and other platforms will be " 181"mobile phones and other platforms will be available in the future."
186"available in the future.\n"
187msgstr "" 182msgstr ""
188 183
189#: citizens.html.j2:88 184#: citizens.html.j2:88
@@ -193,7 +188,7 @@ msgstr ""
193#: citizens.html.j2:90 188#: citizens.html.j2:90
194msgid "" 189msgid ""
195"You can see how Taler works in practice by visiting our <a " 190"You can see how Taler works in practice by visiting our <a "
196"href=\"https://demo.taler.net\">demo page</a>.\n" 191"href=\"https://demo.taler.net\">demo page</a>."
197msgstr "" 192msgstr ""
198 193
199#: citizens.html.j2:103 194#: citizens.html.j2:103
@@ -201,39 +196,32 @@ msgid "The Taler Wallet for customers"
201msgstr "" 196msgstr ""
202 197
203#: citizens.html.j2:105 198#: citizens.html.j2:105
204msgid "" 199msgid "Customers interact with the Taler system using the Taler wallet:"
205"Customers interact with the Taler system using\n"
206"the Taler wallet:"
207msgstr "" 200msgstr ""
208 201
209#: citizens.html.j2:110 202#: citizens.html.j2:110
210msgid "" 203msgid ""
211"To <b>withdraw</b> electronic coins, the customer\n" 204"To <b>withdraw</b> electronic coins, the customer transfers funds from "
212"transfers funds from his bank account to the Taler\n" 205"his bank account to the Taler payment service provider (the exchange). "
213"payment service provider (the exchange). The wire\n" 206"The wire transfer subject must match a code identifying the customer's "
214"transfer subject must match a code identifying the\n" 207"wallet. After the wire transfer is complete, the wallet will "
215"customer's wallet. After the wire transfer is\n" 208"automatically withdraw the coins from the exchange."
216"complete, the wallet will automatically withdraw the\n"
217"coins from the exchange."
218msgstr "" 209msgstr ""
219 210
220#: citizens.html.j2:118 211#: citizens.html.j2:118
221msgid "" 212msgid ""
222"To <b>spend</b> electronic coins, a merchant must\n" 213"To <b>spend</b> electronic coins, a merchant must cause the wallet to "
223"cause the wallet to display a proposal for some\n" 214"display a proposal for some purchase. The wallet will ask the customer "
224"purchase. The wallet will ask the customer for\n" 215"for one-click confirmation. Payment is then instant. Transaction "
225"one-click confirmation. Payment is then instant.\n" 216"histories and digitally signed contracts can be preserved by the wallet."
226"Transaction histories and digitally signed contracts\n"
227"can be preserved by the wallet."
228msgstr "" 217msgstr ""
229 218
230#: citizens.html.j2:125 219#: citizens.html.j2:125
231msgid "" 220msgid ""
232"The customer can use the wallet to <b>review</b> his\n" 221"The customer can use the wallet to <b>review</b> his balance. The wallet "
233"balance. The wallet can contain different\n" 222"can contain different currencies, and may be shared across devices. "
234"currencies, and may be shared across\n" 223"Customers can make backups of the wallet to secure its contents against "
235"devices. Customers can make backups of the wallet to\n" 224"hardware failures."
236"secure its contents against hardware failures."
237msgstr "" 225msgstr ""
238 226
239#: contact.html.j2:6 227#: contact.html.j2:6
@@ -246,12 +234,10 @@ msgstr ""
246 234
247#: contact.html.j2:15 235#: contact.html.j2:15
248msgid "" 236msgid ""
249"An archived, public mailing list for GNU Taler is\n" 237"An archived, public mailing list for GNU Taler is hosted at <a "
250"hosted at\n"
251"<a "
252"href=\"https://lists.gnu.org/mailman/listinfo/taler\">https://lists.gnu.org/mailman/listinfo/taler</a>." 238"href=\"https://lists.gnu.org/mailman/listinfo/taler\">https://lists.gnu.org/mailman/listinfo/taler</a>."
253" You can send messages to the list\n" 239" You can send messages to the list at <a "
254"at <a href=\"mailto:taler@gnu.org\">taler@gnu.org</a>.\n" 240"href=\"mailto:taler@gnu.org\">taler@gnu.org</a>."
255msgstr "" 241msgstr ""
256 242
257#: contact.html.j2:25 243#: contact.html.j2:25
@@ -260,9 +246,8 @@ msgstr ""
260 246
261#: contact.html.j2:27 247#: contact.html.j2:27
262msgid "" 248msgid ""
263"Team members are generally reachable at\n" 249"Team members are generally reachable at <tt>LASTNAME@taler.net</tt>. All "
264"<tt>LASTNAME@taler.net</tt>. All of us\n" 250"of us support receiving GnuPG encrypted e-mails."
265"support receiving GnuPG encrypted e-mails.\n"
266msgstr "" 251msgstr ""
267 252
268#: contact.html.j2:36 253#: contact.html.j2:36
@@ -271,11 +256,10 @@ msgstr ""
271 256
272#: contact.html.j2:38 257#: contact.html.j2:38
273msgid "" 258msgid ""
274"We track open feature requests and bugs in our\n" 259"We track open feature requests and bugs in our <a "
275"<a href=\"https://gnunet.org/bugs/\">Bug tracker</a>,\n" 260"href=\"https://gnunet.org/bugs/\">Bug tracker</a>, which is shared with "
276"which is shared with the GNUnet project.\n" 261"the GNUnet project. You can also report bugs or feature requests to the "
277"You can also report bugs or feature requests to the\n" 262"mailing list."
278"mailing list.\n"
279msgstr "" 263msgstr ""
280 264
281#: contact.html.j2:49 265#: contact.html.j2:49
@@ -284,8 +268,39 @@ msgstr ""
284 268
285#: contact.html.j2:51 269#: contact.html.j2:51
286msgid "" 270msgid ""
287"For non-technical commercial requests, please contact\n" 271"For non-technical commercial requests, please contact <tt>ceo AT "
288"<tt>ceo AT taler.net</tt>.\n" 272"taler.net</tt>."
273msgstr ""
274
275#: copyright.html.j2:6
276msgid "Copyright Assignment"
277msgstr ""
278
279#: copyright.html.j2:8
280msgid ""
281"<p>Contributors to GNU Taler with Git access must sign the <a "
282"href=\"pdf/copyright.pdf\">copyright assignment</a> to ensure that the <a"
283" href=\"https://gnunet.org/git/gnunet-"
284"ev.git/tree/gnunet_taler_agreement.tex\">GNUnet e.V. --- Taler Systems SA"
285" agreement on licensing and collaborative development</a> of the GNUnet "
286"and GNU Taler projects is satisfied.</p>"
287msgstr ""
288
289#: copyright.html.j2:17
290msgid ""
291"<p>The agreements ensure that the code will continue to be made available"
292" under free software licenses, but gives developers the freedom to move "
293"code between GNUnet and GNU Taler without worrying about licenses and the"
294" company the ability to dual-license (for example, so that we can "
295"distribute via App-stores that are hostile to free software).</p>"
296msgstr ""
297
298#: copyright.html.j2:25
299msgid ""
300"<p>Minor contributions (basically, anyone without Git access) do not "
301"require copyright assignment. Pseudonymous contributions are accepted, in"
302" this case simply sign the agreement with your pseudonym. Scanned copies "
303"are sufficient, but snail mail is preferred.</p>"
289msgstr "" 304msgstr ""
290 305
291#: developers.html.j2:5 306#: developers.html.j2:5
@@ -298,17 +313,14 @@ msgstr ""
298 313
299#: developers.html.j2:15 314#: developers.html.j2:15
300msgid "" 315msgid ""
301"GNU Taler is free software implementing an open\n" 316"GNU Taler is free software implementing an open protocol. Anybody is "
302"protocol. Anybody is welcome to integrate our reference\n" 317"welcome to integrate our reference implementation into their "
303"implementation into their applications. Different\n" 318"applications. Different components of Taler are being made available "
304"components of Taler are being made available under\n" 319"under different licenses. The Affero GPLv3+ is used for the exchange, the"
305"different licenses. The Affero GPLv3+ is used for the\n" 320" LGPLv3+ is used for reference code demonstrating integration with "
306"exchange, the LGPLv3+ is used for reference code\n" 321"merchant platforms, and licenses like GPLv3+ are used for wallets and "
307"demonstrating integration with merchant platforms, and\n" 322"related customer-facing software. We are open for constructive "
308"licenses like GPLv3+ are used for\n" 323"suggestions for maximizing the adoption of this payment platform."
309"wallets and related customer-facing software. We are\n"
310"open for constructive suggestions for maximizing the\n"
311"adoption of this payment platform.\n"
312msgstr "" 324msgstr ""
313 325
314#: developers.html.j2:32 326#: developers.html.j2:32
@@ -317,18 +329,14 @@ msgstr ""
317 329
318#: developers.html.j2:35 330#: developers.html.j2:35
319msgid "" 331msgid ""
320"Taler is designed to work on the Internet. To\n" 332"Taler is designed to work on the Internet. To ensure that Taler payments "
321"ensure that Taler payments can work with\n" 333"can work with restrictive network setups, Taler uses a RESTful protocol "
322"restrictive network setups, Taler uses a RESTful\n" 334"over HTTP or HTTPS. Taler's security does not depend upon the use of "
323"protocol over HTTP or HTTPS. Taler's security does\n" 335"HTTPS, but obviously merchants may choose to offer HTTPS for consistency "
324"not depend upon the use of HTTPS, but obviously\n" 336"and because it generally is better for privacy compared to HTTP. Taler "
325"merchants may choose to offer HTTPS for consistency\n" 337"uses JSON to encode structure data, making it easy to integrate Taler "
326"and because it generally is better for privacy\n" 338"with existing Web applications. Taler's protocol is documented in detail "
327"compared to HTTP. Taler uses JSON to encode\n" 339"at <a href=\"https://api.taler.net/\">api.taler.net</a>."
328"structure data, making it easy to integrate Taler\n"
329"with existing Web applications. Taler's protocol\n"
330"is documented in\n"
331"detail at <a href=\"https://api.taler.net/\">api.taler.net</a>.\n"
332msgstr "" 340msgstr ""
333 341
334#: developers.html.j2:58 342#: developers.html.j2:58
@@ -337,15 +345,13 @@ msgstr ""
337 345
338#: developers.html.j2:61 346#: developers.html.j2:61
339msgid "" 347msgid ""
340"Taler is currently primarily developed by a\n" 348"Taler is currently primarily developed by a research team at <a "
341"research team at <a href=\"http://www.inria.fr/\">Inria</a> and\n" 349"href=\"http://www.inria.fr/\">Inria</a> and <a "
342"<a href=\"https://gnunet.org/\">GNUnet</a>. However,\n" 350"href=\"https://gnunet.org/\">GNUnet</a>. However, contributions from "
343"contributions from anyone are welcome. Our Git\n" 351"anyone are welcome. Our Git repositories can be cloned using the Git and "
344"repositories can be cloned using the Git and HTTP\n" 352"HTTP access methods against <tt>git.taler.net</tt> with the name of the "
345"access methods against <tt>git.taler.net</tt> with\n" 353"respective repository. A list of repositories can be found in our <a "
346"the name of the respective repository. A list of\n" 354"href=\"https://git.taler.net/\">GitWeb</a>."
347"repositories can be found in\n"
348"our <a href=\"https://git.taler.net/\">GitWeb</a>.\n"
349msgstr "" 355msgstr ""
350 356
351#: developers.html.j2:75 357#: developers.html.j2:75
@@ -354,11 +360,10 @@ msgstr ""
354 360
355#: developers.html.j2:78 361#: developers.html.j2:78
356msgid "" 362msgid ""
357"In addition to this website, the <a\n" 363"In addition to this website, the <a "
358"href=\"https://git.taler.net/\">documented code</a> and\n" 364"href=\"https://git.taler.net/\">documented code</a> and the <a "
359"the <a href=\"https://api.taler.net/\">API\n" 365"href=\"https://api.taler.net/\">API documentation</a>. Technical papers "
360"documentation</a>. Technical papers can be found in\n" 366"can be found in our <a href=\"bibliography.html\">bibliography</a>."
361"our <a href=\"bibliography.html\">bibliography</a>.\n"
362msgstr "" 367msgstr ""
363 368
364#: developers.html.j2:88 369#: developers.html.j2:88
@@ -367,11 +372,9 @@ msgstr ""
367 372
368#: developers.html.j2:91 373#: developers.html.j2:91
369msgid "" 374msgid ""
370"We have a mailing list for developer discussions.\n" 375"We have a mailing list for developer discussions. You can subscribe to or"
371"You can subscribe to or read the list archive at\n" 376" read the list archive at <a "
372"<a "
373"href=\"http://lists.gnu.org/mailman/listinfo/taler\">http://lists.gnu.org/mailman/listinfo/taler</a>." 377"href=\"http://lists.gnu.org/mailman/listinfo/taler\">http://lists.gnu.org/mailman/listinfo/taler</a>."
374"\n"
375msgstr "" 378msgstr ""
376 379
377#: developers.html.j2:101 380#: developers.html.j2:101
@@ -380,10 +383,9 @@ msgstr ""
380 383
381#: developers.html.j2:104 384#: developers.html.j2:104
382msgid "" 385msgid ""
383"We have <a href=\"https://buildbot.net/\">Buildbot</a>\n" 386"We have <a href=\"https://buildbot.net/\">Buildbot</a> automation tests "
384"automation tests to detect regressions and check for\n" 387"to detect regressions and check for portability at <a "
385"portability at <a\n" 388"href=\"https://buildbot.taler.net/\">buildbot.taler.net</a>."
386"href=\"https://buildbot.taler.net/\">buildbot.taler.net</a>.\n"
387msgstr "" 389msgstr ""
388 390
389#: developers.html.j2:113 391#: developers.html.j2:113
@@ -392,11 +394,9 @@ msgstr ""
392 394
393#: developers.html.j2:116 395#: developers.html.j2:116
394msgid "" 396msgid ""
395"We use\n" 397"We use <a href=\"http://ltp.sourceforge.net/coverage/lcov.php\">LCOV</a> "
396"<a href=\"http://ltp.sourceforge.net/coverage/lcov.php\">LCOV</a>\n" 398"to analyze the code coverage of our tests, the results are available at "
397"to analyze the code coverage of our tests, the\n" 399"<a href=\"https://lcov.taler.net/\">lcov.taler.net</a>."
398"results are available\n"
399"at <a href=\"https://lcov.taler.net/\">lcov.taler.net</a>.\n"
400msgstr "" 400msgstr ""
401 401
402#: developers.html.j2:126 402#: developers.html.j2:126
@@ -405,11 +405,9 @@ msgstr ""
405 405
406#: developers.html.j2:129 406#: developers.html.j2:129
407msgid "" 407msgid ""
408"We\n" 408"We use <a href=\"https://gnunet.org/gauger\">Gauger</a> for performance "
409"use <a href=\"https://gnunet.org/gauger\">Gauger</a>\n" 409"regression analysis of the exchange backend at <a "
410"for performance regression analysis of the exchange\n" 410"href=\"https://gauger.taler.net/\">gauger.taler.net</a>."
411"backend\n"
412"at <a href=\"https://gauger.taler.net/\">gauger.taler.net</a>.\n"
413msgstr "" 411msgstr ""
414 412
415#: developers.html.j2:145 413#: developers.html.j2:145
@@ -418,120 +416,88 @@ msgstr ""
418 416
419#: developers.html.j2:148 417#: developers.html.j2:148
420msgid "" 418msgid ""
421"The Taler system consists of protocols executed among\n" 419"The Taler system consists of protocols executed among a number of actors "
422"a number of actors as illustrated in the illustration on the right.\n" 420"as illustrated in the illustration on the right. Typical transactions "
423"Typical transactions involve the following steps:\n" 421"involve the following steps:"
424msgstr "" 422msgstr ""
425 423
426#: developers.html.j2:158 424#: developers.html.j2:158
427msgid "" 425msgid ""
428"A customer instructs his <b>bank</b> to\n" 426"A customer instructs his <b>bank</b> to transfer funds from his account "
429"transfer funds from his account to the Taler\n" 427"to the Taler exchange (top left). In the subject of the transaction, he "
430"exchange (top left). In the subject of the\n" 428"includes an authentication token from his electronic <b>wallet</b>. In "
431"transaction, he includes an authentication\n" 429"Taler terminology, the customer creates a reserve at the exchange."
432"token from his electronic <b>wallet</b>. In\n"
433"Taler terminology, the customer creates a\n"
434"reserve at the exchange.\n"
435msgstr "" 430msgstr ""
436 431
437#: developers.html.j2:170 432#: developers.html.j2:170
438msgid "" 433msgid ""
439"Once the exchange has received the wire\n" 434"Once the exchange has received the wire transfer, it allows the "
440"transfer, it allows the customer's electronic\n" 435"customer's electronic wallet to <b>withdraw</b> electronic coins. The "
441"wallet to <b>withdraw</b> electronic coins.\n" 436"electronic coins are digital representations of the original currency "
442"The electronic coins are digital\n" 437"from the transfer. It is important to note that the exchange does not "
443"representations of the original currency from\n" 438"learn the &quot;serial numbers&quot; of the coins created in this "
444"the transfer. It is important to note that the\n" 439"process, so it cannot tell later which customer purchased what at which "
445"exchange does not learn the &quot;serial\n" 440"merchant. The use of Taler does not change the currency or the total "
446"numbers&quot; of the coins created in this\n" 441"value of the funds (except for fees which the exchange may charge for the"
447"process, so it cannot tell later which customer\n" 442" service)."
448"purchased what at which merchant. The use of\n"
449"Taler does not change the currency or the total\n"
450"value of the funds (except for fees which the\n"
451"exchange may charge for the service).\n"
452msgstr "" 443msgstr ""
453 444
454#: developers.html.j2:188 445#: developers.html.j2:188
455msgid "" 446msgid ""
456"Once the customer has the digital coins in his\n" 447"Once the customer has the digital coins in his wallet, the wallet can be "
457"wallet, the wallet can be used to <b>spend</b>\n" 448"used to <b>spend</b> the coins with merchant portals that support the "
458"the coins with merchant portals that support\n" 449"Taler payment system and accept the respective exchange as a business "
459"the Taler payment system and accept the\n" 450"partner (bottom arrow). This creates a digital contract signed by the "
460"respective exchange as a business partner\n" 451"customer's coins and the merchant. If necessary, the customer can later "
461"(bottom arrow). This creates a digital contract\n" 452"use this digitally signed contract in a court of law to prove the exact "
462"signed by the customer's coins and the\n" 453"terms of the contract and that he paid the respective amount. The "
463"merchant. If necessary, the customer can later\n" 454"customer does not learn the banking details of the merchant, and Taler "
464"use this digitally signed contract in a court\n" 455"does not require the merchant to learn the identity of the customer. "
465"of law to prove the exact terms of the contract\n" 456"Naturally, the customer can spend any fraction of his digital coins (the "
466"and that he paid the respective amount. The\n" 457"system takes care of customers getting change)."
467"customer does not learn the banking details of\n"
468"the merchant, and Taler does not require the\n"
469"merchant to learn the identity of the\n"
470"customer. Naturally, the customer can spend any\n"
471"fraction of his digital coins (the system takes\n"
472"care of customers getting change).\n"
473msgstr "" 458msgstr ""
474 459
475#: developers.html.j2:210 460#: developers.html.j2:210
476msgid "" 461msgid ""
477"Merchants receiving digital\n" 462"Merchants receiving digital coins <b>deposit</b> the respective claims "
478"coins <b>deposit</b> the respective claims\n" 463"that resulted from the contract signing with the customer at the exchange"
479"that resulted from the contract signing with\n" 464" to redeem the coins. The deposit step does not reveal the details of the"
480"the customer at the exchange to redeem the\n" 465" contract between the customer and the merchant or the identity of the "
481"coins. The deposit step does not reveal the\n" 466"customer to the exchange in any way. However, the exchange does learn the"
482"details of the contract between the customer\n" 467" identity of the merchant via the provided bank routing information. The "
483"and the merchant or the identity of the\n" 468"merchant can, for example when compelled by the state for taxation, "
484"customer to the exchange in any way. However,\n" 469"provide information linking the individual deposit to the respective "
485"the exchange does learn the identity of the\n" 470"contract signed by the customer. Thus, the exchange's database allows the"
486"merchant via the provided bank routing\n" 471" state to enforce that merchants pay applicable taxes (and do not engage "
487"information. The merchant can, for example\n" 472"in illegal contracts)."
488"when compelled by the state for taxation,\n"
489"provide information linking the individual\n"
490"deposit to the respective contract signed by\n"
491"the customer. Thus, the exchange's database\n"
492"allows the state to enforce that merchants pay\n"
493"applicable taxes (and do not engage in illegal\n"
494"contracts).\n"
495msgstr "" 473msgstr ""
496 474
497#: developers.html.j2:233 475#: developers.html.j2:233
498msgid "" 476msgid ""
499"Finally, the exchange transfers funds\n" 477"Finally, the exchange transfers funds corresponding to the digital coins "
500"corresponding to the digital coins redeemed by\n" 478"redeemed by the merchants to the merchant's <b>bank</b> account. The "
501"the merchants to the merchant's <b>bank</b>\n" 479"exchange may combine multiple small transactions into one larger bank "
502"account. The exchange may combine multiple\n" 480"transfer. The merchant can query the exchange about the relationship "
503"small transactions into one larger bank\n" 481"between the bank transfers and the individual claims that were deposited."
504"transfer. The merchant can query the exchange\n"
505"about the relationship between the bank\n"
506"transfers and the individual claims that were\n"
507"deposited.\n"
508msgstr "" 482msgstr ""
509 483
510#: developers.html.j2:247 484#: developers.html.j2:247
511msgid "" 485msgid ""
512"Most importantly, the exchange keeps\n" 486"Most importantly, the exchange keeps cryptographic proofs that allow it "
513"cryptographic proofs that allow it to\n" 487"to demonstrate that it is operating correctly to third parties. The "
514"demonstrate that it is operating correctly to\n" 488"system requires an external <b>auditor</b>, such as a government-"
515"third parties. The system requires an\n" 489"appointed financial regulatory body, to frequently verify the exchange's "
516"external <b>auditor</b>, such as a\n" 490"databases and check that its bank balance matches the total value of the "
517"government-appointed financial regulatory body,\n" 491"remaining coins in circulation."
518"to frequently verify the exchange's databases\n"
519"and check that its bank balance matches the\n"
520"total value of the remaining coins in\n"
521"circulation.\n"
522msgstr "" 492msgstr ""
523 493
524#: developers.html.j2:262 494#: developers.html.j2:262
525msgid "" 495msgid ""
526"Without the auditor, the exchange operators\n" 496"Without the auditor, the exchange operators could embezzle funds they are"
527"could embezzle funds they are holding in\n" 497" holding in reserve. Customers and merchants cannot cheat each other or "
528"reserve. Customers and merchants cannot cheat\n" 498"the exchange. If any party's computers are compromised, the financial "
529"each other or the exchange. If any party's\n" 499"damage is limited to the respective party and proportional to the funds "
530"computers are compromised, the financial damage\n" 500"they have in circulation during the period of the compromise."
531"is limited to the respective party and\n"
532"proportional to the funds they have in\n"
533"circulation during the period of the\n"
534"compromise.\n"
535msgstr "" 501msgstr ""
536 502
537#: faq.html.j2:5 503#: faq.html.j2:5
@@ -540,17 +506,17 @@ msgstr ""
540 506
541#: faq.html.j2:6 507#: faq.html.j2:6
542msgid "" 508msgid ""
543"<p>Taler does not use any Blockchain technology or Bitcoin directly.\n" 509"<p>Taler does not use any Blockchain technology or Bitcoin directly. "
544"Taler is not based on proof-of-work or any other distributed consensus\n" 510"Taler is not based on proof-of-work or any other distributed consensus "
545"mechanism. Instead Taler is based on blind signatures.</p>\n" 511"mechanism. Instead Taler is based on blind signatures.</p>"
546msgstr "" 512msgstr ""
547 513
548#: faq.html.j2:11 514#: faq.html.j2:11
549msgid "" 515msgid ""
550"<p>It would be possible, however, to withdraw coins denominated in\n" 516"<p>It would be possible, however, to withdraw coins denominated in "
551"Bitcoin into a Taler wallet (with an appropriate exchange), which\n" 517"Bitcoin into a Taler wallet (with an appropriate exchange), which would "
552"would give some benefits over plain Bitcoin, such as instant\n" 518"give some benefits over plain Bitcoin, such as instant confirmation "
553"confirmation times.</p>\n" 519"times.</p>"
554msgstr "" 520msgstr ""
555 521
556#: faq.html.j2:18 522#: faq.html.j2:18
@@ -559,9 +525,9 @@ msgstr ""
559 525
560#: faq.html.j2:19 526#: faq.html.j2:19
561msgid "" 527msgid ""
562"<p>Your wallet stores digital coins and thus ultimately your computer\n" 528"<p>Your wallet stores digital coins and thus ultimately your computer "
563"holds your balance. The exchange keeps funds matching all unspent\n" 529"holds your balance. The exchange keeps funds matching all unspent coins "
564"coins in an escrow bank account.</p>\n" 530"in an escrow bank account.</p>"
565msgstr "" 531msgstr ""
566 532
567#: faq.html.j2:25 533#: faq.html.j2:25
@@ -570,16 +536,16 @@ msgstr ""
570 536
571#: faq.html.j2:26 537#: faq.html.j2:26
572msgid "" 538msgid ""
573"<p>Since the digital coins of value in your wallet are anonymized, the\n" 539"<p>Since the digital coins of value in your wallet are anonymized, the "
574"exchange can not assist you in recovering a lost or stolen wallet.\n" 540"exchange can not assist you in recovering a lost or stolen wallet. Just "
575"Just like with a physical wallet for cash, you are responsible for\n" 541"like with a physical wallet for cash, you are responsible for keeping it "
576"keeping it safe.</p>\n" 542"safe.</p>"
577msgstr "" 543msgstr ""
578 544
579#: faq.html.j2:32 545#: faq.html.j2:32
580msgid "" 546msgid ""
581"<p>The risk of losing a wallet can be mitigated by making backups or\n" 547"<p>The risk of losing a wallet can be mitigated by making backups or "
582"keeping the balance reasonably low.</p>\n" 548"keeping the balance reasonably low.</p>"
583msgstr "" 549msgstr ""
584 550
585#: faq.html.j2:37 551#: faq.html.j2:37
@@ -588,9 +554,9 @@ msgstr ""
588 554
589#: faq.html.j2:38 555#: faq.html.j2:38
590msgid "" 556msgid ""
591"<p>In case of a compromise of one of your devices, an attacker can\n" 557"<p>In case of a compromise of one of your devices, an attacker can spend "
592"spend coins from your wallet. Checking your balance might reveal\n" 558"coins from your wallet. Checking your balance might reveal to you that "
593"to you that your device has been compromised.</p>\n" 559"your device has been compromised.</p>"
594msgstr "" 560msgstr ""
595 561
596#: faq.html.j2:44 562#: faq.html.j2:44
@@ -599,15 +565,15 @@ msgstr ""
599 565
600#: faq.html.j2:45 566#: faq.html.j2:45
601msgid "" 567msgid ""
602"<p>If your friend provides goods or services for you in exchange for a\n" 568"<p>If your friend provides goods or services for you in exchange for a "
603"payment, they can easily set up a Taler merchant and receive the\n" 569"payment, they can easily set up a Taler merchant and receive the payment "
604"payment in their bank account.</p>\n" 570"in their bank account.</p>"
605msgstr "" 571msgstr ""
606 572
607#: faq.html.j2:50 573#: faq.html.j2:50
608msgid "" 574msgid ""
609"<p>Future versions of the Taler wallet may allow exchanging coins\n" 575"<p>Future versions of the Taler wallet may allow exchanging coins among "
610"among friends directly as well.</p>\n" 576"friends directly as well.</p>"
611msgstr "" 577msgstr ""
612 578
613#: faq.html.j2:56 579#: faq.html.j2:56
@@ -616,12 +582,12 @@ msgstr ""
616 582
617#: faq.html.j2:57 583#: faq.html.j2:57
618msgid "" 584msgid ""
619"<p>Taler wallets can store digital coins corresponding to multiple\n" 585"<p>Taler wallets can store digital coins corresponding to multiple "
620"different currencies such as the Euro, US Dollars or Bitcoins.</p>\n" 586"different currencies such as the Euro, US Dollars or Bitcoins.</p>"
621msgstr "" 587msgstr ""
622 588
623#: faq.html.j2:61 589#: faq.html.j2:61
624msgid "<p>Taler currently does not offer conversion between currencies.</p>\n" 590msgid "<p>Taler currently does not offer conversion between currencies.</p>"
625msgstr "" 591msgstr ""
626 592
627#: faq.html.j2:65 593#: faq.html.j2:65
@@ -630,12 +596,11 @@ msgstr ""
630 596
631#: faq.html.j2:66 597#: faq.html.j2:66
632msgid "" 598msgid ""
633"<p>Your wallet stores digital coins that are <a\n" 599"<p>Your wallet stores digital coins that are <a "
634"href=\"https://en.wikipedia.org/wiki/Blind_signature\">blindly\n" 600"href=\"https://en.wikipedia.org/wiki/Blind_signature\">blindly signed</a>"
635"signed</a> by an exchange. The use of a blind signature protects your\n" 601" by an exchange. The use of a blind signature protects your privacy as it"
636"privacy as it prevents the exchange from knowing which coin it signed\n" 602" prevents the exchange from knowing which coin it signed for which "
637"for which customer.</p>\n" 603"customer.</p>"
638"\n"
639msgstr "" 604msgstr ""
640 605
641#: glossary.html.j2:6 606#: glossary.html.j2:6
@@ -645,7 +610,7 @@ msgstr ""
645#: glossary.html.j2:8 610#: glossary.html.j2:8
646msgid "" 611msgid ""
647"trusted third party that verifies that the `exchange` is operating " 612"trusted third party that verifies that the `exchange` is operating "
648"correctly\n" 613"correctly"
649msgstr "" 614msgstr ""
650 615
651#: glossary.html.j2:12 616#: glossary.html.j2:12
@@ -655,7 +620,7 @@ msgstr ""
655#: glossary.html.j2:14 620#: glossary.html.j2:14
656msgid "" 621msgid ""
657"traditional financial service provider who offers wire `transfers` " 622"traditional financial service provider who offers wire `transfers` "
658"between accounts\n" 623"between accounts"
659msgstr "" 624msgstr ""
660 625
661#: glossary.html.j2:18 626#: glossary.html.j2:18
@@ -665,7 +630,7 @@ msgstr ""
665#: glossary.html.j2:20 630#: glossary.html.j2:20
666msgid "" 631msgid ""
667"coins are individual token representing a certain amount of value, also " 632"coins are individual token representing a certain amount of value, also "
668"known as the `denomination` of the coin\n" 633"known as the `denomination` of the coin"
669msgstr "" 634msgstr ""
670 635
671#: glossary.html.j2:24 636#: glossary.html.j2:24
@@ -673,7 +638,7 @@ msgid "contract"
673msgstr "" 638msgstr ""
674 639
675#: glossary.html.j2:26 640#: glossary.html.j2:26
676msgid "the proposal signed by the wallet.\n" 641msgid "the proposal signed by the wallet."
677msgstr "" 642msgstr ""
678 643
679#: glossary.html.j2:30 644#: glossary.html.j2:30
@@ -683,7 +648,7 @@ msgstr ""
683#: glossary.html.j2:32 648#: glossary.html.j2:32
684msgid "" 649msgid ""
685"unit of currency, specifies both the currency and the face value of a " 650"unit of currency, specifies both the currency and the face value of a "
686"`coin`\n" 651"`coin`"
687msgstr "" 652msgstr ""
688 653
689#: glossary.html.j2:36 654#: glossary.html.j2:36
@@ -693,7 +658,7 @@ msgstr ""
693#: glossary.html.j2:38 658#: glossary.html.j2:38
694msgid "" 659msgid ""
695"RSA key used by the exchange to certify that a given `coin` is valid and " 660"RSA key used by the exchange to certify that a given `coin` is valid and "
696"of a particular `denomination`\n" 661"of a particular `denomination`"
697msgstr "" 662msgstr ""
698 663
699#: glossary.html.j2:42 664#: glossary.html.j2:42
@@ -704,7 +669,7 @@ msgstr ""
704msgid "" 669msgid ""
705"operation by which a merchant passes coins to an exchange, expecting the " 670"operation by which a merchant passes coins to an exchange, expecting the "
706"exchange to credit his `bank` account in the future using a wire " 671"exchange to credit his `bank` account in the future using a wire "
707"`transfer`\n" 672"`transfer`"
708msgstr "" 673msgstr ""
709 674
710#: glossary.html.j2:48 675#: glossary.html.j2:48
@@ -716,7 +681,7 @@ msgid ""
716"a `coin` is dirty if its public key may be known to an entity other than " 681"a `coin` is dirty if its public key may be known to an entity other than "
717"the customer, thereby creating the danger of some entity being able to " 682"the customer, thereby creating the danger of some entity being able to "
718"link multiple transactions of coin's owner if the coin is not refreshed " 683"link multiple transactions of coin's owner if the coin is not refreshed "
719"first\n" 684"first"
720msgstr "" 685msgstr ""
721 686
722#: glossary.html.j2:54 687#: glossary.html.j2:54
@@ -725,8 +690,8 @@ msgstr ""
725 690
726#: glossary.html.j2:56 691#: glossary.html.j2:56
727msgid "" 692msgid ""
728"Taler's payment service provider. Issues eletronic `coins` during " 693"Taler's payment service provider. Issues eletronic `coins` during "
729"`withdrawal` and redeems them when they are `deposited` by merchants.\n" 694"`withdrawal` and redeems them when they are `deposited` by merchants."
730msgstr "" 695msgstr ""
731 696
732#: glossary.html.j2:60 697#: glossary.html.j2:60
@@ -734,7 +699,7 @@ msgid "extension"
734msgstr "" 699msgstr ""
735 700
736#: glossary.html.j2:62 701#: glossary.html.j2:62
737msgid "implementation of a `wallet` for browsers\n" 702msgid "implementation of a `wallet` for browsers"
738msgstr "" 703msgstr ""
739 704
740#: glossary.html.j2:66 705#: glossary.html.j2:66
@@ -742,7 +707,7 @@ msgid "fresh coin"
742msgstr "" 707msgstr ""
743 708
744#: glossary.html.j2:68 709#: glossary.html.j2:68
745msgid "a `coin` is fresh if its public key is only known to the customer\n" 710msgid "a `coin` is fresh if its public key is only known to the customer"
746msgstr "" 711msgstr ""
747 712
748#: glossary.html.j2:72 713#: glossary.html.j2:72
@@ -752,7 +717,7 @@ msgstr ""
752#: glossary.html.j2:74 717#: glossary.html.j2:74
753msgid "" 718msgid ""
754"offline key used by the exchange to certify denomination keys and message" 719"offline key used by the exchange to certify denomination keys and message"
755" signing keys\n" 720" signing keys"
756msgstr "" 721msgstr ""
757 722
758#: glossary.html.j2:78 723#: glossary.html.j2:78
@@ -760,7 +725,7 @@ msgid "message signing key"
760msgstr "" 725msgstr ""
761 726
762#: glossary.html.j2:80 727#: glossary.html.j2:80
763msgid "key used by the exchange to sign online messages, other than coins\n" 728msgid "key used by the exchange to sign online messages, other than coins"
764msgstr "" 729msgstr ""
765 730
766#: glossary.html.j2:84 731#: glossary.html.j2:84
@@ -770,15 +735,11 @@ msgstr ""
770#: glossary.html.j2:86 735#: glossary.html.j2:86
771msgid "" 736msgid ""
772"specification of the details of a transaction, specifies the payment " 737"specification of the details of a transaction, specifies the payment "
773"obligations\n" 738"obligations for the customer (i.e. the amount), the deliverables of the "
774"for the customer (i.e. the amount), the deliverables of the merchant and " 739"merchant and other related information, such as deadlines or locations; "
775"other\n" 740"However, it lacks some information that the backend is supposed to "
776"related information, such as deadlines or locations; However, it lacks " 741"provide. In other words, after the backend adds the missing information "
777"some\n" 742"to the offer and signs it, it becomes a proposal."
778"information that the backend is supposed to provide.\n"
779"In other words, after the backend adds the missing information to the "
780"offer and\n"
781"signs it, it becomes a proposal.\n"
782msgstr "" 743msgstr ""
783 744
784#: glossary.html.j2:95 745#: glossary.html.j2:95
@@ -786,7 +747,7 @@ msgid "owner"
786msgstr "" 747msgstr ""
787 748
788#: glossary.html.j2:97 749#: glossary.html.j2:97
789msgid "a `coin` is owned by the entity that knows the private key of the coin\n" 750msgid "a `coin` is owned by the entity that knows the private key of the coin"
790msgstr "" 751msgstr ""
791 752
792#: glossary.html.j2:101 753#: glossary.html.j2:101
@@ -796,7 +757,7 @@ msgstr ""
796#: glossary.html.j2:103 757#: glossary.html.j2:103
797msgid "" 758msgid ""
798"message that cryptographically demonstrates that a particular claim is " 759"message that cryptographically demonstrates that a particular claim is "
799"correct\n" 760"correct"
800msgstr "" 761msgstr ""
801 762
802#: glossary.html.j2:107 763#: glossary.html.j2:107
@@ -804,7 +765,7 @@ msgid "proposal"
804msgstr "" 765msgstr ""
805 766
806#: glossary.html.j2:109 767#: glossary.html.j2:109
807msgid "a sketch that has been completed and signed by the merchant backend.\n" 768msgid "a sketch that has been completed and signed by the merchant backend."
808msgstr "" 769msgstr ""
809 770
810#: glossary.html.j2:113 771#: glossary.html.j2:113
@@ -815,7 +776,7 @@ msgstr ""
815msgid "" 776msgid ""
816"funds set aside for future use; either the balance of a customer at the " 777"funds set aside for future use; either the balance of a customer at the "
817"exchange ready for `withdrawal`, or the funds kept in the exchange's bank" 778"exchange ready for `withdrawal`, or the funds kept in the exchange's bank"
818" account to cover obligations from coins in circulation\n" 779" account to cover obligations from coins in circulation"
819msgstr "" 780msgstr ""
820 781
821#: glossary.html.j2:119 782#: glossary.html.j2:119
@@ -825,7 +786,7 @@ msgstr ""
825#: glossary.html.j2:121 786#: glossary.html.j2:121
826msgid "" 787msgid ""
827"operation by which a `dirty` `coin` is converted into one or more `fresh`" 788"operation by which a `dirty` `coin` is converted into one or more `fresh`"
828" coins\n" 789" coins"
829msgstr "" 790msgstr ""
830 791
831#: glossary.html.j2:125 792#: glossary.html.j2:125
@@ -836,7 +797,7 @@ msgstr ""
836msgid "" 797msgid ""
837"operation by which a merchant steps back from the right to funds that he " 798"operation by which a merchant steps back from the right to funds that he "
838"obtained from a `deposit` operation, giving the right to the funds back " 799"obtained from a `deposit` operation, giving the right to the funds back "
839"to the customer\n" 800"to the customer"
840msgstr "" 801msgstr ""
841 802
842#: glossary.html.j2:131 803#: glossary.html.j2:131
@@ -847,7 +808,7 @@ msgstr ""
847msgid "" 808msgid ""
848"users can share ownership of a `coin` by sharing access to the coin's " 809"users can share ownership of a `coin` by sharing access to the coin's "
849"private key, thereby allowing all co-owners to spend the coin at any " 810"private key, thereby allowing all co-owners to spend the coin at any "
850"time.\n" 811"time."
851msgstr "" 812msgstr ""
852 813
853#: glossary.html.j2:137 814#: glossary.html.j2:137
@@ -855,7 +816,7 @@ msgid "signing key"
855msgstr "" 816msgstr ""
856 817
857#: glossary.html.j2:139 818#: glossary.html.j2:139
858msgid "see message signing key.\n" 819msgid "see message signing key."
859msgstr "" 820msgstr ""
860 821
861#: glossary.html.j2:143 822#: glossary.html.j2:143
@@ -865,7 +826,7 @@ msgstr ""
865#: glossary.html.j2:145 826#: glossary.html.j2:145
866msgid "" 827msgid ""
867"operation by which a customer gives a merchant the right to `deposit` " 828"operation by which a customer gives a merchant the right to `deposit` "
868"coins in return for merchandise\n" 829"coins in return for merchandise"
869msgstr "" 830msgstr ""
870 831
871#: glossary.html.j2:149 832#: glossary.html.j2:149
@@ -873,7 +834,7 @@ msgid "transfer"
873msgstr "" 834msgstr ""
874 835
875#: glossary.html.j2:151 836#: glossary.html.j2:151
876msgid "method of sending funds between `bank` accounts\n" 837msgid "method of sending funds between `bank` accounts"
877msgstr "" 838msgstr ""
878 839
879#: glossary.html.j2:155 840#: glossary.html.j2:155
@@ -883,7 +844,7 @@ msgstr ""
883#: glossary.html.j2:157 844#: glossary.html.j2:157
884msgid "" 845msgid ""
885"method by which ownership is exclusively transferred from one entity to " 846"method by which ownership is exclusively transferred from one entity to "
886"another\n" 847"another"
887msgstr "" 848msgstr ""
888 849
889#: glossary.html.j2:161 850#: glossary.html.j2:161
@@ -891,7 +852,7 @@ msgid "transaction id"
891msgstr "" 852msgstr ""
892 853
893#: glossary.html.j2:163 854#: glossary.html.j2:163
894msgid "unique number by which a merchant identifies a `transaction`\n" 855msgid "unique number by which a merchant identifies a `transaction`"
895msgstr "" 856msgstr ""
896 857
897#: glossary.html.j2:167 858#: glossary.html.j2:167
@@ -901,7 +862,7 @@ msgstr ""
901#: glossary.html.j2:169 862#: glossary.html.j2:169
902msgid "" 863msgid ""
903"software running on a customer's computer; withdraws, stores and spends " 864"software running on a customer's computer; withdraws, stores and spends "
904"coins\n" 865"coins"
905msgstr "" 866msgstr ""
906 867
907#: glossary.html.j2:173 868#: glossary.html.j2:173
@@ -909,7 +870,7 @@ msgid "wire transfer"
909msgstr "" 870msgstr ""
910 871
911#: glossary.html.j2:175 872#: glossary.html.j2:175
912msgid "see `transfer`\n" 873msgid "see `transfer`"
913msgstr "" 874msgstr ""
914 875
915#: glossary.html.j2:179 876#: glossary.html.j2:179
@@ -919,7 +880,7 @@ msgstr ""
919#: glossary.html.j2:181 880#: glossary.html.j2:181
920msgid "" 881msgid ""
921"subject of a wire `transfer`; usually a random string to uniquely " 882"subject of a wire `transfer`; usually a random string to uniquely "
922"identify the `transfer`\n" 883"identify the `transfer`"
923msgstr "" 884msgstr ""
924 885
925#: glossary.html.j2:185 886#: glossary.html.j2:185
@@ -929,7 +890,7 @@ msgstr ""
929#: glossary.html.j2:187 890#: glossary.html.j2:187
930msgid "" 891msgid ""
931"operation by which a `wallet` can convert funds from a reserve to fresh " 892"operation by which a `wallet` can convert funds from a reserve to fresh "
932"coins\n" 893"coins"
933msgstr "" 894msgstr ""
934 895
935#: governments.html.j2:6 896#: governments.html.j2:6
@@ -938,13 +899,12 @@ msgstr ""
938 899
939#: governments.html.j2:8 900#: governments.html.j2:8
940msgid "" 901msgid ""
941"Taler provides accountability to ensure business operate\n" 902"Taler provides accountability to ensure business operate legally, while "
942"legally, while also respecting civil liberties of\n" 903"also respecting civil liberties of citizens. Taler is a payment system "
943"citizens. Taler is a payment system based on\n" 904"based on open standards and free software. Taler needs governments as "
944"open standards and free software. Taler needs\n" 905"they set a financial framework and act as trusted regulators. Taler "
945"governments as they set a financial framework and act as\n" 906"contributes to digital sovereignty in the critical financial "
946"trusted regulators. Taler contributes to digital\n" 907"infrastructure."
947"sovereignty in the critical financial infrastructure.\n"
948msgstr "" 908msgstr ""
949 909
950#: governments.html.j2:25 index.html.j2:71 910#: governments.html.j2:25 index.html.j2:71
@@ -953,51 +913,44 @@ msgstr ""
953 913
954#: governments.html.j2:28 914#: governments.html.j2:28
955msgid "" 915msgid ""
956"Taler was built with the goal of fighting corruption and\n" 916"Taler was built with the goal of fighting corruption and supporting "
957"supporting taxation. With Taler, the receiver of any\n" 917"taxation. With Taler, the receiver of any form of payment is easily "
958"form of payment is easily identified by the government,\n" 918"identified by the government, and the merchant can be compelled to "
959"and the merchant can be compelled to provide the contract\n" 919"provide the contract that was accepted by the customer. Governments can "
960"that was accepted by the customer. Governments can use\n" 920"use this data to tax businesses and individuals based on their income, "
961"this data to tax businesses and individuals based on\n" 921"making tax evasion and black markets less viable."
962"their income, making tax evasion and black markets less\n"
963"viable.\n"
964msgstr "" 922msgstr ""
965 923
966#: governments.html.j2:41 924#: governments.html.j2:41
967msgid "" 925msgid ""
968"Thus, despite offering anonymity for citizens spending\n" 926"Thus, despite offering anonymity for citizens spending digital cash to "
969"digital cash to buy goods and services, Taler also\n" 927"buy goods and services, Taler also ensures that the state can observe "
970"ensures that the state can observe incoming funds. This\n" 928"incoming funds. This can be used to ensure businesses engage only in "
971"can be used to ensure businesses engage only in legal\n" 929"legal activities, and do not evade income tax, sales tax or value-added "
972"activities, and do not evade income tax, sales tax or\n" 930"tax. However, this observational capability does not extend to the "
973"value-added tax. However, this observational capability\n" 931"immediate personal domain. In particular, monitoring does not cover "
974"does not extend to the immediate personal domain. In\n" 932"shared access to funds with trusted friends and family, or synchronizing "
975"particular, monitoring does not cover shared access to\n" 933"wallets across multiple devices."
976"funds with trusted friends and family, or synchronizing\n"
977"wallets across multiple devices.\n"
978msgstr "" 934msgstr ""
979 935
980#: governments.html.j2:61 936#: governments.html.j2:61
981msgid "" 937msgid ""
982"Taler's payments are cryptographically secured. Thus,\n" 938"Taler's payments are cryptographically secured. Thus, customers, "
983"customers, merchants and the Taler payment service provider\n" 939"merchants and the Taler payment service provider (the exchange) can "
984"(the exchange) can mathematically\n" 940"mathematically demonstrate their lawful behavior in court in case of "
985"demonstrate their lawful behavior in court in case of\n" 941"disputes. Financial damages are strictly limited, improving economic "
986"disputes. Financial damages are strictly limited,\n" 942"security for individuals, merchants, the exchange and the state."
987"improving economic security for individuals, merchants,\n"
988"the exchange and the state.\n"
989msgstr "" 943msgstr ""
990 944
991#: governments.html.j2:73 945#: governments.html.j2:73
992msgid "" 946msgid ""
993"As a payment service provider, the Taler exchange is\n" 947"As a payment service provider, the Taler exchange is subject to financial"
994"subject to financial regulation. Financial regulation and\n" 948" regulation. Financial regulation and regular audits are critical to "
995"regular audits are critical to establish trust. In\n" 949"establish trust. In particular, the Taler design mandates the existence "
996"particular, the Taler design mandates the existence of an\n" 950"of an independent auditor who checks cryptographic proofs that accumulate"
997"independent auditor who checks cryptographic proofs that\n" 951" at the exchange to ensure that the escrow account is managed honestly. "
998"accumulate at the exchange to ensure that the escrow\n" 952"This ensures that the exchange does not threaten the economy due to "
999"account is managed honestly. This ensures that the\n" 953"fraud."
1000"exchange does not threaten the economy due to fraud.\n"
1001msgstr "" 954msgstr ""
1002 955
1003#: governments.html.j2:88 index.html.j2:97 956#: governments.html.j2:88 index.html.j2:97
@@ -1006,10 +959,9 @@ msgstr ""
1006 959
1007#: governments.html.j2:91 960#: governments.html.j2:91
1008msgid "" 961msgid ""
1009"Taler is free software implementing an open protocol\n" 962"Taler is free software implementing an open protocol standard. Thus, "
1010"standard. Thus, Taler will enable competition and avoid\n" 963"Taler will enable competition and avoid the monopolization of payment "
1011"the monopolization of payment systems that threatens\n" 964"systems that threatens global political and financial stability today."
1012"global political and financial stability today.\n"
1013msgstr "" 965msgstr ""
1014 966
1015#: governments.html.j2:101 967#: governments.html.j2:101
@@ -1018,11 +970,9 @@ msgstr ""
1018 970
1019#: governments.html.j2:104 971#: governments.html.j2:104
1020msgid "" 972msgid ""
1021"Taler has an efficient design. Unlike\n" 973"Taler has an efficient design. Unlike Blockchain-based payment systems, "
1022"Blockchain-based payment systems, such as Bitcoin,\n" 974"such as Bitcoin, Taler will not threaten the availability of national "
1023"Taler will not threaten the availability of\n" 975"electric grids or (significantly) contribute to environmental pollution."
1024"national electric grids or (significantly)\n"
1025"contribute to environmental pollution.\n"
1026msgstr "" 976msgstr ""
1027 977
1028#: governments.html.j2:120 978#: governments.html.j2:120
@@ -1075,41 +1025,36 @@ msgstr ""
1075 1025
1076#: governments.html.j2:140 1026#: governments.html.j2:140
1077msgid "" 1027msgid ""
1078"Taler assumes governments can observe traditional wire transfers\n" 1028"Taler assumes governments can observe traditional wire transfers entering"
1079"entering and leaving the Taler payment system. Starting with the\n" 1029" and leaving the Taler payment system. Starting with the wire transfers, "
1080"wire transfers, governments can obtain:\n" 1030"governments can obtain:"
1081msgstr "" 1031msgstr ""
1082 1032
1083#: governments.html.j2:148 1033#: governments.html.j2:148
1084msgid "" 1034msgid ""
1085"The total amount of digital currency withdrawn by a\n" 1035"The total amount of digital currency withdrawn by a customer. The "
1086"customer. The government can impose limits on how much\n" 1036"government can impose limits on how much digital cash a customer can "
1087"digital cash a customer can withdraw within a\n" 1037"withdraw within a given time frame."
1088"given time frame.\n"
1089msgstr "" 1038msgstr ""
1090 1039
1091#: governments.html.j2:157 1040#: governments.html.j2:157
1092msgid "" 1041msgid "The income received by any merchant via the Taler system."
1093"The income received by any merchant via the Taler\n"
1094"system.\n"
1095msgstr "" 1042msgstr ""
1096 1043
1097#: governments.html.j2:164 1044#: governments.html.j2:164
1098msgid "" 1045msgid ""
1099"The exact details of the underlying contract that was\n" 1046"The exact details of the underlying contract that was signed between "
1100"signed between customer and merchant. However, this\n" 1047"customer and merchant. However, this information would typically not "
1101"information would typically not include the identity\n" 1048"include the identity of the customer."
1102"of the customer.\n"
1103msgstr "" 1049msgstr ""
1104 1050
1105#: governments.html.j2:174 1051#: governments.html.j2:174
1106msgid "" 1052msgid ""
1107"The amounts of digital coins legitimately withdrawn\n" 1053"The amounts of digital coins legitimately withdrawn by customers from the"
1108"by customers from the exchange, the value of\n" 1054" exchange, the value of non-redeemed digital coins in customer's wallets,"
1109"non-redeemed digital coins in customer's wallets, the\n" 1055" the value and corresponding wire details of deposit operations performed"
1110"value and corresponding wire details of deposit\n" 1056" by merchants with the exchange, and the income of the exchange from "
1111"operations performed by merchants with the exchange,\n" 1057"transaction fees."
1112"and the income of the exchange from transaction fees.\n"
1113msgstr "" 1058msgstr ""
1114 1059
1115#: index.html.j2:10 1060#: index.html.j2:10
@@ -1118,12 +1063,12 @@ msgstr ""
1118 1063
1119#: index.html.j2:13 1064#: index.html.j2:13
1120msgid "" 1065msgid ""
1121"GNU Taler is an electronic payment system under development at\n" 1066"GNU Taler is an electronic payment system under development at <a "
1122"<a href=\"http://www.inria.fr/\">Inria</a>. We expect to make it\n" 1067"href=\"http://www.inria.fr/\">Inria</a>. We expect to make it operational"
1123"operational in 2017. You can learn about Taler on this website,\n" 1068" in 2017. You can learn about Taler on this website, try the <a "
1124"try the <a href=\"https://demo.taler.net\">demo</a> and look at\n" 1069"href=\"https://demo.taler.net\">demo</a> and look at our <a "
1125"our <a href=\"https://docs.taler.net\">developer</a> and <a\n" 1070"href=\"https://docs.taler.net\">developer</a> and <a "
1126"href=\"https://api.taler.net\">API</a> documentation.\n" 1071"href=\"https://api.taler.net\">API</a> documentation."
1127msgstr "" 1072msgstr ""
1128 1073
1129#: index.html.j2:29 1074#: index.html.j2:29
@@ -1132,53 +1077,48 @@ msgstr ""
1132 1077
1133#: index.html.j2:32 1078#: index.html.j2:32
1134msgid "" 1079msgid ""
1135"Taler is easy to integrate with existing Web\n" 1080"Taler is easy to integrate with existing Web applications. Payments are "
1136"applications. Payments are cryptographically\n" 1081"cryptographically secured and are confirmed within milliseconds with "
1137"secured and are confirmed within milliseconds with\n" 1082"extremely low transaction costs."
1138"extremely low transaction costs.\n"
1139msgstr "" 1083msgstr ""
1140 1084
1141#: index.html.j2:45 1085#: index.html.j2:45
1142msgid "" 1086msgid ""
1143"Taler does not introduce a new currency. Taler\n" 1087"Taler does not introduce a new currency. Taler uses a digital wallet "
1144"uses a digital wallet storing coins and payment service\n" 1088"storing coins and payment service providers with escrow accounts in "
1145"providers with escrow accounts in existing currencies.\n" 1089"existing currencies. Thus, Taler's cryptographic coins correspond to "
1146"Thus, Taler's cryptographic coins correspond to existing\n" 1090"existing currencies, such as US Dollars, Euros or even Bitcoins."
1147"currencies, such as US Dollars, Euros or even Bitcoins.\n"
1148msgstr "" 1091msgstr ""
1149 1092
1150#: index.html.j2:59 1093#: index.html.j2:59
1151msgid "" 1094msgid ""
1152"By design Taler does not suffer from many classes\n" 1095"By design Taler does not suffer from many classes of security problems "
1153"of security problems such as phishing or counterfeit.\n" 1096"such as phishing or counterfeit. Thanks to its security features, Taler "
1154"Thanks to its security features, Taler never rejects a legitimate\n" 1097"never rejects a legitimate customer due to a fraud-detection false "
1155"customer due to a fraud-detection false positive.\n" 1098"positive."
1156msgstr "" 1099msgstr ""
1157 1100
1158#: index.html.j2:74 1101#: index.html.j2:74
1159msgid "" 1102msgid ""
1160"When using Taler, merchant's revenue is transparent for tax\n" 1103"When using Taler, merchant's revenue is transparent for tax collection "
1161"collection authorities. Unlike cash and most digital currencies,\n" 1104"authorities. Unlike cash and most digital currencies, Taler helps prevent"
1162"Taler helps prevent black markets. Taler is not suitable for\n" 1105" black markets. Taler is not suitable for illegal activities."
1163"illegal activities.\n"
1164msgstr "" 1106msgstr ""
1165 1107
1166#: index.html.j2:86 1108#: index.html.j2:86
1167msgid "" 1109msgid ""
1168"When you pay with Taler, your identity does not\n" 1110"When you pay with Taler, your identity does not have to be revealed. Just"
1169"have to be revealed. Just like\n" 1111" like payments in cash, nobody else can track how you spent your "
1170"payments in cash, nobody else can track how you\n" 1112"electronic money. However, you obtain a legally valid proof of payment."
1171"spent your electronic money. However, you obtain a\n"
1172"legally valid proof of payment.\n"
1173msgstr "" 1113msgstr ""
1174 1114
1175#: index.html.j2:100 1115#: index.html.j2:100
1176msgid "" 1116msgid ""
1177"Taler provides protocols and reference implementations that in\n" 1117"Taler provides protocols and reference implementations that in principle "
1178"principle enables anybody to run their own payment infrastructure,\n" 1118"enables anybody to run their own payment infrastructure, be it "
1179"be it individuals, organizations or whole countries. Since the\n" 1119"individuals, organizations or whole countries. Since the reference "
1180"reference implementation is a <a href=\"http://www.gnu.org/\">GNU</a>\n" 1120"implementation is a <a href=\"http://www.gnu.org/\">GNU</a> package, it "
1181"package, it will always remain free software.\n" 1121"will always remain free software."
1182msgstr "" 1122msgstr ""
1183 1123
1184#: index.html.j2:117 1124#: index.html.j2:117
@@ -1187,12 +1127,12 @@ msgstr ""
1187 1127
1188#: index.html.j2:118 1128#: index.html.j2:118
1189msgid "" 1129msgid ""
1190"<p>To pay with Taler, customers install an electronic wallet\n" 1130"<p>To pay with Taler, customers install an electronic wallet on their "
1191"on their device. Before the first payment, the wallet's balance must\n" 1131"device. Before the first payment, the wallet's balance must be charged in"
1192"be charged in the desired currency by some other means of payment.</p>\n" 1132" the desired currency by some other means of payment.</p> <p>Once the "
1193"<p>Once the wallet is charged, payments on websites take only one click,\n" 1133"wallet is charged, payments on websites take only one click, are never "
1194"are never falsely rejected by fraud detection and do not pose any risk\n" 1134"falsely rejected by fraud detection and do not pose any risk of phishing "
1195"of phishing or identity theft.</p>\n" 1135"or identity theft.</p>"
1196msgstr "" 1136msgstr ""
1197 1137
1198#: index.html.j2:128 1138#: index.html.j2:128
@@ -1201,11 +1141,11 @@ msgstr ""
1201 1141
1202#: index.html.j2:129 1142#: index.html.j2:129
1203msgid "" 1143msgid ""
1204"<p>To receive Taler payments, a merchant needs a bank account\n" 1144"<p>To receive Taler payments, a merchant needs a bank account in the "
1205"in the desired currency. We provide supporting software\n" 1145"desired currency. We provide supporting software in various programming "
1206"in various programming languages to make the integration painless.\n" 1146"languages to make the integration painless. The merchant's backend for "
1207"The merchant's backend for Taler transaction processing can run\n" 1147"Taler transaction processing can run on the merchant's premises or be "
1208"on the merchant's premises or be hosted by a third party.</p>\n" 1148"hosted by a third party.</p>"
1209msgstr "" 1149msgstr ""
1210 1150
1211#: index.html.j2:145 1151#: index.html.j2:145
@@ -1222,10 +1162,8 @@ msgstr ""
1222 1162
1223#: investors.html.j2:9 1163#: investors.html.j2:9
1224msgid "" 1164msgid ""
1225"We have created a company, Taler Systems SA in\n" 1165"We have created a company, Taler Systems SA in Luxembourg.<br> Please "
1226"Luxembourg.<br>\n" 1166"contact <tt>invest@taler.net</tt> if you want to invest in Taler."
1227"Please contact <tt>invest@taler.net</tt>\n"
1228"if you want to invest in Taler.\n"
1229msgstr "" 1167msgstr ""
1230 1168
1231#: investors.html.j2:24 1169#: investors.html.j2:24
@@ -1235,20 +1173,17 @@ msgstr ""
1235#: investors.html.j2:27 1173#: investors.html.j2:27
1236msgid "" 1174msgid ""
1237"Our <a href=\"about.html\">team</a> combines world-class business " 1175"Our <a href=\"about.html\">team</a> combines world-class business "
1238"leaders,\n" 1176"leaders, cryptographers, software engineers, civil-rights activists and "
1239"cryptographers, software engineers, civil-rights\n" 1177"academics. We are unified by a vision of how payments should work and the"
1240"activists and academics. We are unified by a vision\n" 1178" goal of imposing this vision upon the world."
1241"of how payments should work and the goal of\n"
1242"imposing this vision upon the world.\n"
1243msgstr "" 1179msgstr ""
1244 1180
1245#: investors.html.j2:37 1181#: investors.html.j2:37
1246msgid "" 1182msgid ""
1247"We are currently supported by <a href=\"http://www.inria.fr/\">Inria</a>," 1183"We are currently supported by <a href=\"http://www.inria.fr/\">Inria</a>,"
1248" the French\n" 1184" the French national institute for research in informatics and "
1249"national institute for research in informatics and\n"
1250"automation, and the <a href=\"https://renewablefreedom.org/\">Renewable " 1185"automation, and the <a href=\"https://renewablefreedom.org/\">Renewable "
1251"Freedom Foundation</a>.\n" 1186"Freedom Foundation</a>."
1252msgstr "" 1187msgstr ""
1253 1188
1254#: investors.html.j2:45 1189#: investors.html.j2:45
@@ -1258,16 +1193,13 @@ msgstr ""
1258#: investors.html.j2:48 1193#: investors.html.j2:48
1259msgid "" 1194msgid ""
1260"All transactions in Taler are secured using <a " 1195"All transactions in Taler are secured using <a "
1261"href=\"bibliography.html\">modern\n" 1196"href=\"bibliography.html\">modern cryptography</a> and trust in all "
1262"cryptography</a> and trust in all parties is\n" 1197"parties is minimized. Financial damage is bounded (for customers, "
1263"minimized. Financial damage is bounded (for\n" 1198"merchants and the exchange) even in the case that systems are compromised"
1264"customers, merchants and the exchange) even in the\n" 1199" and private keys are stolen. Databases can be audited for consistency, "
1265"case that systems are compromised and private keys\n" 1200"resulting in either the detection of compromised systems or the "
1266"are stolen. Databases can be audited for\n" 1201"demonstration that participants were honest. Actual transaction costs are"
1267"consistency, resulting in either the detection of\n" 1202" fractions of a cent."
1268"compromised systems or the demonstration that\n"
1269"participants were honest. Actual transaction costs\n"
1270"are fractions of a cent.\n"
1271msgstr "" 1203msgstr ""
1272 1204
1273#: investors.html.j2:63 1205#: investors.html.j2:63
@@ -1276,15 +1208,13 @@ msgstr ""
1276 1208
1277#: investors.html.j2:66 1209#: investors.html.j2:66
1278msgid "" 1210msgid ""
1279"The scalable business model for Taler is the operation\n" 1211"The scalable business model for Taler is the operation of the payment "
1280"of the payment service provider, which converts money from\n" 1212"service provider, which converts money from traditional payment systems "
1281"traditional payment systems (MasterCard, SEPA, UPI,\n" 1213"(MasterCard, SEPA, UPI, Visa, Bitcoin, ACH, SWIFT, etc.) to anonymous "
1282"Visa, Bitcoin, ACH, SWIFT, etc.) to anonymous\n" 1214"electronic coins in the same currency. The customer can then redeem the "
1283"electronic coins in the same currency. The customer\n" 1215"electronic coins at a merchant, who can exchange them for money "
1284"can then redeem the electronic coins at a merchant,\n" 1216"represented using traditional payment systems at the exchange. The "
1285"who can exchange them for money represented using\n" 1217"exchange charges fees to facilitate the transactions."
1286"traditional payment systems at the exchange. The\n"
1287"exchange charges fees to facilitate the transactions.\n"
1288msgstr "" 1218msgstr ""
1289 1219
1290#: investors.html.j2:85 1220#: investors.html.j2:85
@@ -1297,10 +1227,10 @@ msgstr ""
1297 1227
1298#: investors.html.j2:110 1228#: investors.html.j2:110
1299msgid "" 1229msgid ""
1300"The payment service operator runs the <em>Taler exchange</em>.\n" 1230"The payment service operator runs the <em>Taler exchange</em>. The "
1301"The exchange charges <b>transaction fees</b> to customers or merchants.\n" 1231"exchange charges <b>transaction fees</b> to customers or merchants. Its "
1302"Its operational expenses are from wire transfers with the banking\n" 1232"operational expenses are from wire transfers with the banking system and "
1303"system and the operation of the computing infrastructure.\n" 1233"the operation of the computing infrastructure."
1304msgstr "" 1234msgstr ""
1305 1235
1306#: investors.html.j2:120 1236#: investors.html.j2:120
@@ -1335,11 +1265,10 @@ msgstr ""
1335 1265
1336#: merchants.html.j2:8 1266#: merchants.html.j2:8
1337msgid "" 1267msgid ""
1338"Taler is a cost-effective electronic payment system\n" 1268"Taler is a cost-effective electronic payment system which provides you "
1339"which provides you with cryptographic proof that\n" 1269"with cryptographic proof that the payment worked correctly within "
1340"the payment worked correctly within milliseconds.\n" 1270"milliseconds. Your Web customers pay with previously unknown levels of "
1341"Your Web customers pay with previously unknown\n" 1271"convenience without risk of fraud."
1342"levels of convenience without risk of fraud.\n"
1343msgstr "" 1272msgstr ""
1344 1273
1345#: merchants.html.j2:22 1274#: merchants.html.j2:22
@@ -1348,39 +1277,32 @@ msgstr ""
1348 1277
1349#: merchants.html.j2:25 1278#: merchants.html.j2:25
1350msgid "" 1279msgid ""
1351"Processing transactions with Taler is fast,\n" 1280"Processing transactions with Taler is fast, allowing you to confirm the "
1352"allowing you to confirm the transaction with your\n" 1281"transaction with your customer virtually immediately. Your customers will"
1353"customer virtually immediately. Your customers\n" 1282" appreciate that they do not have to type in credit card information and "
1354"will appreciate that they do not have to type in\n" 1283"play the &quot;verified by&quot; game. By making payments significantly "
1355"credit card information and play the &quot;verified\n" 1284"more convenient for your customers, you may be able to use Taler for "
1356"by&quot; game. By making payments significantly\n" 1285"small transactions that would not work with credit card payments due to "
1357"more convenient for your customers, you may be able\n" 1286"the mental overhead for customers."
1358"to use Taler for small transactions that would not\n"
1359"work with credit card payments due to the mental\n"
1360"overhead for customers.\n"
1361msgstr "" 1287msgstr ""
1362 1288
1363#: merchants.html.j2:44 1289#: merchants.html.j2:44
1364msgid "" 1290msgid ""
1365"You will have cryptographic proof of payment from the\n" 1291"You will have cryptographic proof of payment from the Taler payment "
1366"Taler payment service provider. With Taler you never\n" 1292"service provider. With Taler you never handle sensitive customer account "
1367"handle sensitive customer account information and thus\n" 1293"information and thus do not have to undergo any particular security "
1368"do not have to undergo any particular security audits\n" 1294"audits (such as PCI DSS). Your systems will have customer contracts with "
1369"(such as PCI DSS). Your systems will have customer\n" 1295"qualified signatures for all transactions which you can use in court in "
1370"contracts with qualified signatures for all\n" 1296"case of disputes."
1371"transactions which you can use in court in case of\n"
1372"disputes.\n"
1373msgstr "" 1297msgstr ""
1374 1298
1375#: merchants.html.j2:61 1299#: merchants.html.j2:61
1376msgid "" 1300msgid ""
1377"Taler is free software, and you can use the\n" 1301"Taler is free software, and you can use the liberally-licensed reference "
1378"liberally-licensed reference code as a starting\n" 1302"code as a starting point to integrate Taler into your services. To use "
1379"point to integrate Taler into your services. To use\n" 1303"Taler, you do not need to pay license fees, and the free software "
1380"Taler, you do not need to pay license fees, and the\n" 1304"development model will ensure that you can select from many competing "
1381"free software development model will ensure that\n" 1305"integrators for support."
1382"you can select from many competing integrators for\n"
1383"support.\n"
1384msgstr "" 1306msgstr ""
1385 1307
1386#: merchants.html.j2:76 1308#: merchants.html.j2:76
@@ -1389,11 +1311,10 @@ msgstr ""
1389 1311
1390#: merchants.html.j2:79 1312#: merchants.html.j2:79
1391msgid "" 1313msgid ""
1392"Taler is uses efficient cryptographic constructions with low\n" 1314"Taler is uses efficient cryptographic constructions with low bandwidth "
1393"bandwidth and storage requirements. Combined with Taler's strong\n" 1315"and storage requirements. Combined with Taler's strong security which "
1394"security which makes fraud impossible, Taler payment service\n" 1316"makes fraud impossible, Taler payment service providers can operate with "
1395"providers can operate with very low overhead and\n" 1317"very low overhead and thus offer low transaction fees."
1396"thus offer low transaction fees.\n"
1397msgstr "" 1318msgstr ""
1398 1319
1399#: merchants.html.j2:89 1320#: merchants.html.j2:89
@@ -1402,10 +1323,9 @@ msgstr ""
1402 1323
1403#: merchants.html.j2:92 1324#: merchants.html.j2:92
1404msgid "" 1325msgid ""
1405"Taler can be used for different currencies (such as\n" 1326"Taler can be used for different currencies (such as Euros, US Dollars or "
1406"Euros, US Dollars or Bitcoins) and any amount, limited\n" 1327"Bitcoins) and any amount, limited only by applicable regulatation and "
1407"only by applicable regulatation and what denominations\n" 1328"what denominations the payment service provider supports."
1408"the payment service provider supports.\n"
1409msgstr "" 1329msgstr ""
1410 1330
1411#: merchants.html.j2:101 1331#: merchants.html.j2:101
@@ -1414,11 +1334,10 @@ msgstr ""
1414 1334
1415#: merchants.html.j2:104 1335#: merchants.html.j2:104
1416msgid "" 1336msgid ""
1417"Taler prevents tax evasion and money laundering.\n" 1337"Taler prevents tax evasion and money laundering. Taler's protocols are "
1418"Taler's protocols are efficient and do not use wasteful\n" 1338"efficient and do not use wasteful proof-of-work calculations. Taler "
1419"proof-of-work calculations. Taler encourages\n" 1339"encourages transparency by providing an open standard and free software "
1420"transparency by providing an open standard and free\n" 1340"reference implementations."
1421"software reference implementations.\n"
1422msgstr "" 1341msgstr ""
1423 1342
1424#: merchants.html.j2:119 1343#: merchants.html.j2:119
@@ -1447,28 +1366,25 @@ msgstr ""
1447 1366
1448#: merchants.html.j2:147 1367#: merchants.html.j2:147
1449msgid "" 1368msgid ""
1450"The backend <b>signs</b> and <b>stores</b> the\n" 1369"The backend <b>signs</b> and <b>stores</b> the complete terms of offers "
1451"complete terms of offers made by the merchant to customers.\n" 1370"made by the merchant to customers. For this, the merchant's frontend "
1452"For this, the merchant's frontend needs to give the\n" 1371"needs to give the customer's order in a JSON format to the backend."
1453"customer's order in a JSON format to the backend.\n"
1454msgstr "" 1372msgstr ""
1455 1373
1456#: merchants.html.j2:156 1374#: merchants.html.j2:156
1457msgid "" 1375msgid ""
1458"The backend <b>validates</b> payments received from\n" 1376"The backend <b>validates</b> payments received from the wallet and "
1459"the wallet and <b>executes</b> them with the Taler\n" 1377"<b>executes</b> them with the Taler payment service provider (the "
1460"payment service provider (the exchange). For this,\n" 1378"exchange). For this, the merchant's frontend must pass the payment "
1461"the merchant's frontend must pass the payment\n" 1379"request through to the Taler backend and check the HTTP status code that "
1462"request through to the Taler backend and check the\n" 1380"is returned."
1463"HTTP status code that is returned.\n"
1464msgstr "" 1381msgstr ""
1465 1382
1466#: merchants.html.j2:167 1383#: merchants.html.j2:167
1467msgid "" 1384msgid ""
1468"The backend can <b>list</b> completed transactions\n" 1385"The backend can <b>list</b> completed transactions and <b>map</b> wire "
1469"and <b>map</b> wire transfers to sets of business\n" 1386"transfers to sets of business transactions, including the exact terms of "
1470"transactions, including the exact terms of each\n" 1387"each contract."
1471"contract.\n"
1472msgstr "" 1388msgstr ""
1473 1389
1474#: press.html.j2:4 1390#: press.html.j2:4
@@ -1690,3 +1606,1001 @@ msgstr ""
1690#~ msgid "Low Fees" 1606#~ msgid "Low Fees"
1691#~ msgstr "" 1607#~ msgstr ""
1692 1608
1609#~ msgid ""
1610#~ "Taler largely functions like digital "
1611#~ "cash. You withdraw money from your "
1612#~ "bank account into your electronic "
1613#~ "wallet, and can henceforth spend digital"
1614#~ " cash. The electronic wallet can "
1615#~ "carry multiple currencies. "
1616#~ msgstr ""
1617
1618#~ msgid ""
1619#~ "Taler uses modern cryptography, ensuring "
1620#~ "that there is no counterfeit. Your "
1621#~ "digital wallet is safer than your "
1622#~ "physical wallet. At most, you can "
1623#~ "lose its contents because your computer"
1624#~ " or mobile is irreparably damaged or"
1625#~ " compromised. Unlike a physical wallet,"
1626#~ " you can make backups to secure "
1627#~ "against data loss."
1628#~ msgstr ""
1629
1630#~ msgid ""
1631#~ "You will be able to withdraw money"
1632#~ " to replenish the digital coins in"
1633#~ " your wallet using your credit card"
1634#~ " or wire transfers. Afterwards you "
1635#~ "can pay with one-click using the"
1636#~ " Taler wallet, which optionally keeps "
1637#~ "your transaction history on your "
1638#~ "computer."
1639#~ msgstr ""
1640
1641#~ msgid ""
1642#~ "Coins in your digital wallet will "
1643#~ "be of the same denomination as the"
1644#~ " cash in your physical wallet. Taler"
1645#~ " is not a crypto-currency, so "
1646#~ "you do not have to worry about "
1647#~ "cryto-currency related value fluctuations."
1648#~ " Banking with Taler is subject to"
1649#~ " the usual government protections for "
1650#~ "financial services."
1651#~ msgstr ""
1652
1653#~ msgid ""
1654#~ "We currently provide a <a "
1655#~ "href=\"wallet.html\">wallet browser extension</a> "
1656#~ "for Chromium, Chrome, Firefox, Opera and"
1657#~ " Edge. Wallets for mobile phones and"
1658#~ " other platforms will be available in"
1659#~ " the future. "
1660#~ msgstr ""
1661
1662#~ msgid ""
1663#~ "You can see how Taler works in "
1664#~ "practice by visiting our <a "
1665#~ "href=\"https://demo.taler.net\">demo page</a>. "
1666#~ msgstr ""
1667
1668#~ msgid ""
1669#~ "To <b>withdraw</b> electronic coins, the "
1670#~ "customer transfers funds from his bank"
1671#~ " account to the Taler payment service"
1672#~ " provider (the exchange). The wire "
1673#~ "transfer subject must match a code "
1674#~ "identifying the customer's wallet. After "
1675#~ "the wire transfer is complete, the "
1676#~ "wallet will automatically withdraw the "
1677#~ "coins from the exchange."
1678#~ msgstr ""
1679
1680#~ msgid ""
1681#~ "To <b>spend</b> electronic coins, a "
1682#~ "merchant must cause the wallet to "
1683#~ "display a proposal for some purchase."
1684#~ " The wallet will ask the customer"
1685#~ " for one-click confirmation. Payment "
1686#~ "is then instant. Transaction histories "
1687#~ "and digitally signed contracts can be"
1688#~ " preserved by the wallet."
1689#~ msgstr ""
1690
1691#~ msgid ""
1692#~ "An archived, public mailing list for "
1693#~ "GNU Taler is hosted at <a "
1694#~ "href=\"https://lists.gnu.org/mailman/listinfo/taler\">https://lists.gnu.org/mailman/listinfo/taler</a>."
1695#~ " You can send messages to the "
1696#~ "list at <a "
1697#~ "href=\"mailto:taler@gnu.org\">taler@gnu.org</a>. "
1698#~ msgstr ""
1699
1700#~ msgid ""
1701#~ "Team members are generally reachable at"
1702#~ " <tt>LASTNAME@taler.net</tt>. All of us "
1703#~ "support receiving GnuPG encrypted e-mails. \n"
1704#~ msgstr ""
1705
1706#~ msgid ""
1707#~ "We track open feature requests and "
1708#~ "bugs in our <a "
1709#~ "href=\"https://gnunet.org/bugs/\">Bug tracker</a>, which"
1710#~ " is shared with the GNUnet project."
1711#~ " You can also report bugs or "
1712#~ "feature requests to the mailing list."
1713#~ " "
1714#~ msgstr ""
1715
1716#~ msgid ""
1717#~ "For non-technical commercial requests, "
1718#~ "please contact <tt>ceo AT taler.net</tt>. \n"
1719#~ msgstr ""
1720
1721#~ msgid ""
1722#~ "GNU Taler is free software implementing"
1723#~ " an open protocol. Anybody is welcome"
1724#~ " to integrate our reference implementation"
1725#~ " into their applications. Different "
1726#~ "components of Taler are being made "
1727#~ "available under different licenses. The "
1728#~ "Affero GPLv3+ is used for the "
1729#~ "exchange, the LGPLv3+ is used for "
1730#~ "reference code demonstrating integration with"
1731#~ " merchant platforms, and licenses like "
1732#~ "GPLv3+ are used for wallets and "
1733#~ "related customer-facing software. We "
1734#~ "are open for constructive suggestions "
1735#~ "for maximizing the adoption of this "
1736#~ "payment platform. "
1737#~ msgstr ""
1738
1739#~ msgid ""
1740#~ "Taler is designed to work on the"
1741#~ " Internet. To ensure that Taler "
1742#~ "payments can work with restrictive "
1743#~ "network setups, Taler uses a RESTful "
1744#~ "protocol over HTTP or HTTPS. Taler's "
1745#~ "security does not depend upon the "
1746#~ "use of HTTPS, but obviously merchants"
1747#~ " may choose to offer HTTPS for "
1748#~ "consistency and because it generally is"
1749#~ " better for privacy compared to HTTP."
1750#~ " Taler uses JSON to encode structure"
1751#~ " data, making it easy to integrate"
1752#~ " Taler with existing Web applications. "
1753#~ "Taler's protocol is documented in detail"
1754#~ " at <a "
1755#~ "href=\"https://api.taler.net/\">api.taler.net</a>. "
1756#~ msgstr ""
1757
1758#~ msgid ""
1759#~ "Taler is currently primarily developed "
1760#~ "by a research team at <a "
1761#~ "href=\"http://www.inria.fr/\">Inria</a> and <a "
1762#~ "href=\"https://gnunet.org/\">GNUnet</a>. However, "
1763#~ "contributions from anyone are welcome. "
1764#~ "Our Git repositories can be cloned "
1765#~ "using the Git and HTTP access "
1766#~ "methods against <tt>git.taler.net</tt> with "
1767#~ "the name of the respective repository."
1768#~ " A list of repositories can be "
1769#~ "found in our <a "
1770#~ "href=\"https://git.taler.net/\">GitWeb</a>. "
1771#~ msgstr ""
1772
1773#~ msgid ""
1774#~ "In addition to this website, the "
1775#~ "<a href=\"https://git.taler.net/\">documented code</a> "
1776#~ "and the <a href=\"https://api.taler.net/\">API "
1777#~ "documentation</a>. Technical papers can be"
1778#~ " found in our <a "
1779#~ "href=\"bibliography.html\">bibliography</a>. "
1780#~ msgstr ""
1781
1782#~ msgid ""
1783#~ "We have a mailing list for "
1784#~ "developer discussions. You can subscribe "
1785#~ "to or read the list archive at "
1786#~ "<a "
1787#~ "href=\"http://lists.gnu.org/mailman/listinfo/taler\">http://lists.gnu.org/mailman/listinfo/taler</a>."
1788#~ " "
1789#~ msgstr ""
1790
1791#~ msgid ""
1792#~ "We have <a "
1793#~ "href=\"https://buildbot.net/\">Buildbot</a> automation "
1794#~ "tests to detect regressions and check"
1795#~ " for portability at <a "
1796#~ "href=\"https://buildbot.taler.net/\">buildbot.taler.net</a>. "
1797#~ msgstr ""
1798
1799#~ msgid ""
1800#~ "We use <a "
1801#~ "href=\"http://ltp.sourceforge.net/coverage/lcov.php\">LCOV</a> "
1802#~ "to analyze the code coverage of "
1803#~ "our tests, the results are available "
1804#~ "at <a href=\"https://lcov.taler.net/\">lcov.taler.net</a>."
1805#~ " "
1806#~ msgstr ""
1807
1808#~ msgid ""
1809#~ "We use <a "
1810#~ "href=\"https://gnunet.org/gauger\">Gauger</a> for "
1811#~ "performance regression analysis of the "
1812#~ "exchange backend at <a "
1813#~ "href=\"https://gauger.taler.net/\">gauger.taler.net</a>. "
1814#~ msgstr ""
1815
1816#~ msgid ""
1817#~ "The Taler system consists of protocols"
1818#~ " executed among a number of actors"
1819#~ " as illustrated in the illustration "
1820#~ "on the right. Typical transactions "
1821#~ "involve the following steps: "
1822#~ msgstr ""
1823
1824#~ msgid ""
1825#~ "A customer instructs his <b>bank</b> to"
1826#~ " transfer funds from his account to"
1827#~ " the Taler exchange (top left). In"
1828#~ " the subject of the transaction, he"
1829#~ " includes an authentication token from "
1830#~ "his electronic <b>wallet</b>. In Taler "
1831#~ "terminology, the customer creates a "
1832#~ "reserve at the exchange. "
1833#~ msgstr ""
1834
1835#~ msgid ""
1836#~ "Once the exchange has received the "
1837#~ "wire transfer, it allows the customer's"
1838#~ " electronic wallet to <b>withdraw</b> "
1839#~ "electronic coins. The electronic coins "
1840#~ "are digital representations of the "
1841#~ "original currency from the transfer. It"
1842#~ " is important to note that the "
1843#~ "exchange does not learn the &quot;serial"
1844#~ " numbers&quot; of the coins created "
1845#~ "in this process, so it cannot tell"
1846#~ " later which customer purchased what "
1847#~ "at which merchant. The use of "
1848#~ "Taler does not change the currency "
1849#~ "or the total value of the funds"
1850#~ " (except for fees which the exchange"
1851#~ " may charge for the service). "
1852#~ msgstr ""
1853
1854#~ msgid ""
1855#~ "Once the customer has the digital "
1856#~ "coins in his wallet, the wallet "
1857#~ "can be used to <b>spend</b> the "
1858#~ "coins with merchant portals that support"
1859#~ " the Taler payment system and accept"
1860#~ " the respective exchange as a "
1861#~ "business partner (bottom arrow). This "
1862#~ "creates a digital contract signed by "
1863#~ "the customer's coins and the merchant."
1864#~ " If necessary, the customer can "
1865#~ "later use this digitally signed contract"
1866#~ " in a court of law to prove "
1867#~ "the exact terms of the contract "
1868#~ "and that he paid the respective "
1869#~ "amount. The customer does not learn "
1870#~ "the banking details of the merchant, "
1871#~ "and Taler does not require the "
1872#~ "merchant to learn the identity of "
1873#~ "the customer. Naturally, the customer "
1874#~ "can spend any fraction of his "
1875#~ "digital coins (the system takes care "
1876#~ "of customers getting change). "
1877#~ msgstr ""
1878
1879#~ msgid ""
1880#~ "Merchants receiving digital coins "
1881#~ "<b>deposit</b> the respective claims that "
1882#~ "resulted from the contract signing with"
1883#~ " the customer at the exchange to "
1884#~ "redeem the coins. The deposit step "
1885#~ "does not reveal the details of the"
1886#~ " contract between the customer and "
1887#~ "the merchant or the identity of "
1888#~ "the customer to the exchange in "
1889#~ "any way. However, the exchange does "
1890#~ "learn the identity of the merchant "
1891#~ "via the provided bank routing "
1892#~ "information. The merchant can, for "
1893#~ "example when compelled by the state "
1894#~ "for taxation, provide information linking "
1895#~ "the individual deposit to the respective"
1896#~ " contract signed by the customer. "
1897#~ "Thus, the exchange's database allows the"
1898#~ " state to enforce that merchants pay"
1899#~ " applicable taxes (and do not engage"
1900#~ " in illegal contracts). "
1901#~ msgstr ""
1902
1903#~ msgid ""
1904#~ "Finally, the exchange transfers funds "
1905#~ "corresponding to the digital coins "
1906#~ "redeemed by the merchants to the "
1907#~ "merchant's <b>bank</b> account. The exchange"
1908#~ " may combine multiple small transactions"
1909#~ " into one larger bank transfer. The"
1910#~ " merchant can query the exchange "
1911#~ "about the relationship between the bank"
1912#~ " transfers and the individual claims "
1913#~ "that were deposited. "
1914#~ msgstr ""
1915
1916#~ msgid ""
1917#~ "Most importantly, the exchange keeps "
1918#~ "cryptographic proofs that allow it to"
1919#~ " demonstrate that it is operating "
1920#~ "correctly to third parties. The system"
1921#~ " requires an external <b>auditor</b>, such"
1922#~ " as a government-appointed financial "
1923#~ "regulatory body, to frequently verify "
1924#~ "the exchange's databases and check that"
1925#~ " its bank balance matches the total"
1926#~ " value of the remaining coins in "
1927#~ "circulation. "
1928#~ msgstr ""
1929
1930#~ msgid ""
1931#~ "Without the auditor, the exchange "
1932#~ "operators could embezzle funds they are"
1933#~ " holding in reserve. Customers and "
1934#~ "merchants cannot cheat each other or "
1935#~ "the exchange. If any party's computers"
1936#~ " are compromised, the financial damage "
1937#~ "is limited to the respective party "
1938#~ "and proportional to the funds they "
1939#~ "have in circulation during the period"
1940#~ " of the compromise. "
1941#~ msgstr ""
1942
1943#~ msgid ""
1944#~ "<p>Taler does not use any Blockchain "
1945#~ "technology or Bitcoin directly. Taler is"
1946#~ " not based on proof-of-work or"
1947#~ " any other distributed consensus mechanism."
1948#~ " Instead Taler is based on blind "
1949#~ "signatures.</p> "
1950#~ msgstr ""
1951
1952#~ msgid ""
1953#~ "<p>It would be possible, however, to "
1954#~ "withdraw coins denominated in Bitcoin "
1955#~ "into a Taler wallet (with an "
1956#~ "appropriate exchange), which would give "
1957#~ "some benefits over plain Bitcoin, such"
1958#~ " as instant confirmation times.</p> "
1959#~ msgstr ""
1960
1961#~ msgid ""
1962#~ "<p>Your wallet stores digital coins and"
1963#~ " thus ultimately your computer holds "
1964#~ "your balance. The exchange keeps funds"
1965#~ " matching all unspent coins in an "
1966#~ "escrow bank account.</p> "
1967#~ msgstr ""
1968
1969#~ msgid ""
1970#~ "<p>Since the digital coins of value "
1971#~ "in your wallet are anonymized, the "
1972#~ "exchange can not assist you in "
1973#~ "recovering a lost or stolen wallet. "
1974#~ "Just like with a physical wallet "
1975#~ "for cash, you are responsible for "
1976#~ "keeping it safe.</p> "
1977#~ msgstr ""
1978
1979#~ msgid ""
1980#~ "<p>The risk of losing a wallet can"
1981#~ " be mitigated by making backups or"
1982#~ " keeping the balance reasonably low.</p>"
1983#~ " "
1984#~ msgstr ""
1985
1986#~ msgid ""
1987#~ "<p>In case of a compromise of one"
1988#~ " of your devices, an attacker can "
1989#~ "spend coins from your wallet. Checking"
1990#~ " your balance might reveal to you "
1991#~ "that your device has been "
1992#~ "compromised.</p> "
1993#~ msgstr ""
1994
1995#~ msgid ""
1996#~ "<p>If your friend provides goods or "
1997#~ "services for you in exchange for a"
1998#~ " payment, they can easily set up "
1999#~ "a Taler merchant and receive the "
2000#~ "payment in their bank account.</p> "
2001#~ msgstr ""
2002
2003#~ msgid ""
2004#~ "<p>Future versions of the Taler wallet"
2005#~ " may allow exchanging coins among "
2006#~ "friends directly as well.</p> "
2007#~ msgstr ""
2008
2009#~ msgid ""
2010#~ "<p>Taler wallets can store digital coins"
2011#~ " corresponding to multiple different "
2012#~ "currencies such as the Euro, US "
2013#~ "Dollars or Bitcoins.</p> "
2014#~ msgstr ""
2015
2016#~ msgid "<p>Taler currently does not offer conversion between currencies.</p> "
2017#~ msgstr ""
2018
2019#~ msgid ""
2020#~ "<p>Your wallet stores digital coins that"
2021#~ " are <a "
2022#~ "href=\"https://en.wikipedia.org/wiki/Blind_signature\">blindly "
2023#~ "signed</a> by an exchange. The use "
2024#~ "of a blind signature protects your "
2025#~ "privacy as it prevents the exchange "
2026#~ "from knowing which coin it signed "
2027#~ "for which customer.</p> "
2028#~ msgstr ""
2029
2030#~ msgid ""
2031#~ "trusted third party that verifies that"
2032#~ " the `exchange` is operating correctly \n"
2033#~ msgstr ""
2034
2035#~ msgid ""
2036#~ "traditional financial service provider who "
2037#~ "offers wire `transfers` between accounts \n"
2038#~ msgstr ""
2039
2040#~ msgid ""
2041#~ "coins are individual token representing "
2042#~ "a certain amount of value, also "
2043#~ "known as the `denomination` of the "
2044#~ "coin "
2045#~ msgstr ""
2046
2047#~ msgid "the proposal signed by the wallet. "
2048#~ msgstr ""
2049
2050#~ msgid ""
2051#~ "unit of currency, specifies both the "
2052#~ "currency and the face value of a"
2053#~ " `coin` "
2054#~ msgstr ""
2055
2056#~ msgid ""
2057#~ "RSA key used by the exchange to"
2058#~ " certify that a given `coin` is "
2059#~ "valid and of a particular `denomination`"
2060#~ " "
2061#~ msgstr ""
2062
2063#~ msgid ""
2064#~ "operation by which a merchant passes "
2065#~ "coins to an exchange, expecting the "
2066#~ "exchange to credit his `bank` account"
2067#~ " in the future using a wire "
2068#~ "`transfer` "
2069#~ msgstr ""
2070
2071#~ msgid ""
2072#~ "a `coin` is dirty if its public"
2073#~ " key may be known to an entity"
2074#~ " other than the customer, thereby "
2075#~ "creating the danger of some entity "
2076#~ "being able to link multiple transactions"
2077#~ " of coin's owner if the coin is"
2078#~ " not refreshed first "
2079#~ msgstr ""
2080
2081#~ msgid ""
2082#~ "Taler's payment service provider. Issues "
2083#~ "eletronic `coins` during `withdrawal` and "
2084#~ "redeems them when they are `deposited`"
2085#~ " by merchants. "
2086#~ msgstr ""
2087
2088#~ msgid "implementation of a `wallet` for browsers "
2089#~ msgstr ""
2090
2091#~ msgid "a `coin` is fresh if its public key is only known to the customer "
2092#~ msgstr ""
2093
2094#~ msgid ""
2095#~ "offline key used by the exchange "
2096#~ "to certify denomination keys and message"
2097#~ " signing keys "
2098#~ msgstr ""
2099
2100#~ msgid "key used by the exchange to sign online messages, other than coins "
2101#~ msgstr ""
2102
2103#~ msgid ""
2104#~ "specification of the details of a "
2105#~ "transaction, specifies the payment obligations"
2106#~ " for the customer (i.e. the amount),"
2107#~ " the deliverables of the merchant and"
2108#~ " other related information, such as "
2109#~ "deadlines or locations; However, it "
2110#~ "lacks some information that the backend"
2111#~ " is supposed to provide. In other "
2112#~ "words, after the backend adds the "
2113#~ "missing information to the offer and "
2114#~ "signs it, it becomes a proposal. "
2115#~ msgstr ""
2116
2117#~ msgid "a `coin` is owned by the entity that knows the private key of the coin "
2118#~ msgstr ""
2119
2120#~ msgid ""
2121#~ "message that cryptographically demonstrates "
2122#~ "that a particular claim is correct \n"
2123#~ msgstr ""
2124
2125#~ msgid "a sketch that has been completed and signed by the merchant backend. "
2126#~ msgstr ""
2127
2128#~ msgid ""
2129#~ "funds set aside for future use; "
2130#~ "either the balance of a customer "
2131#~ "at the exchange ready for `withdrawal`,"
2132#~ " or the funds kept in the "
2133#~ "exchange's bank account to cover "
2134#~ "obligations from coins in circulation "
2135#~ msgstr ""
2136
2137#~ msgid ""
2138#~ "operation by which a `dirty` `coin` "
2139#~ "is converted into one or more "
2140#~ "`fresh` coins "
2141#~ msgstr ""
2142
2143#~ msgid ""
2144#~ "operation by which a merchant steps "
2145#~ "back from the right to funds that"
2146#~ " he obtained from a `deposit` "
2147#~ "operation, giving the right to the "
2148#~ "funds back to the customer "
2149#~ msgstr ""
2150
2151#~ msgid ""
2152#~ "users can share ownership of a "
2153#~ "`coin` by sharing access to the "
2154#~ "coin's private key, thereby allowing all"
2155#~ " co-owners to spend the coin at"
2156#~ " any time. "
2157#~ msgstr ""
2158
2159#~ msgid "see message signing key. "
2160#~ msgstr ""
2161
2162#~ msgid ""
2163#~ "operation by which a customer gives "
2164#~ "a merchant the right to `deposit` "
2165#~ "coins in return for merchandise "
2166#~ msgstr ""
2167
2168#~ msgid "method of sending funds between `bank` accounts "
2169#~ msgstr ""
2170
2171#~ msgid ""
2172#~ "method by which ownership is exclusively"
2173#~ " transferred from one entity to "
2174#~ "another "
2175#~ msgstr ""
2176
2177#~ msgid "unique number by which a merchant identifies a `transaction` "
2178#~ msgstr ""
2179
2180#~ msgid ""
2181#~ "software running on a customer's "
2182#~ "computer; withdraws, stores and spends "
2183#~ "coins "
2184#~ msgstr ""
2185
2186#~ msgid "see `transfer` "
2187#~ msgstr ""
2188
2189#~ msgid ""
2190#~ "subject of a wire `transfer`; usually"
2191#~ " a random string to uniquely identify"
2192#~ " the `transfer` "
2193#~ msgstr ""
2194
2195#~ msgid ""
2196#~ "operation by which a `wallet` can "
2197#~ "convert funds from a reserve to "
2198#~ "fresh coins "
2199#~ msgstr ""
2200
2201#~ msgid ""
2202#~ "Taler provides accountability to ensure "
2203#~ "business operate legally, while also "
2204#~ "respecting civil liberties of citizens. "
2205#~ "Taler is a payment system based on"
2206#~ " open standards and free software. "
2207#~ "Taler needs governments as they set "
2208#~ "a financial framework and act as "
2209#~ "trusted regulators. Taler contributes to "
2210#~ "digital sovereignty in the critical "
2211#~ "financial infrastructure. "
2212#~ msgstr ""
2213
2214#~ msgid ""
2215#~ "Taler was built with the goal of"
2216#~ " fighting corruption and supporting "
2217#~ "taxation. With Taler, the receiver of"
2218#~ " any form of payment is easily "
2219#~ "identified by the government, and the"
2220#~ " merchant can be compelled to provide"
2221#~ " the contract that was accepted by"
2222#~ " the customer. Governments can use "
2223#~ "this data to tax businesses and "
2224#~ "individuals based on their income, "
2225#~ "making tax evasion and black markets "
2226#~ "less viable. "
2227#~ msgstr ""
2228
2229#~ msgid ""
2230#~ "Thus, despite offering anonymity for "
2231#~ "citizens spending digital cash to buy"
2232#~ " goods and services, Taler also "
2233#~ "ensures that the state can observe "
2234#~ "incoming funds. This can be used "
2235#~ "to ensure businesses engage only in "
2236#~ "legal activities, and do not evade "
2237#~ "income tax, sales tax or value-"
2238#~ "added tax. However, this observational "
2239#~ "capability does not extend to the "
2240#~ "immediate personal domain. In particular, "
2241#~ "monitoring does not cover shared access"
2242#~ " to funds with trusted friends and"
2243#~ " family, or synchronizing wallets across"
2244#~ " multiple devices. "
2245#~ msgstr ""
2246
2247#~ msgid ""
2248#~ "Taler's payments are cryptographically "
2249#~ "secured. Thus, customers, merchants and "
2250#~ "the Taler payment service provider (the"
2251#~ " exchange) can mathematically demonstrate "
2252#~ "their lawful behavior in court in "
2253#~ "case of disputes. Financial damages are"
2254#~ " strictly limited, improving economic "
2255#~ "security for individuals, merchants, the "
2256#~ "exchange and the state. "
2257#~ msgstr ""
2258
2259#~ msgid ""
2260#~ "As a payment service provider, the "
2261#~ "Taler exchange is subject to financial"
2262#~ " regulation. Financial regulation and "
2263#~ "regular audits are critical to establish"
2264#~ " trust. In particular, the Taler "
2265#~ "design mandates the existence of an "
2266#~ "independent auditor who checks cryptographic"
2267#~ " proofs that accumulate at the "
2268#~ "exchange to ensure that the escrow "
2269#~ "account is managed honestly. This "
2270#~ "ensures that the exchange does not "
2271#~ "threaten the economy due to fraud. \n"
2272#~ msgstr ""
2273
2274#~ msgid ""
2275#~ "Taler is free software implementing an"
2276#~ " open protocol standard. Thus, Taler "
2277#~ "will enable competition and avoid the"
2278#~ " monopolization of payment systems that "
2279#~ "threatens global political and financial "
2280#~ "stability today. "
2281#~ msgstr ""
2282
2283#~ msgid ""
2284#~ "Taler has an efficient design. Unlike"
2285#~ " Blockchain-based payment systems, such "
2286#~ "as Bitcoin, Taler will not threaten "
2287#~ "the availability of national electric "
2288#~ "grids or (significantly) contribute to "
2289#~ "environmental pollution. "
2290#~ msgstr ""
2291
2292#~ msgid ""
2293#~ "Taler assumes governments can observe "
2294#~ "traditional wire transfers entering and "
2295#~ "leaving the Taler payment system. "
2296#~ "Starting with the wire transfers, "
2297#~ "governments can obtain: "
2298#~ msgstr ""
2299
2300#~ msgid ""
2301#~ "The total amount of digital currency "
2302#~ "withdrawn by a customer. The government"
2303#~ " can impose limits on how much "
2304#~ "digital cash a customer can withdraw "
2305#~ "within a given time frame. "
2306#~ msgstr ""
2307
2308#~ msgid "The income received by any merchant via the Taler system. "
2309#~ msgstr ""
2310
2311#~ msgid ""
2312#~ "The exact details of the underlying "
2313#~ "contract that was signed between "
2314#~ "customer and merchant. However, this "
2315#~ "information would typically not include "
2316#~ "the identity of the customer. "
2317#~ msgstr ""
2318
2319#~ msgid ""
2320#~ "The amounts of digital coins "
2321#~ "legitimately withdrawn by customers from "
2322#~ "the exchange, the value of non-"
2323#~ "redeemed digital coins in customer's "
2324#~ "wallets, the value and corresponding "
2325#~ "wire details of deposit operations "
2326#~ "performed by merchants with the "
2327#~ "exchange, and the income of the "
2328#~ "exchange from transaction fees. "
2329#~ msgstr ""
2330
2331#~ msgid ""
2332#~ "GNU Taler is an electronic payment "
2333#~ "system under development at <a "
2334#~ "href=\"http://www.inria.fr/\">Inria</a>. We expect "
2335#~ "to make it operational in 2017. "
2336#~ "You can learn about Taler on this"
2337#~ " website, try the <a "
2338#~ "href=\"https://demo.taler.net\">demo</a> and look at"
2339#~ " our <a href=\"https://docs.taler.net\">developer</a>"
2340#~ " and <a href=\"https://api.taler.net\">API</a> "
2341#~ "documentation. "
2342#~ msgstr ""
2343
2344#~ msgid ""
2345#~ "Taler is easy to integrate with "
2346#~ "existing Web applications. Payments are "
2347#~ "cryptographically secured and are confirmed"
2348#~ " within milliseconds with extremely low "
2349#~ "transaction costs. "
2350#~ msgstr ""
2351
2352#~ msgid ""
2353#~ "Taler does not introduce a new "
2354#~ "currency. Taler uses a digital wallet"
2355#~ " storing coins and payment service "
2356#~ "providers with escrow accounts in "
2357#~ "existing currencies. Thus, Taler's "
2358#~ "cryptographic coins correspond to existing "
2359#~ "currencies, such as US Dollars, Euros"
2360#~ " or even Bitcoins. "
2361#~ msgstr ""
2362
2363#~ msgid ""
2364#~ "By design Taler does not suffer "
2365#~ "from many classes of security problems"
2366#~ " such as phishing or counterfeit. "
2367#~ "Thanks to its security features, Taler"
2368#~ " never rejects a legitimate customer "
2369#~ "due to a fraud-detection false "
2370#~ "positive. "
2371#~ msgstr ""
2372
2373#~ msgid ""
2374#~ "When using Taler, merchant's revenue is"
2375#~ " transparent for tax collection "
2376#~ "authorities. Unlike cash and most "
2377#~ "digital currencies, Taler helps prevent "
2378#~ "black markets. Taler is not suitable"
2379#~ " for illegal activities. "
2380#~ msgstr ""
2381
2382#~ msgid ""
2383#~ "When you pay with Taler, your "
2384#~ "identity does not have to be "
2385#~ "revealed. Just like payments in cash,"
2386#~ " nobody else can track how you "
2387#~ "spent your electronic money. However, "
2388#~ "you obtain a legally valid proof "
2389#~ "of payment. "
2390#~ msgstr ""
2391
2392#~ msgid ""
2393#~ "Taler provides protocols and reference "
2394#~ "implementations that in principle enables "
2395#~ "anybody to run their own payment "
2396#~ "infrastructure, be it individuals, "
2397#~ "organizations or whole countries. Since "
2398#~ "the reference implementation is a <a "
2399#~ "href=\"http://www.gnu.org/\">GNU</a> package, it "
2400#~ "will always remain free software. "
2401#~ msgstr ""
2402
2403#~ msgid ""
2404#~ "<p>To pay with Taler, customers install"
2405#~ " an electronic wallet on their "
2406#~ "device. Before the first payment, the"
2407#~ " wallet's balance must be charged in"
2408#~ " the desired currency by some other"
2409#~ " means of payment.</p> <p>Once the "
2410#~ "wallet is charged, payments on websites"
2411#~ " take only one click, are never "
2412#~ "falsely rejected by fraud detection and"
2413#~ " do not pose any risk of "
2414#~ "phishing or identity theft.</p> "
2415#~ msgstr ""
2416
2417#~ msgid ""
2418#~ "<p>To receive Taler payments, a merchant"
2419#~ " needs a bank account in the "
2420#~ "desired currency. We provide supporting "
2421#~ "software in various programming languages "
2422#~ "to make the integration painless. The"
2423#~ " merchant's backend for Taler transaction"
2424#~ " processing can run on the merchant's"
2425#~ " premises or be hosted by a "
2426#~ "third party.</p> "
2427#~ msgstr ""
2428
2429#~ msgid ""
2430#~ "We have created a company, Taler "
2431#~ "Systems SA in Luxembourg.<br> Please "
2432#~ "contact <tt>invest@taler.net</tt> if you want"
2433#~ " to invest in Taler. "
2434#~ msgstr ""
2435
2436#~ msgid ""
2437#~ "Our <a href=\"about.html\">team</a> combines "
2438#~ "world-class business leaders, cryptographers, "
2439#~ "software engineers, civil-rights activists "
2440#~ "and academics. We are unified by a"
2441#~ " vision of how payments should work"
2442#~ " and the goal of imposing this "
2443#~ "vision upon the world. "
2444#~ msgstr ""
2445
2446#~ msgid ""
2447#~ "We are currently supported by <a "
2448#~ "href=\"http://www.inria.fr/\">Inria</a>, the French "
2449#~ "national institute for research in "
2450#~ "informatics and automation, and the <a"
2451#~ " href=\"https://renewablefreedom.org/\">Renewable Freedom "
2452#~ "Foundation</a>. "
2453#~ msgstr ""
2454
2455#~ msgid ""
2456#~ "All transactions in Taler are secured"
2457#~ " using <a href=\"bibliography.html\">modern "
2458#~ "cryptography</a> and trust in all "
2459#~ "parties is minimized. Financial damage "
2460#~ "is bounded (for customers, merchants and"
2461#~ " the exchange) even in the case "
2462#~ "that systems are compromised and private"
2463#~ " keys are stolen. Databases can be"
2464#~ " audited for consistency, resulting in "
2465#~ "either the detection of compromised "
2466#~ "systems or the demonstration that "
2467#~ "participants were honest. Actual transaction"
2468#~ " costs are fractions of a cent. \n"
2469#~ msgstr ""
2470
2471#~ msgid ""
2472#~ "The scalable business model for Taler"
2473#~ " is the operation of the payment "
2474#~ "service provider, which converts money "
2475#~ "from traditional payment systems (MasterCard,"
2476#~ " SEPA, UPI, Visa, Bitcoin, ACH, "
2477#~ "SWIFT, etc.) to anonymous electronic "
2478#~ "coins in the same currency. The "
2479#~ "customer can then redeem the electronic"
2480#~ " coins at a merchant, who can "
2481#~ "exchange them for money represented "
2482#~ "using traditional payment systems at the"
2483#~ " exchange. The exchange charges fees "
2484#~ "to facilitate the transactions. "
2485#~ msgstr ""
2486
2487#~ msgid ""
2488#~ "The payment service operator runs the"
2489#~ " <em>Taler exchange</em>. The exchange "
2490#~ "charges <b>transaction fees</b> to customers"
2491#~ " or merchants. Its operational expenses "
2492#~ "are from wire transfers with the "
2493#~ "banking system and the operation of "
2494#~ "the computing infrastructure. "
2495#~ msgstr ""
2496
2497#~ msgid ""
2498#~ "Taler is a cost-effective electronic "
2499#~ "payment system which provides you with"
2500#~ " cryptographic proof that the payment "
2501#~ "worked correctly within milliseconds. Your "
2502#~ "Web customers pay with previously "
2503#~ "unknown levels of convenience without "
2504#~ "risk of fraud. "
2505#~ msgstr ""
2506
2507#~ msgid ""
2508#~ "Processing transactions with Taler is "
2509#~ "fast, allowing you to confirm the "
2510#~ "transaction with your customer virtually "
2511#~ "immediately. Your customers will appreciate"
2512#~ " that they do not have to type"
2513#~ " in credit card information and play"
2514#~ " the &quot;verified by&quot; game. By "
2515#~ "making payments significantly more convenient"
2516#~ " for your customers, you may be "
2517#~ "able to use Taler for small "
2518#~ "transactions that would not work with"
2519#~ " credit card payments due to the "
2520#~ "mental overhead for customers. "
2521#~ msgstr ""
2522
2523#~ msgid ""
2524#~ "You will have cryptographic proof of "
2525#~ "payment from the Taler payment service"
2526#~ " provider. With Taler you never "
2527#~ "handle sensitive customer account information"
2528#~ " and thus do not have to "
2529#~ "undergo any particular security audits "
2530#~ "(such as PCI DSS). Your systems "
2531#~ "will have customer contracts with "
2532#~ "qualified signatures for all transactions "
2533#~ "which you can use in court in "
2534#~ "case of disputes. "
2535#~ msgstr ""
2536
2537#~ msgid ""
2538#~ "Taler is free software, and you "
2539#~ "can use the liberally-licensed reference"
2540#~ " code as a starting point to "
2541#~ "integrate Taler into your services. To"
2542#~ " use Taler, you do not need to"
2543#~ " pay license fees, and the free "
2544#~ "software development model will ensure "
2545#~ "that you can select from many "
2546#~ "competing integrators for support. "
2547#~ msgstr ""
2548
2549#~ msgid ""
2550#~ "Taler is uses efficient cryptographic "
2551#~ "constructions with low bandwidth and "
2552#~ "storage requirements. Combined with Taler's"
2553#~ " strong security which makes fraud "
2554#~ "impossible, Taler payment service providers"
2555#~ " can operate with very low overhead"
2556#~ " and thus offer low transaction fees."
2557#~ " "
2558#~ msgstr ""
2559
2560#~ msgid ""
2561#~ "Taler can be used for different "
2562#~ "currencies (such as Euros, US Dollars"
2563#~ " or Bitcoins) and any amount, limited"
2564#~ " only by applicable regulatation and "
2565#~ "what denominations the payment service "
2566#~ "provider supports. "
2567#~ msgstr ""
2568
2569#~ msgid ""
2570#~ "Taler prevents tax evasion and money "
2571#~ "laundering. Taler's protocols are efficient"
2572#~ " and do not use wasteful proof-"
2573#~ "of-work calculations. Taler encourages "
2574#~ "transparency by providing an open "
2575#~ "standard and free software reference "
2576#~ "implementations. "
2577#~ msgstr ""
2578
2579#~ msgid ""
2580#~ "The backend <b>signs</b> and <b>stores</b> "
2581#~ "the complete terms of offers made "
2582#~ "by the merchant to customers. For "
2583#~ "this, the merchant's frontend needs to"
2584#~ " give the customer's order in a "
2585#~ "JSON format to the backend. "
2586#~ msgstr ""
2587
2588#~ msgid ""
2589#~ "The backend <b>validates</b> payments received"
2590#~ " from the wallet and <b>executes</b> "
2591#~ "them with the Taler payment service "
2592#~ "provider (the exchange). For this, the"
2593#~ " merchant's frontend must pass the "
2594#~ "payment request through to the Taler "
2595#~ "backend and check the HTTP status "
2596#~ "code that is returned. "
2597#~ msgstr ""
2598
2599#~ msgid ""
2600#~ "The backend can <b>list</b> completed "
2601#~ "transactions and <b>map</b> wire transfers "
2602#~ "to sets of business transactions, "
2603#~ "including the exact terms of each "
2604#~ "contract. "
2605#~ msgstr ""
2606
diff --git a/locale/es/LC_MESSAGES/messages.po b/locale/es/LC_MESSAGES/messages.po
index cb6a6c43..d5bc17af 100644
--- a/locale/es/LC_MESSAGES/messages.po
+++ b/locale/es/LC_MESSAGES/messages.po
@@ -1,18 +1,23 @@
1 1
2msgid "" 2msgid ""
3msgstr "" 3msgstr ""
4"Project-Id-Version: PROJECT VERSION\n" 4"Project-Id-Version: PROJECT VERSION Report-Msgid-Bugs-To: EMAIL@ADDRESS "
5"POT-Creation-Date: 2017-05-23 10:32+0200 PO-Revision-Date: YEAR-MO-DA "
6"HO:MI+ZONE Last-Translator: FULL NAME <EMAIL@ADDRESS> Language: es "
7"Language-Team: es <LL@li.org> Plural-Forms: nplurals=2; plural=(n!=1) "
8"MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-"
9"Transfer-Encoding: 8bit Generated-By: Babel 2.3.4 \n"
5"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" 10"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
6"POT-Creation-Date: 2017-05-23 10:32+0200\n" 11"POT-Creation-Date: 2017-06-02 13:48+0200\n"
7"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9"Language: es\n" 14"Language: es\n"
10"Language-Team: es <LL@li.org>\n" 15"Language-Team: es <LL@li.org>\n"
11"Plural-Forms: nplurals=2; plural=(n!=1)\n" 16"Plural-Forms: nplurals=2; plural=(n != 1)\n"
12"MIME-Version: 1.0\n" 17"MIME-Version: 1.0\n"
13"Content-Type: text/plain; charset=utf-8\n" 18"Content-Type: text/plain; charset=utf-8\n"
14"Content-Transfer-Encoding: 8bit\n" 19"Content-Transfer-Encoding: 8bit\n"
15"Generated-By: Babel 2.3.4\n" 20"Generated-By: Babel 2.4.0\n"
16 21
17#: about.html.j2:8 22#: about.html.j2:8
18#, fuzzy 23#, fuzzy
@@ -127,11 +132,9 @@ msgstr ""
127 132
128#: citizens.html.j2:9 133#: citizens.html.j2:9
129msgid "" 134msgid ""
130"Taler largely functions like digital cash. You\n" 135"Taler largely functions like digital cash. You withdraw money from your "
131"withdraw money from your bank account into your\n" 136"bank account into your electronic wallet, and can henceforth spend "
132"electronic wallet, and can henceforth spend digital\n" 137"digital cash. The electronic wallet can carry multiple currencies."
133"cash. The electronic wallet can carry multiple\n"
134"currencies.\n"
135msgstr "" 138msgstr ""
136 139
137#: citizens.html.j2:25 governments.html.j2:58 index.html.j2:56 140#: citizens.html.j2:25 governments.html.j2:58 index.html.j2:56
@@ -141,12 +144,10 @@ msgstr "Seguro"
141 144
142#: citizens.html.j2:27 145#: citizens.html.j2:27
143msgid "" 146msgid ""
144"Taler uses modern cryptography, ensuring that there\n" 147"Taler uses modern cryptography, ensuring that there is no counterfeit. "
145"is no counterfeit. Your digital wallet is safer\n" 148"Your digital wallet is safer than your physical wallet. At most, you can "
146"than your physical wallet. At most, you can lose\n" 149"lose its contents because your computer or mobile is irreparably damaged "
147"its contents because your computer or mobile is\n" 150"or compromised. Unlike a physical wallet, you can make backups to secure "
148"irreparably damaged or compromised. Unlike a\n"
149"physical wallet, you can make backups to secure\n"
150"against data loss." 151"against data loss."
151msgstr "" 152msgstr ""
152 153
@@ -156,12 +157,10 @@ msgstr ""
156 157
157#: citizens.html.j2:39 158#: citizens.html.j2:39
158msgid "" 159msgid ""
159"Your transactions are private, neither the payment\n" 160"Your transactions are private, neither the payment service provider nor "
160"service provider nor merchant needs to learn your\n" 161"merchant needs to learn your identity. There is no need to give out "
161"identity. There is no need to give out credit card\n" 162"credit card numbers or other sensitive information. The merchant will "
162"numbers or other sensitive information. The merchant\n" 163"only be able to do exactly the transaction you agreed to."
163"will only be able to do exactly the transaction you\n"
164"agreed to."
165msgstr "" 164msgstr ""
166 165
167#: citizens.html.j2:50 166#: citizens.html.j2:50
@@ -170,11 +169,10 @@ msgstr ""
170 169
171#: citizens.html.j2:52 170#: citizens.html.j2:52
172msgid "" 171msgid ""
173"You will be able to withdraw money to replenish the\n" 172"You will be able to withdraw money to replenish the digital coins in your"
174"digital coins in your wallet using your credit card\n" 173" wallet using your credit card or wire transfers. Afterwards you can pay "
175"or wire transfers. Afterwards you can pay with\n" 174"with one-click using the Taler wallet, which optionally keeps your "
176"one-click using the Taler wallet, which optionally\n" 175"transaction history on your computer."
177"keeps your transaction history on your computer."
178msgstr "" 176msgstr ""
179 177
180#: citizens.html.j2:61 index.html.j2:42 178#: citizens.html.j2:61 index.html.j2:42
@@ -183,12 +181,10 @@ msgstr ""
183 181
184#: citizens.html.j2:63 182#: citizens.html.j2:63
185msgid "" 183msgid ""
186"Coins in your digital wallet will be of the same\n" 184"Coins in your digital wallet will be of the same denomination as the cash"
187"denomination as the cash in your physical wallet.\n" 185" in your physical wallet. Taler is not a crypto-currency, so you do not "
188"Taler is not a crypto-currency, so you do not have\n" 186"have to worry about cryto-currency related value fluctuations. Banking "
189"to worry about cryto-currency related value\n" 187"with Taler is subject to the usual government protections for financial "
190"fluctuations. Banking with Taler is subject to the\n"
191"usual government protections for financial\n"
192"services." 188"services."
193msgstr "" 189msgstr ""
194 190
@@ -199,9 +195,8 @@ msgstr ""
199#: citizens.html.j2:81 195#: citizens.html.j2:81
200msgid "" 196msgid ""
201"We currently provide a <a href=\"wallet.html\">wallet browser " 197"We currently provide a <a href=\"wallet.html\">wallet browser "
202"extension</a> for Chromium, Chrome, Firefox, Opera\n" 198"extension</a> for Chromium, Chrome, Firefox, Opera and Edge. Wallets for "
203"and Edge. Wallets for mobile phones and other platforms will be " 199"mobile phones and other platforms will be available in the future."
204"available in the future.\n"
205msgstr "" 200msgstr ""
206 201
207#: citizens.html.j2:88 202#: citizens.html.j2:88
@@ -211,7 +206,7 @@ msgstr ""
211#: citizens.html.j2:90 206#: citizens.html.j2:90
212msgid "" 207msgid ""
213"You can see how Taler works in practice by visiting our <a " 208"You can see how Taler works in practice by visiting our <a "
214"href=\"https://demo.taler.net\">demo page</a>.\n" 209"href=\"https://demo.taler.net\">demo page</a>."
215msgstr "" 210msgstr ""
216 211
217#: citizens.html.j2:103 212#: citizens.html.j2:103
@@ -219,39 +214,32 @@ msgid "The Taler Wallet for customers"
219msgstr "" 214msgstr ""
220 215
221#: citizens.html.j2:105 216#: citizens.html.j2:105
222msgid "" 217msgid "Customers interact with the Taler system using the Taler wallet:"
223"Customers interact with the Taler system using\n"
224"the Taler wallet:"
225msgstr "" 218msgstr ""
226 219
227#: citizens.html.j2:110 220#: citizens.html.j2:110
228msgid "" 221msgid ""
229"To <b>withdraw</b> electronic coins, the customer\n" 222"To <b>withdraw</b> electronic coins, the customer transfers funds from "
230"transfers funds from his bank account to the Taler\n" 223"his bank account to the Taler payment service provider (the exchange). "
231"payment service provider (the exchange). The wire\n" 224"The wire transfer subject must match a code identifying the customer's "
232"transfer subject must match a code identifying the\n" 225"wallet. After the wire transfer is complete, the wallet will "
233"customer's wallet. After the wire transfer is\n" 226"automatically withdraw the coins from the exchange."
234"complete, the wallet will automatically withdraw the\n"
235"coins from the exchange."
236msgstr "" 227msgstr ""
237 228
238#: citizens.html.j2:118 229#: citizens.html.j2:118
239msgid "" 230msgid ""
240"To <b>spend</b> electronic coins, a merchant must\n" 231"To <b>spend</b> electronic coins, a merchant must cause the wallet to "
241"cause the wallet to display a proposal for some\n" 232"display a proposal for some purchase. The wallet will ask the customer "
242"purchase. The wallet will ask the customer for\n" 233"for one-click confirmation. Payment is then instant. Transaction "
243"one-click confirmation. Payment is then instant.\n" 234"histories and digitally signed contracts can be preserved by the wallet."
244"Transaction histories and digitally signed contracts\n"
245"can be preserved by the wallet."
246msgstr "" 235msgstr ""
247 236
248#: citizens.html.j2:125 237#: citizens.html.j2:125
249msgid "" 238msgid ""
250"The customer can use the wallet to <b>review</b> his\n" 239"The customer can use the wallet to <b>review</b> his balance. The wallet "
251"balance. The wallet can contain different\n" 240"can contain different currencies, and may be shared across devices. "
252"currencies, and may be shared across\n" 241"Customers can make backups of the wallet to secure its contents against "
253"devices. Customers can make backups of the wallet to\n" 242"hardware failures."
254"secure its contents against hardware failures."
255msgstr "" 243msgstr ""
256 244
257#: contact.html.j2:6 245#: contact.html.j2:6
@@ -264,12 +252,10 @@ msgstr ""
264 252
265#: contact.html.j2:15 253#: contact.html.j2:15
266msgid "" 254msgid ""
267"An archived, public mailing list for GNU Taler is\n" 255"An archived, public mailing list for GNU Taler is hosted at <a "
268"hosted at\n"
269"<a "
270"href=\"https://lists.gnu.org/mailman/listinfo/taler\">https://lists.gnu.org/mailman/listinfo/taler</a>." 256"href=\"https://lists.gnu.org/mailman/listinfo/taler\">https://lists.gnu.org/mailman/listinfo/taler</a>."
271" You can send messages to the list\n" 257" You can send messages to the list at <a "
272"at <a href=\"mailto:taler@gnu.org\">taler@gnu.org</a>.\n" 258"href=\"mailto:taler@gnu.org\">taler@gnu.org</a>."
273msgstr "" 259msgstr ""
274 260
275#: contact.html.j2:25 261#: contact.html.j2:25
@@ -278,9 +264,8 @@ msgstr ""
278 264
279#: contact.html.j2:27 265#: contact.html.j2:27
280msgid "" 266msgid ""
281"Team members are generally reachable at\n" 267"Team members are generally reachable at <tt>LASTNAME@taler.net</tt>. All "
282"<tt>LASTNAME@taler.net</tt>. All of us\n" 268"of us support receiving GnuPG encrypted e-mails."
283"support receiving GnuPG encrypted e-mails.\n"
284msgstr "" 269msgstr ""
285 270
286#: contact.html.j2:36 271#: contact.html.j2:36
@@ -289,11 +274,10 @@ msgstr ""
289 274
290#: contact.html.j2:38 275#: contact.html.j2:38
291msgid "" 276msgid ""
292"We track open feature requests and bugs in our\n" 277"We track open feature requests and bugs in our <a "
293"<a href=\"https://gnunet.org/bugs/\">Bug tracker</a>,\n" 278"href=\"https://gnunet.org/bugs/\">Bug tracker</a>, which is shared with "
294"which is shared with the GNUnet project.\n" 279"the GNUnet project. You can also report bugs or feature requests to the "
295"You can also report bugs or feature requests to the\n" 280"mailing list."
296"mailing list.\n"
297msgstr "" 281msgstr ""
298 282
299#: contact.html.j2:49 283#: contact.html.j2:49
@@ -302,8 +286,39 @@ msgstr ""
302 286
303#: contact.html.j2:51 287#: contact.html.j2:51
304msgid "" 288msgid ""
305"For non-technical commercial requests, please contact\n" 289"For non-technical commercial requests, please contact <tt>ceo AT "
306"<tt>ceo AT taler.net</tt>.\n" 290"taler.net</tt>."
291msgstr ""
292
293#: copyright.html.j2:6
294msgid "Copyright Assignment"
295msgstr ""
296
297#: copyright.html.j2:8
298msgid ""
299"<p>Contributors to GNU Taler with Git access must sign the <a "
300"href=\"pdf/copyright.pdf\">copyright assignment</a> to ensure that the <a"
301" href=\"https://gnunet.org/git/gnunet-"
302"ev.git/tree/gnunet_taler_agreement.tex\">GNUnet e.V. --- Taler Systems SA"
303" agreement on licensing and collaborative development</a> of the GNUnet "
304"and GNU Taler projects is satisfied.</p>"
305msgstr ""
306
307#: copyright.html.j2:17
308msgid ""
309"<p>The agreements ensure that the code will continue to be made available"
310" under free software licenses, but gives developers the freedom to move "
311"code between GNUnet and GNU Taler without worrying about licenses and the"
312" company the ability to dual-license (for example, so that we can "
313"distribute via App-stores that are hostile to free software).</p>"
314msgstr ""
315
316#: copyright.html.j2:25
317msgid ""
318"<p>Minor contributions (basically, anyone without Git access) do not "
319"require copyright assignment. Pseudonymous contributions are accepted, in"
320" this case simply sign the agreement with your pseudonym. Scanned copies "
321"are sufficient, but snail mail is preferred.</p>"
307msgstr "" 322msgstr ""
308 323
309#: developers.html.j2:5 324#: developers.html.j2:5
@@ -316,17 +331,14 @@ msgstr "Libre"
316 331
317#: developers.html.j2:15 332#: developers.html.j2:15
318msgid "" 333msgid ""
319"GNU Taler is free software implementing an open\n" 334"GNU Taler is free software implementing an open protocol. Anybody is "
320"protocol. Anybody is welcome to integrate our reference\n" 335"welcome to integrate our reference implementation into their "
321"implementation into their applications. Different\n" 336"applications. Different components of Taler are being made available "
322"components of Taler are being made available under\n" 337"under different licenses. The Affero GPLv3+ is used for the exchange, the"
323"different licenses. The Affero GPLv3+ is used for the\n" 338" LGPLv3+ is used for reference code demonstrating integration with "
324"exchange, the LGPLv3+ is used for reference code\n" 339"merchant platforms, and licenses like GPLv3+ are used for wallets and "
325"demonstrating integration with merchant platforms, and\n" 340"related customer-facing software. We are open for constructive "
326"licenses like GPLv3+ are used for\n" 341"suggestions for maximizing the adoption of this payment platform."
327"wallets and related customer-facing software. We are\n"
328"open for constructive suggestions for maximizing the\n"
329"adoption of this payment platform.\n"
330msgstr "" 342msgstr ""
331 343
332#: developers.html.j2:32 344#: developers.html.j2:32
@@ -335,18 +347,14 @@ msgstr " Basado en REST"
335 347
336#: developers.html.j2:35 348#: developers.html.j2:35
337msgid "" 349msgid ""
338"Taler is designed to work on the Internet. To\n" 350"Taler is designed to work on the Internet. To ensure that Taler payments "
339"ensure that Taler payments can work with\n" 351"can work with restrictive network setups, Taler uses a RESTful protocol "
340"restrictive network setups, Taler uses a RESTful\n" 352"over HTTP or HTTPS. Taler's security does not depend upon the use of "
341"protocol over HTTP or HTTPS. Taler's security does\n" 353"HTTPS, but obviously merchants may choose to offer HTTPS for consistency "
342"not depend upon the use of HTTPS, but obviously\n" 354"and because it generally is better for privacy compared to HTTP. Taler "
343"merchants may choose to offer HTTPS for consistency\n" 355"uses JSON to encode structure data, making it easy to integrate Taler "
344"and because it generally is better for privacy\n" 356"with existing Web applications. Taler's protocol is documented in detail "
345"compared to HTTP. Taler uses JSON to encode\n" 357"at <a href=\"https://api.taler.net/\">api.taler.net</a>."
346"structure data, making it easy to integrate Taler\n"
347"with existing Web applications. Taler's protocol\n"
348"is documented in\n"
349"detail at <a href=\"https://api.taler.net/\">api.taler.net</a>.\n"
350msgstr "" 358msgstr ""
351 359
352#: developers.html.j2:58 360#: developers.html.j2:58
@@ -355,15 +363,13 @@ msgstr "Código"
355 363
356#: developers.html.j2:61 364#: developers.html.j2:61
357msgid "" 365msgid ""
358"Taler is currently primarily developed by a\n" 366"Taler is currently primarily developed by a research team at <a "
359"research team at <a href=\"http://www.inria.fr/\">Inria</a> and\n" 367"href=\"http://www.inria.fr/\">Inria</a> and <a "
360"<a href=\"https://gnunet.org/\">GNUnet</a>. However,\n" 368"href=\"https://gnunet.org/\">GNUnet</a>. However, contributions from "
361"contributions from anyone are welcome. Our Git\n" 369"anyone are welcome. Our Git repositories can be cloned using the Git and "
362"repositories can be cloned using the Git and HTTP\n" 370"HTTP access methods against <tt>git.taler.net</tt> with the name of the "
363"access methods against <tt>git.taler.net</tt> with\n" 371"respective repository. A list of repositories can be found in our <a "
364"the name of the respective repository. A list of\n" 372"href=\"https://git.taler.net/\">GitWeb</a>."
365"repositories can be found in\n"
366"our <a href=\"https://git.taler.net/\">GitWeb</a>.\n"
367msgstr "" 373msgstr ""
368 374
369#: developers.html.j2:75 375#: developers.html.j2:75
@@ -372,11 +378,10 @@ msgstr "Documentación"
372 378
373#: developers.html.j2:78 379#: developers.html.j2:78
374msgid "" 380msgid ""
375"In addition to this website, the <a\n" 381"In addition to this website, the <a "
376"href=\"https://git.taler.net/\">documented code</a> and\n" 382"href=\"https://git.taler.net/\">documented code</a> and the <a "
377"the <a href=\"https://api.taler.net/\">API\n" 383"href=\"https://api.taler.net/\">API documentation</a>. Technical papers "
378"documentation</a>. Technical papers can be found in\n" 384"can be found in our <a href=\"bibliography.html\">bibliography</a>."
379"our <a href=\"bibliography.html\">bibliography</a>.\n"
380msgstr "" 385msgstr ""
381 386
382#: developers.html.j2:88 387#: developers.html.j2:88
@@ -385,11 +390,9 @@ msgstr "Debates"
385 390
386#: developers.html.j2:91 391#: developers.html.j2:91
387msgid "" 392msgid ""
388"We have a mailing list for developer discussions.\n" 393"We have a mailing list for developer discussions. You can subscribe to or"
389"You can subscribe to or read the list archive at\n" 394" read the list archive at <a "
390"<a "
391"href=\"http://lists.gnu.org/mailman/listinfo/taler\">http://lists.gnu.org/mailman/listinfo/taler</a>." 395"href=\"http://lists.gnu.org/mailman/listinfo/taler\">http://lists.gnu.org/mailman/listinfo/taler</a>."
392"\n"
393msgstr "" 396msgstr ""
394 397
395#: developers.html.j2:101 398#: developers.html.j2:101
@@ -398,10 +401,9 @@ msgstr "Pruebas de regresión"
398 401
399#: developers.html.j2:104 402#: developers.html.j2:104
400msgid "" 403msgid ""
401"We have <a href=\"https://buildbot.net/\">Buildbot</a>\n" 404"We have <a href=\"https://buildbot.net/\">Buildbot</a> automation tests "
402"automation tests to detect regressions and check for\n" 405"to detect regressions and check for portability at <a "
403"portability at <a\n" 406"href=\"https://buildbot.taler.net/\">buildbot.taler.net</a>."
404"href=\"https://buildbot.taler.net/\">buildbot.taler.net</a>.\n"
405msgstr "" 407msgstr ""
406 408
407#: developers.html.j2:113 409#: developers.html.j2:113
@@ -410,11 +412,9 @@ msgstr "Análisis de cobertura de código"
410 412
411#: developers.html.j2:116 413#: developers.html.j2:116
412msgid "" 414msgid ""
413"We use\n" 415"We use <a href=\"http://ltp.sourceforge.net/coverage/lcov.php\">LCOV</a> "
414"<a href=\"http://ltp.sourceforge.net/coverage/lcov.php\">LCOV</a>\n" 416"to analyze the code coverage of our tests, the results are available at "
415"to analyze the code coverage of our tests, the\n" 417"<a href=\"https://lcov.taler.net/\">lcov.taler.net</a>."
416"results are available\n"
417"at <a href=\"https://lcov.taler.net/\">lcov.taler.net</a>.\n"
418msgstr "" 418msgstr ""
419 419
420#: developers.html.j2:126 420#: developers.html.j2:126
@@ -423,11 +423,9 @@ msgstr "Performance"
423 423
424#: developers.html.j2:129 424#: developers.html.j2:129
425msgid "" 425msgid ""
426"We\n" 426"We use <a href=\"https://gnunet.org/gauger\">Gauger</a> for performance "
427"use <a href=\"https://gnunet.org/gauger\">Gauger</a>\n" 427"regression analysis of the exchange backend at <a "
428"for performance regression analysis of the exchange\n" 428"href=\"https://gauger.taler.net/\">gauger.taler.net</a>."
429"backend\n"
430"at <a href=\"https://gauger.taler.net/\">gauger.taler.net</a>.\n"
431msgstr "" 429msgstr ""
432 430
433#: developers.html.j2:145 431#: developers.html.j2:145
@@ -436,120 +434,88 @@ msgstr "Diagrama general del sistema Taler"
436 434
437#: developers.html.j2:148 435#: developers.html.j2:148
438msgid "" 436msgid ""
439"The Taler system consists of protocols executed among\n" 437"The Taler system consists of protocols executed among a number of actors "
440"a number of actors as illustrated in the illustration on the right.\n" 438"as illustrated in the illustration on the right. Typical transactions "
441"Typical transactions involve the following steps:\n" 439"involve the following steps:"
442msgstr "" 440msgstr ""
443 441
444#: developers.html.j2:158 442#: developers.html.j2:158
445msgid "" 443msgid ""
446"A customer instructs his <b>bank</b> to\n" 444"A customer instructs his <b>bank</b> to transfer funds from his account "
447"transfer funds from his account to the Taler\n" 445"to the Taler exchange (top left). In the subject of the transaction, he "
448"exchange (top left). In the subject of the\n" 446"includes an authentication token from his electronic <b>wallet</b>. In "
449"transaction, he includes an authentication\n" 447"Taler terminology, the customer creates a reserve at the exchange."
450"token from his electronic <b>wallet</b>. In\n"
451"Taler terminology, the customer creates a\n"
452"reserve at the exchange.\n"
453msgstr "" 448msgstr ""
454 449
455#: developers.html.j2:170 450#: developers.html.j2:170
456msgid "" 451msgid ""
457"Once the exchange has received the wire\n" 452"Once the exchange has received the wire transfer, it allows the "
458"transfer, it allows the customer's electronic\n" 453"customer's electronic wallet to <b>withdraw</b> electronic coins. The "
459"wallet to <b>withdraw</b> electronic coins.\n" 454"electronic coins are digital representations of the original currency "
460"The electronic coins are digital\n" 455"from the transfer. It is important to note that the exchange does not "
461"representations of the original currency from\n" 456"learn the &quot;serial numbers&quot; of the coins created in this "
462"the transfer. It is important to note that the\n" 457"process, so it cannot tell later which customer purchased what at which "
463"exchange does not learn the &quot;serial\n" 458"merchant. The use of Taler does not change the currency or the total "
464"numbers&quot; of the coins created in this\n" 459"value of the funds (except for fees which the exchange may charge for the"
465"process, so it cannot tell later which customer\n" 460" service)."
466"purchased what at which merchant. The use of\n"
467"Taler does not change the currency or the total\n"
468"value of the funds (except for fees which the\n"
469"exchange may charge for the service).\n"
470msgstr "" 461msgstr ""
471 462
472#: developers.html.j2:188 463#: developers.html.j2:188
473msgid "" 464msgid ""
474"Once the customer has the digital coins in his\n" 465"Once the customer has the digital coins in his wallet, the wallet can be "
475"wallet, the wallet can be used to <b>spend</b>\n" 466"used to <b>spend</b> the coins with merchant portals that support the "
476"the coins with merchant portals that support\n" 467"Taler payment system and accept the respective exchange as a business "
477"the Taler payment system and accept the\n" 468"partner (bottom arrow). This creates a digital contract signed by the "
478"respective exchange as a business partner\n" 469"customer's coins and the merchant. If necessary, the customer can later "
479"(bottom arrow). This creates a digital contract\n" 470"use this digitally signed contract in a court of law to prove the exact "
480"signed by the customer's coins and the\n" 471"terms of the contract and that he paid the respective amount. The "
481"merchant. If necessary, the customer can later\n" 472"customer does not learn the banking details of the merchant, and Taler "
482"use this digitally signed contract in a court\n" 473"does not require the merchant to learn the identity of the customer. "
483"of law to prove the exact terms of the contract\n" 474"Naturally, the customer can spend any fraction of his digital coins (the "
484"and that he paid the respective amount. The\n" 475"system takes care of customers getting change)."
485"customer does not learn the banking details of\n"
486"the merchant, and Taler does not require the\n"
487"merchant to learn the identity of the\n"
488"customer. Naturally, the customer can spend any\n"
489"fraction of his digital coins (the system takes\n"
490"care of customers getting change).\n"
491msgstr "" 476msgstr ""
492 477
493#: developers.html.j2:210 478#: developers.html.j2:210
494msgid "" 479msgid ""
495"Merchants receiving digital\n" 480"Merchants receiving digital coins <b>deposit</b> the respective claims "
496"coins <b>deposit</b> the respective claims\n" 481"that resulted from the contract signing with the customer at the exchange"
497"that resulted from the contract signing with\n" 482" to redeem the coins. The deposit step does not reveal the details of the"
498"the customer at the exchange to redeem the\n" 483" contract between the customer and the merchant or the identity of the "
499"coins. The deposit step does not reveal the\n" 484"customer to the exchange in any way. However, the exchange does learn the"
500"details of the contract between the customer\n" 485" identity of the merchant via the provided bank routing information. The "
501"and the merchant or the identity of the\n" 486"merchant can, for example when compelled by the state for taxation, "
502"customer to the exchange in any way. However,\n" 487"provide information linking the individual deposit to the respective "
503"the exchange does learn the identity of the\n" 488"contract signed by the customer. Thus, the exchange's database allows the"
504"merchant via the provided bank routing\n" 489" state to enforce that merchants pay applicable taxes (and do not engage "
505"information. The merchant can, for example\n" 490"in illegal contracts)."
506"when compelled by the state for taxation,\n"
507"provide information linking the individual\n"
508"deposit to the respective contract signed by\n"
509"the customer. Thus, the exchange's database\n"
510"allows the state to enforce that merchants pay\n"
511"applicable taxes (and do not engage in illegal\n"
512"contracts).\n"
513msgstr "" 491msgstr ""
514 492
515#: developers.html.j2:233 493#: developers.html.j2:233
516msgid "" 494msgid ""
517"Finally, the exchange transfers funds\n" 495"Finally, the exchange transfers funds corresponding to the digital coins "
518"corresponding to the digital coins redeemed by\n" 496"redeemed by the merchants to the merchant's <b>bank</b> account. The "
519"the merchants to the merchant's <b>bank</b>\n" 497"exchange may combine multiple small transactions into one larger bank "
520"account. The exchange may combine multiple\n" 498"transfer. The merchant can query the exchange about the relationship "
521"small transactions into one larger bank\n" 499"between the bank transfers and the individual claims that were deposited."
522"transfer. The merchant can query the exchange\n"
523"about the relationship between the bank\n"
524"transfers and the individual claims that were\n"
525"deposited.\n"
526msgstr "" 500msgstr ""
527 501
528#: developers.html.j2:247 502#: developers.html.j2:247
529msgid "" 503msgid ""
530"Most importantly, the exchange keeps\n" 504"Most importantly, the exchange keeps cryptographic proofs that allow it "
531"cryptographic proofs that allow it to\n" 505"to demonstrate that it is operating correctly to third parties. The "
532"demonstrate that it is operating correctly to\n" 506"system requires an external <b>auditor</b>, such as a government-"
533"third parties. The system requires an\n" 507"appointed financial regulatory body, to frequently verify the exchange's "
534"external <b>auditor</b>, such as a\n" 508"databases and check that its bank balance matches the total value of the "
535"government-appointed financial regulatory body,\n" 509"remaining coins in circulation."
536"to frequently verify the exchange's databases\n"
537"and check that its bank balance matches the\n"
538"total value of the remaining coins in\n"
539"circulation.\n"
540msgstr "" 510msgstr ""
541 511
542#: developers.html.j2:262 512#: developers.html.j2:262
543msgid "" 513msgid ""
544"Without the auditor, the exchange operators\n" 514"Without the auditor, the exchange operators could embezzle funds they are"
545"could embezzle funds they are holding in\n" 515" holding in reserve. Customers and merchants cannot cheat each other or "
546"reserve. Customers and merchants cannot cheat\n" 516"the exchange. If any party's computers are compromised, the financial "
547"each other or the exchange. If any party's\n" 517"damage is limited to the respective party and proportional to the funds "
548"computers are compromised, the financial damage\n" 518"they have in circulation during the period of the compromise."
549"is limited to the respective party and\n"
550"proportional to the funds they have in\n"
551"circulation during the period of the\n"
552"compromise.\n"
553msgstr "" 519msgstr ""
554 520
555#: faq.html.j2:5 521#: faq.html.j2:5
@@ -558,17 +524,17 @@ msgstr ""
558 524
559#: faq.html.j2:6 525#: faq.html.j2:6
560msgid "" 526msgid ""
561"<p>Taler does not use any Blockchain technology or Bitcoin directly.\n" 527"<p>Taler does not use any Blockchain technology or Bitcoin directly. "
562"Taler is not based on proof-of-work or any other distributed consensus\n" 528"Taler is not based on proof-of-work or any other distributed consensus "
563"mechanism. Instead Taler is based on blind signatures.</p>\n" 529"mechanism. Instead Taler is based on blind signatures.</p>"
564msgstr "" 530msgstr ""
565 531
566#: faq.html.j2:11 532#: faq.html.j2:11
567msgid "" 533msgid ""
568"<p>It would be possible, however, to withdraw coins denominated in\n" 534"<p>It would be possible, however, to withdraw coins denominated in "
569"Bitcoin into a Taler wallet (with an appropriate exchange), which\n" 535"Bitcoin into a Taler wallet (with an appropriate exchange), which would "
570"would give some benefits over plain Bitcoin, such as instant\n" 536"give some benefits over plain Bitcoin, such as instant confirmation "
571"confirmation times.</p>\n" 537"times.</p>"
572msgstr "" 538msgstr ""
573 539
574#: faq.html.j2:18 540#: faq.html.j2:18
@@ -577,9 +543,9 @@ msgstr ""
577 543
578#: faq.html.j2:19 544#: faq.html.j2:19
579msgid "" 545msgid ""
580"<p>Your wallet stores digital coins and thus ultimately your computer\n" 546"<p>Your wallet stores digital coins and thus ultimately your computer "
581"holds your balance. The exchange keeps funds matching all unspent\n" 547"holds your balance. The exchange keeps funds matching all unspent coins "
582"coins in an escrow bank account.</p>\n" 548"in an escrow bank account.</p>"
583msgstr "" 549msgstr ""
584 550
585#: faq.html.j2:25 551#: faq.html.j2:25
@@ -588,16 +554,16 @@ msgstr ""
588 554
589#: faq.html.j2:26 555#: faq.html.j2:26
590msgid "" 556msgid ""
591"<p>Since the digital coins of value in your wallet are anonymized, the\n" 557"<p>Since the digital coins of value in your wallet are anonymized, the "
592"exchange can not assist you in recovering a lost or stolen wallet.\n" 558"exchange can not assist you in recovering a lost or stolen wallet. Just "
593"Just like with a physical wallet for cash, you are responsible for\n" 559"like with a physical wallet for cash, you are responsible for keeping it "
594"keeping it safe.</p>\n" 560"safe.</p>"
595msgstr "" 561msgstr ""
596 562
597#: faq.html.j2:32 563#: faq.html.j2:32
598msgid "" 564msgid ""
599"<p>The risk of losing a wallet can be mitigated by making backups or\n" 565"<p>The risk of losing a wallet can be mitigated by making backups or "
600"keeping the balance reasonably low.</p>\n" 566"keeping the balance reasonably low.</p>"
601msgstr "" 567msgstr ""
602 568
603#: faq.html.j2:37 569#: faq.html.j2:37
@@ -606,9 +572,9 @@ msgstr ""
606 572
607#: faq.html.j2:38 573#: faq.html.j2:38
608msgid "" 574msgid ""
609"<p>In case of a compromise of one of your devices, an attacker can\n" 575"<p>In case of a compromise of one of your devices, an attacker can spend "
610"spend coins from your wallet. Checking your balance might reveal\n" 576"coins from your wallet. Checking your balance might reveal to you that "
611"to you that your device has been compromised.</p>\n" 577"your device has been compromised.</p>"
612msgstr "" 578msgstr ""
613 579
614#: faq.html.j2:44 580#: faq.html.j2:44
@@ -617,15 +583,15 @@ msgstr ""
617 583
618#: faq.html.j2:45 584#: faq.html.j2:45
619msgid "" 585msgid ""
620"<p>If your friend provides goods or services for you in exchange for a\n" 586"<p>If your friend provides goods or services for you in exchange for a "
621"payment, they can easily set up a Taler merchant and receive the\n" 587"payment, they can easily set up a Taler merchant and receive the payment "
622"payment in their bank account.</p>\n" 588"in their bank account.</p>"
623msgstr "" 589msgstr ""
624 590
625#: faq.html.j2:50 591#: faq.html.j2:50
626msgid "" 592msgid ""
627"<p>Future versions of the Taler wallet may allow exchanging coins\n" 593"<p>Future versions of the Taler wallet may allow exchanging coins among "
628"among friends directly as well.</p>\n" 594"friends directly as well.</p>"
629msgstr "" 595msgstr ""
630 596
631#: faq.html.j2:56 597#: faq.html.j2:56
@@ -634,12 +600,12 @@ msgstr ""
634 600
635#: faq.html.j2:57 601#: faq.html.j2:57
636msgid "" 602msgid ""
637"<p>Taler wallets can store digital coins corresponding to multiple\n" 603"<p>Taler wallets can store digital coins corresponding to multiple "
638"different currencies such as the Euro, US Dollars or Bitcoins.</p>\n" 604"different currencies such as the Euro, US Dollars or Bitcoins.</p>"
639msgstr "" 605msgstr ""
640 606
641#: faq.html.j2:61 607#: faq.html.j2:61
642msgid "<p>Taler currently does not offer conversion between currencies.</p>\n" 608msgid "<p>Taler currently does not offer conversion between currencies.</p>"
643msgstr "" 609msgstr ""
644 610
645#: faq.html.j2:65 611#: faq.html.j2:65
@@ -648,12 +614,11 @@ msgstr ""
648 614
649#: faq.html.j2:66 615#: faq.html.j2:66
650msgid "" 616msgid ""
651"<p>Your wallet stores digital coins that are <a\n" 617"<p>Your wallet stores digital coins that are <a "
652"href=\"https://en.wikipedia.org/wiki/Blind_signature\">blindly\n" 618"href=\"https://en.wikipedia.org/wiki/Blind_signature\">blindly signed</a>"
653"signed</a> by an exchange. The use of a blind signature protects your\n" 619" by an exchange. The use of a blind signature protects your privacy as it"
654"privacy as it prevents the exchange from knowing which coin it signed\n" 620" prevents the exchange from knowing which coin it signed for which "
655"for which customer.</p>\n" 621"customer.</p>"
656"\n"
657msgstr "" 622msgstr ""
658 623
659#: glossary.html.j2:6 624#: glossary.html.j2:6
@@ -663,7 +628,7 @@ msgstr ""
663#: glossary.html.j2:8 628#: glossary.html.j2:8
664msgid "" 629msgid ""
665"trusted third party that verifies that the `exchange` is operating " 630"trusted third party that verifies that the `exchange` is operating "
666"correctly\n" 631"correctly"
667msgstr "" 632msgstr ""
668 633
669#: glossary.html.j2:12 634#: glossary.html.j2:12
@@ -673,7 +638,7 @@ msgstr ""
673#: glossary.html.j2:14 638#: glossary.html.j2:14
674msgid "" 639msgid ""
675"traditional financial service provider who offers wire `transfers` " 640"traditional financial service provider who offers wire `transfers` "
676"between accounts\n" 641"between accounts"
677msgstr "" 642msgstr ""
678 643
679#: glossary.html.j2:18 644#: glossary.html.j2:18
@@ -683,7 +648,7 @@ msgstr ""
683#: glossary.html.j2:20 648#: glossary.html.j2:20
684msgid "" 649msgid ""
685"coins are individual token representing a certain amount of value, also " 650"coins are individual token representing a certain amount of value, also "
686"known as the `denomination` of the coin\n" 651"known as the `denomination` of the coin"
687msgstr "" 652msgstr ""
688 653
689#: glossary.html.j2:24 654#: glossary.html.j2:24
@@ -691,7 +656,7 @@ msgid "contract"
691msgstr "" 656msgstr ""
692 657
693#: glossary.html.j2:26 658#: glossary.html.j2:26
694msgid "the proposal signed by the wallet.\n" 659msgid "the proposal signed by the wallet."
695msgstr "" 660msgstr ""
696 661
697#: glossary.html.j2:30 662#: glossary.html.j2:30
@@ -701,7 +666,7 @@ msgstr ""
701#: glossary.html.j2:32 666#: glossary.html.j2:32
702msgid "" 667msgid ""
703"unit of currency, specifies both the currency and the face value of a " 668"unit of currency, specifies both the currency and the face value of a "
704"`coin`\n" 669"`coin`"
705msgstr "" 670msgstr ""
706 671
707#: glossary.html.j2:36 672#: glossary.html.j2:36
@@ -711,7 +676,7 @@ msgstr ""
711#: glossary.html.j2:38 676#: glossary.html.j2:38
712msgid "" 677msgid ""
713"RSA key used by the exchange to certify that a given `coin` is valid and " 678"RSA key used by the exchange to certify that a given `coin` is valid and "
714"of a particular `denomination`\n" 679"of a particular `denomination`"
715msgstr "" 680msgstr ""
716 681
717#: glossary.html.j2:42 682#: glossary.html.j2:42
@@ -722,7 +687,7 @@ msgstr ""
722msgid "" 687msgid ""
723"operation by which a merchant passes coins to an exchange, expecting the " 688"operation by which a merchant passes coins to an exchange, expecting the "
724"exchange to credit his `bank` account in the future using a wire " 689"exchange to credit his `bank` account in the future using a wire "
725"`transfer`\n" 690"`transfer`"
726msgstr "" 691msgstr ""
727 692
728#: glossary.html.j2:48 693#: glossary.html.j2:48
@@ -734,7 +699,7 @@ msgid ""
734"a `coin` is dirty if its public key may be known to an entity other than " 699"a `coin` is dirty if its public key may be known to an entity other than "
735"the customer, thereby creating the danger of some entity being able to " 700"the customer, thereby creating the danger of some entity being able to "
736"link multiple transactions of coin's owner if the coin is not refreshed " 701"link multiple transactions of coin's owner if the coin is not refreshed "
737"first\n" 702"first"
738msgstr "" 703msgstr ""
739 704
740#: glossary.html.j2:54 705#: glossary.html.j2:54
@@ -743,8 +708,8 @@ msgstr ""
743 708
744#: glossary.html.j2:56 709#: glossary.html.j2:56
745msgid "" 710msgid ""
746"Taler's payment service provider. Issues eletronic `coins` during " 711"Taler's payment service provider. Issues eletronic `coins` during "
747"`withdrawal` and redeems them when they are `deposited` by merchants.\n" 712"`withdrawal` and redeems them when they are `deposited` by merchants."
748msgstr "" 713msgstr ""
749 714
750#: glossary.html.j2:60 715#: glossary.html.j2:60
@@ -752,7 +717,7 @@ msgid "extension"
752msgstr "" 717msgstr ""
753 718
754#: glossary.html.j2:62 719#: glossary.html.j2:62
755msgid "implementation of a `wallet` for browsers\n" 720msgid "implementation of a `wallet` for browsers"
756msgstr "" 721msgstr ""
757 722
758#: glossary.html.j2:66 723#: glossary.html.j2:66
@@ -760,7 +725,7 @@ msgid "fresh coin"
760msgstr "" 725msgstr ""
761 726
762#: glossary.html.j2:68 727#: glossary.html.j2:68
763msgid "a `coin` is fresh if its public key is only known to the customer\n" 728msgid "a `coin` is fresh if its public key is only known to the customer"
764msgstr "" 729msgstr ""
765 730
766#: glossary.html.j2:72 731#: glossary.html.j2:72
@@ -770,7 +735,7 @@ msgstr ""
770#: glossary.html.j2:74 735#: glossary.html.j2:74
771msgid "" 736msgid ""
772"offline key used by the exchange to certify denomination keys and message" 737"offline key used by the exchange to certify denomination keys and message"
773" signing keys\n" 738" signing keys"
774msgstr "" 739msgstr ""
775 740
776#: glossary.html.j2:78 741#: glossary.html.j2:78
@@ -778,7 +743,7 @@ msgid "message signing key"
778msgstr "" 743msgstr ""
779 744
780#: glossary.html.j2:80 745#: glossary.html.j2:80
781msgid "key used by the exchange to sign online messages, other than coins\n" 746msgid "key used by the exchange to sign online messages, other than coins"
782msgstr "" 747msgstr ""
783 748
784#: glossary.html.j2:84 749#: glossary.html.j2:84
@@ -788,15 +753,11 @@ msgstr ""
788#: glossary.html.j2:86 753#: glossary.html.j2:86
789msgid "" 754msgid ""
790"specification of the details of a transaction, specifies the payment " 755"specification of the details of a transaction, specifies the payment "
791"obligations\n" 756"obligations for the customer (i.e. the amount), the deliverables of the "
792"for the customer (i.e. the amount), the deliverables of the merchant and " 757"merchant and other related information, such as deadlines or locations; "
793"other\n" 758"However, it lacks some information that the backend is supposed to "
794"related information, such as deadlines or locations; However, it lacks " 759"provide. In other words, after the backend adds the missing information "
795"some\n" 760"to the offer and signs it, it becomes a proposal."
796"information that the backend is supposed to provide.\n"
797"In other words, after the backend adds the missing information to the "
798"offer and\n"
799"signs it, it becomes a proposal.\n"
800msgstr "" 761msgstr ""
801 762
802#: glossary.html.j2:95 763#: glossary.html.j2:95
@@ -804,7 +765,7 @@ msgid "owner"
804msgstr "" 765msgstr ""
805 766
806#: glossary.html.j2:97 767#: glossary.html.j2:97
807msgid "a `coin` is owned by the entity that knows the private key of the coin\n" 768msgid "a `coin` is owned by the entity that knows the private key of the coin"
808msgstr "" 769msgstr ""
809 770
810#: glossary.html.j2:101 771#: glossary.html.j2:101
@@ -814,7 +775,7 @@ msgstr ""
814#: glossary.html.j2:103 775#: glossary.html.j2:103
815msgid "" 776msgid ""
816"message that cryptographically demonstrates that a particular claim is " 777"message that cryptographically demonstrates that a particular claim is "
817"correct\n" 778"correct"
818msgstr "" 779msgstr ""
819 780
820#: glossary.html.j2:107 781#: glossary.html.j2:107
@@ -822,7 +783,7 @@ msgid "proposal"
822msgstr "" 783msgstr ""
823 784
824#: glossary.html.j2:109 785#: glossary.html.j2:109
825msgid "a sketch that has been completed and signed by the merchant backend.\n" 786msgid "a sketch that has been completed and signed by the merchant backend."
826msgstr "" 787msgstr ""
827 788
828#: glossary.html.j2:113 789#: glossary.html.j2:113
@@ -833,7 +794,7 @@ msgstr ""
833msgid "" 794msgid ""
834"funds set aside for future use; either the balance of a customer at the " 795"funds set aside for future use; either the balance of a customer at the "
835"exchange ready for `withdrawal`, or the funds kept in the exchange's bank" 796"exchange ready for `withdrawal`, or the funds kept in the exchange's bank"
836" account to cover obligations from coins in circulation\n" 797" account to cover obligations from coins in circulation"
837msgstr "" 798msgstr ""
838 799
839#: glossary.html.j2:119 800#: glossary.html.j2:119
@@ -843,7 +804,7 @@ msgstr ""
843#: glossary.html.j2:121 804#: glossary.html.j2:121
844msgid "" 805msgid ""
845"operation by which a `dirty` `coin` is converted into one or more `fresh`" 806"operation by which a `dirty` `coin` is converted into one or more `fresh`"
846" coins\n" 807" coins"
847msgstr "" 808msgstr ""
848 809
849#: glossary.html.j2:125 810#: glossary.html.j2:125
@@ -854,7 +815,7 @@ msgstr ""
854msgid "" 815msgid ""
855"operation by which a merchant steps back from the right to funds that he " 816"operation by which a merchant steps back from the right to funds that he "
856"obtained from a `deposit` operation, giving the right to the funds back " 817"obtained from a `deposit` operation, giving the right to the funds back "
857"to the customer\n" 818"to the customer"
858msgstr "" 819msgstr ""
859 820
860#: glossary.html.j2:131 821#: glossary.html.j2:131
@@ -865,7 +826,7 @@ msgstr ""
865msgid "" 826msgid ""
866"users can share ownership of a `coin` by sharing access to the coin's " 827"users can share ownership of a `coin` by sharing access to the coin's "
867"private key, thereby allowing all co-owners to spend the coin at any " 828"private key, thereby allowing all co-owners to spend the coin at any "
868"time.\n" 829"time."
869msgstr "" 830msgstr ""
870 831
871#: glossary.html.j2:137 832#: glossary.html.j2:137
@@ -873,7 +834,7 @@ msgid "signing key"
873msgstr "" 834msgstr ""
874 835
875#: glossary.html.j2:139 836#: glossary.html.j2:139
876msgid "see message signing key.\n" 837msgid "see message signing key."
877msgstr "" 838msgstr ""
878 839
879#: glossary.html.j2:143 840#: glossary.html.j2:143
@@ -883,7 +844,7 @@ msgstr ""
883#: glossary.html.j2:145 844#: glossary.html.j2:145
884msgid "" 845msgid ""
885"operation by which a customer gives a merchant the right to `deposit` " 846"operation by which a customer gives a merchant the right to `deposit` "
886"coins in return for merchandise\n" 847"coins in return for merchandise"
887msgstr "" 848msgstr ""
888 849
889#: glossary.html.j2:149 850#: glossary.html.j2:149
@@ -891,7 +852,7 @@ msgid "transfer"
891msgstr "" 852msgstr ""
892 853
893#: glossary.html.j2:151 854#: glossary.html.j2:151
894msgid "method of sending funds between `bank` accounts\n" 855msgid "method of sending funds between `bank` accounts"
895msgstr "" 856msgstr ""
896 857
897#: glossary.html.j2:155 858#: glossary.html.j2:155
@@ -901,7 +862,7 @@ msgstr ""
901#: glossary.html.j2:157 862#: glossary.html.j2:157
902msgid "" 863msgid ""
903"method by which ownership is exclusively transferred from one entity to " 864"method by which ownership is exclusively transferred from one entity to "
904"another\n" 865"another"
905msgstr "" 866msgstr ""
906 867
907#: glossary.html.j2:161 868#: glossary.html.j2:161
@@ -909,7 +870,7 @@ msgid "transaction id"
909msgstr "" 870msgstr ""
910 871
911#: glossary.html.j2:163 872#: glossary.html.j2:163
912msgid "unique number by which a merchant identifies a `transaction`\n" 873msgid "unique number by which a merchant identifies a `transaction`"
913msgstr "" 874msgstr ""
914 875
915#: glossary.html.j2:167 876#: glossary.html.j2:167
@@ -919,7 +880,7 @@ msgstr ""
919#: glossary.html.j2:169 880#: glossary.html.j2:169
920msgid "" 881msgid ""
921"software running on a customer's computer; withdraws, stores and spends " 882"software running on a customer's computer; withdraws, stores and spends "
922"coins\n" 883"coins"
923msgstr "" 884msgstr ""
924 885
925#: glossary.html.j2:173 886#: glossary.html.j2:173
@@ -927,7 +888,7 @@ msgid "wire transfer"
927msgstr "" 888msgstr ""
928 889
929#: glossary.html.j2:175 890#: glossary.html.j2:175
930msgid "see `transfer`\n" 891msgid "see `transfer`"
931msgstr "" 892msgstr ""
932 893
933#: glossary.html.j2:179 894#: glossary.html.j2:179
@@ -937,7 +898,7 @@ msgstr ""
937#: glossary.html.j2:181 898#: glossary.html.j2:181
938msgid "" 899msgid ""
939"subject of a wire `transfer`; usually a random string to uniquely " 900"subject of a wire `transfer`; usually a random string to uniquely "
940"identify the `transfer`\n" 901"identify the `transfer`"
941msgstr "" 902msgstr ""
942 903
943#: glossary.html.j2:185 904#: glossary.html.j2:185
@@ -947,7 +908,7 @@ msgstr ""
947#: glossary.html.j2:187 908#: glossary.html.j2:187
948msgid "" 909msgid ""
949"operation by which a `wallet` can convert funds from a reserve to fresh " 910"operation by which a `wallet` can convert funds from a reserve to fresh "
950"coins\n" 911"coins"
951msgstr "" 912msgstr ""
952 913
953#: governments.html.j2:6 914#: governments.html.j2:6
@@ -956,13 +917,12 @@ msgstr ""
956 917
957#: governments.html.j2:8 918#: governments.html.j2:8
958msgid "" 919msgid ""
959"Taler provides accountability to ensure business operate\n" 920"Taler provides accountability to ensure business operate legally, while "
960"legally, while also respecting civil liberties of\n" 921"also respecting civil liberties of citizens. Taler is a payment system "
961"citizens. Taler is a payment system based on\n" 922"based on open standards and free software. Taler needs governments as "
962"open standards and free software. Taler needs\n" 923"they set a financial framework and act as trusted regulators. Taler "
963"governments as they set a financial framework and act as\n" 924"contributes to digital sovereignty in the critical financial "
964"trusted regulators. Taler contributes to digital\n" 925"infrastructure."
965"sovereignty in the critical financial infrastructure.\n"
966msgstr "" 926msgstr ""
967 927
968#: governments.html.j2:25 index.html.j2:71 928#: governments.html.j2:25 index.html.j2:71
@@ -971,51 +931,44 @@ msgstr "Imponible"
971 931
972#: governments.html.j2:28 932#: governments.html.j2:28
973msgid "" 933msgid ""
974"Taler was built with the goal of fighting corruption and\n" 934"Taler was built with the goal of fighting corruption and supporting "
975"supporting taxation. With Taler, the receiver of any\n" 935"taxation. With Taler, the receiver of any form of payment is easily "
976"form of payment is easily identified by the government,\n" 936"identified by the government, and the merchant can be compelled to "
977"and the merchant can be compelled to provide the contract\n" 937"provide the contract that was accepted by the customer. Governments can "
978"that was accepted by the customer. Governments can use\n" 938"use this data to tax businesses and individuals based on their income, "
979"this data to tax businesses and individuals based on\n" 939"making tax evasion and black markets less viable."
980"their income, making tax evasion and black markets less\n"
981"viable.\n"
982msgstr "" 940msgstr ""
983 941
984#: governments.html.j2:41 942#: governments.html.j2:41
985msgid "" 943msgid ""
986"Thus, despite offering anonymity for citizens spending\n" 944"Thus, despite offering anonymity for citizens spending digital cash to "
987"digital cash to buy goods and services, Taler also\n" 945"buy goods and services, Taler also ensures that the state can observe "
988"ensures that the state can observe incoming funds. This\n" 946"incoming funds. This can be used to ensure businesses engage only in "
989"can be used to ensure businesses engage only in legal\n" 947"legal activities, and do not evade income tax, sales tax or value-added "
990"activities, and do not evade income tax, sales tax or\n" 948"tax. However, this observational capability does not extend to the "
991"value-added tax. However, this observational capability\n" 949"immediate personal domain. In particular, monitoring does not cover "
992"does not extend to the immediate personal domain. In\n" 950"shared access to funds with trusted friends and family, or synchronizing "
993"particular, monitoring does not cover shared access to\n" 951"wallets across multiple devices."
994"funds with trusted friends and family, or synchronizing\n"
995"wallets across multiple devices.\n"
996msgstr "" 952msgstr ""
997 953
998#: governments.html.j2:61 954#: governments.html.j2:61
999msgid "" 955msgid ""
1000"Taler's payments are cryptographically secured. Thus,\n" 956"Taler's payments are cryptographically secured. Thus, customers, "
1001"customers, merchants and the Taler payment service provider\n" 957"merchants and the Taler payment service provider (the exchange) can "
1002"(the exchange) can mathematically\n" 958"mathematically demonstrate their lawful behavior in court in case of "
1003"demonstrate their lawful behavior in court in case of\n" 959"disputes. Financial damages are strictly limited, improving economic "
1004"disputes. Financial damages are strictly limited,\n" 960"security for individuals, merchants, the exchange and the state."
1005"improving economic security for individuals, merchants,\n"
1006"the exchange and the state.\n"
1007msgstr "" 961msgstr ""
1008 962
1009#: governments.html.j2:73 963#: governments.html.j2:73
1010msgid "" 964msgid ""
1011"As a payment service provider, the Taler exchange is\n" 965"As a payment service provider, the Taler exchange is subject to financial"
1012"subject to financial regulation. Financial regulation and\n" 966" regulation. Financial regulation and regular audits are critical to "
1013"regular audits are critical to establish trust. In\n" 967"establish trust. In particular, the Taler design mandates the existence "
1014"particular, the Taler design mandates the existence of an\n" 968"of an independent auditor who checks cryptographic proofs that accumulate"
1015"independent auditor who checks cryptographic proofs that\n" 969" at the exchange to ensure that the escrow account is managed honestly. "
1016"accumulate at the exchange to ensure that the escrow\n" 970"This ensures that the exchange does not threaten the economy due to "
1017"account is managed honestly. This ensures that the\n" 971"fraud."
1018"exchange does not threaten the economy due to fraud.\n"
1019msgstr "" 972msgstr ""
1020 973
1021#: governments.html.j2:88 index.html.j2:97 974#: governments.html.j2:88 index.html.j2:97
@@ -1024,10 +977,9 @@ msgstr "Libre"
1024 977
1025#: governments.html.j2:91 978#: governments.html.j2:91
1026msgid "" 979msgid ""
1027"Taler is free software implementing an open protocol\n" 980"Taler is free software implementing an open protocol standard. Thus, "
1028"standard. Thus, Taler will enable competition and avoid\n" 981"Taler will enable competition and avoid the monopolization of payment "
1029"the monopolization of payment systems that threatens\n" 982"systems that threatens global political and financial stability today."
1030"global political and financial stability today.\n"
1031msgstr "" 983msgstr ""
1032 984
1033#: governments.html.j2:101 985#: governments.html.j2:101
@@ -1036,11 +988,9 @@ msgstr "Eficiente"
1036 988
1037#: governments.html.j2:104 989#: governments.html.j2:104
1038msgid "" 990msgid ""
1039"Taler has an efficient design. Unlike\n" 991"Taler has an efficient design. Unlike Blockchain-based payment systems, "
1040"Blockchain-based payment systems, such as Bitcoin,\n" 992"such as Bitcoin, Taler will not threaten the availability of national "
1041"Taler will not threaten the availability of\n" 993"electric grids or (significantly) contribute to environmental pollution."
1042"national electric grids or (significantly)\n"
1043"contribute to environmental pollution.\n"
1044msgstr "" 994msgstr ""
1045 995
1046#: governments.html.j2:120 996#: governments.html.j2:120
@@ -1093,41 +1043,36 @@ msgstr ""
1093 1043
1094#: governments.html.j2:140 1044#: governments.html.j2:140
1095msgid "" 1045msgid ""
1096"Taler assumes governments can observe traditional wire transfers\n" 1046"Taler assumes governments can observe traditional wire transfers entering"
1097"entering and leaving the Taler payment system. Starting with the\n" 1047" and leaving the Taler payment system. Starting with the wire transfers, "
1098"wire transfers, governments can obtain:\n" 1048"governments can obtain:"
1099msgstr "" 1049msgstr ""
1100 1050
1101#: governments.html.j2:148 1051#: governments.html.j2:148
1102msgid "" 1052msgid ""
1103"The total amount of digital currency withdrawn by a\n" 1053"The total amount of digital currency withdrawn by a customer. The "
1104"customer. The government can impose limits on how much\n" 1054"government can impose limits on how much digital cash a customer can "
1105"digital cash a customer can withdraw within a\n" 1055"withdraw within a given time frame."
1106"given time frame.\n"
1107msgstr "" 1056msgstr ""
1108 1057
1109#: governments.html.j2:157 1058#: governments.html.j2:157
1110msgid "" 1059msgid "The income received by any merchant via the Taler system."
1111"The income received by any merchant via the Taler\n"
1112"system.\n"
1113msgstr "" 1060msgstr ""
1114 1061
1115#: governments.html.j2:164 1062#: governments.html.j2:164
1116msgid "" 1063msgid ""
1117"The exact details of the underlying contract that was\n" 1064"The exact details of the underlying contract that was signed between "
1118"signed between customer and merchant. However, this\n" 1065"customer and merchant. However, this information would typically not "
1119"information would typically not include the identity\n" 1066"include the identity of the customer."
1120"of the customer.\n"
1121msgstr "" 1067msgstr ""
1122 1068
1123#: governments.html.j2:174 1069#: governments.html.j2:174
1124msgid "" 1070msgid ""
1125"The amounts of digital coins legitimately withdrawn\n" 1071"The amounts of digital coins legitimately withdrawn by customers from the"
1126"by customers from the exchange, the value of\n" 1072" exchange, the value of non-redeemed digital coins in customer's wallets,"
1127"non-redeemed digital coins in customer's wallets, the\n" 1073" the value and corresponding wire details of deposit operations performed"
1128"value and corresponding wire details of deposit\n" 1074" by merchants with the exchange, and the income of the exchange from "
1129"operations performed by merchants with the exchange,\n" 1075"transaction fees."
1130"and the income of the exchange from transaction fees.\n"
1131msgstr "" 1076msgstr ""
1132 1077
1133#: index.html.j2:10 1078#: index.html.j2:10
@@ -1136,12 +1081,12 @@ msgstr ""
1136 1081
1137#: index.html.j2:13 1082#: index.html.j2:13
1138msgid "" 1083msgid ""
1139"GNU Taler is an electronic payment system under development at\n" 1084"GNU Taler is an electronic payment system under development at <a "
1140"<a href=\"http://www.inria.fr/\">Inria</a>. We expect to make it\n" 1085"href=\"http://www.inria.fr/\">Inria</a>. We expect to make it operational"
1141"operational in 2017. You can learn about Taler on this website,\n" 1086" in 2017. You can learn about Taler on this website, try the <a "
1142"try the <a href=\"https://demo.taler.net\">demo</a> and look at\n" 1087"href=\"https://demo.taler.net\">demo</a> and look at our <a "
1143"our <a href=\"https://docs.taler.net\">developer</a> and <a\n" 1088"href=\"https://docs.taler.net\">developer</a> and <a "
1144"href=\"https://api.taler.net\">API</a> documentation.\n" 1089"href=\"https://api.taler.net\">API</a> documentation."
1145msgstr "" 1090msgstr ""
1146 1091
1147#: index.html.j2:29 1092#: index.html.j2:29
@@ -1150,53 +1095,48 @@ msgstr ""
1150 1095
1151#: index.html.j2:32 1096#: index.html.j2:32
1152msgid "" 1097msgid ""
1153"Taler is easy to integrate with existing Web\n" 1098"Taler is easy to integrate with existing Web applications. Payments are "
1154"applications. Payments are cryptographically\n" 1099"cryptographically secured and are confirmed within milliseconds with "
1155"secured and are confirmed within milliseconds with\n" 1100"extremely low transaction costs."
1156"extremely low transaction costs.\n"
1157msgstr "" 1101msgstr ""
1158 1102
1159#: index.html.j2:45 1103#: index.html.j2:45
1160msgid "" 1104msgid ""
1161"Taler does not introduce a new currency. Taler\n" 1105"Taler does not introduce a new currency. Taler uses a digital wallet "
1162"uses a digital wallet storing coins and payment service\n" 1106"storing coins and payment service providers with escrow accounts in "
1163"providers with escrow accounts in existing currencies.\n" 1107"existing currencies. Thus, Taler's cryptographic coins correspond to "
1164"Thus, Taler's cryptographic coins correspond to existing\n" 1108"existing currencies, such as US Dollars, Euros or even Bitcoins."
1165"currencies, such as US Dollars, Euros or even Bitcoins.\n"
1166msgstr "" 1109msgstr ""
1167 1110
1168#: index.html.j2:59 1111#: index.html.j2:59
1169msgid "" 1112msgid ""
1170"By design Taler does not suffer from many classes\n" 1113"By design Taler does not suffer from many classes of security problems "
1171"of security problems such as phishing or counterfeit.\n" 1114"such as phishing or counterfeit. Thanks to its security features, Taler "
1172"Thanks to its security features, Taler never rejects a legitimate\n" 1115"never rejects a legitimate customer due to a fraud-detection false "
1173"customer due to a fraud-detection false positive.\n" 1116"positive."
1174msgstr "" 1117msgstr ""
1175 1118
1176#: index.html.j2:74 1119#: index.html.j2:74
1177msgid "" 1120msgid ""
1178"When using Taler, merchant's revenue is transparent for tax\n" 1121"When using Taler, merchant's revenue is transparent for tax collection "
1179"collection authorities. Unlike cash and most digital currencies,\n" 1122"authorities. Unlike cash and most digital currencies, Taler helps prevent"
1180"Taler helps prevent black markets. Taler is not suitable for\n" 1123" black markets. Taler is not suitable for illegal activities."
1181"illegal activities.\n"
1182msgstr "" 1124msgstr ""
1183 1125
1184#: index.html.j2:86 1126#: index.html.j2:86
1185msgid "" 1127msgid ""
1186"When you pay with Taler, your identity does not\n" 1128"When you pay with Taler, your identity does not have to be revealed. Just"
1187"have to be revealed. Just like\n" 1129" like payments in cash, nobody else can track how you spent your "
1188"payments in cash, nobody else can track how you\n" 1130"electronic money. However, you obtain a legally valid proof of payment."
1189"spent your electronic money. However, you obtain a\n"
1190"legally valid proof of payment.\n"
1191msgstr "" 1131msgstr ""
1192 1132
1193#: index.html.j2:100 1133#: index.html.j2:100
1194msgid "" 1134msgid ""
1195"Taler provides protocols and reference implementations that in\n" 1135"Taler provides protocols and reference implementations that in principle "
1196"principle enables anybody to run their own payment infrastructure,\n" 1136"enables anybody to run their own payment infrastructure, be it "
1197"be it individuals, organizations or whole countries. Since the\n" 1137"individuals, organizations or whole countries. Since the reference "
1198"reference implementation is a <a href=\"http://www.gnu.org/\">GNU</a>\n" 1138"implementation is a <a href=\"http://www.gnu.org/\">GNU</a> package, it "
1199"package, it will always remain free software.\n" 1139"will always remain free software."
1200msgstr "" 1140msgstr ""
1201 1141
1202#: index.html.j2:117 1142#: index.html.j2:117
@@ -1205,12 +1145,12 @@ msgstr ""
1205 1145
1206#: index.html.j2:118 1146#: index.html.j2:118
1207msgid "" 1147msgid ""
1208"<p>To pay with Taler, customers install an electronic wallet\n" 1148"<p>To pay with Taler, customers install an electronic wallet on their "
1209"on their device. Before the first payment, the wallet's balance must\n" 1149"device. Before the first payment, the wallet's balance must be charged in"
1210"be charged in the desired currency by some other means of payment.</p>\n" 1150" the desired currency by some other means of payment.</p> <p>Once the "
1211"<p>Once the wallet is charged, payments on websites take only one click,\n" 1151"wallet is charged, payments on websites take only one click, are never "
1212"are never falsely rejected by fraud detection and do not pose any risk\n" 1152"falsely rejected by fraud detection and do not pose any risk of phishing "
1213"of phishing or identity theft.</p>\n" 1153"or identity theft.</p>"
1214msgstr "" 1154msgstr ""
1215 1155
1216#: index.html.j2:128 1156#: index.html.j2:128
@@ -1219,11 +1159,11 @@ msgstr ""
1219 1159
1220#: index.html.j2:129 1160#: index.html.j2:129
1221msgid "" 1161msgid ""
1222"<p>To receive Taler payments, a merchant needs a bank account\n" 1162"<p>To receive Taler payments, a merchant needs a bank account in the "
1223"in the desired currency. We provide supporting software\n" 1163"desired currency. We provide supporting software in various programming "
1224"in various programming languages to make the integration painless.\n" 1164"languages to make the integration painless. The merchant's backend for "
1225"The merchant's backend for Taler transaction processing can run\n" 1165"Taler transaction processing can run on the merchant's premises or be "
1226"on the merchant's premises or be hosted by a third party.</p>\n" 1166"hosted by a third party.</p>"
1227msgstr "" 1167msgstr ""
1228 1168
1229#: index.html.j2:145 1169#: index.html.j2:145
@@ -1240,10 +1180,8 @@ msgstr ""
1240 1180
1241#: investors.html.j2:9 1181#: investors.html.j2:9
1242msgid "" 1182msgid ""
1243"We have created a company, Taler Systems SA in\n" 1183"We have created a company, Taler Systems SA in Luxembourg.<br> Please "
1244"Luxembourg.<br>\n" 1184"contact <tt>invest@taler.net</tt> if you want to invest in Taler."
1245"Please contact <tt>invest@taler.net</tt>\n"
1246"if you want to invest in Taler.\n"
1247msgstr "" 1185msgstr ""
1248 1186
1249#: investors.html.j2:24 1187#: investors.html.j2:24
@@ -1253,20 +1191,17 @@ msgstr ""
1253#: investors.html.j2:27 1191#: investors.html.j2:27
1254msgid "" 1192msgid ""
1255"Our <a href=\"about.html\">team</a> combines world-class business " 1193"Our <a href=\"about.html\">team</a> combines world-class business "
1256"leaders,\n" 1194"leaders, cryptographers, software engineers, civil-rights activists and "
1257"cryptographers, software engineers, civil-rights\n" 1195"academics. We are unified by a vision of how payments should work and the"
1258"activists and academics. We are unified by a vision\n" 1196" goal of imposing this vision upon the world."
1259"of how payments should work and the goal of\n"
1260"imposing this vision upon the world.\n"
1261msgstr "" 1197msgstr ""
1262 1198
1263#: investors.html.j2:37 1199#: investors.html.j2:37
1264msgid "" 1200msgid ""
1265"We are currently supported by <a href=\"http://www.inria.fr/\">Inria</a>," 1201"We are currently supported by <a href=\"http://www.inria.fr/\">Inria</a>,"
1266" the French\n" 1202" the French national institute for research in informatics and "
1267"national institute for research in informatics and\n"
1268"automation, and the <a href=\"https://renewablefreedom.org/\">Renewable " 1203"automation, and the <a href=\"https://renewablefreedom.org/\">Renewable "
1269"Freedom Foundation</a>.\n" 1204"Freedom Foundation</a>."
1270msgstr "" 1205msgstr ""
1271 1206
1272#: investors.html.j2:45 1207#: investors.html.j2:45
@@ -1276,16 +1211,13 @@ msgstr ""
1276#: investors.html.j2:48 1211#: investors.html.j2:48
1277msgid "" 1212msgid ""
1278"All transactions in Taler are secured using <a " 1213"All transactions in Taler are secured using <a "
1279"href=\"bibliography.html\">modern\n" 1214"href=\"bibliography.html\">modern cryptography</a> and trust in all "
1280"cryptography</a> and trust in all parties is\n" 1215"parties is minimized. Financial damage is bounded (for customers, "
1281"minimized. Financial damage is bounded (for\n" 1216"merchants and the exchange) even in the case that systems are compromised"
1282"customers, merchants and the exchange) even in the\n" 1217" and private keys are stolen. Databases can be audited for consistency, "
1283"case that systems are compromised and private keys\n" 1218"resulting in either the detection of compromised systems or the "
1284"are stolen. Databases can be audited for\n" 1219"demonstration that participants were honest. Actual transaction costs are"
1285"consistency, resulting in either the detection of\n" 1220" fractions of a cent."
1286"compromised systems or the demonstration that\n"
1287"participants were honest. Actual transaction costs\n"
1288"are fractions of a cent.\n"
1289msgstr "" 1221msgstr ""
1290 1222
1291#: investors.html.j2:63 1223#: investors.html.j2:63
@@ -1294,15 +1226,13 @@ msgstr ""
1294 1226
1295#: investors.html.j2:66 1227#: investors.html.j2:66
1296msgid "" 1228msgid ""
1297"The scalable business model for Taler is the operation\n" 1229"The scalable business model for Taler is the operation of the payment "
1298"of the payment service provider, which converts money from\n" 1230"service provider, which converts money from traditional payment systems "
1299"traditional payment systems (MasterCard, SEPA, UPI,\n" 1231"(MasterCard, SEPA, UPI, Visa, Bitcoin, ACH, SWIFT, etc.) to anonymous "
1300"Visa, Bitcoin, ACH, SWIFT, etc.) to anonymous\n" 1232"electronic coins in the same currency. The customer can then redeem the "
1301"electronic coins in the same currency. The customer\n" 1233"electronic coins at a merchant, who can exchange them for money "
1302"can then redeem the electronic coins at a merchant,\n" 1234"represented using traditional payment systems at the exchange. The "
1303"who can exchange them for money represented using\n" 1235"exchange charges fees to facilitate the transactions."
1304"traditional payment systems at the exchange. The\n"
1305"exchange charges fees to facilitate the transactions.\n"
1306msgstr "" 1236msgstr ""
1307 1237
1308#: investors.html.j2:85 1238#: investors.html.j2:85
@@ -1315,10 +1245,10 @@ msgstr ""
1315 1245
1316#: investors.html.j2:110 1246#: investors.html.j2:110
1317msgid "" 1247msgid ""
1318"The payment service operator runs the <em>Taler exchange</em>.\n" 1248"The payment service operator runs the <em>Taler exchange</em>. The "
1319"The exchange charges <b>transaction fees</b> to customers or merchants.\n" 1249"exchange charges <b>transaction fees</b> to customers or merchants. Its "
1320"Its operational expenses are from wire transfers with the banking\n" 1250"operational expenses are from wire transfers with the banking system and "
1321"system and the operation of the computing infrastructure.\n" 1251"the operation of the computing infrastructure."
1322msgstr "" 1252msgstr ""
1323 1253
1324#: investors.html.j2:120 1254#: investors.html.j2:120
@@ -1353,11 +1283,10 @@ msgstr ""
1353 1283
1354#: merchants.html.j2:8 1284#: merchants.html.j2:8
1355msgid "" 1285msgid ""
1356"Taler is a cost-effective electronic payment system\n" 1286"Taler is a cost-effective electronic payment system which provides you "
1357"which provides you with cryptographic proof that\n" 1287"with cryptographic proof that the payment worked correctly within "
1358"the payment worked correctly within milliseconds.\n" 1288"milliseconds. Your Web customers pay with previously unknown levels of "
1359"Your Web customers pay with previously unknown\n" 1289"convenience without risk of fraud."
1360"levels of convenience without risk of fraud.\n"
1361msgstr "" 1290msgstr ""
1362 1291
1363#: merchants.html.j2:22 1292#: merchants.html.j2:22
@@ -1366,39 +1295,32 @@ msgstr "Rápido"
1366 1295
1367#: merchants.html.j2:25 1296#: merchants.html.j2:25
1368msgid "" 1297msgid ""
1369"Processing transactions with Taler is fast,\n" 1298"Processing transactions with Taler is fast, allowing you to confirm the "
1370"allowing you to confirm the transaction with your\n" 1299"transaction with your customer virtually immediately. Your customers will"
1371"customer virtually immediately. Your customers\n" 1300" appreciate that they do not have to type in credit card information and "
1372"will appreciate that they do not have to type in\n" 1301"play the &quot;verified by&quot; game. By making payments significantly "
1373"credit card information and play the &quot;verified\n" 1302"more convenient for your customers, you may be able to use Taler for "
1374"by&quot; game. By making payments significantly\n" 1303"small transactions that would not work with credit card payments due to "
1375"more convenient for your customers, you may be able\n" 1304"the mental overhead for customers."
1376"to use Taler for small transactions that would not\n"
1377"work with credit card payments due to the mental\n"
1378"overhead for customers.\n"
1379msgstr "" 1305msgstr ""
1380 1306
1381#: merchants.html.j2:44 1307#: merchants.html.j2:44
1382msgid "" 1308msgid ""
1383"You will have cryptographic proof of payment from the\n" 1309"You will have cryptographic proof of payment from the Taler payment "
1384"Taler payment service provider. With Taler you never\n" 1310"service provider. With Taler you never handle sensitive customer account "
1385"handle sensitive customer account information and thus\n" 1311"information and thus do not have to undergo any particular security "
1386"do not have to undergo any particular security audits\n" 1312"audits (such as PCI DSS). Your systems will have customer contracts with "
1387"(such as PCI DSS). Your systems will have customer\n" 1313"qualified signatures for all transactions which you can use in court in "
1388"contracts with qualified signatures for all\n" 1314"case of disputes."
1389"transactions which you can use in court in case of\n"
1390"disputes.\n"
1391msgstr "" 1315msgstr ""
1392 1316
1393#: merchants.html.j2:61 1317#: merchants.html.j2:61
1394msgid "" 1318msgid ""
1395"Taler is free software, and you can use the\n" 1319"Taler is free software, and you can use the liberally-licensed reference "
1396"liberally-licensed reference code as a starting\n" 1320"code as a starting point to integrate Taler into your services. To use "
1397"point to integrate Taler into your services. To use\n" 1321"Taler, you do not need to pay license fees, and the free software "
1398"Taler, you do not need to pay license fees, and the\n" 1322"development model will ensure that you can select from many competing "
1399"free software development model will ensure that\n" 1323"integrators for support."
1400"you can select from many competing integrators for\n"
1401"support.\n"
1402msgstr "" 1324msgstr ""
1403 1325
1404#: merchants.html.j2:76 1326#: merchants.html.j2:76
@@ -1407,11 +1329,10 @@ msgstr ""
1407 1329
1408#: merchants.html.j2:79 1330#: merchants.html.j2:79
1409msgid "" 1331msgid ""
1410"Taler is uses efficient cryptographic constructions with low\n" 1332"Taler is uses efficient cryptographic constructions with low bandwidth "
1411"bandwidth and storage requirements. Combined with Taler's strong\n" 1333"and storage requirements. Combined with Taler's strong security which "
1412"security which makes fraud impossible, Taler payment service\n" 1334"makes fraud impossible, Taler payment service providers can operate with "
1413"providers can operate with very low overhead and\n" 1335"very low overhead and thus offer low transaction fees."
1414"thus offer low transaction fees.\n"
1415msgstr "" 1336msgstr ""
1416 1337
1417#: merchants.html.j2:89 1338#: merchants.html.j2:89
@@ -1420,10 +1341,9 @@ msgstr "Flexible"
1420 1341
1421#: merchants.html.j2:92 1342#: merchants.html.j2:92
1422msgid "" 1343msgid ""
1423"Taler can be used for different currencies (such as\n" 1344"Taler can be used for different currencies (such as Euros, US Dollars or "
1424"Euros, US Dollars or Bitcoins) and any amount, limited\n" 1345"Bitcoins) and any amount, limited only by applicable regulatation and "
1425"only by applicable regulatation and what denominations\n" 1346"what denominations the payment service provider supports."
1426"the payment service provider supports.\n"
1427msgstr "" 1347msgstr ""
1428 1348
1429#: merchants.html.j2:101 1349#: merchants.html.j2:101
@@ -1432,11 +1352,10 @@ msgstr "Ético"
1432 1352
1433#: merchants.html.j2:104 1353#: merchants.html.j2:104
1434msgid "" 1354msgid ""
1435"Taler prevents tax evasion and money laundering.\n" 1355"Taler prevents tax evasion and money laundering. Taler's protocols are "
1436"Taler's protocols are efficient and do not use wasteful\n" 1356"efficient and do not use wasteful proof-of-work calculations. Taler "
1437"proof-of-work calculations. Taler encourages\n" 1357"encourages transparency by providing an open standard and free software "
1438"transparency by providing an open standard and free\n" 1358"reference implementations."
1439"software reference implementations.\n"
1440msgstr "" 1359msgstr ""
1441 1360
1442#: merchants.html.j2:119 1361#: merchants.html.j2:119
@@ -1466,28 +1385,25 @@ msgstr ""
1466 1385
1467#: merchants.html.j2:147 1386#: merchants.html.j2:147
1468msgid "" 1387msgid ""
1469"The backend <b>signs</b> and <b>stores</b> the\n" 1388"The backend <b>signs</b> and <b>stores</b> the complete terms of offers "
1470"complete terms of offers made by the merchant to customers.\n" 1389"made by the merchant to customers. For this, the merchant's frontend "
1471"For this, the merchant's frontend needs to give the\n" 1390"needs to give the customer's order in a JSON format to the backend."
1472"customer's order in a JSON format to the backend.\n"
1473msgstr "" 1391msgstr ""
1474 1392
1475#: merchants.html.j2:156 1393#: merchants.html.j2:156
1476msgid "" 1394msgid ""
1477"The backend <b>validates</b> payments received from\n" 1395"The backend <b>validates</b> payments received from the wallet and "
1478"the wallet and <b>executes</b> them with the Taler\n" 1396"<b>executes</b> them with the Taler payment service provider (the "
1479"payment service provider (the exchange). For this,\n" 1397"exchange). For this, the merchant's frontend must pass the payment "
1480"the merchant's frontend must pass the payment\n" 1398"request through to the Taler backend and check the HTTP status code that "
1481"request through to the Taler backend and check the\n" 1399"is returned."
1482"HTTP status code that is returned.\n"
1483msgstr "" 1400msgstr ""
1484 1401
1485#: merchants.html.j2:167 1402#: merchants.html.j2:167
1486msgid "" 1403msgid ""
1487"The backend can <b>list</b> completed transactions\n" 1404"The backend can <b>list</b> completed transactions and <b>map</b> wire "
1488"and <b>map</b> wire transfers to sets of business\n" 1405"transfers to sets of business transactions, including the exact terms of "
1489"transactions, including the exact terms of each\n" 1406"each contract."
1490"contract.\n"
1491msgstr "" 1407msgstr ""
1492 1408
1493#: press.html.j2:4 1409#: press.html.j2:4
@@ -1709,3 +1625,1001 @@ msgstr ""
1709#~ msgid "Low Fees" 1625#~ msgid "Low Fees"
1710#~ msgstr "Bajo costo" 1626#~ msgstr "Bajo costo"
1711 1627
1628#~ msgid ""
1629#~ "Taler largely functions like digital "
1630#~ "cash. You withdraw money from your "
1631#~ "bank account into your electronic "
1632#~ "wallet, and can henceforth spend digital"
1633#~ " cash. The electronic wallet can "
1634#~ "carry multiple currencies. "
1635#~ msgstr ""
1636
1637#~ msgid ""
1638#~ "Taler uses modern cryptography, ensuring "
1639#~ "that there is no counterfeit. Your "
1640#~ "digital wallet is safer than your "
1641#~ "physical wallet. At most, you can "
1642#~ "lose its contents because your computer"
1643#~ " or mobile is irreparably damaged or"
1644#~ " compromised. Unlike a physical wallet,"
1645#~ " you can make backups to secure "
1646#~ "against data loss."
1647#~ msgstr ""
1648
1649#~ msgid ""
1650#~ "You will be able to withdraw money"
1651#~ " to replenish the digital coins in"
1652#~ " your wallet using your credit card"
1653#~ " or wire transfers. Afterwards you "
1654#~ "can pay with one-click using the"
1655#~ " Taler wallet, which optionally keeps "
1656#~ "your transaction history on your "
1657#~ "computer."
1658#~ msgstr ""
1659
1660#~ msgid ""
1661#~ "Coins in your digital wallet will "
1662#~ "be of the same denomination as the"
1663#~ " cash in your physical wallet. Taler"
1664#~ " is not a crypto-currency, so "
1665#~ "you do not have to worry about "
1666#~ "cryto-currency related value fluctuations."
1667#~ " Banking with Taler is subject to"
1668#~ " the usual government protections for "
1669#~ "financial services."
1670#~ msgstr ""
1671
1672#~ msgid ""
1673#~ "We currently provide a <a "
1674#~ "href=\"wallet.html\">wallet browser extension</a> "
1675#~ "for Chromium, Chrome, Firefox, Opera and"
1676#~ " Edge. Wallets for mobile phones and"
1677#~ " other platforms will be available in"
1678#~ " the future. "
1679#~ msgstr ""
1680
1681#~ msgid ""
1682#~ "You can see how Taler works in "
1683#~ "practice by visiting our <a "
1684#~ "href=\"https://demo.taler.net\">demo page</a>. "
1685#~ msgstr ""
1686
1687#~ msgid ""
1688#~ "To <b>withdraw</b> electronic coins, the "
1689#~ "customer transfers funds from his bank"
1690#~ " account to the Taler payment service"
1691#~ " provider (the exchange). The wire "
1692#~ "transfer subject must match a code "
1693#~ "identifying the customer's wallet. After "
1694#~ "the wire transfer is complete, the "
1695#~ "wallet will automatically withdraw the "
1696#~ "coins from the exchange."
1697#~ msgstr ""
1698
1699#~ msgid ""
1700#~ "To <b>spend</b> electronic coins, a "
1701#~ "merchant must cause the wallet to "
1702#~ "display a proposal for some purchase."
1703#~ " The wallet will ask the customer"
1704#~ " for one-click confirmation. Payment "
1705#~ "is then instant. Transaction histories "
1706#~ "and digitally signed contracts can be"
1707#~ " preserved by the wallet."
1708#~ msgstr ""
1709
1710#~ msgid ""
1711#~ "An archived, public mailing list for "
1712#~ "GNU Taler is hosted at <a "
1713#~ "href=\"https://lists.gnu.org/mailman/listinfo/taler\">https://lists.gnu.org/mailman/listinfo/taler</a>."
1714#~ " You can send messages to the "
1715#~ "list at <a "
1716#~ "href=\"mailto:taler@gnu.org\">taler@gnu.org</a>. "
1717#~ msgstr ""
1718
1719#~ msgid ""
1720#~ "Team members are generally reachable at"
1721#~ " <tt>LASTNAME@taler.net</tt>. All of us "
1722#~ "support receiving GnuPG encrypted e-mails. \n"
1723#~ msgstr ""
1724
1725#~ msgid ""
1726#~ "We track open feature requests and "
1727#~ "bugs in our <a "
1728#~ "href=\"https://gnunet.org/bugs/\">Bug tracker</a>, which"
1729#~ " is shared with the GNUnet project."
1730#~ " You can also report bugs or "
1731#~ "feature requests to the mailing list."
1732#~ " "
1733#~ msgstr ""
1734
1735#~ msgid ""
1736#~ "For non-technical commercial requests, "
1737#~ "please contact <tt>ceo AT taler.net</tt>. \n"
1738#~ msgstr ""
1739
1740#~ msgid ""
1741#~ "GNU Taler is free software implementing"
1742#~ " an open protocol. Anybody is welcome"
1743#~ " to integrate our reference implementation"
1744#~ " into their applications. Different "
1745#~ "components of Taler are being made "
1746#~ "available under different licenses. The "
1747#~ "Affero GPLv3+ is used for the "
1748#~ "exchange, the LGPLv3+ is used for "
1749#~ "reference code demonstrating integration with"
1750#~ " merchant platforms, and licenses like "
1751#~ "GPLv3+ are used for wallets and "
1752#~ "related customer-facing software. We "
1753#~ "are open for constructive suggestions "
1754#~ "for maximizing the adoption of this "
1755#~ "payment platform. "
1756#~ msgstr ""
1757
1758#~ msgid ""
1759#~ "Taler is designed to work on the"
1760#~ " Internet. To ensure that Taler "
1761#~ "payments can work with restrictive "
1762#~ "network setups, Taler uses a RESTful "
1763#~ "protocol over HTTP or HTTPS. Taler's "
1764#~ "security does not depend upon the "
1765#~ "use of HTTPS, but obviously merchants"
1766#~ " may choose to offer HTTPS for "
1767#~ "consistency and because it generally is"
1768#~ " better for privacy compared to HTTP."
1769#~ " Taler uses JSON to encode structure"
1770#~ " data, making it easy to integrate"
1771#~ " Taler with existing Web applications. "
1772#~ "Taler's protocol is documented in detail"
1773#~ " at <a "
1774#~ "href=\"https://api.taler.net/\">api.taler.net</a>. "
1775#~ msgstr ""
1776
1777#~ msgid ""
1778#~ "Taler is currently primarily developed "
1779#~ "by a research team at <a "
1780#~ "href=\"http://www.inria.fr/\">Inria</a> and <a "
1781#~ "href=\"https://gnunet.org/\">GNUnet</a>. However, "
1782#~ "contributions from anyone are welcome. "
1783#~ "Our Git repositories can be cloned "
1784#~ "using the Git and HTTP access "
1785#~ "methods against <tt>git.taler.net</tt> with "
1786#~ "the name of the respective repository."
1787#~ " A list of repositories can be "
1788#~ "found in our <a "
1789#~ "href=\"https://git.taler.net/\">GitWeb</a>. "
1790#~ msgstr ""
1791
1792#~ msgid ""
1793#~ "In addition to this website, the "
1794#~ "<a href=\"https://git.taler.net/\">documented code</a> "
1795#~ "and the <a href=\"https://api.taler.net/\">API "
1796#~ "documentation</a>. Technical papers can be"
1797#~ " found in our <a "
1798#~ "href=\"bibliography.html\">bibliography</a>. "
1799#~ msgstr ""
1800
1801#~ msgid ""
1802#~ "We have a mailing list for "
1803#~ "developer discussions. You can subscribe "
1804#~ "to or read the list archive at "
1805#~ "<a "
1806#~ "href=\"http://lists.gnu.org/mailman/listinfo/taler\">http://lists.gnu.org/mailman/listinfo/taler</a>."
1807#~ " "
1808#~ msgstr ""
1809
1810#~ msgid ""
1811#~ "We have <a "
1812#~ "href=\"https://buildbot.net/\">Buildbot</a> automation "
1813#~ "tests to detect regressions and check"
1814#~ " for portability at <a "
1815#~ "href=\"https://buildbot.taler.net/\">buildbot.taler.net</a>. "
1816#~ msgstr ""
1817
1818#~ msgid ""
1819#~ "We use <a "
1820#~ "href=\"http://ltp.sourceforge.net/coverage/lcov.php\">LCOV</a> "
1821#~ "to analyze the code coverage of "
1822#~ "our tests, the results are available "
1823#~ "at <a href=\"https://lcov.taler.net/\">lcov.taler.net</a>."
1824#~ " "
1825#~ msgstr ""
1826
1827#~ msgid ""
1828#~ "We use <a "
1829#~ "href=\"https://gnunet.org/gauger\">Gauger</a> for "
1830#~ "performance regression analysis of the "
1831#~ "exchange backend at <a "
1832#~ "href=\"https://gauger.taler.net/\">gauger.taler.net</a>. "
1833#~ msgstr ""
1834
1835#~ msgid ""
1836#~ "The Taler system consists of protocols"
1837#~ " executed among a number of actors"
1838#~ " as illustrated in the illustration "
1839#~ "on the right. Typical transactions "
1840#~ "involve the following steps: "
1841#~ msgstr ""
1842
1843#~ msgid ""
1844#~ "A customer instructs his <b>bank</b> to"
1845#~ " transfer funds from his account to"
1846#~ " the Taler exchange (top left). In"
1847#~ " the subject of the transaction, he"
1848#~ " includes an authentication token from "
1849#~ "his electronic <b>wallet</b>. In Taler "
1850#~ "terminology, the customer creates a "
1851#~ "reserve at the exchange. "
1852#~ msgstr ""
1853
1854#~ msgid ""
1855#~ "Once the exchange has received the "
1856#~ "wire transfer, it allows the customer's"
1857#~ " electronic wallet to <b>withdraw</b> "
1858#~ "electronic coins. The electronic coins "
1859#~ "are digital representations of the "
1860#~ "original currency from the transfer. It"
1861#~ " is important to note that the "
1862#~ "exchange does not learn the &quot;serial"
1863#~ " numbers&quot; of the coins created "
1864#~ "in this process, so it cannot tell"
1865#~ " later which customer purchased what "
1866#~ "at which merchant. The use of "
1867#~ "Taler does not change the currency "
1868#~ "or the total value of the funds"
1869#~ " (except for fees which the exchange"
1870#~ " may charge for the service). "
1871#~ msgstr ""
1872
1873#~ msgid ""
1874#~ "Once the customer has the digital "
1875#~ "coins in his wallet, the wallet "
1876#~ "can be used to <b>spend</b> the "
1877#~ "coins with merchant portals that support"
1878#~ " the Taler payment system and accept"
1879#~ " the respective exchange as a "
1880#~ "business partner (bottom arrow). This "
1881#~ "creates a digital contract signed by "
1882#~ "the customer's coins and the merchant."
1883#~ " If necessary, the customer can "
1884#~ "later use this digitally signed contract"
1885#~ " in a court of law to prove "
1886#~ "the exact terms of the contract "
1887#~ "and that he paid the respective "
1888#~ "amount. The customer does not learn "
1889#~ "the banking details of the merchant, "
1890#~ "and Taler does not require the "
1891#~ "merchant to learn the identity of "
1892#~ "the customer. Naturally, the customer "
1893#~ "can spend any fraction of his "
1894#~ "digital coins (the system takes care "
1895#~ "of customers getting change). "
1896#~ msgstr ""
1897
1898#~ msgid ""
1899#~ "Merchants receiving digital coins "
1900#~ "<b>deposit</b> the respective claims that "
1901#~ "resulted from the contract signing with"
1902#~ " the customer at the exchange to "
1903#~ "redeem the coins. The deposit step "
1904#~ "does not reveal the details of the"
1905#~ " contract between the customer and "
1906#~ "the merchant or the identity of "
1907#~ "the customer to the exchange in "
1908#~ "any way. However, the exchange does "
1909#~ "learn the identity of the merchant "
1910#~ "via the provided bank routing "
1911#~ "information. The merchant can, for "
1912#~ "example when compelled by the state "
1913#~ "for taxation, provide information linking "
1914#~ "the individual deposit to the respective"
1915#~ " contract signed by the customer. "
1916#~ "Thus, the exchange's database allows the"
1917#~ " state to enforce that merchants pay"
1918#~ " applicable taxes (and do not engage"
1919#~ " in illegal contracts). "
1920#~ msgstr ""
1921
1922#~ msgid ""
1923#~ "Finally, the exchange transfers funds "
1924#~ "corresponding to the digital coins "
1925#~ "redeemed by the merchants to the "
1926#~ "merchant's <b>bank</b> account. The exchange"
1927#~ " may combine multiple small transactions"
1928#~ " into one larger bank transfer. The"
1929#~ " merchant can query the exchange "
1930#~ "about the relationship between the bank"
1931#~ " transfers and the individual claims "
1932#~ "that were deposited. "
1933#~ msgstr ""
1934
1935#~ msgid ""
1936#~ "Most importantly, the exchange keeps "
1937#~ "cryptographic proofs that allow it to"
1938#~ " demonstrate that it is operating "
1939#~ "correctly to third parties. The system"
1940#~ " requires an external <b>auditor</b>, such"
1941#~ " as a government-appointed financial "
1942#~ "regulatory body, to frequently verify "
1943#~ "the exchange's databases and check that"
1944#~ " its bank balance matches the total"
1945#~ " value of the remaining coins in "
1946#~ "circulation. "
1947#~ msgstr ""
1948
1949#~ msgid ""
1950#~ "Without the auditor, the exchange "
1951#~ "operators could embezzle funds they are"
1952#~ " holding in reserve. Customers and "
1953#~ "merchants cannot cheat each other or "
1954#~ "the exchange. If any party's computers"
1955#~ " are compromised, the financial damage "
1956#~ "is limited to the respective party "
1957#~ "and proportional to the funds they "
1958#~ "have in circulation during the period"
1959#~ " of the compromise. "
1960#~ msgstr ""
1961
1962#~ msgid ""
1963#~ "<p>Taler does not use any Blockchain "
1964#~ "technology or Bitcoin directly. Taler is"
1965#~ " not based on proof-of-work or"
1966#~ " any other distributed consensus mechanism."
1967#~ " Instead Taler is based on blind "
1968#~ "signatures.</p> "
1969#~ msgstr ""
1970
1971#~ msgid ""
1972#~ "<p>It would be possible, however, to "
1973#~ "withdraw coins denominated in Bitcoin "
1974#~ "into a Taler wallet (with an "
1975#~ "appropriate exchange), which would give "
1976#~ "some benefits over plain Bitcoin, such"
1977#~ " as instant confirmation times.</p> "
1978#~ msgstr ""
1979
1980#~ msgid ""
1981#~ "<p>Your wallet stores digital coins and"
1982#~ " thus ultimately your computer holds "
1983#~ "your balance. The exchange keeps funds"
1984#~ " matching all unspent coins in an "
1985#~ "escrow bank account.</p> "
1986#~ msgstr ""
1987
1988#~ msgid ""
1989#~ "<p>Since the digital coins of value "
1990#~ "in your wallet are anonymized, the "
1991#~ "exchange can not assist you in "
1992#~ "recovering a lost or stolen wallet. "
1993#~ "Just like with a physical wallet "
1994#~ "for cash, you are responsible for "
1995#~ "keeping it safe.</p> "
1996#~ msgstr ""
1997
1998#~ msgid ""
1999#~ "<p>The risk of losing a wallet can"
2000#~ " be mitigated by making backups or"
2001#~ " keeping the balance reasonably low.</p>"
2002#~ " "
2003#~ msgstr ""
2004
2005#~ msgid ""
2006#~ "<p>In case of a compromise of one"
2007#~ " of your devices, an attacker can "
2008#~ "spend coins from your wallet. Checking"
2009#~ " your balance might reveal to you "
2010#~ "that your device has been "
2011#~ "compromised.</p> "
2012#~ msgstr ""
2013
2014#~ msgid ""
2015#~ "<p>If your friend provides goods or "
2016#~ "services for you in exchange for a"
2017#~ " payment, they can easily set up "
2018#~ "a Taler merchant and receive the "
2019#~ "payment in their bank account.</p> "
2020#~ msgstr ""
2021
2022#~ msgid ""
2023#~ "<p>Future versions of the Taler wallet"
2024#~ " may allow exchanging coins among "
2025#~ "friends directly as well.</p> "
2026#~ msgstr ""
2027
2028#~ msgid ""
2029#~ "<p>Taler wallets can store digital coins"
2030#~ " corresponding to multiple different "
2031#~ "currencies such as the Euro, US "
2032#~ "Dollars or Bitcoins.</p> "
2033#~ msgstr ""
2034
2035#~ msgid "<p>Taler currently does not offer conversion between currencies.</p> "
2036#~ msgstr ""
2037
2038#~ msgid ""
2039#~ "<p>Your wallet stores digital coins that"
2040#~ " are <a "
2041#~ "href=\"https://en.wikipedia.org/wiki/Blind_signature\">blindly "
2042#~ "signed</a> by an exchange. The use "
2043#~ "of a blind signature protects your "
2044#~ "privacy as it prevents the exchange "
2045#~ "from knowing which coin it signed "
2046#~ "for which customer.</p> "
2047#~ msgstr ""
2048
2049#~ msgid ""
2050#~ "trusted third party that verifies that"
2051#~ " the `exchange` is operating correctly \n"
2052#~ msgstr ""
2053
2054#~ msgid ""
2055#~ "traditional financial service provider who "
2056#~ "offers wire `transfers` between accounts \n"
2057#~ msgstr ""
2058
2059#~ msgid ""
2060#~ "coins are individual token representing "
2061#~ "a certain amount of value, also "
2062#~ "known as the `denomination` of the "
2063#~ "coin "
2064#~ msgstr ""
2065
2066#~ msgid "the proposal signed by the wallet. "
2067#~ msgstr ""
2068
2069#~ msgid ""
2070#~ "unit of currency, specifies both the "
2071#~ "currency and the face value of a"
2072#~ " `coin` "
2073#~ msgstr ""
2074
2075#~ msgid ""
2076#~ "RSA key used by the exchange to"
2077#~ " certify that a given `coin` is "
2078#~ "valid and of a particular `denomination`"
2079#~ " "
2080#~ msgstr ""
2081
2082#~ msgid ""
2083#~ "operation by which a merchant passes "
2084#~ "coins to an exchange, expecting the "
2085#~ "exchange to credit his `bank` account"
2086#~ " in the future using a wire "
2087#~ "`transfer` "
2088#~ msgstr ""
2089
2090#~ msgid ""
2091#~ "a `coin` is dirty if its public"
2092#~ " key may be known to an entity"
2093#~ " other than the customer, thereby "
2094#~ "creating the danger of some entity "
2095#~ "being able to link multiple transactions"
2096#~ " of coin's owner if the coin is"
2097#~ " not refreshed first "
2098#~ msgstr ""
2099
2100#~ msgid ""
2101#~ "Taler's payment service provider. Issues "
2102#~ "eletronic `coins` during `withdrawal` and "
2103#~ "redeems them when they are `deposited`"
2104#~ " by merchants. "
2105#~ msgstr ""
2106
2107#~ msgid "implementation of a `wallet` for browsers "
2108#~ msgstr ""
2109
2110#~ msgid "a `coin` is fresh if its public key is only known to the customer "
2111#~ msgstr ""
2112
2113#~ msgid ""
2114#~ "offline key used by the exchange "
2115#~ "to certify denomination keys and message"
2116#~ " signing keys "
2117#~ msgstr ""
2118
2119#~ msgid "key used by the exchange to sign online messages, other than coins "
2120#~ msgstr ""
2121
2122#~ msgid ""
2123#~ "specification of the details of a "
2124#~ "transaction, specifies the payment obligations"
2125#~ " for the customer (i.e. the amount),"
2126#~ " the deliverables of the merchant and"
2127#~ " other related information, such as "
2128#~ "deadlines or locations; However, it "
2129#~ "lacks some information that the backend"
2130#~ " is supposed to provide. In other "
2131#~ "words, after the backend adds the "
2132#~ "missing information to the offer and "
2133#~ "signs it, it becomes a proposal. "
2134#~ msgstr ""
2135
2136#~ msgid "a `coin` is owned by the entity that knows the private key of the coin "
2137#~ msgstr ""
2138
2139#~ msgid ""
2140#~ "message that cryptographically demonstrates "
2141#~ "that a particular claim is correct \n"
2142#~ msgstr ""
2143
2144#~ msgid "a sketch that has been completed and signed by the merchant backend. "
2145#~ msgstr ""
2146
2147#~ msgid ""
2148#~ "funds set aside for future use; "
2149#~ "either the balance of a customer "
2150#~ "at the exchange ready for `withdrawal`,"
2151#~ " or the funds kept in the "
2152#~ "exchange's bank account to cover "
2153#~ "obligations from coins in circulation "
2154#~ msgstr ""
2155
2156#~ msgid ""
2157#~ "operation by which a `dirty` `coin` "
2158#~ "is converted into one or more "
2159#~ "`fresh` coins "
2160#~ msgstr ""
2161
2162#~ msgid ""
2163#~ "operation by which a merchant steps "
2164#~ "back from the right to funds that"
2165#~ " he obtained from a `deposit` "
2166#~ "operation, giving the right to the "
2167#~ "funds back to the customer "
2168#~ msgstr ""
2169
2170#~ msgid ""
2171#~ "users can share ownership of a "
2172#~ "`coin` by sharing access to the "
2173#~ "coin's private key, thereby allowing all"
2174#~ " co-owners to spend the coin at"
2175#~ " any time. "
2176#~ msgstr ""
2177
2178#~ msgid "see message signing key. "
2179#~ msgstr ""
2180
2181#~ msgid ""
2182#~ "operation by which a customer gives "
2183#~ "a merchant the right to `deposit` "
2184#~ "coins in return for merchandise "
2185#~ msgstr ""
2186
2187#~ msgid "method of sending funds between `bank` accounts "
2188#~ msgstr ""
2189
2190#~ msgid ""
2191#~ "method by which ownership is exclusively"
2192#~ " transferred from one entity to "
2193#~ "another "
2194#~ msgstr ""
2195
2196#~ msgid "unique number by which a merchant identifies a `transaction` "
2197#~ msgstr ""
2198
2199#~ msgid ""
2200#~ "software running on a customer's "
2201#~ "computer; withdraws, stores and spends "
2202#~ "coins "
2203#~ msgstr ""
2204
2205#~ msgid "see `transfer` "
2206#~ msgstr ""
2207
2208#~ msgid ""
2209#~ "subject of a wire `transfer`; usually"
2210#~ " a random string to uniquely identify"
2211#~ " the `transfer` "
2212#~ msgstr ""
2213
2214#~ msgid ""
2215#~ "operation by which a `wallet` can "
2216#~ "convert funds from a reserve to "
2217#~ "fresh coins "
2218#~ msgstr ""
2219
2220#~ msgid ""
2221#~ "Taler provides accountability to ensure "
2222#~ "business operate legally, while also "
2223#~ "respecting civil liberties of citizens. "
2224#~ "Taler is a payment system based on"
2225#~ " open standards and free software. "
2226#~ "Taler needs governments as they set "
2227#~ "a financial framework and act as "
2228#~ "trusted regulators. Taler contributes to "
2229#~ "digital sovereignty in the critical "
2230#~ "financial infrastructure. "
2231#~ msgstr ""
2232
2233#~ msgid ""
2234#~ "Taler was built with the goal of"
2235#~ " fighting corruption and supporting "
2236#~ "taxation. With Taler, the receiver of"
2237#~ " any form of payment is easily "
2238#~ "identified by the government, and the"
2239#~ " merchant can be compelled to provide"
2240#~ " the contract that was accepted by"
2241#~ " the customer. Governments can use "
2242#~ "this data to tax businesses and "
2243#~ "individuals based on their income, "
2244#~ "making tax evasion and black markets "
2245#~ "less viable. "
2246#~ msgstr ""
2247
2248#~ msgid ""
2249#~ "Thus, despite offering anonymity for "
2250#~ "citizens spending digital cash to buy"
2251#~ " goods and services, Taler also "
2252#~ "ensures that the state can observe "
2253#~ "incoming funds. This can be used "
2254#~ "to ensure businesses engage only in "
2255#~ "legal activities, and do not evade "
2256#~ "income tax, sales tax or value-"
2257#~ "added tax. However, this observational "
2258#~ "capability does not extend to the "
2259#~ "immediate personal domain. In particular, "
2260#~ "monitoring does not cover shared access"
2261#~ " to funds with trusted friends and"
2262#~ " family, or synchronizing wallets across"
2263#~ " multiple devices. "
2264#~ msgstr ""
2265
2266#~ msgid ""
2267#~ "Taler's payments are cryptographically "
2268#~ "secured. Thus, customers, merchants and "
2269#~ "the Taler payment service provider (the"
2270#~ " exchange) can mathematically demonstrate "
2271#~ "their lawful behavior in court in "
2272#~ "case of disputes. Financial damages are"
2273#~ " strictly limited, improving economic "
2274#~ "security for individuals, merchants, the "
2275#~ "exchange and the state. "
2276#~ msgstr ""
2277
2278#~ msgid ""
2279#~ "As a payment service provider, the "
2280#~ "Taler exchange is subject to financial"
2281#~ " regulation. Financial regulation and "
2282#~ "regular audits are critical to establish"
2283#~ " trust. In particular, the Taler "
2284#~ "design mandates the existence of an "
2285#~ "independent auditor who checks cryptographic"
2286#~ " proofs that accumulate at the "
2287#~ "exchange to ensure that the escrow "
2288#~ "account is managed honestly. This "
2289#~ "ensures that the exchange does not "
2290#~ "threaten the economy due to fraud. \n"
2291#~ msgstr ""
2292
2293#~ msgid ""
2294#~ "Taler is free software implementing an"
2295#~ " open protocol standard. Thus, Taler "
2296#~ "will enable competition and avoid the"
2297#~ " monopolization of payment systems that "
2298#~ "threatens global political and financial "
2299#~ "stability today. "
2300#~ msgstr ""
2301
2302#~ msgid ""
2303#~ "Taler has an efficient design. Unlike"
2304#~ " Blockchain-based payment systems, such "
2305#~ "as Bitcoin, Taler will not threaten "
2306#~ "the availability of national electric "
2307#~ "grids or (significantly) contribute to "
2308#~ "environmental pollution. "
2309#~ msgstr ""
2310
2311#~ msgid ""
2312#~ "Taler assumes governments can observe "
2313#~ "traditional wire transfers entering and "
2314#~ "leaving the Taler payment system. "
2315#~ "Starting with the wire transfers, "
2316#~ "governments can obtain: "
2317#~ msgstr ""
2318
2319#~ msgid ""
2320#~ "The total amount of digital currency "
2321#~ "withdrawn by a customer. The government"
2322#~ " can impose limits on how much "
2323#~ "digital cash a customer can withdraw "
2324#~ "within a given time frame. "
2325#~ msgstr ""
2326
2327#~ msgid "The income received by any merchant via the Taler system. "
2328#~ msgstr ""
2329
2330#~ msgid ""
2331#~ "The exact details of the underlying "
2332#~ "contract that was signed between "
2333#~ "customer and merchant. However, this "
2334#~ "information would typically not include "
2335#~ "the identity of the customer. "
2336#~ msgstr ""
2337
2338#~ msgid ""
2339#~ "The amounts of digital coins "
2340#~ "legitimately withdrawn by customers from "
2341#~ "the exchange, the value of non-"
2342#~ "redeemed digital coins in customer's "
2343#~ "wallets, the value and corresponding "
2344#~ "wire details of deposit operations "
2345#~ "performed by merchants with the "
2346#~ "exchange, and the income of the "
2347#~ "exchange from transaction fees. "
2348#~ msgstr ""
2349
2350#~ msgid ""
2351#~ "GNU Taler is an electronic payment "
2352#~ "system under development at <a "
2353#~ "href=\"http://www.inria.fr/\">Inria</a>. We expect "
2354#~ "to make it operational in 2017. "
2355#~ "You can learn about Taler on this"
2356#~ " website, try the <a "
2357#~ "href=\"https://demo.taler.net\">demo</a> and look at"
2358#~ " our <a href=\"https://docs.taler.net\">developer</a>"
2359#~ " and <a href=\"https://api.taler.net\">API</a> "
2360#~ "documentation. "
2361#~ msgstr ""
2362
2363#~ msgid ""
2364#~ "Taler is easy to integrate with "
2365#~ "existing Web applications. Payments are "
2366#~ "cryptographically secured and are confirmed"
2367#~ " within milliseconds with extremely low "
2368#~ "transaction costs. "
2369#~ msgstr ""
2370
2371#~ msgid ""
2372#~ "Taler does not introduce a new "
2373#~ "currency. Taler uses a digital wallet"
2374#~ " storing coins and payment service "
2375#~ "providers with escrow accounts in "
2376#~ "existing currencies. Thus, Taler's "
2377#~ "cryptographic coins correspond to existing "
2378#~ "currencies, such as US Dollars, Euros"
2379#~ " or even Bitcoins. "
2380#~ msgstr ""
2381
2382#~ msgid ""
2383#~ "By design Taler does not suffer "
2384#~ "from many classes of security problems"
2385#~ " such as phishing or counterfeit. "
2386#~ "Thanks to its security features, Taler"
2387#~ " never rejects a legitimate customer "
2388#~ "due to a fraud-detection false "
2389#~ "positive. "
2390#~ msgstr ""
2391
2392#~ msgid ""
2393#~ "When using Taler, merchant's revenue is"
2394#~ " transparent for tax collection "
2395#~ "authorities. Unlike cash and most "
2396#~ "digital currencies, Taler helps prevent "
2397#~ "black markets. Taler is not suitable"
2398#~ " for illegal activities. "
2399#~ msgstr ""
2400
2401#~ msgid ""
2402#~ "When you pay with Taler, your "
2403#~ "identity does not have to be "
2404#~ "revealed. Just like payments in cash,"
2405#~ " nobody else can track how you "
2406#~ "spent your electronic money. However, "
2407#~ "you obtain a legally valid proof "
2408#~ "of payment. "
2409#~ msgstr ""
2410
2411#~ msgid ""
2412#~ "Taler provides protocols and reference "
2413#~ "implementations that in principle enables "
2414#~ "anybody to run their own payment "
2415#~ "infrastructure, be it individuals, "
2416#~ "organizations or whole countries. Since "
2417#~ "the reference implementation is a <a "
2418#~ "href=\"http://www.gnu.org/\">GNU</a> package, it "
2419#~ "will always remain free software. "
2420#~ msgstr ""
2421
2422#~ msgid ""
2423#~ "<p>To pay with Taler, customers install"
2424#~ " an electronic wallet on their "
2425#~ "device. Before the first payment, the"
2426#~ " wallet's balance must be charged in"
2427#~ " the desired currency by some other"
2428#~ " means of payment.</p> <p>Once the "
2429#~ "wallet is charged, payments on websites"
2430#~ " take only one click, are never "
2431#~ "falsely rejected by fraud detection and"
2432#~ " do not pose any risk of "
2433#~ "phishing or identity theft.</p> "
2434#~ msgstr ""
2435
2436#~ msgid ""
2437#~ "<p>To receive Taler payments, a merchant"
2438#~ " needs a bank account in the "
2439#~ "desired currency. We provide supporting "
2440#~ "software in various programming languages "
2441#~ "to make the integration painless. The"
2442#~ " merchant's backend for Taler transaction"
2443#~ " processing can run on the merchant's"
2444#~ " premises or be hosted by a "
2445#~ "third party.</p> "
2446#~ msgstr ""
2447
2448#~ msgid ""
2449#~ "We have created a company, Taler "
2450#~ "Systems SA in Luxembourg.<br> Please "
2451#~ "contact <tt>invest@taler.net</tt> if you want"
2452#~ " to invest in Taler. "
2453#~ msgstr ""
2454
2455#~ msgid ""
2456#~ "Our <a href=\"about.html\">team</a> combines "
2457#~ "world-class business leaders, cryptographers, "
2458#~ "software engineers, civil-rights activists "
2459#~ "and academics. We are unified by a"
2460#~ " vision of how payments should work"
2461#~ " and the goal of imposing this "
2462#~ "vision upon the world. "
2463#~ msgstr ""
2464
2465#~ msgid ""
2466#~ "We are currently supported by <a "
2467#~ "href=\"http://www.inria.fr/\">Inria</a>, the French "
2468#~ "national institute for research in "
2469#~ "informatics and automation, and the <a"
2470#~ " href=\"https://renewablefreedom.org/\">Renewable Freedom "
2471#~ "Foundation</a>. "
2472#~ msgstr ""
2473
2474#~ msgid ""
2475#~ "All transactions in Taler are secured"
2476#~ " using <a href=\"bibliography.html\">modern "
2477#~ "cryptography</a> and trust in all "
2478#~ "parties is minimized. Financial damage "
2479#~ "is bounded (for customers, merchants and"
2480#~ " the exchange) even in the case "
2481#~ "that systems are compromised and private"
2482#~ " keys are stolen. Databases can be"
2483#~ " audited for consistency, resulting in "
2484#~ "either the detection of compromised "
2485#~ "systems or the demonstration that "
2486#~ "participants were honest. Actual transaction"
2487#~ " costs are fractions of a cent. \n"
2488#~ msgstr ""
2489
2490#~ msgid ""
2491#~ "The scalable business model for Taler"
2492#~ " is the operation of the payment "
2493#~ "service provider, which converts money "
2494#~ "from traditional payment systems (MasterCard,"
2495#~ " SEPA, UPI, Visa, Bitcoin, ACH, "
2496#~ "SWIFT, etc.) to anonymous electronic "
2497#~ "coins in the same currency. The "
2498#~ "customer can then redeem the electronic"
2499#~ " coins at a merchant, who can "
2500#~ "exchange them for money represented "
2501#~ "using traditional payment systems at the"
2502#~ " exchange. The exchange charges fees "
2503#~ "to facilitate the transactions. "
2504#~ msgstr ""
2505
2506#~ msgid ""
2507#~ "The payment service operator runs the"
2508#~ " <em>Taler exchange</em>. The exchange "
2509#~ "charges <b>transaction fees</b> to customers"
2510#~ " or merchants. Its operational expenses "
2511#~ "are from wire transfers with the "
2512#~ "banking system and the operation of "
2513#~ "the computing infrastructure. "
2514#~ msgstr ""
2515
2516#~ msgid ""
2517#~ "Taler is a cost-effective electronic "
2518#~ "payment system which provides you with"
2519#~ " cryptographic proof that the payment "
2520#~ "worked correctly within milliseconds. Your "
2521#~ "Web customers pay with previously "
2522#~ "unknown levels of convenience without "
2523#~ "risk of fraud. "
2524#~ msgstr ""
2525
2526#~ msgid ""
2527#~ "Processing transactions with Taler is "
2528#~ "fast, allowing you to confirm the "
2529#~ "transaction with your customer virtually "
2530#~ "immediately. Your customers will appreciate"
2531#~ " that they do not have to type"
2532#~ " in credit card information and play"
2533#~ " the &quot;verified by&quot; game. By "
2534#~ "making payments significantly more convenient"
2535#~ " for your customers, you may be "
2536#~ "able to use Taler for small "
2537#~ "transactions that would not work with"
2538#~ " credit card payments due to the "
2539#~ "mental overhead for customers. "
2540#~ msgstr ""
2541
2542#~ msgid ""
2543#~ "You will have cryptographic proof of "
2544#~ "payment from the Taler payment service"
2545#~ " provider. With Taler you never "
2546#~ "handle sensitive customer account information"
2547#~ " and thus do not have to "
2548#~ "undergo any particular security audits "
2549#~ "(such as PCI DSS). Your systems "
2550#~ "will have customer contracts with "
2551#~ "qualified signatures for all transactions "
2552#~ "which you can use in court in "
2553#~ "case of disputes. "
2554#~ msgstr ""
2555
2556#~ msgid ""
2557#~ "Taler is free software, and you "
2558#~ "can use the liberally-licensed reference"
2559#~ " code as a starting point to "
2560#~ "integrate Taler into your services. To"
2561#~ " use Taler, you do not need to"
2562#~ " pay license fees, and the free "
2563#~ "software development model will ensure "
2564#~ "that you can select from many "
2565#~ "competing integrators for support. "
2566#~ msgstr ""
2567
2568#~ msgid ""
2569#~ "Taler is uses efficient cryptographic "
2570#~ "constructions with low bandwidth and "
2571#~ "storage requirements. Combined with Taler's"
2572#~ " strong security which makes fraud "
2573#~ "impossible, Taler payment service providers"
2574#~ " can operate with very low overhead"
2575#~ " and thus offer low transaction fees."
2576#~ " "
2577#~ msgstr ""
2578
2579#~ msgid ""
2580#~ "Taler can be used for different "
2581#~ "currencies (such as Euros, US Dollars"
2582#~ " or Bitcoins) and any amount, limited"
2583#~ " only by applicable regulatation and "
2584#~ "what denominations the payment service "
2585#~ "provider supports. "
2586#~ msgstr ""
2587
2588#~ msgid ""
2589#~ "Taler prevents tax evasion and money "
2590#~ "laundering. Taler's protocols are efficient"
2591#~ " and do not use wasteful proof-"
2592#~ "of-work calculations. Taler encourages "
2593#~ "transparency by providing an open "
2594#~ "standard and free software reference "
2595#~ "implementations. "
2596#~ msgstr ""
2597
2598#~ msgid ""
2599#~ "The backend <b>signs</b> and <b>stores</b> "
2600#~ "the complete terms of offers made "
2601#~ "by the merchant to customers. For "
2602#~ "this, the merchant's frontend needs to"
2603#~ " give the customer's order in a "
2604#~ "JSON format to the backend. "
2605#~ msgstr ""
2606
2607#~ msgid ""
2608#~ "The backend <b>validates</b> payments received"
2609#~ " from the wallet and <b>executes</b> "
2610#~ "them with the Taler payment service "
2611#~ "provider (the exchange). For this, the"
2612#~ " merchant's frontend must pass the "
2613#~ "payment request through to the Taler "
2614#~ "backend and check the HTTP status "
2615#~ "code that is returned. "
2616#~ msgstr ""
2617
2618#~ msgid ""
2619#~ "The backend can <b>list</b> completed "
2620#~ "transactions and <b>map</b> wire transfers "
2621#~ "to sets of business transactions, "
2622#~ "including the exact terms of each "
2623#~ "contract. "
2624#~ msgstr ""
2625
diff --git a/locale/fr/LC_MESSAGES/messages.po b/locale/fr/LC_MESSAGES/messages.po
index 4acbfc0c..a7841308 100644
--- a/locale/fr/LC_MESSAGES/messages.po
+++ b/locale/fr/LC_MESSAGES/messages.po
@@ -1,18 +1,23 @@
1 1
2msgid "" 2msgid ""
3msgstr "" 3msgstr ""
4"Project-Id-Version: PROJECT VERSION\n" 4"Project-Id-Version: PROJECT VERSION Report-Msgid-Bugs-To: EMAIL@ADDRESS "
5"POT-Creation-Date: 2017-05-23 10:32+0200 PO-Revision-Date: YEAR-MO-DA "
6"HO:MI+ZONE Last-Translator: FULL NAME <EMAIL@ADDRESS> Language: fr "
7"Language-Team: fr <LL@li.org> Plural-Forms: nplurals=2; plural=(n!=1) "
8"MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-"
9"Transfer-Encoding: 8bit Generated-By: Babel 2.3.4 \n"
5"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" 10"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
6"POT-Creation-Date: 2017-05-23 10:32+0200\n" 11"POT-Creation-Date: 2017-06-02 13:48+0200\n"
7"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9"Language: fr\n" 14"Language: fr\n"
10"Language-Team: fr <LL@li.org>\n" 15"Language-Team: fr <LL@li.org>\n"
11"Plural-Forms: nplurals=2; plural=(n!=1)\n" 16"Plural-Forms: nplurals=2; plural=(n > 1)\n"
12"MIME-Version: 1.0\n" 17"MIME-Version: 1.0\n"
13"Content-Type: text/plain; charset=utf-8\n" 18"Content-Type: text/plain; charset=utf-8\n"
14"Content-Transfer-Encoding: 8bit\n" 19"Content-Transfer-Encoding: 8bit\n"
15"Generated-By: Babel 2.3.4\n" 20"Generated-By: Babel 2.4.0\n"
16 21
17#: about.html.j2:8 22#: about.html.j2:8
18#, fuzzy 23#, fuzzy
@@ -125,11 +130,9 @@ msgstr ""
125 130
126#: citizens.html.j2:9 131#: citizens.html.j2:9
127msgid "" 132msgid ""
128"Taler largely functions like digital cash. You\n" 133"Taler largely functions like digital cash. You withdraw money from your "
129"withdraw money from your bank account into your\n" 134"bank account into your electronic wallet, and can henceforth spend "
130"electronic wallet, and can henceforth spend digital\n" 135"digital cash. The electronic wallet can carry multiple currencies."
131"cash. The electronic wallet can carry multiple\n"
132"currencies.\n"
133msgstr "" 136msgstr ""
134 137
135#: citizens.html.j2:25 governments.html.j2:58 index.html.j2:56 138#: citizens.html.j2:25 governments.html.j2:58 index.html.j2:56
@@ -139,12 +142,10 @@ msgstr "Sûr"
139 142
140#: citizens.html.j2:27 143#: citizens.html.j2:27
141msgid "" 144msgid ""
142"Taler uses modern cryptography, ensuring that there\n" 145"Taler uses modern cryptography, ensuring that there is no counterfeit. "
143"is no counterfeit. Your digital wallet is safer\n" 146"Your digital wallet is safer than your physical wallet. At most, you can "
144"than your physical wallet. At most, you can lose\n" 147"lose its contents because your computer or mobile is irreparably damaged "
145"its contents because your computer or mobile is\n" 148"or compromised. Unlike a physical wallet, you can make backups to secure "
146"irreparably damaged or compromised. Unlike a\n"
147"physical wallet, you can make backups to secure\n"
148"against data loss." 149"against data loss."
149msgstr "" 150msgstr ""
150 151
@@ -154,12 +155,10 @@ msgstr ""
154 155
155#: citizens.html.j2:39 156#: citizens.html.j2:39
156msgid "" 157msgid ""
157"Your transactions are private, neither the payment\n" 158"Your transactions are private, neither the payment service provider nor "
158"service provider nor merchant needs to learn your\n" 159"merchant needs to learn your identity. There is no need to give out "
159"identity. There is no need to give out credit card\n" 160"credit card numbers or other sensitive information. The merchant will "
160"numbers or other sensitive information. The merchant\n" 161"only be able to do exactly the transaction you agreed to."
161"will only be able to do exactly the transaction you\n"
162"agreed to."
163msgstr "" 162msgstr ""
164 163
165#: citizens.html.j2:50 164#: citizens.html.j2:50
@@ -168,11 +167,10 @@ msgstr ""
168 167
169#: citizens.html.j2:52 168#: citizens.html.j2:52
170msgid "" 169msgid ""
171"You will be able to withdraw money to replenish the\n" 170"You will be able to withdraw money to replenish the digital coins in your"
172"digital coins in your wallet using your credit card\n" 171" wallet using your credit card or wire transfers. Afterwards you can pay "
173"or wire transfers. Afterwards you can pay with\n" 172"with one-click using the Taler wallet, which optionally keeps your "
174"one-click using the Taler wallet, which optionally\n" 173"transaction history on your computer."
175"keeps your transaction history on your computer."
176msgstr "" 174msgstr ""
177 175
178#: citizens.html.j2:61 index.html.j2:42 176#: citizens.html.j2:61 index.html.j2:42
@@ -181,12 +179,10 @@ msgstr ""
181 179
182#: citizens.html.j2:63 180#: citizens.html.j2:63
183msgid "" 181msgid ""
184"Coins in your digital wallet will be of the same\n" 182"Coins in your digital wallet will be of the same denomination as the cash"
185"denomination as the cash in your physical wallet.\n" 183" in your physical wallet. Taler is not a crypto-currency, so you do not "
186"Taler is not a crypto-currency, so you do not have\n" 184"have to worry about cryto-currency related value fluctuations. Banking "
187"to worry about cryto-currency related value\n" 185"with Taler is subject to the usual government protections for financial "
188"fluctuations. Banking with Taler is subject to the\n"
189"usual government protections for financial\n"
190"services." 186"services."
191msgstr "" 187msgstr ""
192 188
@@ -197,9 +193,8 @@ msgstr ""
197#: citizens.html.j2:81 193#: citizens.html.j2:81
198msgid "" 194msgid ""
199"We currently provide a <a href=\"wallet.html\">wallet browser " 195"We currently provide a <a href=\"wallet.html\">wallet browser "
200"extension</a> for Chromium, Chrome, Firefox, Opera\n" 196"extension</a> for Chromium, Chrome, Firefox, Opera and Edge. Wallets for "
201"and Edge. Wallets for mobile phones and other platforms will be " 197"mobile phones and other platforms will be available in the future."
202"available in the future.\n"
203msgstr "" 198msgstr ""
204 199
205#: citizens.html.j2:88 200#: citizens.html.j2:88
@@ -209,7 +204,7 @@ msgstr ""
209#: citizens.html.j2:90 204#: citizens.html.j2:90
210msgid "" 205msgid ""
211"You can see how Taler works in practice by visiting our <a " 206"You can see how Taler works in practice by visiting our <a "
212"href=\"https://demo.taler.net\">demo page</a>.\n" 207"href=\"https://demo.taler.net\">demo page</a>."
213msgstr "" 208msgstr ""
214 209
215#: citizens.html.j2:103 210#: citizens.html.j2:103
@@ -217,39 +212,32 @@ msgid "The Taler Wallet for customers"
217msgstr "" 212msgstr ""
218 213
219#: citizens.html.j2:105 214#: citizens.html.j2:105
220msgid "" 215msgid "Customers interact with the Taler system using the Taler wallet:"
221"Customers interact with the Taler system using\n"
222"the Taler wallet:"
223msgstr "" 216msgstr ""
224 217
225#: citizens.html.j2:110 218#: citizens.html.j2:110
226msgid "" 219msgid ""
227"To <b>withdraw</b> electronic coins, the customer\n" 220"To <b>withdraw</b> electronic coins, the customer transfers funds from "
228"transfers funds from his bank account to the Taler\n" 221"his bank account to the Taler payment service provider (the exchange). "
229"payment service provider (the exchange). The wire\n" 222"The wire transfer subject must match a code identifying the customer's "
230"transfer subject must match a code identifying the\n" 223"wallet. After the wire transfer is complete, the wallet will "
231"customer's wallet. After the wire transfer is\n" 224"automatically withdraw the coins from the exchange."
232"complete, the wallet will automatically withdraw the\n"
233"coins from the exchange."
234msgstr "" 225msgstr ""
235 226
236#: citizens.html.j2:118 227#: citizens.html.j2:118
237msgid "" 228msgid ""
238"To <b>spend</b> electronic coins, a merchant must\n" 229"To <b>spend</b> electronic coins, a merchant must cause the wallet to "
239"cause the wallet to display a proposal for some\n" 230"display a proposal for some purchase. The wallet will ask the customer "
240"purchase. The wallet will ask the customer for\n" 231"for one-click confirmation. Payment is then instant. Transaction "
241"one-click confirmation. Payment is then instant.\n" 232"histories and digitally signed contracts can be preserved by the wallet."
242"Transaction histories and digitally signed contracts\n"
243"can be preserved by the wallet."
244msgstr "" 233msgstr ""
245 234
246#: citizens.html.j2:125 235#: citizens.html.j2:125
247msgid "" 236msgid ""
248"The customer can use the wallet to <b>review</b> his\n" 237"The customer can use the wallet to <b>review</b> his balance. The wallet "
249"balance. The wallet can contain different\n" 238"can contain different currencies, and may be shared across devices. "
250"currencies, and may be shared across\n" 239"Customers can make backups of the wallet to secure its contents against "
251"devices. Customers can make backups of the wallet to\n" 240"hardware failures."
252"secure its contents against hardware failures."
253msgstr "" 241msgstr ""
254 242
255#: contact.html.j2:6 243#: contact.html.j2:6
@@ -262,12 +250,10 @@ msgstr ""
262 250
263#: contact.html.j2:15 251#: contact.html.j2:15
264msgid "" 252msgid ""
265"An archived, public mailing list for GNU Taler is\n" 253"An archived, public mailing list for GNU Taler is hosted at <a "
266"hosted at\n"
267"<a "
268"href=\"https://lists.gnu.org/mailman/listinfo/taler\">https://lists.gnu.org/mailman/listinfo/taler</a>." 254"href=\"https://lists.gnu.org/mailman/listinfo/taler\">https://lists.gnu.org/mailman/listinfo/taler</a>."
269" You can send messages to the list\n" 255" You can send messages to the list at <a "
270"at <a href=\"mailto:taler@gnu.org\">taler@gnu.org</a>.\n" 256"href=\"mailto:taler@gnu.org\">taler@gnu.org</a>."
271msgstr "" 257msgstr ""
272 258
273#: contact.html.j2:25 259#: contact.html.j2:25
@@ -276,9 +262,8 @@ msgstr ""
276 262
277#: contact.html.j2:27 263#: contact.html.j2:27
278msgid "" 264msgid ""
279"Team members are generally reachable at\n" 265"Team members are generally reachable at <tt>LASTNAME@taler.net</tt>. All "
280"<tt>LASTNAME@taler.net</tt>. All of us\n" 266"of us support receiving GnuPG encrypted e-mails."
281"support receiving GnuPG encrypted e-mails.\n"
282msgstr "" 267msgstr ""
283 268
284#: contact.html.j2:36 269#: contact.html.j2:36
@@ -287,11 +272,10 @@ msgstr ""
287 272
288#: contact.html.j2:38 273#: contact.html.j2:38
289msgid "" 274msgid ""
290"We track open feature requests and bugs in our\n" 275"We track open feature requests and bugs in our <a "
291"<a href=\"https://gnunet.org/bugs/\">Bug tracker</a>,\n" 276"href=\"https://gnunet.org/bugs/\">Bug tracker</a>, which is shared with "
292"which is shared with the GNUnet project.\n" 277"the GNUnet project. You can also report bugs or feature requests to the "
293"You can also report bugs or feature requests to the\n" 278"mailing list."
294"mailing list.\n"
295msgstr "" 279msgstr ""
296 280
297#: contact.html.j2:49 281#: contact.html.j2:49
@@ -300,8 +284,39 @@ msgstr ""
300 284
301#: contact.html.j2:51 285#: contact.html.j2:51
302msgid "" 286msgid ""
303"For non-technical commercial requests, please contact\n" 287"For non-technical commercial requests, please contact <tt>ceo AT "
304"<tt>ceo AT taler.net</tt>.\n" 288"taler.net</tt>."
289msgstr ""
290
291#: copyright.html.j2:6
292msgid "Copyright Assignment"
293msgstr ""
294
295#: copyright.html.j2:8
296msgid ""
297"<p>Contributors to GNU Taler with Git access must sign the <a "
298"href=\"pdf/copyright.pdf\">copyright assignment</a> to ensure that the <a"
299" href=\"https://gnunet.org/git/gnunet-"
300"ev.git/tree/gnunet_taler_agreement.tex\">GNUnet e.V. --- Taler Systems SA"
301" agreement on licensing and collaborative development</a> of the GNUnet "
302"and GNU Taler projects is satisfied.</p>"
303msgstr ""
304
305#: copyright.html.j2:17
306msgid ""
307"<p>The agreements ensure that the code will continue to be made available"
308" under free software licenses, but gives developers the freedom to move "
309"code between GNUnet and GNU Taler without worrying about licenses and the"
310" company the ability to dual-license (for example, so that we can "
311"distribute via App-stores that are hostile to free software).</p>"
312msgstr ""
313
314#: copyright.html.j2:25
315msgid ""
316"<p>Minor contributions (basically, anyone without Git access) do not "
317"require copyright assignment. Pseudonymous contributions are accepted, in"
318" this case simply sign the agreement with your pseudonym. Scanned copies "
319"are sufficient, but snail mail is preferred.</p>"
305msgstr "" 320msgstr ""
306 321
307#: developers.html.j2:5 322#: developers.html.j2:5
@@ -314,17 +329,14 @@ msgstr "Libre"
314 329
315#: developers.html.j2:15 330#: developers.html.j2:15
316msgid "" 331msgid ""
317"GNU Taler is free software implementing an open\n" 332"GNU Taler is free software implementing an open protocol. Anybody is "
318"protocol. Anybody is welcome to integrate our reference\n" 333"welcome to integrate our reference implementation into their "
319"implementation into their applications. Different\n" 334"applications. Different components of Taler are being made available "
320"components of Taler are being made available under\n" 335"under different licenses. The Affero GPLv3+ is used for the exchange, the"
321"different licenses. The Affero GPLv3+ is used for the\n" 336" LGPLv3+ is used for reference code demonstrating integration with "
322"exchange, the LGPLv3+ is used for reference code\n" 337"merchant platforms, and licenses like GPLv3+ are used for wallets and "
323"demonstrating integration with merchant platforms, and\n" 338"related customer-facing software. We are open for constructive "
324"licenses like GPLv3+ are used for\n" 339"suggestions for maximizing the adoption of this payment platform."
325"wallets and related customer-facing software. We are\n"
326"open for constructive suggestions for maximizing the\n"
327"adoption of this payment platform.\n"
328msgstr "" 340msgstr ""
329 341
330#: developers.html.j2:32 342#: developers.html.j2:32
@@ -333,18 +345,14 @@ msgstr "Avec REST"
333 345
334#: developers.html.j2:35 346#: developers.html.j2:35
335msgid "" 347msgid ""
336"Taler is designed to work on the Internet. To\n" 348"Taler is designed to work on the Internet. To ensure that Taler payments "
337"ensure that Taler payments can work with\n" 349"can work with restrictive network setups, Taler uses a RESTful protocol "
338"restrictive network setups, Taler uses a RESTful\n" 350"over HTTP or HTTPS. Taler's security does not depend upon the use of "
339"protocol over HTTP or HTTPS. Taler's security does\n" 351"HTTPS, but obviously merchants may choose to offer HTTPS for consistency "
340"not depend upon the use of HTTPS, but obviously\n" 352"and because it generally is better for privacy compared to HTTP. Taler "
341"merchants may choose to offer HTTPS for consistency\n" 353"uses JSON to encode structure data, making it easy to integrate Taler "
342"and because it generally is better for privacy\n" 354"with existing Web applications. Taler's protocol is documented in detail "
343"compared to HTTP. Taler uses JSON to encode\n" 355"at <a href=\"https://api.taler.net/\">api.taler.net</a>."
344"structure data, making it easy to integrate Taler\n"
345"with existing Web applications. Taler's protocol\n"
346"is documented in\n"
347"detail at <a href=\"https://api.taler.net/\">api.taler.net</a>.\n"
348msgstr "" 356msgstr ""
349 357
350#: developers.html.j2:58 358#: developers.html.j2:58
@@ -353,15 +361,13 @@ msgstr "Code"
353 361
354#: developers.html.j2:61 362#: developers.html.j2:61
355msgid "" 363msgid ""
356"Taler is currently primarily developed by a\n" 364"Taler is currently primarily developed by a research team at <a "
357"research team at <a href=\"http://www.inria.fr/\">Inria</a> and\n" 365"href=\"http://www.inria.fr/\">Inria</a> and <a "
358"<a href=\"https://gnunet.org/\">GNUnet</a>. However,\n" 366"href=\"https://gnunet.org/\">GNUnet</a>. However, contributions from "
359"contributions from anyone are welcome. Our Git\n" 367"anyone are welcome. Our Git repositories can be cloned using the Git and "
360"repositories can be cloned using the Git and HTTP\n" 368"HTTP access methods against <tt>git.taler.net</tt> with the name of the "
361"access methods against <tt>git.taler.net</tt> with\n" 369"respective repository. A list of repositories can be found in our <a "
362"the name of the respective repository. A list of\n" 370"href=\"https://git.taler.net/\">GitWeb</a>."
363"repositories can be found in\n"
364"our <a href=\"https://git.taler.net/\">GitWeb</a>.\n"
365msgstr "" 371msgstr ""
366 372
367#: developers.html.j2:75 373#: developers.html.j2:75
@@ -370,11 +376,10 @@ msgstr "Documentation"
370 376
371#: developers.html.j2:78 377#: developers.html.j2:78
372msgid "" 378msgid ""
373"In addition to this website, the <a\n" 379"In addition to this website, the <a "
374"href=\"https://git.taler.net/\">documented code</a> and\n" 380"href=\"https://git.taler.net/\">documented code</a> and the <a "
375"the <a href=\"https://api.taler.net/\">API\n" 381"href=\"https://api.taler.net/\">API documentation</a>. Technical papers "
376"documentation</a>. Technical papers can be found in\n" 382"can be found in our <a href=\"bibliography.html\">bibliography</a>."
377"our <a href=\"bibliography.html\">bibliography</a>.\n"
378msgstr "" 383msgstr ""
379 384
380#: developers.html.j2:88 385#: developers.html.j2:88
@@ -383,11 +388,9 @@ msgstr "Discussion"
383 388
384#: developers.html.j2:91 389#: developers.html.j2:91
385msgid "" 390msgid ""
386"We have a mailing list for developer discussions.\n" 391"We have a mailing list for developer discussions. You can subscribe to or"
387"You can subscribe to or read the list archive at\n" 392" read the list archive at <a "
388"<a "
389"href=\"http://lists.gnu.org/mailman/listinfo/taler\">http://lists.gnu.org/mailman/listinfo/taler</a>." 393"href=\"http://lists.gnu.org/mailman/listinfo/taler\">http://lists.gnu.org/mailman/listinfo/taler</a>."
390"\n"
391msgstr "" 394msgstr ""
392 395
393#: developers.html.j2:101 396#: developers.html.j2:101
@@ -396,10 +399,9 @@ msgstr "Tests de régression"
396 399
397#: developers.html.j2:104 400#: developers.html.j2:104
398msgid "" 401msgid ""
399"We have <a href=\"https://buildbot.net/\">Buildbot</a>\n" 402"We have <a href=\"https://buildbot.net/\">Buildbot</a> automation tests "
400"automation tests to detect regressions and check for\n" 403"to detect regressions and check for portability at <a "
401"portability at <a\n" 404"href=\"https://buildbot.taler.net/\">buildbot.taler.net</a>."
402"href=\"https://buildbot.taler.net/\">buildbot.taler.net</a>.\n"
403msgstr "" 405msgstr ""
404 406
405#: developers.html.j2:113 407#: developers.html.j2:113
@@ -408,11 +410,9 @@ msgstr "Mesure de couverture du code"
408 410
409#: developers.html.j2:116 411#: developers.html.j2:116
410msgid "" 412msgid ""
411"We use\n" 413"We use <a href=\"http://ltp.sourceforge.net/coverage/lcov.php\">LCOV</a> "
412"<a href=\"http://ltp.sourceforge.net/coverage/lcov.php\">LCOV</a>\n" 414"to analyze the code coverage of our tests, the results are available at "
413"to analyze the code coverage of our tests, the\n" 415"<a href=\"https://lcov.taler.net/\">lcov.taler.net</a>."
414"results are available\n"
415"at <a href=\"https://lcov.taler.net/\">lcov.taler.net</a>.\n"
416msgstr "" 416msgstr ""
417 417
418#: developers.html.j2:126 418#: developers.html.j2:126
@@ -421,11 +421,9 @@ msgstr "Analyse de performances"
421 421
422#: developers.html.j2:129 422#: developers.html.j2:129
423msgid "" 423msgid ""
424"We\n" 424"We use <a href=\"https://gnunet.org/gauger\">Gauger</a> for performance "
425"use <a href=\"https://gnunet.org/gauger\">Gauger</a>\n" 425"regression analysis of the exchange backend at <a "
426"for performance regression analysis of the exchange\n" 426"href=\"https://gauger.taler.net/\">gauger.taler.net</a>."
427"backend\n"
428"at <a href=\"https://gauger.taler.net/\">gauger.taler.net</a>.\n"
429msgstr "" 427msgstr ""
430 428
431#: developers.html.j2:145 429#: developers.html.j2:145
@@ -434,120 +432,88 @@ msgstr "Vue d'ensemble de Taler"
434 432
435#: developers.html.j2:148 433#: developers.html.j2:148
436msgid "" 434msgid ""
437"The Taler system consists of protocols executed among\n" 435"The Taler system consists of protocols executed among a number of actors "
438"a number of actors as illustrated in the illustration on the right.\n" 436"as illustrated in the illustration on the right. Typical transactions "
439"Typical transactions involve the following steps:\n" 437"involve the following steps:"
440msgstr "" 438msgstr ""
441 439
442#: developers.html.j2:158 440#: developers.html.j2:158
443msgid "" 441msgid ""
444"A customer instructs his <b>bank</b> to\n" 442"A customer instructs his <b>bank</b> to transfer funds from his account "
445"transfer funds from his account to the Taler\n" 443"to the Taler exchange (top left). In the subject of the transaction, he "
446"exchange (top left). In the subject of the\n" 444"includes an authentication token from his electronic <b>wallet</b>. In "
447"transaction, he includes an authentication\n" 445"Taler terminology, the customer creates a reserve at the exchange."
448"token from his electronic <b>wallet</b>. In\n"
449"Taler terminology, the customer creates a\n"
450"reserve at the exchange.\n"
451msgstr "" 446msgstr ""
452 447
453#: developers.html.j2:170 448#: developers.html.j2:170
454msgid "" 449msgid ""
455"Once the exchange has received the wire\n" 450"Once the exchange has received the wire transfer, it allows the "
456"transfer, it allows the customer's electronic\n" 451"customer's electronic wallet to <b>withdraw</b> electronic coins. The "
457"wallet to <b>withdraw</b> electronic coins.\n" 452"electronic coins are digital representations of the original currency "
458"The electronic coins are digital\n" 453"from the transfer. It is important to note that the exchange does not "
459"representations of the original currency from\n" 454"learn the &quot;serial numbers&quot; of the coins created in this "
460"the transfer. It is important to note that the\n" 455"process, so it cannot tell later which customer purchased what at which "
461"exchange does not learn the &quot;serial\n" 456"merchant. The use of Taler does not change the currency or the total "
462"numbers&quot; of the coins created in this\n" 457"value of the funds (except for fees which the exchange may charge for the"
463"process, so it cannot tell later which customer\n" 458" service)."
464"purchased what at which merchant. The use of\n"
465"Taler does not change the currency or the total\n"
466"value of the funds (except for fees which the\n"
467"exchange may charge for the service).\n"
468msgstr "" 459msgstr ""
469 460
470#: developers.html.j2:188 461#: developers.html.j2:188
471msgid "" 462msgid ""
472"Once the customer has the digital coins in his\n" 463"Once the customer has the digital coins in his wallet, the wallet can be "
473"wallet, the wallet can be used to <b>spend</b>\n" 464"used to <b>spend</b> the coins with merchant portals that support the "
474"the coins with merchant portals that support\n" 465"Taler payment system and accept the respective exchange as a business "
475"the Taler payment system and accept the\n" 466"partner (bottom arrow). This creates a digital contract signed by the "
476"respective exchange as a business partner\n" 467"customer's coins and the merchant. If necessary, the customer can later "
477"(bottom arrow). This creates a digital contract\n" 468"use this digitally signed contract in a court of law to prove the exact "
478"signed by the customer's coins and the\n" 469"terms of the contract and that he paid the respective amount. The "
479"merchant. If necessary, the customer can later\n" 470"customer does not learn the banking details of the merchant, and Taler "
480"use this digitally signed contract in a court\n" 471"does not require the merchant to learn the identity of the customer. "
481"of law to prove the exact terms of the contract\n" 472"Naturally, the customer can spend any fraction of his digital coins (the "
482"and that he paid the respective amount. The\n" 473"system takes care of customers getting change)."
483"customer does not learn the banking details of\n"
484"the merchant, and Taler does not require the\n"
485"merchant to learn the identity of the\n"
486"customer. Naturally, the customer can spend any\n"
487"fraction of his digital coins (the system takes\n"
488"care of customers getting change).\n"
489msgstr "" 474msgstr ""
490 475
491#: developers.html.j2:210 476#: developers.html.j2:210
492msgid "" 477msgid ""
493"Merchants receiving digital\n" 478"Merchants receiving digital coins <b>deposit</b> the respective claims "
494"coins <b>deposit</b> the respective claims\n" 479"that resulted from the contract signing with the customer at the exchange"
495"that resulted from the contract signing with\n" 480" to redeem the coins. The deposit step does not reveal the details of the"
496"the customer at the exchange to redeem the\n" 481" contract between the customer and the merchant or the identity of the "
497"coins. The deposit step does not reveal the\n" 482"customer to the exchange in any way. However, the exchange does learn the"
498"details of the contract between the customer\n" 483" identity of the merchant via the provided bank routing information. The "
499"and the merchant or the identity of the\n" 484"merchant can, for example when compelled by the state for taxation, "
500"customer to the exchange in any way. However,\n" 485"provide information linking the individual deposit to the respective "
501"the exchange does learn the identity of the\n" 486"contract signed by the customer. Thus, the exchange's database allows the"
502"merchant via the provided bank routing\n" 487" state to enforce that merchants pay applicable taxes (and do not engage "
503"information. The merchant can, for example\n" 488"in illegal contracts)."
504"when compelled by the state for taxation,\n"
505"provide information linking the individual\n"
506"deposit to the respective contract signed by\n"
507"the customer. Thus, the exchange's database\n"
508"allows the state to enforce that merchants pay\n"
509"applicable taxes (and do not engage in illegal\n"
510"contracts).\n"
511msgstr "" 489msgstr ""
512 490
513#: developers.html.j2:233 491#: developers.html.j2:233
514msgid "" 492msgid ""
515"Finally, the exchange transfers funds\n" 493"Finally, the exchange transfers funds corresponding to the digital coins "
516"corresponding to the digital coins redeemed by\n" 494"redeemed by the merchants to the merchant's <b>bank</b> account. The "
517"the merchants to the merchant's <b>bank</b>\n" 495"exchange may combine multiple small transactions into one larger bank "
518"account. The exchange may combine multiple\n" 496"transfer. The merchant can query the exchange about the relationship "
519"small transactions into one larger bank\n" 497"between the bank transfers and the individual claims that were deposited."
520"transfer. The merchant can query the exchange\n"
521"about the relationship between the bank\n"
522"transfers and the individual claims that were\n"
523"deposited.\n"
524msgstr "" 498msgstr ""
525 499
526#: developers.html.j2:247 500#: developers.html.j2:247
527msgid "" 501msgid ""
528"Most importantly, the exchange keeps\n" 502"Most importantly, the exchange keeps cryptographic proofs that allow it "
529"cryptographic proofs that allow it to\n" 503"to demonstrate that it is operating correctly to third parties. The "
530"demonstrate that it is operating correctly to\n" 504"system requires an external <b>auditor</b>, such as a government-"
531"third parties. The system requires an\n" 505"appointed financial regulatory body, to frequently verify the exchange's "
532"external <b>auditor</b>, such as a\n" 506"databases and check that its bank balance matches the total value of the "
533"government-appointed financial regulatory body,\n" 507"remaining coins in circulation."
534"to frequently verify the exchange's databases\n"
535"and check that its bank balance matches the\n"
536"total value of the remaining coins in\n"
537"circulation.\n"
538msgstr "" 508msgstr ""
539 509
540#: developers.html.j2:262 510#: developers.html.j2:262
541msgid "" 511msgid ""
542"Without the auditor, the exchange operators\n" 512"Without the auditor, the exchange operators could embezzle funds they are"
543"could embezzle funds they are holding in\n" 513" holding in reserve. Customers and merchants cannot cheat each other or "
544"reserve. Customers and merchants cannot cheat\n" 514"the exchange. If any party's computers are compromised, the financial "
545"each other or the exchange. If any party's\n" 515"damage is limited to the respective party and proportional to the funds "
546"computers are compromised, the financial damage\n" 516"they have in circulation during the period of the compromise."
547"is limited to the respective party and\n"
548"proportional to the funds they have in\n"
549"circulation during the period of the\n"
550"compromise.\n"
551msgstr "" 517msgstr ""
552 518
553#: faq.html.j2:5 519#: faq.html.j2:5
@@ -556,17 +522,17 @@ msgstr ""
556 522
557#: faq.html.j2:6 523#: faq.html.j2:6
558msgid "" 524msgid ""
559"<p>Taler does not use any Blockchain technology or Bitcoin directly.\n" 525"<p>Taler does not use any Blockchain technology or Bitcoin directly. "
560"Taler is not based on proof-of-work or any other distributed consensus\n" 526"Taler is not based on proof-of-work or any other distributed consensus "
561"mechanism. Instead Taler is based on blind signatures.</p>\n" 527"mechanism. Instead Taler is based on blind signatures.</p>"
562msgstr "" 528msgstr ""
563 529
564#: faq.html.j2:11 530#: faq.html.j2:11
565msgid "" 531msgid ""
566"<p>It would be possible, however, to withdraw coins denominated in\n" 532"<p>It would be possible, however, to withdraw coins denominated in "
567"Bitcoin into a Taler wallet (with an appropriate exchange), which\n" 533"Bitcoin into a Taler wallet (with an appropriate exchange), which would "
568"would give some benefits over plain Bitcoin, such as instant\n" 534"give some benefits over plain Bitcoin, such as instant confirmation "
569"confirmation times.</p>\n" 535"times.</p>"
570msgstr "" 536msgstr ""
571 537
572#: faq.html.j2:18 538#: faq.html.j2:18
@@ -575,9 +541,9 @@ msgstr ""
575 541
576#: faq.html.j2:19 542#: faq.html.j2:19
577msgid "" 543msgid ""
578"<p>Your wallet stores digital coins and thus ultimately your computer\n" 544"<p>Your wallet stores digital coins and thus ultimately your computer "
579"holds your balance. The exchange keeps funds matching all unspent\n" 545"holds your balance. The exchange keeps funds matching all unspent coins "
580"coins in an escrow bank account.</p>\n" 546"in an escrow bank account.</p>"
581msgstr "" 547msgstr ""
582 548
583#: faq.html.j2:25 549#: faq.html.j2:25
@@ -586,16 +552,16 @@ msgstr ""
586 552
587#: faq.html.j2:26 553#: faq.html.j2:26
588msgid "" 554msgid ""
589"<p>Since the digital coins of value in your wallet are anonymized, the\n" 555"<p>Since the digital coins of value in your wallet are anonymized, the "
590"exchange can not assist you in recovering a lost or stolen wallet.\n" 556"exchange can not assist you in recovering a lost or stolen wallet. Just "
591"Just like with a physical wallet for cash, you are responsible for\n" 557"like with a physical wallet for cash, you are responsible for keeping it "
592"keeping it safe.</p>\n" 558"safe.</p>"
593msgstr "" 559msgstr ""
594 560
595#: faq.html.j2:32 561#: faq.html.j2:32
596msgid "" 562msgid ""
597"<p>The risk of losing a wallet can be mitigated by making backups or\n" 563"<p>The risk of losing a wallet can be mitigated by making backups or "
598"keeping the balance reasonably low.</p>\n" 564"keeping the balance reasonably low.</p>"
599msgstr "" 565msgstr ""
600 566
601#: faq.html.j2:37 567#: faq.html.j2:37
@@ -604,9 +570,9 @@ msgstr ""
604 570
605#: faq.html.j2:38 571#: faq.html.j2:38
606msgid "" 572msgid ""
607"<p>In case of a compromise of one of your devices, an attacker can\n" 573"<p>In case of a compromise of one of your devices, an attacker can spend "
608"spend coins from your wallet. Checking your balance might reveal\n" 574"coins from your wallet. Checking your balance might reveal to you that "
609"to you that your device has been compromised.</p>\n" 575"your device has been compromised.</p>"
610msgstr "" 576msgstr ""
611 577
612#: faq.html.j2:44 578#: faq.html.j2:44
@@ -615,15 +581,15 @@ msgstr ""
615 581
616#: faq.html.j2:45 582#: faq.html.j2:45
617msgid "" 583msgid ""
618"<p>If your friend provides goods or services for you in exchange for a\n" 584"<p>If your friend provides goods or services for you in exchange for a "
619"payment, they can easily set up a Taler merchant and receive the\n" 585"payment, they can easily set up a Taler merchant and receive the payment "
620"payment in their bank account.</p>\n" 586"in their bank account.</p>"
621msgstr "" 587msgstr ""
622 588
623#: faq.html.j2:50 589#: faq.html.j2:50
624msgid "" 590msgid ""
625"<p>Future versions of the Taler wallet may allow exchanging coins\n" 591"<p>Future versions of the Taler wallet may allow exchanging coins among "
626"among friends directly as well.</p>\n" 592"friends directly as well.</p>"
627msgstr "" 593msgstr ""
628 594
629#: faq.html.j2:56 595#: faq.html.j2:56
@@ -632,12 +598,12 @@ msgstr ""
632 598
633#: faq.html.j2:57 599#: faq.html.j2:57
634msgid "" 600msgid ""
635"<p>Taler wallets can store digital coins corresponding to multiple\n" 601"<p>Taler wallets can store digital coins corresponding to multiple "
636"different currencies such as the Euro, US Dollars or Bitcoins.</p>\n" 602"different currencies such as the Euro, US Dollars or Bitcoins.</p>"
637msgstr "" 603msgstr ""
638 604
639#: faq.html.j2:61 605#: faq.html.j2:61
640msgid "<p>Taler currently does not offer conversion between currencies.</p>\n" 606msgid "<p>Taler currently does not offer conversion between currencies.</p>"
641msgstr "" 607msgstr ""
642 608
643#: faq.html.j2:65 609#: faq.html.j2:65
@@ -646,12 +612,11 @@ msgstr ""
646 612
647#: faq.html.j2:66 613#: faq.html.j2:66
648msgid "" 614msgid ""
649"<p>Your wallet stores digital coins that are <a\n" 615"<p>Your wallet stores digital coins that are <a "
650"href=\"https://en.wikipedia.org/wiki/Blind_signature\">blindly\n" 616"href=\"https://en.wikipedia.org/wiki/Blind_signature\">blindly signed</a>"
651"signed</a> by an exchange. The use of a blind signature protects your\n" 617" by an exchange. The use of a blind signature protects your privacy as it"
652"privacy as it prevents the exchange from knowing which coin it signed\n" 618" prevents the exchange from knowing which coin it signed for which "
653"for which customer.</p>\n" 619"customer.</p>"
654"\n"
655msgstr "" 620msgstr ""
656 621
657#: glossary.html.j2:6 622#: glossary.html.j2:6
@@ -661,7 +626,7 @@ msgstr ""
661#: glossary.html.j2:8 626#: glossary.html.j2:8
662msgid "" 627msgid ""
663"trusted third party that verifies that the `exchange` is operating " 628"trusted third party that verifies that the `exchange` is operating "
664"correctly\n" 629"correctly"
665msgstr "" 630msgstr ""
666 631
667#: glossary.html.j2:12 632#: glossary.html.j2:12
@@ -671,7 +636,7 @@ msgstr ""
671#: glossary.html.j2:14 636#: glossary.html.j2:14
672msgid "" 637msgid ""
673"traditional financial service provider who offers wire `transfers` " 638"traditional financial service provider who offers wire `transfers` "
674"between accounts\n" 639"between accounts"
675msgstr "" 640msgstr ""
676 641
677#: glossary.html.j2:18 642#: glossary.html.j2:18
@@ -681,7 +646,7 @@ msgstr ""
681#: glossary.html.j2:20 646#: glossary.html.j2:20
682msgid "" 647msgid ""
683"coins are individual token representing a certain amount of value, also " 648"coins are individual token representing a certain amount of value, also "
684"known as the `denomination` of the coin\n" 649"known as the `denomination` of the coin"
685msgstr "" 650msgstr ""
686 651
687#: glossary.html.j2:24 652#: glossary.html.j2:24
@@ -689,7 +654,7 @@ msgid "contract"
689msgstr "" 654msgstr ""
690 655
691#: glossary.html.j2:26 656#: glossary.html.j2:26
692msgid "the proposal signed by the wallet.\n" 657msgid "the proposal signed by the wallet."
693msgstr "" 658msgstr ""
694 659
695#: glossary.html.j2:30 660#: glossary.html.j2:30
@@ -699,7 +664,7 @@ msgstr ""
699#: glossary.html.j2:32 664#: glossary.html.j2:32
700msgid "" 665msgid ""
701"unit of currency, specifies both the currency and the face value of a " 666"unit of currency, specifies both the currency and the face value of a "
702"`coin`\n" 667"`coin`"
703msgstr "" 668msgstr ""
704 669
705#: glossary.html.j2:36 670#: glossary.html.j2:36
@@ -709,7 +674,7 @@ msgstr ""
709#: glossary.html.j2:38 674#: glossary.html.j2:38
710msgid "" 675msgid ""
711"RSA key used by the exchange to certify that a given `coin` is valid and " 676"RSA key used by the exchange to certify that a given `coin` is valid and "
712"of a particular `denomination`\n" 677"of a particular `denomination`"
713msgstr "" 678msgstr ""
714 679
715#: glossary.html.j2:42 680#: glossary.html.j2:42
@@ -720,7 +685,7 @@ msgstr ""
720msgid "" 685msgid ""
721"operation by which a merchant passes coins to an exchange, expecting the " 686"operation by which a merchant passes coins to an exchange, expecting the "
722"exchange to credit his `bank` account in the future using a wire " 687"exchange to credit his `bank` account in the future using a wire "
723"`transfer`\n" 688"`transfer`"
724msgstr "" 689msgstr ""
725 690
726#: glossary.html.j2:48 691#: glossary.html.j2:48
@@ -732,7 +697,7 @@ msgid ""
732"a `coin` is dirty if its public key may be known to an entity other than " 697"a `coin` is dirty if its public key may be known to an entity other than "
733"the customer, thereby creating the danger of some entity being able to " 698"the customer, thereby creating the danger of some entity being able to "
734"link multiple transactions of coin's owner if the coin is not refreshed " 699"link multiple transactions of coin's owner if the coin is not refreshed "
735"first\n" 700"first"
736msgstr "" 701msgstr ""
737 702
738#: glossary.html.j2:54 703#: glossary.html.j2:54
@@ -741,8 +706,8 @@ msgstr ""
741 706
742#: glossary.html.j2:56 707#: glossary.html.j2:56
743msgid "" 708msgid ""
744"Taler's payment service provider. Issues eletronic `coins` during " 709"Taler's payment service provider. Issues eletronic `coins` during "
745"`withdrawal` and redeems them when they are `deposited` by merchants.\n" 710"`withdrawal` and redeems them when they are `deposited` by merchants."
746msgstr "" 711msgstr ""
747 712
748#: glossary.html.j2:60 713#: glossary.html.j2:60
@@ -750,7 +715,7 @@ msgid "extension"
750msgstr "" 715msgstr ""
751 716
752#: glossary.html.j2:62 717#: glossary.html.j2:62
753msgid "implementation of a `wallet` for browsers\n" 718msgid "implementation of a `wallet` for browsers"
754msgstr "" 719msgstr ""
755 720
756#: glossary.html.j2:66 721#: glossary.html.j2:66
@@ -758,7 +723,7 @@ msgid "fresh coin"
758msgstr "" 723msgstr ""
759 724
760#: glossary.html.j2:68 725#: glossary.html.j2:68
761msgid "a `coin` is fresh if its public key is only known to the customer\n" 726msgid "a `coin` is fresh if its public key is only known to the customer"
762msgstr "" 727msgstr ""
763 728
764#: glossary.html.j2:72 729#: glossary.html.j2:72
@@ -768,7 +733,7 @@ msgstr ""
768#: glossary.html.j2:74 733#: glossary.html.j2:74
769msgid "" 734msgid ""
770"offline key used by the exchange to certify denomination keys and message" 735"offline key used by the exchange to certify denomination keys and message"
771" signing keys\n" 736" signing keys"
772msgstr "" 737msgstr ""
773 738
774#: glossary.html.j2:78 739#: glossary.html.j2:78
@@ -776,7 +741,7 @@ msgid "message signing key"
776msgstr "" 741msgstr ""
777 742
778#: glossary.html.j2:80 743#: glossary.html.j2:80
779msgid "key used by the exchange to sign online messages, other than coins\n" 744msgid "key used by the exchange to sign online messages, other than coins"
780msgstr "" 745msgstr ""
781 746
782#: glossary.html.j2:84 747#: glossary.html.j2:84
@@ -786,15 +751,11 @@ msgstr ""
786#: glossary.html.j2:86 751#: glossary.html.j2:86
787msgid "" 752msgid ""
788"specification of the details of a transaction, specifies the payment " 753"specification of the details of a transaction, specifies the payment "
789"obligations\n" 754"obligations for the customer (i.e. the amount), the deliverables of the "
790"for the customer (i.e. the amount), the deliverables of the merchant and " 755"merchant and other related information, such as deadlines or locations; "
791"other\n" 756"However, it lacks some information that the backend is supposed to "
792"related information, such as deadlines or locations; However, it lacks " 757"provide. In other words, after the backend adds the missing information "
793"some\n" 758"to the offer and signs it, it becomes a proposal."
794"information that the backend is supposed to provide.\n"
795"In other words, after the backend adds the missing information to the "
796"offer and\n"
797"signs it, it becomes a proposal.\n"
798msgstr "" 759msgstr ""
799 760
800#: glossary.html.j2:95 761#: glossary.html.j2:95
@@ -802,7 +763,7 @@ msgid "owner"
802msgstr "" 763msgstr ""
803 764
804#: glossary.html.j2:97 765#: glossary.html.j2:97
805msgid "a `coin` is owned by the entity that knows the private key of the coin\n" 766msgid "a `coin` is owned by the entity that knows the private key of the coin"
806msgstr "" 767msgstr ""
807 768
808#: glossary.html.j2:101 769#: glossary.html.j2:101
@@ -812,7 +773,7 @@ msgstr ""
812#: glossary.html.j2:103 773#: glossary.html.j2:103
813msgid "" 774msgid ""
814"message that cryptographically demonstrates that a particular claim is " 775"message that cryptographically demonstrates that a particular claim is "
815"correct\n" 776"correct"
816msgstr "" 777msgstr ""
817 778
818#: glossary.html.j2:107 779#: glossary.html.j2:107
@@ -820,7 +781,7 @@ msgid "proposal"
820msgstr "" 781msgstr ""
821 782
822#: glossary.html.j2:109 783#: glossary.html.j2:109
823msgid "a sketch that has been completed and signed by the merchant backend.\n" 784msgid "a sketch that has been completed and signed by the merchant backend."
824msgstr "" 785msgstr ""
825 786
826#: glossary.html.j2:113 787#: glossary.html.j2:113
@@ -831,7 +792,7 @@ msgstr ""
831msgid "" 792msgid ""
832"funds set aside for future use; either the balance of a customer at the " 793"funds set aside for future use; either the balance of a customer at the "
833"exchange ready for `withdrawal`, or the funds kept in the exchange's bank" 794"exchange ready for `withdrawal`, or the funds kept in the exchange's bank"
834" account to cover obligations from coins in circulation\n" 795" account to cover obligations from coins in circulation"
835msgstr "" 796msgstr ""
836 797
837#: glossary.html.j2:119 798#: glossary.html.j2:119
@@ -841,7 +802,7 @@ msgstr ""
841#: glossary.html.j2:121 802#: glossary.html.j2:121
842msgid "" 803msgid ""
843"operation by which a `dirty` `coin` is converted into one or more `fresh`" 804"operation by which a `dirty` `coin` is converted into one or more `fresh`"
844" coins\n" 805" coins"
845msgstr "" 806msgstr ""
846 807
847#: glossary.html.j2:125 808#: glossary.html.j2:125
@@ -852,7 +813,7 @@ msgstr ""
852msgid "" 813msgid ""
853"operation by which a merchant steps back from the right to funds that he " 814"operation by which a merchant steps back from the right to funds that he "
854"obtained from a `deposit` operation, giving the right to the funds back " 815"obtained from a `deposit` operation, giving the right to the funds back "
855"to the customer\n" 816"to the customer"
856msgstr "" 817msgstr ""
857 818
858#: glossary.html.j2:131 819#: glossary.html.j2:131
@@ -863,7 +824,7 @@ msgstr ""
863msgid "" 824msgid ""
864"users can share ownership of a `coin` by sharing access to the coin's " 825"users can share ownership of a `coin` by sharing access to the coin's "
865"private key, thereby allowing all co-owners to spend the coin at any " 826"private key, thereby allowing all co-owners to spend the coin at any "
866"time.\n" 827"time."
867msgstr "" 828msgstr ""
868 829
869#: glossary.html.j2:137 830#: glossary.html.j2:137
@@ -871,7 +832,7 @@ msgid "signing key"
871msgstr "" 832msgstr ""
872 833
873#: glossary.html.j2:139 834#: glossary.html.j2:139
874msgid "see message signing key.\n" 835msgid "see message signing key."
875msgstr "" 836msgstr ""
876 837
877#: glossary.html.j2:143 838#: glossary.html.j2:143
@@ -881,7 +842,7 @@ msgstr ""
881#: glossary.html.j2:145 842#: glossary.html.j2:145
882msgid "" 843msgid ""
883"operation by which a customer gives a merchant the right to `deposit` " 844"operation by which a customer gives a merchant the right to `deposit` "
884"coins in return for merchandise\n" 845"coins in return for merchandise"
885msgstr "" 846msgstr ""
886 847
887#: glossary.html.j2:149 848#: glossary.html.j2:149
@@ -889,7 +850,7 @@ msgid "transfer"
889msgstr "" 850msgstr ""
890 851
891#: glossary.html.j2:151 852#: glossary.html.j2:151
892msgid "method of sending funds between `bank` accounts\n" 853msgid "method of sending funds between `bank` accounts"
893msgstr "" 854msgstr ""
894 855
895#: glossary.html.j2:155 856#: glossary.html.j2:155
@@ -899,7 +860,7 @@ msgstr ""
899#: glossary.html.j2:157 860#: glossary.html.j2:157
900msgid "" 861msgid ""
901"method by which ownership is exclusively transferred from one entity to " 862"method by which ownership is exclusively transferred from one entity to "
902"another\n" 863"another"
903msgstr "" 864msgstr ""
904 865
905#: glossary.html.j2:161 866#: glossary.html.j2:161
@@ -907,7 +868,7 @@ msgid "transaction id"
907msgstr "" 868msgstr ""
908 869
909#: glossary.html.j2:163 870#: glossary.html.j2:163
910msgid "unique number by which a merchant identifies a `transaction`\n" 871msgid "unique number by which a merchant identifies a `transaction`"
911msgstr "" 872msgstr ""
912 873
913#: glossary.html.j2:167 874#: glossary.html.j2:167
@@ -917,7 +878,7 @@ msgstr ""
917#: glossary.html.j2:169 878#: glossary.html.j2:169
918msgid "" 879msgid ""
919"software running on a customer's computer; withdraws, stores and spends " 880"software running on a customer's computer; withdraws, stores and spends "
920"coins\n" 881"coins"
921msgstr "" 882msgstr ""
922 883
923#: glossary.html.j2:173 884#: glossary.html.j2:173
@@ -925,7 +886,7 @@ msgid "wire transfer"
925msgstr "" 886msgstr ""
926 887
927#: glossary.html.j2:175 888#: glossary.html.j2:175
928msgid "see `transfer`\n" 889msgid "see `transfer`"
929msgstr "" 890msgstr ""
930 891
931#: glossary.html.j2:179 892#: glossary.html.j2:179
@@ -935,7 +896,7 @@ msgstr ""
935#: glossary.html.j2:181 896#: glossary.html.j2:181
936msgid "" 897msgid ""
937"subject of a wire `transfer`; usually a random string to uniquely " 898"subject of a wire `transfer`; usually a random string to uniquely "
938"identify the `transfer`\n" 899"identify the `transfer`"
939msgstr "" 900msgstr ""
940 901
941#: glossary.html.j2:185 902#: glossary.html.j2:185
@@ -945,7 +906,7 @@ msgstr ""
945#: glossary.html.j2:187 906#: glossary.html.j2:187
946msgid "" 907msgid ""
947"operation by which a `wallet` can convert funds from a reserve to fresh " 908"operation by which a `wallet` can convert funds from a reserve to fresh "
948"coins\n" 909"coins"
949msgstr "" 910msgstr ""
950 911
951#: governments.html.j2:6 912#: governments.html.j2:6
@@ -954,13 +915,12 @@ msgstr ""
954 915
955#: governments.html.j2:8 916#: governments.html.j2:8
956msgid "" 917msgid ""
957"Taler provides accountability to ensure business operate\n" 918"Taler provides accountability to ensure business operate legally, while "
958"legally, while also respecting civil liberties of\n" 919"also respecting civil liberties of citizens. Taler is a payment system "
959"citizens. Taler is a payment system based on\n" 920"based on open standards and free software. Taler needs governments as "
960"open standards and free software. Taler needs\n" 921"they set a financial framework and act as trusted regulators. Taler "
961"governments as they set a financial framework and act as\n" 922"contributes to digital sovereignty in the critical financial "
962"trusted regulators. Taler contributes to digital\n" 923"infrastructure."
963"sovereignty in the critical financial infrastructure.\n"
964msgstr "" 924msgstr ""
965 925
966#: governments.html.j2:25 index.html.j2:71 926#: governments.html.j2:25 index.html.j2:71
@@ -969,51 +929,44 @@ msgstr "Taxable"
969 929
970#: governments.html.j2:28 930#: governments.html.j2:28
971msgid "" 931msgid ""
972"Taler was built with the goal of fighting corruption and\n" 932"Taler was built with the goal of fighting corruption and supporting "
973"supporting taxation. With Taler, the receiver of any\n" 933"taxation. With Taler, the receiver of any form of payment is easily "
974"form of payment is easily identified by the government,\n" 934"identified by the government, and the merchant can be compelled to "
975"and the merchant can be compelled to provide the contract\n" 935"provide the contract that was accepted by the customer. Governments can "
976"that was accepted by the customer. Governments can use\n" 936"use this data to tax businesses and individuals based on their income, "
977"this data to tax businesses and individuals based on\n" 937"making tax evasion and black markets less viable."
978"their income, making tax evasion and black markets less\n"
979"viable.\n"
980msgstr "" 938msgstr ""
981 939
982#: governments.html.j2:41 940#: governments.html.j2:41
983msgid "" 941msgid ""
984"Thus, despite offering anonymity for citizens spending\n" 942"Thus, despite offering anonymity for citizens spending digital cash to "
985"digital cash to buy goods and services, Taler also\n" 943"buy goods and services, Taler also ensures that the state can observe "
986"ensures that the state can observe incoming funds. This\n" 944"incoming funds. This can be used to ensure businesses engage only in "
987"can be used to ensure businesses engage only in legal\n" 945"legal activities, and do not evade income tax, sales tax or value-added "
988"activities, and do not evade income tax, sales tax or\n" 946"tax. However, this observational capability does not extend to the "
989"value-added tax. However, this observational capability\n" 947"immediate personal domain. In particular, monitoring does not cover "
990"does not extend to the immediate personal domain. In\n" 948"shared access to funds with trusted friends and family, or synchronizing "
991"particular, monitoring does not cover shared access to\n" 949"wallets across multiple devices."
992"funds with trusted friends and family, or synchronizing\n"
993"wallets across multiple devices.\n"
994msgstr "" 950msgstr ""
995 951
996#: governments.html.j2:61 952#: governments.html.j2:61
997msgid "" 953msgid ""
998"Taler's payments are cryptographically secured. Thus,\n" 954"Taler's payments are cryptographically secured. Thus, customers, "
999"customers, merchants and the Taler payment service provider\n" 955"merchants and the Taler payment service provider (the exchange) can "
1000"(the exchange) can mathematically\n" 956"mathematically demonstrate their lawful behavior in court in case of "
1001"demonstrate their lawful behavior in court in case of\n" 957"disputes. Financial damages are strictly limited, improving economic "
1002"disputes. Financial damages are strictly limited,\n" 958"security for individuals, merchants, the exchange and the state."
1003"improving economic security for individuals, merchants,\n"
1004"the exchange and the state.\n"
1005msgstr "" 959msgstr ""
1006 960
1007#: governments.html.j2:73 961#: governments.html.j2:73
1008msgid "" 962msgid ""
1009"As a payment service provider, the Taler exchange is\n" 963"As a payment service provider, the Taler exchange is subject to financial"
1010"subject to financial regulation. Financial regulation and\n" 964" regulation. Financial regulation and regular audits are critical to "
1011"regular audits are critical to establish trust. In\n" 965"establish trust. In particular, the Taler design mandates the existence "
1012"particular, the Taler design mandates the existence of an\n" 966"of an independent auditor who checks cryptographic proofs that accumulate"
1013"independent auditor who checks cryptographic proofs that\n" 967" at the exchange to ensure that the escrow account is managed honestly. "
1014"accumulate at the exchange to ensure that the escrow\n" 968"This ensures that the exchange does not threaten the economy due to "
1015"account is managed honestly. This ensures that the\n" 969"fraud."
1016"exchange does not threaten the economy due to fraud.\n"
1017msgstr "" 970msgstr ""
1018 971
1019#: governments.html.j2:88 index.html.j2:97 972#: governments.html.j2:88 index.html.j2:97
@@ -1022,10 +975,9 @@ msgstr "Libre"
1022 975
1023#: governments.html.j2:91 976#: governments.html.j2:91
1024msgid "" 977msgid ""
1025"Taler is free software implementing an open protocol\n" 978"Taler is free software implementing an open protocol standard. Thus, "
1026"standard. Thus, Taler will enable competition and avoid\n" 979"Taler will enable competition and avoid the monopolization of payment "
1027"the monopolization of payment systems that threatens\n" 980"systems that threatens global political and financial stability today."
1028"global political and financial stability today.\n"
1029msgstr "" 981msgstr ""
1030 982
1031#: governments.html.j2:101 983#: governments.html.j2:101
@@ -1034,11 +986,9 @@ msgstr "Efficace"
1034 986
1035#: governments.html.j2:104 987#: governments.html.j2:104
1036msgid "" 988msgid ""
1037"Taler has an efficient design. Unlike\n" 989"Taler has an efficient design. Unlike Blockchain-based payment systems, "
1038"Blockchain-based payment systems, such as Bitcoin,\n" 990"such as Bitcoin, Taler will not threaten the availability of national "
1039"Taler will not threaten the availability of\n" 991"electric grids or (significantly) contribute to environmental pollution."
1040"national electric grids or (significantly)\n"
1041"contribute to environmental pollution.\n"
1042msgstr "" 992msgstr ""
1043 993
1044#: governments.html.j2:120 994#: governments.html.j2:120
@@ -1091,41 +1041,36 @@ msgstr ""
1091 1041
1092#: governments.html.j2:140 1042#: governments.html.j2:140
1093msgid "" 1043msgid ""
1094"Taler assumes governments can observe traditional wire transfers\n" 1044"Taler assumes governments can observe traditional wire transfers entering"
1095"entering and leaving the Taler payment system. Starting with the\n" 1045" and leaving the Taler payment system. Starting with the wire transfers, "
1096"wire transfers, governments can obtain:\n" 1046"governments can obtain:"
1097msgstr "" 1047msgstr ""
1098 1048
1099#: governments.html.j2:148 1049#: governments.html.j2:148
1100msgid "" 1050msgid ""
1101"The total amount of digital currency withdrawn by a\n" 1051"The total amount of digital currency withdrawn by a customer. The "
1102"customer. The government can impose limits on how much\n" 1052"government can impose limits on how much digital cash a customer can "
1103"digital cash a customer can withdraw within a\n" 1053"withdraw within a given time frame."
1104"given time frame.\n"
1105msgstr "" 1054msgstr ""
1106 1055
1107#: governments.html.j2:157 1056#: governments.html.j2:157
1108msgid "" 1057msgid "The income received by any merchant via the Taler system."
1109"The income received by any merchant via the Taler\n"
1110"system.\n"
1111msgstr "" 1058msgstr ""
1112 1059
1113#: governments.html.j2:164 1060#: governments.html.j2:164
1114msgid "" 1061msgid ""
1115"The exact details of the underlying contract that was\n" 1062"The exact details of the underlying contract that was signed between "
1116"signed between customer and merchant. However, this\n" 1063"customer and merchant. However, this information would typically not "
1117"information would typically not include the identity\n" 1064"include the identity of the customer."
1118"of the customer.\n"
1119msgstr "" 1065msgstr ""
1120 1066
1121#: governments.html.j2:174 1067#: governments.html.j2:174
1122msgid "" 1068msgid ""
1123"The amounts of digital coins legitimately withdrawn\n" 1069"The amounts of digital coins legitimately withdrawn by customers from the"
1124"by customers from the exchange, the value of\n" 1070" exchange, the value of non-redeemed digital coins in customer's wallets,"
1125"non-redeemed digital coins in customer's wallets, the\n" 1071" the value and corresponding wire details of deposit operations performed"
1126"value and corresponding wire details of deposit\n" 1072" by merchants with the exchange, and the income of the exchange from "
1127"operations performed by merchants with the exchange,\n" 1073"transaction fees."
1128"and the income of the exchange from transaction fees.\n"
1129msgstr "" 1074msgstr ""
1130 1075
1131#: index.html.j2:10 1076#: index.html.j2:10
@@ -1134,12 +1079,12 @@ msgstr ""
1134 1079
1135#: index.html.j2:13 1080#: index.html.j2:13
1136msgid "" 1081msgid ""
1137"GNU Taler is an electronic payment system under development at\n" 1082"GNU Taler is an electronic payment system under development at <a "
1138"<a href=\"http://www.inria.fr/\">Inria</a>. We expect to make it\n" 1083"href=\"http://www.inria.fr/\">Inria</a>. We expect to make it operational"
1139"operational in 2017. You can learn about Taler on this website,\n" 1084" in 2017. You can learn about Taler on this website, try the <a "
1140"try the <a href=\"https://demo.taler.net\">demo</a> and look at\n" 1085"href=\"https://demo.taler.net\">demo</a> and look at our <a "
1141"our <a href=\"https://docs.taler.net\">developer</a> and <a\n" 1086"href=\"https://docs.taler.net\">developer</a> and <a "
1142"href=\"https://api.taler.net\">API</a> documentation.\n" 1087"href=\"https://api.taler.net\">API</a> documentation."
1143msgstr "" 1088msgstr ""
1144 1089
1145#: index.html.j2:29 1090#: index.html.j2:29
@@ -1148,53 +1093,48 @@ msgstr ""
1148 1093
1149#: index.html.j2:32 1094#: index.html.j2:32
1150msgid "" 1095msgid ""
1151"Taler is easy to integrate with existing Web\n" 1096"Taler is easy to integrate with existing Web applications. Payments are "
1152"applications. Payments are cryptographically\n" 1097"cryptographically secured and are confirmed within milliseconds with "
1153"secured and are confirmed within milliseconds with\n" 1098"extremely low transaction costs."
1154"extremely low transaction costs.\n"
1155msgstr "" 1099msgstr ""
1156 1100
1157#: index.html.j2:45 1101#: index.html.j2:45
1158msgid "" 1102msgid ""
1159"Taler does not introduce a new currency. Taler\n" 1103"Taler does not introduce a new currency. Taler uses a digital wallet "
1160"uses a digital wallet storing coins and payment service\n" 1104"storing coins and payment service providers with escrow accounts in "
1161"providers with escrow accounts in existing currencies.\n" 1105"existing currencies. Thus, Taler's cryptographic coins correspond to "
1162"Thus, Taler's cryptographic coins correspond to existing\n" 1106"existing currencies, such as US Dollars, Euros or even Bitcoins."
1163"currencies, such as US Dollars, Euros or even Bitcoins.\n"
1164msgstr "" 1107msgstr ""
1165 1108
1166#: index.html.j2:59 1109#: index.html.j2:59
1167msgid "" 1110msgid ""
1168"By design Taler does not suffer from many classes\n" 1111"By design Taler does not suffer from many classes of security problems "
1169"of security problems such as phishing or counterfeit.\n" 1112"such as phishing or counterfeit. Thanks to its security features, Taler "
1170"Thanks to its security features, Taler never rejects a legitimate\n" 1113"never rejects a legitimate customer due to a fraud-detection false "
1171"customer due to a fraud-detection false positive.\n" 1114"positive."
1172msgstr "" 1115msgstr ""
1173 1116
1174#: index.html.j2:74 1117#: index.html.j2:74
1175msgid "" 1118msgid ""
1176"When using Taler, merchant's revenue is transparent for tax\n" 1119"When using Taler, merchant's revenue is transparent for tax collection "
1177"collection authorities. Unlike cash and most digital currencies,\n" 1120"authorities. Unlike cash and most digital currencies, Taler helps prevent"
1178"Taler helps prevent black markets. Taler is not suitable for\n" 1121" black markets. Taler is not suitable for illegal activities."
1179"illegal activities.\n"
1180msgstr "" 1122msgstr ""
1181 1123
1182#: index.html.j2:86 1124#: index.html.j2:86
1183msgid "" 1125msgid ""
1184"When you pay with Taler, your identity does not\n" 1126"When you pay with Taler, your identity does not have to be revealed. Just"
1185"have to be revealed. Just like\n" 1127" like payments in cash, nobody else can track how you spent your "
1186"payments in cash, nobody else can track how you\n" 1128"electronic money. However, you obtain a legally valid proof of payment."
1187"spent your electronic money. However, you obtain a\n"
1188"legally valid proof of payment.\n"
1189msgstr "" 1129msgstr ""
1190 1130
1191#: index.html.j2:100 1131#: index.html.j2:100
1192msgid "" 1132msgid ""
1193"Taler provides protocols and reference implementations that in\n" 1133"Taler provides protocols and reference implementations that in principle "
1194"principle enables anybody to run their own payment infrastructure,\n" 1134"enables anybody to run their own payment infrastructure, be it "
1195"be it individuals, organizations or whole countries. Since the\n" 1135"individuals, organizations or whole countries. Since the reference "
1196"reference implementation is a <a href=\"http://www.gnu.org/\">GNU</a>\n" 1136"implementation is a <a href=\"http://www.gnu.org/\">GNU</a> package, it "
1197"package, it will always remain free software.\n" 1137"will always remain free software."
1198msgstr "" 1138msgstr ""
1199 1139
1200#: index.html.j2:117 1140#: index.html.j2:117
@@ -1203,12 +1143,12 @@ msgstr ""
1203 1143
1204#: index.html.j2:118 1144#: index.html.j2:118
1205msgid "" 1145msgid ""
1206"<p>To pay with Taler, customers install an electronic wallet\n" 1146"<p>To pay with Taler, customers install an electronic wallet on their "
1207"on their device. Before the first payment, the wallet's balance must\n" 1147"device. Before the first payment, the wallet's balance must be charged in"
1208"be charged in the desired currency by some other means of payment.</p>\n" 1148" the desired currency by some other means of payment.</p> <p>Once the "
1209"<p>Once the wallet is charged, payments on websites take only one click,\n" 1149"wallet is charged, payments on websites take only one click, are never "
1210"are never falsely rejected by fraud detection and do not pose any risk\n" 1150"falsely rejected by fraud detection and do not pose any risk of phishing "
1211"of phishing or identity theft.</p>\n" 1151"or identity theft.</p>"
1212msgstr "" 1152msgstr ""
1213 1153
1214#: index.html.j2:128 1154#: index.html.j2:128
@@ -1217,11 +1157,11 @@ msgstr ""
1217 1157
1218#: index.html.j2:129 1158#: index.html.j2:129
1219msgid "" 1159msgid ""
1220"<p>To receive Taler payments, a merchant needs a bank account\n" 1160"<p>To receive Taler payments, a merchant needs a bank account in the "
1221"in the desired currency. We provide supporting software\n" 1161"desired currency. We provide supporting software in various programming "
1222"in various programming languages to make the integration painless.\n" 1162"languages to make the integration painless. The merchant's backend for "
1223"The merchant's backend for Taler transaction processing can run\n" 1163"Taler transaction processing can run on the merchant's premises or be "
1224"on the merchant's premises or be hosted by a third party.</p>\n" 1164"hosted by a third party.</p>"
1225msgstr "" 1165msgstr ""
1226 1166
1227#: index.html.j2:145 1167#: index.html.j2:145
@@ -1238,10 +1178,8 @@ msgstr ""
1238 1178
1239#: investors.html.j2:9 1179#: investors.html.j2:9
1240msgid "" 1180msgid ""
1241"We have created a company, Taler Systems SA in\n" 1181"We have created a company, Taler Systems SA in Luxembourg.<br> Please "
1242"Luxembourg.<br>\n" 1182"contact <tt>invest@taler.net</tt> if you want to invest in Taler."
1243"Please contact <tt>invest@taler.net</tt>\n"
1244"if you want to invest in Taler.\n"
1245msgstr "" 1183msgstr ""
1246 1184
1247#: investors.html.j2:24 1185#: investors.html.j2:24
@@ -1251,20 +1189,17 @@ msgstr ""
1251#: investors.html.j2:27 1189#: investors.html.j2:27
1252msgid "" 1190msgid ""
1253"Our <a href=\"about.html\">team</a> combines world-class business " 1191"Our <a href=\"about.html\">team</a> combines world-class business "
1254"leaders,\n" 1192"leaders, cryptographers, software engineers, civil-rights activists and "
1255"cryptographers, software engineers, civil-rights\n" 1193"academics. We are unified by a vision of how payments should work and the"
1256"activists and academics. We are unified by a vision\n" 1194" goal of imposing this vision upon the world."
1257"of how payments should work and the goal of\n"
1258"imposing this vision upon the world.\n"
1259msgstr "" 1195msgstr ""
1260 1196
1261#: investors.html.j2:37 1197#: investors.html.j2:37
1262msgid "" 1198msgid ""
1263"We are currently supported by <a href=\"http://www.inria.fr/\">Inria</a>," 1199"We are currently supported by <a href=\"http://www.inria.fr/\">Inria</a>,"
1264" the French\n" 1200" the French national institute for research in informatics and "
1265"national institute for research in informatics and\n"
1266"automation, and the <a href=\"https://renewablefreedom.org/\">Renewable " 1201"automation, and the <a href=\"https://renewablefreedom.org/\">Renewable "
1267"Freedom Foundation</a>.\n" 1202"Freedom Foundation</a>."
1268msgstr "" 1203msgstr ""
1269 1204
1270#: investors.html.j2:45 1205#: investors.html.j2:45
@@ -1274,16 +1209,13 @@ msgstr ""
1274#: investors.html.j2:48 1209#: investors.html.j2:48
1275msgid "" 1210msgid ""
1276"All transactions in Taler are secured using <a " 1211"All transactions in Taler are secured using <a "
1277"href=\"bibliography.html\">modern\n" 1212"href=\"bibliography.html\">modern cryptography</a> and trust in all "
1278"cryptography</a> and trust in all parties is\n" 1213"parties is minimized. Financial damage is bounded (for customers, "
1279"minimized. Financial damage is bounded (for\n" 1214"merchants and the exchange) even in the case that systems are compromised"
1280"customers, merchants and the exchange) even in the\n" 1215" and private keys are stolen. Databases can be audited for consistency, "
1281"case that systems are compromised and private keys\n" 1216"resulting in either the detection of compromised systems or the "
1282"are stolen. Databases can be audited for\n" 1217"demonstration that participants were honest. Actual transaction costs are"
1283"consistency, resulting in either the detection of\n" 1218" fractions of a cent."
1284"compromised systems or the demonstration that\n"
1285"participants were honest. Actual transaction costs\n"
1286"are fractions of a cent.\n"
1287msgstr "" 1219msgstr ""
1288 1220
1289#: investors.html.j2:63 1221#: investors.html.j2:63
@@ -1292,15 +1224,13 @@ msgstr ""
1292 1224
1293#: investors.html.j2:66 1225#: investors.html.j2:66
1294msgid "" 1226msgid ""
1295"The scalable business model for Taler is the operation\n" 1227"The scalable business model for Taler is the operation of the payment "
1296"of the payment service provider, which converts money from\n" 1228"service provider, which converts money from traditional payment systems "
1297"traditional payment systems (MasterCard, SEPA, UPI,\n" 1229"(MasterCard, SEPA, UPI, Visa, Bitcoin, ACH, SWIFT, etc.) to anonymous "
1298"Visa, Bitcoin, ACH, SWIFT, etc.) to anonymous\n" 1230"electronic coins in the same currency. The customer can then redeem the "
1299"electronic coins in the same currency. The customer\n" 1231"electronic coins at a merchant, who can exchange them for money "
1300"can then redeem the electronic coins at a merchant,\n" 1232"represented using traditional payment systems at the exchange. The "
1301"who can exchange them for money represented using\n" 1233"exchange charges fees to facilitate the transactions."
1302"traditional payment systems at the exchange. The\n"
1303"exchange charges fees to facilitate the transactions.\n"
1304msgstr "" 1234msgstr ""
1305 1235
1306#: investors.html.j2:85 1236#: investors.html.j2:85
@@ -1313,10 +1243,10 @@ msgstr ""
1313 1243
1314#: investors.html.j2:110 1244#: investors.html.j2:110
1315msgid "" 1245msgid ""
1316"The payment service operator runs the <em>Taler exchange</em>.\n" 1246"The payment service operator runs the <em>Taler exchange</em>. The "
1317"The exchange charges <b>transaction fees</b> to customers or merchants.\n" 1247"exchange charges <b>transaction fees</b> to customers or merchants. Its "
1318"Its operational expenses are from wire transfers with the banking\n" 1248"operational expenses are from wire transfers with the banking system and "
1319"system and the operation of the computing infrastructure.\n" 1249"the operation of the computing infrastructure."
1320msgstr "" 1250msgstr ""
1321 1251
1322#: investors.html.j2:120 1252#: investors.html.j2:120
@@ -1351,11 +1281,10 @@ msgstr ""
1351 1281
1352#: merchants.html.j2:8 1282#: merchants.html.j2:8
1353msgid "" 1283msgid ""
1354"Taler is a cost-effective electronic payment system\n" 1284"Taler is a cost-effective electronic payment system which provides you "
1355"which provides you with cryptographic proof that\n" 1285"with cryptographic proof that the payment worked correctly within "
1356"the payment worked correctly within milliseconds.\n" 1286"milliseconds. Your Web customers pay with previously unknown levels of "
1357"Your Web customers pay with previously unknown\n" 1287"convenience without risk of fraud."
1358"levels of convenience without risk of fraud.\n"
1359msgstr "" 1288msgstr ""
1360 1289
1361#: merchants.html.j2:22 1290#: merchants.html.j2:22
@@ -1364,39 +1293,32 @@ msgstr "Rapide"
1364 1293
1365#: merchants.html.j2:25 1294#: merchants.html.j2:25
1366msgid "" 1295msgid ""
1367"Processing transactions with Taler is fast,\n" 1296"Processing transactions with Taler is fast, allowing you to confirm the "
1368"allowing you to confirm the transaction with your\n" 1297"transaction with your customer virtually immediately. Your customers will"
1369"customer virtually immediately. Your customers\n" 1298" appreciate that they do not have to type in credit card information and "
1370"will appreciate that they do not have to type in\n" 1299"play the &quot;verified by&quot; game. By making payments significantly "
1371"credit card information and play the &quot;verified\n" 1300"more convenient for your customers, you may be able to use Taler for "
1372"by&quot; game. By making payments significantly\n" 1301"small transactions that would not work with credit card payments due to "
1373"more convenient for your customers, you may be able\n" 1302"the mental overhead for customers."
1374"to use Taler for small transactions that would not\n"
1375"work with credit card payments due to the mental\n"
1376"overhead for customers.\n"
1377msgstr "" 1303msgstr ""
1378 1304
1379#: merchants.html.j2:44 1305#: merchants.html.j2:44
1380msgid "" 1306msgid ""
1381"You will have cryptographic proof of payment from the\n" 1307"You will have cryptographic proof of payment from the Taler payment "
1382"Taler payment service provider. With Taler you never\n" 1308"service provider. With Taler you never handle sensitive customer account "
1383"handle sensitive customer account information and thus\n" 1309"information and thus do not have to undergo any particular security "
1384"do not have to undergo any particular security audits\n" 1310"audits (such as PCI DSS). Your systems will have customer contracts with "
1385"(such as PCI DSS). Your systems will have customer\n" 1311"qualified signatures for all transactions which you can use in court in "
1386"contracts with qualified signatures for all\n" 1312"case of disputes."
1387"transactions which you can use in court in case of\n"
1388"disputes.\n"
1389msgstr "" 1313msgstr ""
1390 1314
1391#: merchants.html.j2:61 1315#: merchants.html.j2:61
1392msgid "" 1316msgid ""
1393"Taler is free software, and you can use the\n" 1317"Taler is free software, and you can use the liberally-licensed reference "
1394"liberally-licensed reference code as a starting\n" 1318"code as a starting point to integrate Taler into your services. To use "
1395"point to integrate Taler into your services. To use\n" 1319"Taler, you do not need to pay license fees, and the free software "
1396"Taler, you do not need to pay license fees, and the\n" 1320"development model will ensure that you can select from many competing "
1397"free software development model will ensure that\n" 1321"integrators for support."
1398"you can select from many competing integrators for\n"
1399"support.\n"
1400msgstr "" 1322msgstr ""
1401 1323
1402#: merchants.html.j2:76 1324#: merchants.html.j2:76
@@ -1405,11 +1327,10 @@ msgstr ""
1405 1327
1406#: merchants.html.j2:79 1328#: merchants.html.j2:79
1407msgid "" 1329msgid ""
1408"Taler is uses efficient cryptographic constructions with low\n" 1330"Taler is uses efficient cryptographic constructions with low bandwidth "
1409"bandwidth and storage requirements. Combined with Taler's strong\n" 1331"and storage requirements. Combined with Taler's strong security which "
1410"security which makes fraud impossible, Taler payment service\n" 1332"makes fraud impossible, Taler payment service providers can operate with "
1411"providers can operate with very low overhead and\n" 1333"very low overhead and thus offer low transaction fees."
1412"thus offer low transaction fees.\n"
1413msgstr "" 1334msgstr ""
1414 1335
1415#: merchants.html.j2:89 1336#: merchants.html.j2:89
@@ -1418,10 +1339,9 @@ msgstr "Flexible"
1418 1339
1419#: merchants.html.j2:92 1340#: merchants.html.j2:92
1420msgid "" 1341msgid ""
1421"Taler can be used for different currencies (such as\n" 1342"Taler can be used for different currencies (such as Euros, US Dollars or "
1422"Euros, US Dollars or Bitcoins) and any amount, limited\n" 1343"Bitcoins) and any amount, limited only by applicable regulatation and "
1423"only by applicable regulatation and what denominations\n" 1344"what denominations the payment service provider supports."
1424"the payment service provider supports.\n"
1425msgstr "" 1345msgstr ""
1426 1346
1427#: merchants.html.j2:101 1347#: merchants.html.j2:101
@@ -1430,11 +1350,10 @@ msgstr "Ethique"
1430 1350
1431#: merchants.html.j2:104 1351#: merchants.html.j2:104
1432msgid "" 1352msgid ""
1433"Taler prevents tax evasion and money laundering.\n" 1353"Taler prevents tax evasion and money laundering. Taler's protocols are "
1434"Taler's protocols are efficient and do not use wasteful\n" 1354"efficient and do not use wasteful proof-of-work calculations. Taler "
1435"proof-of-work calculations. Taler encourages\n" 1355"encourages transparency by providing an open standard and free software "
1436"transparency by providing an open standard and free\n" 1356"reference implementations."
1437"software reference implementations.\n"
1438msgstr "" 1357msgstr ""
1439 1358
1440#: merchants.html.j2:119 1359#: merchants.html.j2:119
@@ -1464,28 +1383,25 @@ msgstr ""
1464 1383
1465#: merchants.html.j2:147 1384#: merchants.html.j2:147
1466msgid "" 1385msgid ""
1467"The backend <b>signs</b> and <b>stores</b> the\n" 1386"The backend <b>signs</b> and <b>stores</b> the complete terms of offers "
1468"complete terms of offers made by the merchant to customers.\n" 1387"made by the merchant to customers. For this, the merchant's frontend "
1469"For this, the merchant's frontend needs to give the\n" 1388"needs to give the customer's order in a JSON format to the backend."
1470"customer's order in a JSON format to the backend.\n"
1471msgstr "" 1389msgstr ""
1472 1390
1473#: merchants.html.j2:156 1391#: merchants.html.j2:156
1474msgid "" 1392msgid ""
1475"The backend <b>validates</b> payments received from\n" 1393"The backend <b>validates</b> payments received from the wallet and "
1476"the wallet and <b>executes</b> them with the Taler\n" 1394"<b>executes</b> them with the Taler payment service provider (the "
1477"payment service provider (the exchange). For this,\n" 1395"exchange). For this, the merchant's frontend must pass the payment "
1478"the merchant's frontend must pass the payment\n" 1396"request through to the Taler backend and check the HTTP status code that "
1479"request through to the Taler backend and check the\n" 1397"is returned."
1480"HTTP status code that is returned.\n"
1481msgstr "" 1398msgstr ""
1482 1399
1483#: merchants.html.j2:167 1400#: merchants.html.j2:167
1484msgid "" 1401msgid ""
1485"The backend can <b>list</b> completed transactions\n" 1402"The backend can <b>list</b> completed transactions and <b>map</b> wire "
1486"and <b>map</b> wire transfers to sets of business\n" 1403"transfers to sets of business transactions, including the exact terms of "
1487"transactions, including the exact terms of each\n" 1404"each contract."
1488"contract.\n"
1489msgstr "" 1405msgstr ""
1490 1406
1491#: press.html.j2:4 1407#: press.html.j2:4
@@ -1707,3 +1623,1001 @@ msgstr ""
1707#~ msgid "Low Fees" 1623#~ msgid "Low Fees"
1708#~ msgstr "Faible Coût " 1624#~ msgstr "Faible Coût "
1709 1625
1626#~ msgid ""
1627#~ "Taler largely functions like digital "
1628#~ "cash. You withdraw money from your "
1629#~ "bank account into your electronic "
1630#~ "wallet, and can henceforth spend digital"
1631#~ " cash. The electronic wallet can "
1632#~ "carry multiple currencies. "
1633#~ msgstr ""
1634
1635#~ msgid ""
1636#~ "Taler uses modern cryptography, ensuring "
1637#~ "that there is no counterfeit. Your "
1638#~ "digital wallet is safer than your "
1639#~ "physical wallet. At most, you can "
1640#~ "lose its contents because your computer"
1641#~ " or mobile is irreparably damaged or"
1642#~ " compromised. Unlike a physical wallet,"
1643#~ " you can make backups to secure "
1644#~ "against data loss."
1645#~ msgstr ""
1646
1647#~ msgid ""
1648#~ "You will be able to withdraw money"
1649#~ " to replenish the digital coins in"
1650#~ " your wallet using your credit card"
1651#~ " or wire transfers. Afterwards you "
1652#~ "can pay with one-click using the"
1653#~ " Taler wallet, which optionally keeps "
1654#~ "your transaction history on your "
1655#~ "computer."
1656#~ msgstr ""
1657
1658#~ msgid ""
1659#~ "Coins in your digital wallet will "
1660#~ "be of the same denomination as the"
1661#~ " cash in your physical wallet. Taler"
1662#~ " is not a crypto-currency, so "
1663#~ "you do not have to worry about "
1664#~ "cryto-currency related value fluctuations."
1665#~ " Banking with Taler is subject to"
1666#~ " the usual government protections for "
1667#~ "financial services."
1668#~ msgstr ""
1669
1670#~ msgid ""
1671#~ "We currently provide a <a "
1672#~ "href=\"wallet.html\">wallet browser extension</a> "
1673#~ "for Chromium, Chrome, Firefox, Opera and"
1674#~ " Edge. Wallets for mobile phones and"
1675#~ " other platforms will be available in"
1676#~ " the future. "
1677#~ msgstr ""
1678
1679#~ msgid ""
1680#~ "You can see how Taler works in "
1681#~ "practice by visiting our <a "
1682#~ "href=\"https://demo.taler.net\">demo page</a>. "
1683#~ msgstr ""
1684
1685#~ msgid ""
1686#~ "To <b>withdraw</b> electronic coins, the "
1687#~ "customer transfers funds from his bank"
1688#~ " account to the Taler payment service"
1689#~ " provider (the exchange). The wire "
1690#~ "transfer subject must match a code "
1691#~ "identifying the customer's wallet. After "
1692#~ "the wire transfer is complete, the "
1693#~ "wallet will automatically withdraw the "
1694#~ "coins from the exchange."
1695#~ msgstr ""
1696
1697#~ msgid ""
1698#~ "To <b>spend</b> electronic coins, a "
1699#~ "merchant must cause the wallet to "
1700#~ "display a proposal for some purchase."
1701#~ " The wallet will ask the customer"
1702#~ " for one-click confirmation. Payment "
1703#~ "is then instant. Transaction histories "
1704#~ "and digitally signed contracts can be"
1705#~ " preserved by the wallet."
1706#~ msgstr ""
1707
1708#~ msgid ""
1709#~ "An archived, public mailing list for "
1710#~ "GNU Taler is hosted at <a "
1711#~ "href=\"https://lists.gnu.org/mailman/listinfo/taler\">https://lists.gnu.org/mailman/listinfo/taler</a>."
1712#~ " You can send messages to the "
1713#~ "list at <a "
1714#~ "href=\"mailto:taler@gnu.org\">taler@gnu.org</a>. "
1715#~ msgstr ""
1716
1717#~ msgid ""
1718#~ "Team members are generally reachable at"
1719#~ " <tt>LASTNAME@taler.net</tt>. All of us "
1720#~ "support receiving GnuPG encrypted e-mails. \n"
1721#~ msgstr ""
1722
1723#~ msgid ""
1724#~ "We track open feature requests and "
1725#~ "bugs in our <a "
1726#~ "href=\"https://gnunet.org/bugs/\">Bug tracker</a>, which"
1727#~ " is shared with the GNUnet project."
1728#~ " You can also report bugs or "
1729#~ "feature requests to the mailing list."
1730#~ " "
1731#~ msgstr ""
1732
1733#~ msgid ""
1734#~ "For non-technical commercial requests, "
1735#~ "please contact <tt>ceo AT taler.net</tt>. \n"
1736#~ msgstr ""
1737
1738#~ msgid ""
1739#~ "GNU Taler is free software implementing"
1740#~ " an open protocol. Anybody is welcome"
1741#~ " to integrate our reference implementation"
1742#~ " into their applications. Different "
1743#~ "components of Taler are being made "
1744#~ "available under different licenses. The "
1745#~ "Affero GPLv3+ is used for the "
1746#~ "exchange, the LGPLv3+ is used for "
1747#~ "reference code demonstrating integration with"
1748#~ " merchant platforms, and licenses like "
1749#~ "GPLv3+ are used for wallets and "
1750#~ "related customer-facing software. We "
1751#~ "are open for constructive suggestions "
1752#~ "for maximizing the adoption of this "
1753#~ "payment platform. "
1754#~ msgstr ""
1755
1756#~ msgid ""
1757#~ "Taler is designed to work on the"
1758#~ " Internet. To ensure that Taler "
1759#~ "payments can work with restrictive "
1760#~ "network setups, Taler uses a RESTful "
1761#~ "protocol over HTTP or HTTPS. Taler's "
1762#~ "security does not depend upon the "
1763#~ "use of HTTPS, but obviously merchants"
1764#~ " may choose to offer HTTPS for "
1765#~ "consistency and because it generally is"
1766#~ " better for privacy compared to HTTP."
1767#~ " Taler uses JSON to encode structure"
1768#~ " data, making it easy to integrate"
1769#~ " Taler with existing Web applications. "
1770#~ "Taler's protocol is documented in detail"
1771#~ " at <a "
1772#~ "href=\"https://api.taler.net/\">api.taler.net</a>. "
1773#~ msgstr ""
1774
1775#~ msgid ""
1776#~ "Taler is currently primarily developed "
1777#~ "by a research team at <a "
1778#~ "href=\"http://www.inria.fr/\">Inria</a> and <a "
1779#~ "href=\"https://gnunet.org/\">GNUnet</a>. However, "
1780#~ "contributions from anyone are welcome. "
1781#~ "Our Git repositories can be cloned "
1782#~ "using the Git and HTTP access "
1783#~ "methods against <tt>git.taler.net</tt> with "
1784#~ "the name of the respective repository."
1785#~ " A list of repositories can be "
1786#~ "found in our <a "
1787#~ "href=\"https://git.taler.net/\">GitWeb</a>. "
1788#~ msgstr ""
1789
1790#~ msgid ""
1791#~ "In addition to this website, the "
1792#~ "<a href=\"https://git.taler.net/\">documented code</a> "
1793#~ "and the <a href=\"https://api.taler.net/\">API "
1794#~ "documentation</a>. Technical papers can be"
1795#~ " found in our <a "
1796#~ "href=\"bibliography.html\">bibliography</a>. "
1797#~ msgstr ""
1798
1799#~ msgid ""
1800#~ "We have a mailing list for "
1801#~ "developer discussions. You can subscribe "
1802#~ "to or read the list archive at "
1803#~ "<a "
1804#~ "href=\"http://lists.gnu.org/mailman/listinfo/taler\">http://lists.gnu.org/mailman/listinfo/taler</a>."
1805#~ " "
1806#~ msgstr ""
1807
1808#~ msgid ""
1809#~ "We have <a "
1810#~ "href=\"https://buildbot.net/\">Buildbot</a> automation "
1811#~ "tests to detect regressions and check"
1812#~ " for portability at <a "
1813#~ "href=\"https://buildbot.taler.net/\">buildbot.taler.net</a>. "
1814#~ msgstr ""
1815
1816#~ msgid ""
1817#~ "We use <a "
1818#~ "href=\"http://ltp.sourceforge.net/coverage/lcov.php\">LCOV</a> "
1819#~ "to analyze the code coverage of "
1820#~ "our tests, the results are available "
1821#~ "at <a href=\"https://lcov.taler.net/\">lcov.taler.net</a>."
1822#~ " "
1823#~ msgstr ""
1824
1825#~ msgid ""
1826#~ "We use <a "
1827#~ "href=\"https://gnunet.org/gauger\">Gauger</a> for "
1828#~ "performance regression analysis of the "
1829#~ "exchange backend at <a "
1830#~ "href=\"https://gauger.taler.net/\">gauger.taler.net</a>. "
1831#~ msgstr ""
1832
1833#~ msgid ""
1834#~ "The Taler system consists of protocols"
1835#~ " executed among a number of actors"
1836#~ " as illustrated in the illustration "
1837#~ "on the right. Typical transactions "
1838#~ "involve the following steps: "
1839#~ msgstr ""
1840
1841#~ msgid ""
1842#~ "A customer instructs his <b>bank</b> to"
1843#~ " transfer funds from his account to"
1844#~ " the Taler exchange (top left). In"
1845#~ " the subject of the transaction, he"
1846#~ " includes an authentication token from "
1847#~ "his electronic <b>wallet</b>. In Taler "
1848#~ "terminology, the customer creates a "
1849#~ "reserve at the exchange. "
1850#~ msgstr ""
1851
1852#~ msgid ""
1853#~ "Once the exchange has received the "
1854#~ "wire transfer, it allows the customer's"
1855#~ " electronic wallet to <b>withdraw</b> "
1856#~ "electronic coins. The electronic coins "
1857#~ "are digital representations of the "
1858#~ "original currency from the transfer. It"
1859#~ " is important to note that the "
1860#~ "exchange does not learn the &quot;serial"
1861#~ " numbers&quot; of the coins created "
1862#~ "in this process, so it cannot tell"
1863#~ " later which customer purchased what "
1864#~ "at which merchant. The use of "
1865#~ "Taler does not change the currency "
1866#~ "or the total value of the funds"
1867#~ " (except for fees which the exchange"
1868#~ " may charge for the service). "
1869#~ msgstr ""
1870
1871#~ msgid ""
1872#~ "Once the customer has the digital "
1873#~ "coins in his wallet, the wallet "
1874#~ "can be used to <b>spend</b> the "
1875#~ "coins with merchant portals that support"
1876#~ " the Taler payment system and accept"
1877#~ " the respective exchange as a "
1878#~ "business partner (bottom arrow). This "
1879#~ "creates a digital contract signed by "
1880#~ "the customer's coins and the merchant."
1881#~ " If necessary, the customer can "
1882#~ "later use this digitally signed contract"
1883#~ " in a court of law to prove "
1884#~ "the exact terms of the contract "
1885#~ "and that he paid the respective "
1886#~ "amount. The customer does not learn "
1887#~ "the banking details of the merchant, "
1888#~ "and Taler does not require the "
1889#~ "merchant to learn the identity of "
1890#~ "the customer. Naturally, the customer "
1891#~ "can spend any fraction of his "
1892#~ "digital coins (the system takes care "
1893#~ "of customers getting change). "
1894#~ msgstr ""
1895
1896#~ msgid ""
1897#~ "Merchants receiving digital coins "
1898#~ "<b>deposit</b> the respective claims that "
1899#~ "resulted from the contract signing with"
1900#~ " the customer at the exchange to "
1901#~ "redeem the coins. The deposit step "
1902#~ "does not reveal the details of the"
1903#~ " contract between the customer and "
1904#~ "the merchant or the identity of "
1905#~ "the customer to the exchange in "
1906#~ "any way. However, the exchange does "
1907#~ "learn the identity of the merchant "
1908#~ "via the provided bank routing "
1909#~ "information. The merchant can, for "
1910#~ "example when compelled by the state "
1911#~ "for taxation, provide information linking "
1912#~ "the individual deposit to the respective"
1913#~ " contract signed by the customer. "
1914#~ "Thus, the exchange's database allows the"
1915#~ " state to enforce that merchants pay"
1916#~ " applicable taxes (and do not engage"
1917#~ " in illegal contracts). "
1918#~ msgstr ""
1919
1920#~ msgid ""
1921#~ "Finally, the exchange transfers funds "
1922#~ "corresponding to the digital coins "
1923#~ "redeemed by the merchants to the "
1924#~ "merchant's <b>bank</b> account. The exchange"
1925#~ " may combine multiple small transactions"
1926#~ " into one larger bank transfer. The"
1927#~ " merchant can query the exchange "
1928#~ "about the relationship between the bank"
1929#~ " transfers and the individual claims "
1930#~ "that were deposited. "
1931#~ msgstr ""
1932
1933#~ msgid ""
1934#~ "Most importantly, the exchange keeps "
1935#~ "cryptographic proofs that allow it to"
1936#~ " demonstrate that it is operating "
1937#~ "correctly to third parties. The system"
1938#~ " requires an external <b>auditor</b>, such"
1939#~ " as a government-appointed financial "
1940#~ "regulatory body, to frequently verify "
1941#~ "the exchange's databases and check that"
1942#~ " its bank balance matches the total"
1943#~ " value of the remaining coins in "
1944#~ "circulation. "
1945#~ msgstr ""
1946
1947#~ msgid ""
1948#~ "Without the auditor, the exchange "
1949#~ "operators could embezzle funds they are"
1950#~ " holding in reserve. Customers and "
1951#~ "merchants cannot cheat each other or "
1952#~ "the exchange. If any party's computers"
1953#~ " are compromised, the financial damage "
1954#~ "is limited to the respective party "
1955#~ "and proportional to the funds they "
1956#~ "have in circulation during the period"
1957#~ " of the compromise. "
1958#~ msgstr ""
1959
1960#~ msgid ""
1961#~ "<p>Taler does not use any Blockchain "
1962#~ "technology or Bitcoin directly. Taler is"
1963#~ " not based on proof-of-work or"
1964#~ " any other distributed consensus mechanism."
1965#~ " Instead Taler is based on blind "
1966#~ "signatures.</p> "
1967#~ msgstr ""
1968
1969#~ msgid ""
1970#~ "<p>It would be possible, however, to "
1971#~ "withdraw coins denominated in Bitcoin "
1972#~ "into a Taler wallet (with an "
1973#~ "appropriate exchange), which would give "
1974#~ "some benefits over plain Bitcoin, such"
1975#~ " as instant confirmation times.</p> "
1976#~ msgstr ""
1977
1978#~ msgid ""
1979#~ "<p>Your wallet stores digital coins and"
1980#~ " thus ultimately your computer holds "
1981#~ "your balance. The exchange keeps funds"
1982#~ " matching all unspent coins in an "
1983#~ "escrow bank account.</p> "
1984#~ msgstr ""
1985
1986#~ msgid ""
1987#~ "<p>Since the digital coins of value "
1988#~ "in your wallet are anonymized, the "
1989#~ "exchange can not assist you in "
1990#~ "recovering a lost or stolen wallet. "
1991#~ "Just like with a physical wallet "
1992#~ "for cash, you are responsible for "
1993#~ "keeping it safe.</p> "
1994#~ msgstr ""
1995
1996#~ msgid ""
1997#~ "<p>The risk of losing a wallet can"
1998#~ " be mitigated by making backups or"
1999#~ " keeping the balance reasonably low.</p>"
2000#~ " "
2001#~ msgstr ""
2002
2003#~ msgid ""
2004#~ "<p>In case of a compromise of one"
2005#~ " of your devices, an attacker can "
2006#~ "spend coins from your wallet. Checking"
2007#~ " your balance might reveal to you "
2008#~ "that your device has been "
2009#~ "compromised.</p> "
2010#~ msgstr ""
2011
2012#~ msgid ""
2013#~ "<p>If your friend provides goods or "
2014#~ "services for you in exchange for a"
2015#~ " payment, they can easily set up "
2016#~ "a Taler merchant and receive the "
2017#~ "payment in their bank account.</p> "
2018#~ msgstr ""
2019
2020#~ msgid ""
2021#~ "<p>Future versions of the Taler wallet"
2022#~ " may allow exchanging coins among "
2023#~ "friends directly as well.</p> "
2024#~ msgstr ""
2025
2026#~ msgid ""
2027#~ "<p>Taler wallets can store digital coins"
2028#~ " corresponding to multiple different "
2029#~ "currencies such as the Euro, US "
2030#~ "Dollars or Bitcoins.</p> "
2031#~ msgstr ""
2032
2033#~ msgid "<p>Taler currently does not offer conversion between currencies.</p> "
2034#~ msgstr ""
2035
2036#~ msgid ""
2037#~ "<p>Your wallet stores digital coins that"
2038#~ " are <a "
2039#~ "href=\"https://en.wikipedia.org/wiki/Blind_signature\">blindly "
2040#~ "signed</a> by an exchange. The use "
2041#~ "of a blind signature protects your "
2042#~ "privacy as it prevents the exchange "
2043#~ "from knowing which coin it signed "
2044#~ "for which customer.</p> "
2045#~ msgstr ""
2046
2047#~ msgid ""
2048#~ "trusted third party that verifies that"
2049#~ " the `exchange` is operating correctly \n"
2050#~ msgstr ""
2051
2052#~ msgid ""
2053#~ "traditional financial service provider who "
2054#~ "offers wire `transfers` between accounts \n"
2055#~ msgstr ""
2056
2057#~ msgid ""
2058#~ "coins are individual token representing "
2059#~ "a certain amount of value, also "
2060#~ "known as the `denomination` of the "
2061#~ "coin "
2062#~ msgstr ""
2063
2064#~ msgid "the proposal signed by the wallet. "
2065#~ msgstr ""
2066
2067#~ msgid ""
2068#~ "unit of currency, specifies both the "
2069#~ "currency and the face value of a"
2070#~ " `coin` "
2071#~ msgstr ""
2072
2073#~ msgid ""
2074#~ "RSA key used by the exchange to"
2075#~ " certify that a given `coin` is "
2076#~ "valid and of a particular `denomination`"
2077#~ " "
2078#~ msgstr ""
2079
2080#~ msgid ""
2081#~ "operation by which a merchant passes "
2082#~ "coins to an exchange, expecting the "
2083#~ "exchange to credit his `bank` account"
2084#~ " in the future using a wire "
2085#~ "`transfer` "
2086#~ msgstr ""
2087
2088#~ msgid ""
2089#~ "a `coin` is dirty if its public"
2090#~ " key may be known to an entity"
2091#~ " other than the customer, thereby "
2092#~ "creating the danger of some entity "
2093#~ "being able to link multiple transactions"
2094#~ " of coin's owner if the coin is"
2095#~ " not refreshed first "
2096#~ msgstr ""
2097
2098#~ msgid ""
2099#~ "Taler's payment service provider. Issues "
2100#~ "eletronic `coins` during `withdrawal` and "
2101#~ "redeems them when they are `deposited`"
2102#~ " by merchants. "
2103#~ msgstr ""
2104
2105#~ msgid "implementation of a `wallet` for browsers "
2106#~ msgstr ""
2107
2108#~ msgid "a `coin` is fresh if its public key is only known to the customer "
2109#~ msgstr ""
2110
2111#~ msgid ""
2112#~ "offline key used by the exchange "
2113#~ "to certify denomination keys and message"
2114#~ " signing keys "
2115#~ msgstr ""
2116
2117#~ msgid "key used by the exchange to sign online messages, other than coins "
2118#~ msgstr ""
2119
2120#~ msgid ""
2121#~ "specification of the details of a "
2122#~ "transaction, specifies the payment obligations"
2123#~ " for the customer (i.e. the amount),"
2124#~ " the deliverables of the merchant and"
2125#~ " other related information, such as "
2126#~ "deadlines or locations; However, it "
2127#~ "lacks some information that the backend"
2128#~ " is supposed to provide. In other "
2129#~ "words, after the backend adds the "
2130#~ "missing information to the offer and "
2131#~ "signs it, it becomes a proposal. "
2132#~ msgstr ""
2133
2134#~ msgid "a `coin` is owned by the entity that knows the private key of the coin "
2135#~ msgstr ""
2136
2137#~ msgid ""
2138#~ "message that cryptographically demonstrates "
2139#~ "that a particular claim is correct \n"
2140#~ msgstr ""
2141
2142#~ msgid "a sketch that has been completed and signed by the merchant backend. "
2143#~ msgstr ""
2144
2145#~ msgid ""
2146#~ "funds set aside for future use; "
2147#~ "either the balance of a customer "
2148#~ "at the exchange ready for `withdrawal`,"
2149#~ " or the funds kept in the "
2150#~ "exchange's bank account to cover "
2151#~ "obligations from coins in circulation "
2152#~ msgstr ""
2153
2154#~ msgid ""
2155#~ "operation by which a `dirty` `coin` "
2156#~ "is converted into one or more "
2157#~ "`fresh` coins "
2158#~ msgstr ""
2159
2160#~ msgid ""
2161#~ "operation by which a merchant steps "
2162#~ "back from the right to funds that"
2163#~ " he obtained from a `deposit` "
2164#~ "operation, giving the right to the "
2165#~ "funds back to the customer "
2166#~ msgstr ""
2167
2168#~ msgid ""
2169#~ "users can share ownership of a "
2170#~ "`coin` by sharing access to the "
2171#~ "coin's private key, thereby allowing all"
2172#~ " co-owners to spend the coin at"
2173#~ " any time. "
2174#~ msgstr ""
2175
2176#~ msgid "see message signing key. "
2177#~ msgstr ""
2178
2179#~ msgid ""
2180#~ "operation by which a customer gives "
2181#~ "a merchant the right to `deposit` "
2182#~ "coins in return for merchandise "
2183#~ msgstr ""
2184
2185#~ msgid "method of sending funds between `bank` accounts "
2186#~ msgstr ""
2187
2188#~ msgid ""
2189#~ "method by which ownership is exclusively"
2190#~ " transferred from one entity to "
2191#~ "another "
2192#~ msgstr ""
2193
2194#~ msgid "unique number by which a merchant identifies a `transaction` "
2195#~ msgstr ""
2196
2197#~ msgid ""
2198#~ "software running on a customer's "
2199#~ "computer; withdraws, stores and spends "
2200#~ "coins "
2201#~ msgstr ""
2202
2203#~ msgid "see `transfer` "
2204#~ msgstr ""
2205
2206#~ msgid ""
2207#~ "subject of a wire `transfer`; usually"
2208#~ " a random string to uniquely identify"
2209#~ " the `transfer` "
2210#~ msgstr ""
2211
2212#~ msgid ""
2213#~ "operation by which a `wallet` can "
2214#~ "convert funds from a reserve to "
2215#~ "fresh coins "
2216#~ msgstr ""
2217
2218#~ msgid ""
2219#~ "Taler provides accountability to ensure "
2220#~ "business operate legally, while also "
2221#~ "respecting civil liberties of citizens. "
2222#~ "Taler is a payment system based on"
2223#~ " open standards and free software. "
2224#~ "Taler needs governments as they set "
2225#~ "a financial framework and act as "
2226#~ "trusted regulators. Taler contributes to "
2227#~ "digital sovereignty in the critical "
2228#~ "financial infrastructure. "
2229#~ msgstr ""
2230
2231#~ msgid ""
2232#~ "Taler was built with the goal of"
2233#~ " fighting corruption and supporting "
2234#~ "taxation. With Taler, the receiver of"
2235#~ " any form of payment is easily "
2236#~ "identified by the government, and the"
2237#~ " merchant can be compelled to provide"
2238#~ " the contract that was accepted by"
2239#~ " the customer. Governments can use "
2240#~ "this data to tax businesses and "
2241#~ "individuals based on their income, "
2242#~ "making tax evasion and black markets "
2243#~ "less viable. "
2244#~ msgstr ""
2245
2246#~ msgid ""
2247#~ "Thus, despite offering anonymity for "
2248#~ "citizens spending digital cash to buy"
2249#~ " goods and services, Taler also "
2250#~ "ensures that the state can observe "
2251#~ "incoming funds. This can be used "
2252#~ "to ensure businesses engage only in "
2253#~ "legal activities, and do not evade "
2254#~ "income tax, sales tax or value-"
2255#~ "added tax. However, this observational "
2256#~ "capability does not extend to the "
2257#~ "immediate personal domain. In particular, "
2258#~ "monitoring does not cover shared access"
2259#~ " to funds with trusted friends and"
2260#~ " family, or synchronizing wallets across"
2261#~ " multiple devices. "
2262#~ msgstr ""
2263
2264#~ msgid ""
2265#~ "Taler's payments are cryptographically "
2266#~ "secured. Thus, customers, merchants and "
2267#~ "the Taler payment service provider (the"
2268#~ " exchange) can mathematically demonstrate "
2269#~ "their lawful behavior in court in "
2270#~ "case of disputes. Financial damages are"
2271#~ " strictly limited, improving economic "
2272#~ "security for individuals, merchants, the "
2273#~ "exchange and the state. "
2274#~ msgstr ""
2275
2276#~ msgid ""
2277#~ "As a payment service provider, the "
2278#~ "Taler exchange is subject to financial"
2279#~ " regulation. Financial regulation and "
2280#~ "regular audits are critical to establish"
2281#~ " trust. In particular, the Taler "
2282#~ "design mandates the existence of an "
2283#~ "independent auditor who checks cryptographic"
2284#~ " proofs that accumulate at the "
2285#~ "exchange to ensure that the escrow "
2286#~ "account is managed honestly. This "
2287#~ "ensures that the exchange does not "
2288#~ "threaten the economy due to fraud. \n"
2289#~ msgstr ""
2290
2291#~ msgid ""
2292#~ "Taler is free software implementing an"
2293#~ " open protocol standard. Thus, Taler "
2294#~ "will enable competition and avoid the"
2295#~ " monopolization of payment systems that "
2296#~ "threatens global political and financial "
2297#~ "stability today. "
2298#~ msgstr ""
2299
2300#~ msgid ""
2301#~ "Taler has an efficient design. Unlike"
2302#~ " Blockchain-based payment systems, such "
2303#~ "as Bitcoin, Taler will not threaten "
2304#~ "the availability of national electric "
2305#~ "grids or (significantly) contribute to "
2306#~ "environmental pollution. "
2307#~ msgstr ""
2308
2309#~ msgid ""
2310#~ "Taler assumes governments can observe "
2311#~ "traditional wire transfers entering and "
2312#~ "leaving the Taler payment system. "
2313#~ "Starting with the wire transfers, "
2314#~ "governments can obtain: "
2315#~ msgstr ""
2316
2317#~ msgid ""
2318#~ "The total amount of digital currency "
2319#~ "withdrawn by a customer. The government"
2320#~ " can impose limits on how much "
2321#~ "digital cash a customer can withdraw "
2322#~ "within a given time frame. "
2323#~ msgstr ""
2324
2325#~ msgid "The income received by any merchant via the Taler system. "
2326#~ msgstr ""
2327
2328#~ msgid ""
2329#~ "The exact details of the underlying "
2330#~ "contract that was signed between "
2331#~ "customer and merchant. However, this "
2332#~ "information would typically not include "
2333#~ "the identity of the customer. "
2334#~ msgstr ""
2335
2336#~ msgid ""
2337#~ "The amounts of digital coins "
2338#~ "legitimately withdrawn by customers from "
2339#~ "the exchange, the value of non-"
2340#~ "redeemed digital coins in customer's "
2341#~ "wallets, the value and corresponding "
2342#~ "wire details of deposit operations "
2343#~ "performed by merchants with the "
2344#~ "exchange, and the income of the "
2345#~ "exchange from transaction fees. "
2346#~ msgstr ""
2347
2348#~ msgid ""
2349#~ "GNU Taler is an electronic payment "
2350#~ "system under development at <a "
2351#~ "href=\"http://www.inria.fr/\">Inria</a>. We expect "
2352#~ "to make it operational in 2017. "
2353#~ "You can learn about Taler on this"
2354#~ " website, try the <a "
2355#~ "href=\"https://demo.taler.net\">demo</a> and look at"
2356#~ " our <a href=\"https://docs.taler.net\">developer</a>"
2357#~ " and <a href=\"https://api.taler.net\">API</a> "
2358#~ "documentation. "
2359#~ msgstr ""
2360
2361#~ msgid ""
2362#~ "Taler is easy to integrate with "
2363#~ "existing Web applications. Payments are "
2364#~ "cryptographically secured and are confirmed"
2365#~ " within milliseconds with extremely low "
2366#~ "transaction costs. "
2367#~ msgstr ""
2368
2369#~ msgid ""
2370#~ "Taler does not introduce a new "
2371#~ "currency. Taler uses a digital wallet"
2372#~ " storing coins and payment service "
2373#~ "providers with escrow accounts in "
2374#~ "existing currencies. Thus, Taler's "
2375#~ "cryptographic coins correspond to existing "
2376#~ "currencies, such as US Dollars, Euros"
2377#~ " or even Bitcoins. "
2378#~ msgstr ""
2379
2380#~ msgid ""
2381#~ "By design Taler does not suffer "
2382#~ "from many classes of security problems"
2383#~ " such as phishing or counterfeit. "
2384#~ "Thanks to its security features, Taler"
2385#~ " never rejects a legitimate customer "
2386#~ "due to a fraud-detection false "
2387#~ "positive. "
2388#~ msgstr ""
2389
2390#~ msgid ""
2391#~ "When using Taler, merchant's revenue is"
2392#~ " transparent for tax collection "
2393#~ "authorities. Unlike cash and most "
2394#~ "digital currencies, Taler helps prevent "
2395#~ "black markets. Taler is not suitable"
2396#~ " for illegal activities. "
2397#~ msgstr ""
2398
2399#~ msgid ""
2400#~ "When you pay with Taler, your "
2401#~ "identity does not have to be "
2402#~ "revealed. Just like payments in cash,"
2403#~ " nobody else can track how you "
2404#~ "spent your electronic money. However, "
2405#~ "you obtain a legally valid proof "
2406#~ "of payment. "
2407#~ msgstr ""
2408
2409#~ msgid ""
2410#~ "Taler provides protocols and reference "
2411#~ "implementations that in principle enables "
2412#~ "anybody to run their own payment "
2413#~ "infrastructure, be it individuals, "
2414#~ "organizations or whole countries. Since "
2415#~ "the reference implementation is a <a "
2416#~ "href=\"http://www.gnu.org/\">GNU</a> package, it "
2417#~ "will always remain free software. "
2418#~ msgstr ""
2419
2420#~ msgid ""
2421#~ "<p>To pay with Taler, customers install"
2422#~ " an electronic wallet on their "
2423#~ "device. Before the first payment, the"
2424#~ " wallet's balance must be charged in"
2425#~ " the desired currency by some other"
2426#~ " means of payment.</p> <p>Once the "
2427#~ "wallet is charged, payments on websites"
2428#~ " take only one click, are never "
2429#~ "falsely rejected by fraud detection and"
2430#~ " do not pose any risk of "
2431#~ "phishing or identity theft.</p> "
2432#~ msgstr ""
2433
2434#~ msgid ""
2435#~ "<p>To receive Taler payments, a merchant"
2436#~ " needs a bank account in the "
2437#~ "desired currency. We provide supporting "
2438#~ "software in various programming languages "
2439#~ "to make the integration painless. The"
2440#~ " merchant's backend for Taler transaction"
2441#~ " processing can run on the merchant's"
2442#~ " premises or be hosted by a "
2443#~ "third party.</p> "
2444#~ msgstr ""
2445
2446#~ msgid ""
2447#~ "We have created a company, Taler "
2448#~ "Systems SA in Luxembourg.<br> Please "
2449#~ "contact <tt>invest@taler.net</tt> if you want"
2450#~ " to invest in Taler. "
2451#~ msgstr ""
2452
2453#~ msgid ""
2454#~ "Our <a href=\"about.html\">team</a> combines "
2455#~ "world-class business leaders, cryptographers, "
2456#~ "software engineers, civil-rights activists "
2457#~ "and academics. We are unified by a"
2458#~ " vision of how payments should work"
2459#~ " and the goal of imposing this "
2460#~ "vision upon the world. "
2461#~ msgstr ""
2462
2463#~ msgid ""
2464#~ "We are currently supported by <a "
2465#~ "href=\"http://www.inria.fr/\">Inria</a>, the French "
2466#~ "national institute for research in "
2467#~ "informatics and automation, and the <a"
2468#~ " href=\"https://renewablefreedom.org/\">Renewable Freedom "
2469#~ "Foundation</a>. "
2470#~ msgstr ""
2471
2472#~ msgid ""
2473#~ "All transactions in Taler are secured"
2474#~ " using <a href=\"bibliography.html\">modern "
2475#~ "cryptography</a> and trust in all "
2476#~ "parties is minimized. Financial damage "
2477#~ "is bounded (for customers, merchants and"
2478#~ " the exchange) even in the case "
2479#~ "that systems are compromised and private"
2480#~ " keys are stolen. Databases can be"
2481#~ " audited for consistency, resulting in "
2482#~ "either the detection of compromised "
2483#~ "systems or the demonstration that "
2484#~ "participants were honest. Actual transaction"
2485#~ " costs are fractions of a cent. \n"
2486#~ msgstr ""
2487
2488#~ msgid ""
2489#~ "The scalable business model for Taler"
2490#~ " is the operation of the payment "
2491#~ "service provider, which converts money "
2492#~ "from traditional payment systems (MasterCard,"
2493#~ " SEPA, UPI, Visa, Bitcoin, ACH, "
2494#~ "SWIFT, etc.) to anonymous electronic "
2495#~ "coins in the same currency. The "
2496#~ "customer can then redeem the electronic"
2497#~ " coins at a merchant, who can "
2498#~ "exchange them for money represented "
2499#~ "using traditional payment systems at the"
2500#~ " exchange. The exchange charges fees "
2501#~ "to facilitate the transactions. "
2502#~ msgstr ""
2503
2504#~ msgid ""
2505#~ "The payment service operator runs the"
2506#~ " <em>Taler exchange</em>. The exchange "
2507#~ "charges <b>transaction fees</b> to customers"
2508#~ " or merchants. Its operational expenses "
2509#~ "are from wire transfers with the "
2510#~ "banking system and the operation of "
2511#~ "the computing infrastructure. "
2512#~ msgstr ""
2513
2514#~ msgid ""
2515#~ "Taler is a cost-effective electronic "
2516#~ "payment system which provides you with"
2517#~ " cryptographic proof that the payment "
2518#~ "worked correctly within milliseconds. Your "
2519#~ "Web customers pay with previously "
2520#~ "unknown levels of convenience without "
2521#~ "risk of fraud. "
2522#~ msgstr ""
2523
2524#~ msgid ""
2525#~ "Processing transactions with Taler is "
2526#~ "fast, allowing you to confirm the "
2527#~ "transaction with your customer virtually "
2528#~ "immediately. Your customers will appreciate"
2529#~ " that they do not have to type"
2530#~ " in credit card information and play"
2531#~ " the &quot;verified by&quot; game. By "
2532#~ "making payments significantly more convenient"
2533#~ " for your customers, you may be "
2534#~ "able to use Taler for small "
2535#~ "transactions that would not work with"
2536#~ " credit card payments due to the "
2537#~ "mental overhead for customers. "
2538#~ msgstr ""
2539
2540#~ msgid ""
2541#~ "You will have cryptographic proof of "
2542#~ "payment from the Taler payment service"
2543#~ " provider. With Taler you never "
2544#~ "handle sensitive customer account information"
2545#~ " and thus do not have to "
2546#~ "undergo any particular security audits "
2547#~ "(such as PCI DSS). Your systems "
2548#~ "will have customer contracts with "
2549#~ "qualified signatures for all transactions "
2550#~ "which you can use in court in "
2551#~ "case of disputes. "
2552#~ msgstr ""
2553
2554#~ msgid ""
2555#~ "Taler is free software, and you "
2556#~ "can use the liberally-licensed reference"
2557#~ " code as a starting point to "
2558#~ "integrate Taler into your services. To"
2559#~ " use Taler, you do not need to"
2560#~ " pay license fees, and the free "
2561#~ "software development model will ensure "
2562#~ "that you can select from many "
2563#~ "competing integrators for support. "
2564#~ msgstr ""
2565
2566#~ msgid ""
2567#~ "Taler is uses efficient cryptographic "
2568#~ "constructions with low bandwidth and "
2569#~ "storage requirements. Combined with Taler's"
2570#~ " strong security which makes fraud "
2571#~ "impossible, Taler payment service providers"
2572#~ " can operate with very low overhead"
2573#~ " and thus offer low transaction fees."
2574#~ " "
2575#~ msgstr ""
2576
2577#~ msgid ""
2578#~ "Taler can be used for different "
2579#~ "currencies (such as Euros, US Dollars"
2580#~ " or Bitcoins) and any amount, limited"
2581#~ " only by applicable regulatation and "
2582#~ "what denominations the payment service "
2583#~ "provider supports. "
2584#~ msgstr ""
2585
2586#~ msgid ""
2587#~ "Taler prevents tax evasion and money "
2588#~ "laundering. Taler's protocols are efficient"
2589#~ " and do not use wasteful proof-"
2590#~ "of-work calculations. Taler encourages "
2591#~ "transparency by providing an open "
2592#~ "standard and free software reference "
2593#~ "implementations. "
2594#~ msgstr ""
2595
2596#~ msgid ""
2597#~ "The backend <b>signs</b> and <b>stores</b> "
2598#~ "the complete terms of offers made "
2599#~ "by the merchant to customers. For "
2600#~ "this, the merchant's frontend needs to"
2601#~ " give the customer's order in a "
2602#~ "JSON format to the backend. "
2603#~ msgstr ""
2604
2605#~ msgid ""
2606#~ "The backend <b>validates</b> payments received"
2607#~ " from the wallet and <b>executes</b> "
2608#~ "them with the Taler payment service "
2609#~ "provider (the exchange). For this, the"
2610#~ " merchant's frontend must pass the "
2611#~ "payment request through to the Taler "
2612#~ "backend and check the HTTP status "
2613#~ "code that is returned. "
2614#~ msgstr ""
2615
2616#~ msgid ""
2617#~ "The backend can <b>list</b> completed "
2618#~ "transactions and <b>map</b> wire transfers "
2619#~ "to sets of business transactions, "
2620#~ "including the exact terms of each "
2621#~ "contract. "
2622#~ msgstr ""
2623
diff --git a/locale/it/LC_MESSAGES/messages.po b/locale/it/LC_MESSAGES/messages.po
index 7f0cd641..52a5903d 100644
--- a/locale/it/LC_MESSAGES/messages.po
+++ b/locale/it/LC_MESSAGES/messages.po
@@ -1,18 +1,23 @@
1 1
2msgid "" 2msgid ""
3msgstr "" 3msgstr ""
4"Project-Id-Version: PROJECT VERSION\n" 4"Project-Id-Version: PROJECT VERSION Report-Msgid-Bugs-To: EMAIL@ADDRESS "
5"POT-Creation-Date: 2017-05-23 10:32+0200 PO-Revision-Date: YEAR-MO-DA "
6"HO:MI+ZONE Last-Translator: FULL NAME <EMAIL@ADDRESS> Language: it "
7"Language-Team: it <LL@li.org> Plural-Forms: nplurals=2; plural=(n!=1) "
8"MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-"
9"Transfer-Encoding: 8bit Generated-By: Babel 2.3.4 \n"
5"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" 10"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
6"POT-Creation-Date: 2017-05-23 10:32+0200\n" 11"POT-Creation-Date: 2017-06-02 13:48+0200\n"
7"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9"Language: it\n" 14"Language: it\n"
10"Language-Team: it <LL@li.org>\n" 15"Language-Team: it <LL@li.org>\n"
11"Plural-Forms: nplurals=2; plural=(n!=1)\n" 16"Plural-Forms: nplurals=2; plural=(n != 1)\n"
12"MIME-Version: 1.0\n" 17"MIME-Version: 1.0\n"
13"Content-Type: text/plain; charset=utf-8\n" 18"Content-Type: text/plain; charset=utf-8\n"
14"Content-Transfer-Encoding: 8bit\n" 19"Content-Transfer-Encoding: 8bit\n"
15"Generated-By: Babel 2.3.4\n" 20"Generated-By: Babel 2.4.0\n"
16 21
17#: about.html.j2:8 22#: about.html.j2:8
18#, fuzzy 23#, fuzzy
@@ -126,11 +131,9 @@ msgstr ""
126 131
127#: citizens.html.j2:9 132#: citizens.html.j2:9
128msgid "" 133msgid ""
129"Taler largely functions like digital cash. You\n" 134"Taler largely functions like digital cash. You withdraw money from your "
130"withdraw money from your bank account into your\n" 135"bank account into your electronic wallet, and can henceforth spend "
131"electronic wallet, and can henceforth spend digital\n" 136"digital cash. The electronic wallet can carry multiple currencies."
132"cash. The electronic wallet can carry multiple\n"
133"currencies.\n"
134msgstr "" 137msgstr ""
135 138
136#: citizens.html.j2:25 governments.html.j2:58 index.html.j2:56 139#: citizens.html.j2:25 governments.html.j2:58 index.html.j2:56
@@ -140,12 +143,10 @@ msgstr "Sicuro"
140 143
141#: citizens.html.j2:27 144#: citizens.html.j2:27
142msgid "" 145msgid ""
143"Taler uses modern cryptography, ensuring that there\n" 146"Taler uses modern cryptography, ensuring that there is no counterfeit. "
144"is no counterfeit. Your digital wallet is safer\n" 147"Your digital wallet is safer than your physical wallet. At most, you can "
145"than your physical wallet. At most, you can lose\n" 148"lose its contents because your computer or mobile is irreparably damaged "
146"its contents because your computer or mobile is\n" 149"or compromised. Unlike a physical wallet, you can make backups to secure "
147"irreparably damaged or compromised. Unlike a\n"
148"physical wallet, you can make backups to secure\n"
149"against data loss." 150"against data loss."
150msgstr "" 151msgstr ""
151 152
@@ -155,12 +156,10 @@ msgstr ""
155 156
156#: citizens.html.j2:39 157#: citizens.html.j2:39
157msgid "" 158msgid ""
158"Your transactions are private, neither the payment\n" 159"Your transactions are private, neither the payment service provider nor "
159"service provider nor merchant needs to learn your\n" 160"merchant needs to learn your identity. There is no need to give out "
160"identity. There is no need to give out credit card\n" 161"credit card numbers or other sensitive information. The merchant will "
161"numbers or other sensitive information. The merchant\n" 162"only be able to do exactly the transaction you agreed to."
162"will only be able to do exactly the transaction you\n"
163"agreed to."
164msgstr "" 163msgstr ""
165 164
166#: citizens.html.j2:50 165#: citizens.html.j2:50
@@ -169,11 +168,10 @@ msgstr ""
169 168
170#: citizens.html.j2:52 169#: citizens.html.j2:52
171msgid "" 170msgid ""
172"You will be able to withdraw money to replenish the\n" 171"You will be able to withdraw money to replenish the digital coins in your"
173"digital coins in your wallet using your credit card\n" 172" wallet using your credit card or wire transfers. Afterwards you can pay "
174"or wire transfers. Afterwards you can pay with\n" 173"with one-click using the Taler wallet, which optionally keeps your "
175"one-click using the Taler wallet, which optionally\n" 174"transaction history on your computer."
176"keeps your transaction history on your computer."
177msgstr "" 175msgstr ""
178 176
179#: citizens.html.j2:61 index.html.j2:42 177#: citizens.html.j2:61 index.html.j2:42
@@ -182,12 +180,10 @@ msgstr ""
182 180
183#: citizens.html.j2:63 181#: citizens.html.j2:63
184msgid "" 182msgid ""
185"Coins in your digital wallet will be of the same\n" 183"Coins in your digital wallet will be of the same denomination as the cash"
186"denomination as the cash in your physical wallet.\n" 184" in your physical wallet. Taler is not a crypto-currency, so you do not "
187"Taler is not a crypto-currency, so you do not have\n" 185"have to worry about cryto-currency related value fluctuations. Banking "
188"to worry about cryto-currency related value\n" 186"with Taler is subject to the usual government protections for financial "
189"fluctuations. Banking with Taler is subject to the\n"
190"usual government protections for financial\n"
191"services." 187"services."
192msgstr "" 188msgstr ""
193 189
@@ -198,9 +194,8 @@ msgstr ""
198#: citizens.html.j2:81 194#: citizens.html.j2:81
199msgid "" 195msgid ""
200"We currently provide a <a href=\"wallet.html\">wallet browser " 196"We currently provide a <a href=\"wallet.html\">wallet browser "
201"extension</a> for Chromium, Chrome, Firefox, Opera\n" 197"extension</a> for Chromium, Chrome, Firefox, Opera and Edge. Wallets for "
202"and Edge. Wallets for mobile phones and other platforms will be " 198"mobile phones and other platforms will be available in the future."
203"available in the future.\n"
204msgstr "" 199msgstr ""
205 200
206#: citizens.html.j2:88 201#: citizens.html.j2:88
@@ -210,7 +205,7 @@ msgstr ""
210#: citizens.html.j2:90 205#: citizens.html.j2:90
211msgid "" 206msgid ""
212"You can see how Taler works in practice by visiting our <a " 207"You can see how Taler works in practice by visiting our <a "
213"href=\"https://demo.taler.net\">demo page</a>.\n" 208"href=\"https://demo.taler.net\">demo page</a>."
214msgstr "" 209msgstr ""
215 210
216#: citizens.html.j2:103 211#: citizens.html.j2:103
@@ -218,39 +213,32 @@ msgid "The Taler Wallet for customers"
218msgstr "" 213msgstr ""
219 214
220#: citizens.html.j2:105 215#: citizens.html.j2:105
221msgid "" 216msgid "Customers interact with the Taler system using the Taler wallet:"
222"Customers interact with the Taler system using\n"
223"the Taler wallet:"
224msgstr "" 217msgstr ""
225 218
226#: citizens.html.j2:110 219#: citizens.html.j2:110
227msgid "" 220msgid ""
228"To <b>withdraw</b> electronic coins, the customer\n" 221"To <b>withdraw</b> electronic coins, the customer transfers funds from "
229"transfers funds from his bank account to the Taler\n" 222"his bank account to the Taler payment service provider (the exchange). "
230"payment service provider (the exchange). The wire\n" 223"The wire transfer subject must match a code identifying the customer's "
231"transfer subject must match a code identifying the\n" 224"wallet. After the wire transfer is complete, the wallet will "
232"customer's wallet. After the wire transfer is\n" 225"automatically withdraw the coins from the exchange."
233"complete, the wallet will automatically withdraw the\n"
234"coins from the exchange."
235msgstr "" 226msgstr ""
236 227
237#: citizens.html.j2:118 228#: citizens.html.j2:118
238msgid "" 229msgid ""
239"To <b>spend</b> electronic coins, a merchant must\n" 230"To <b>spend</b> electronic coins, a merchant must cause the wallet to "
240"cause the wallet to display a proposal for some\n" 231"display a proposal for some purchase. The wallet will ask the customer "
241"purchase. The wallet will ask the customer for\n" 232"for one-click confirmation. Payment is then instant. Transaction "
242"one-click confirmation. Payment is then instant.\n" 233"histories and digitally signed contracts can be preserved by the wallet."
243"Transaction histories and digitally signed contracts\n"
244"can be preserved by the wallet."
245msgstr "" 234msgstr ""
246 235
247#: citizens.html.j2:125 236#: citizens.html.j2:125
248msgid "" 237msgid ""
249"The customer can use the wallet to <b>review</b> his\n" 238"The customer can use the wallet to <b>review</b> his balance. The wallet "
250"balance. The wallet can contain different\n" 239"can contain different currencies, and may be shared across devices. "
251"currencies, and may be shared across\n" 240"Customers can make backups of the wallet to secure its contents against "
252"devices. Customers can make backups of the wallet to\n" 241"hardware failures."
253"secure its contents against hardware failures."
254msgstr "" 242msgstr ""
255 243
256#: contact.html.j2:6 244#: contact.html.j2:6
@@ -263,12 +251,10 @@ msgstr ""
263 251
264#: contact.html.j2:15 252#: contact.html.j2:15
265msgid "" 253msgid ""
266"An archived, public mailing list for GNU Taler is\n" 254"An archived, public mailing list for GNU Taler is hosted at <a "
267"hosted at\n"
268"<a "
269"href=\"https://lists.gnu.org/mailman/listinfo/taler\">https://lists.gnu.org/mailman/listinfo/taler</a>." 255"href=\"https://lists.gnu.org/mailman/listinfo/taler\">https://lists.gnu.org/mailman/listinfo/taler</a>."
270" You can send messages to the list\n" 256" You can send messages to the list at <a "
271"at <a href=\"mailto:taler@gnu.org\">taler@gnu.org</a>.\n" 257"href=\"mailto:taler@gnu.org\">taler@gnu.org</a>."
272msgstr "" 258msgstr ""
273 259
274#: contact.html.j2:25 260#: contact.html.j2:25
@@ -277,9 +263,8 @@ msgstr ""
277 263
278#: contact.html.j2:27 264#: contact.html.j2:27
279msgid "" 265msgid ""
280"Team members are generally reachable at\n" 266"Team members are generally reachable at <tt>LASTNAME@taler.net</tt>. All "
281"<tt>LASTNAME@taler.net</tt>. All of us\n" 267"of us support receiving GnuPG encrypted e-mails."
282"support receiving GnuPG encrypted e-mails.\n"
283msgstr "" 268msgstr ""
284 269
285#: contact.html.j2:36 270#: contact.html.j2:36
@@ -288,11 +273,10 @@ msgstr ""
288 273
289#: contact.html.j2:38 274#: contact.html.j2:38
290msgid "" 275msgid ""
291"We track open feature requests and bugs in our\n" 276"We track open feature requests and bugs in our <a "
292"<a href=\"https://gnunet.org/bugs/\">Bug tracker</a>,\n" 277"href=\"https://gnunet.org/bugs/\">Bug tracker</a>, which is shared with "
293"which is shared with the GNUnet project.\n" 278"the GNUnet project. You can also report bugs or feature requests to the "
294"You can also report bugs or feature requests to the\n" 279"mailing list."
295"mailing list.\n"
296msgstr "" 280msgstr ""
297 281
298#: contact.html.j2:49 282#: contact.html.j2:49
@@ -301,8 +285,39 @@ msgstr ""
301 285
302#: contact.html.j2:51 286#: contact.html.j2:51
303msgid "" 287msgid ""
304"For non-technical commercial requests, please contact\n" 288"For non-technical commercial requests, please contact <tt>ceo AT "
305"<tt>ceo AT taler.net</tt>.\n" 289"taler.net</tt>."
290msgstr ""
291
292#: copyright.html.j2:6
293msgid "Copyright Assignment"
294msgstr ""
295
296#: copyright.html.j2:8
297msgid ""
298"<p>Contributors to GNU Taler with Git access must sign the <a "
299"href=\"pdf/copyright.pdf\">copyright assignment</a> to ensure that the <a"
300" href=\"https://gnunet.org/git/gnunet-"
301"ev.git/tree/gnunet_taler_agreement.tex\">GNUnet e.V. --- Taler Systems SA"
302" agreement on licensing and collaborative development</a> of the GNUnet "
303"and GNU Taler projects is satisfied.</p>"
304msgstr ""
305
306#: copyright.html.j2:17
307msgid ""
308"<p>The agreements ensure that the code will continue to be made available"
309" under free software licenses, but gives developers the freedom to move "
310"code between GNUnet and GNU Taler without worrying about licenses and the"
311" company the ability to dual-license (for example, so that we can "
312"distribute via App-stores that are hostile to free software).</p>"
313msgstr ""
314
315#: copyright.html.j2:25
316msgid ""
317"<p>Minor contributions (basically, anyone without Git access) do not "
318"require copyright assignment. Pseudonymous contributions are accepted, in"
319" this case simply sign the agreement with your pseudonym. Scanned copies "
320"are sufficient, but snail mail is preferred.</p>"
306msgstr "" 321msgstr ""
307 322
308#: developers.html.j2:5 323#: developers.html.j2:5
@@ -315,17 +330,14 @@ msgstr "Free"
315 330
316#: developers.html.j2:15 331#: developers.html.j2:15
317msgid "" 332msgid ""
318"GNU Taler is free software implementing an open\n" 333"GNU Taler is free software implementing an open protocol. Anybody is "
319"protocol. Anybody is welcome to integrate our reference\n" 334"welcome to integrate our reference implementation into their "
320"implementation into their applications. Different\n" 335"applications. Different components of Taler are being made available "
321"components of Taler are being made available under\n" 336"under different licenses. The Affero GPLv3+ is used for the exchange, the"
322"different licenses. The Affero GPLv3+ is used for the\n" 337" LGPLv3+ is used for reference code demonstrating integration with "
323"exchange, the LGPLv3+ is used for reference code\n" 338"merchant platforms, and licenses like GPLv3+ are used for wallets and "
324"demonstrating integration with merchant platforms, and\n" 339"related customer-facing software. We are open for constructive "
325"licenses like GPLv3+ are used for\n" 340"suggestions for maximizing the adoption of this payment platform."
326"wallets and related customer-facing software. We are\n"
327"open for constructive suggestions for maximizing the\n"
328"adoption of this payment platform.\n"
329msgstr "" 341msgstr ""
330 342
331#: developers.html.j2:32 343#: developers.html.j2:32
@@ -334,18 +346,14 @@ msgstr "RESTful"
334 346
335#: developers.html.j2:35 347#: developers.html.j2:35
336msgid "" 348msgid ""
337"Taler is designed to work on the Internet. To\n" 349"Taler is designed to work on the Internet. To ensure that Taler payments "
338"ensure that Taler payments can work with\n" 350"can work with restrictive network setups, Taler uses a RESTful protocol "
339"restrictive network setups, Taler uses a RESTful\n" 351"over HTTP or HTTPS. Taler's security does not depend upon the use of "
340"protocol over HTTP or HTTPS. Taler's security does\n" 352"HTTPS, but obviously merchants may choose to offer HTTPS for consistency "
341"not depend upon the use of HTTPS, but obviously\n" 353"and because it generally is better for privacy compared to HTTP. Taler "
342"merchants may choose to offer HTTPS for consistency\n" 354"uses JSON to encode structure data, making it easy to integrate Taler "
343"and because it generally is better for privacy\n" 355"with existing Web applications. Taler's protocol is documented in detail "
344"compared to HTTP. Taler uses JSON to encode\n" 356"at <a href=\"https://api.taler.net/\">api.taler.net</a>."
345"structure data, making it easy to integrate Taler\n"
346"with existing Web applications. Taler's protocol\n"
347"is documented in\n"
348"detail at <a href=\"https://api.taler.net/\">api.taler.net</a>.\n"
349msgstr "" 357msgstr ""
350 358
351#: developers.html.j2:58 359#: developers.html.j2:58
@@ -354,15 +362,13 @@ msgstr "Codice"
354 362
355#: developers.html.j2:61 363#: developers.html.j2:61
356msgid "" 364msgid ""
357"Taler is currently primarily developed by a\n" 365"Taler is currently primarily developed by a research team at <a "
358"research team at <a href=\"http://www.inria.fr/\">Inria</a> and\n" 366"href=\"http://www.inria.fr/\">Inria</a> and <a "
359"<a href=\"https://gnunet.org/\">GNUnet</a>. However,\n" 367"href=\"https://gnunet.org/\">GNUnet</a>. However, contributions from "
360"contributions from anyone are welcome. Our Git\n" 368"anyone are welcome. Our Git repositories can be cloned using the Git and "
361"repositories can be cloned using the Git and HTTP\n" 369"HTTP access methods against <tt>git.taler.net</tt> with the name of the "
362"access methods against <tt>git.taler.net</tt> with\n" 370"respective repository. A list of repositories can be found in our <a "
363"the name of the respective repository. A list of\n" 371"href=\"https://git.taler.net/\">GitWeb</a>."
364"repositories can be found in\n"
365"our <a href=\"https://git.taler.net/\">GitWeb</a>.\n"
366msgstr "" 372msgstr ""
367 373
368#: developers.html.j2:75 374#: developers.html.j2:75
@@ -371,11 +377,10 @@ msgstr "Documentazione"
371 377
372#: developers.html.j2:78 378#: developers.html.j2:78
373msgid "" 379msgid ""
374"In addition to this website, the <a\n" 380"In addition to this website, the <a "
375"href=\"https://git.taler.net/\">documented code</a> and\n" 381"href=\"https://git.taler.net/\">documented code</a> and the <a "
376"the <a href=\"https://api.taler.net/\">API\n" 382"href=\"https://api.taler.net/\">API documentation</a>. Technical papers "
377"documentation</a>. Technical papers can be found in\n" 383"can be found in our <a href=\"bibliography.html\">bibliography</a>."
378"our <a href=\"bibliography.html\">bibliography</a>.\n"
379msgstr "" 384msgstr ""
380 385
381#: developers.html.j2:88 386#: developers.html.j2:88
@@ -384,11 +389,9 @@ msgstr "Discussione"
384 389
385#: developers.html.j2:91 390#: developers.html.j2:91
386msgid "" 391msgid ""
387"We have a mailing list for developer discussions.\n" 392"We have a mailing list for developer discussions. You can subscribe to or"
388"You can subscribe to or read the list archive at\n" 393" read the list archive at <a "
389"<a "
390"href=\"http://lists.gnu.org/mailman/listinfo/taler\">http://lists.gnu.org/mailman/listinfo/taler</a>." 394"href=\"http://lists.gnu.org/mailman/listinfo/taler\">http://lists.gnu.org/mailman/listinfo/taler</a>."
391"\n"
392msgstr "" 395msgstr ""
393 396
394#: developers.html.j2:101 397#: developers.html.j2:101
@@ -397,10 +400,9 @@ msgstr "Test delle regressioni"
397 400
398#: developers.html.j2:104 401#: developers.html.j2:104
399msgid "" 402msgid ""
400"We have <a href=\"https://buildbot.net/\">Buildbot</a>\n" 403"We have <a href=\"https://buildbot.net/\">Buildbot</a> automation tests "
401"automation tests to detect regressions and check for\n" 404"to detect regressions and check for portability at <a "
402"portability at <a\n" 405"href=\"https://buildbot.taler.net/\">buildbot.taler.net</a>."
403"href=\"https://buildbot.taler.net/\">buildbot.taler.net</a>.\n"
404msgstr "" 406msgstr ""
405 407
406#: developers.html.j2:113 408#: developers.html.j2:113
@@ -409,11 +411,9 @@ msgstr "Analisi della copertura del codice"
409 411
410#: developers.html.j2:116 412#: developers.html.j2:116
411msgid "" 413msgid ""
412"We use\n" 414"We use <a href=\"http://ltp.sourceforge.net/coverage/lcov.php\">LCOV</a> "
413"<a href=\"http://ltp.sourceforge.net/coverage/lcov.php\">LCOV</a>\n" 415"to analyze the code coverage of our tests, the results are available at "
414"to analyze the code coverage of our tests, the\n" 416"<a href=\"https://lcov.taler.net/\">lcov.taler.net</a>."
415"results are available\n"
416"at <a href=\"https://lcov.taler.net/\">lcov.taler.net</a>.\n"
417msgstr "" 417msgstr ""
418 418
419#: developers.html.j2:126 419#: developers.html.j2:126
@@ -422,11 +422,9 @@ msgstr "Analisi delle prestazioni"
422 422
423#: developers.html.j2:129 423#: developers.html.j2:129
424msgid "" 424msgid ""
425"We\n" 425"We use <a href=\"https://gnunet.org/gauger\">Gauger</a> for performance "
426"use <a href=\"https://gnunet.org/gauger\">Gauger</a>\n" 426"regression analysis of the exchange backend at <a "
427"for performance regression analysis of the exchange\n" 427"href=\"https://gauger.taler.net/\">gauger.taler.net</a>."
428"backend\n"
429"at <a href=\"https://gauger.taler.net/\">gauger.taler.net</a>.\n"
430msgstr "" 428msgstr ""
431 429
432#: developers.html.j2:145 430#: developers.html.j2:145
@@ -435,120 +433,88 @@ msgstr "Schema generale del sistema Taler"
435 433
436#: developers.html.j2:148 434#: developers.html.j2:148
437msgid "" 435msgid ""
438"The Taler system consists of protocols executed among\n" 436"The Taler system consists of protocols executed among a number of actors "
439"a number of actors as illustrated in the illustration on the right.\n" 437"as illustrated in the illustration on the right. Typical transactions "
440"Typical transactions involve the following steps:\n" 438"involve the following steps:"
441msgstr "" 439msgstr ""
442 440
443#: developers.html.j2:158 441#: developers.html.j2:158
444msgid "" 442msgid ""
445"A customer instructs his <b>bank</b> to\n" 443"A customer instructs his <b>bank</b> to transfer funds from his account "
446"transfer funds from his account to the Taler\n" 444"to the Taler exchange (top left). In the subject of the transaction, he "
447"exchange (top left). In the subject of the\n" 445"includes an authentication token from his electronic <b>wallet</b>. In "
448"transaction, he includes an authentication\n" 446"Taler terminology, the customer creates a reserve at the exchange."
449"token from his electronic <b>wallet</b>. In\n"
450"Taler terminology, the customer creates a\n"
451"reserve at the exchange.\n"
452msgstr "" 447msgstr ""
453 448
454#: developers.html.j2:170 449#: developers.html.j2:170
455msgid "" 450msgid ""
456"Once the exchange has received the wire\n" 451"Once the exchange has received the wire transfer, it allows the "
457"transfer, it allows the customer's electronic\n" 452"customer's electronic wallet to <b>withdraw</b> electronic coins. The "
458"wallet to <b>withdraw</b> electronic coins.\n" 453"electronic coins are digital representations of the original currency "
459"The electronic coins are digital\n" 454"from the transfer. It is important to note that the exchange does not "
460"representations of the original currency from\n" 455"learn the &quot;serial numbers&quot; of the coins created in this "
461"the transfer. It is important to note that the\n" 456"process, so it cannot tell later which customer purchased what at which "
462"exchange does not learn the &quot;serial\n" 457"merchant. The use of Taler does not change the currency or the total "
463"numbers&quot; of the coins created in this\n" 458"value of the funds (except for fees which the exchange may charge for the"
464"process, so it cannot tell later which customer\n" 459" service)."
465"purchased what at which merchant. The use of\n"
466"Taler does not change the currency or the total\n"
467"value of the funds (except for fees which the\n"
468"exchange may charge for the service).\n"
469msgstr "" 460msgstr ""
470 461
471#: developers.html.j2:188 462#: developers.html.j2:188
472msgid "" 463msgid ""
473"Once the customer has the digital coins in his\n" 464"Once the customer has the digital coins in his wallet, the wallet can be "
474"wallet, the wallet can be used to <b>spend</b>\n" 465"used to <b>spend</b> the coins with merchant portals that support the "
475"the coins with merchant portals that support\n" 466"Taler payment system and accept the respective exchange as a business "
476"the Taler payment system and accept the\n" 467"partner (bottom arrow). This creates a digital contract signed by the "
477"respective exchange as a business partner\n" 468"customer's coins and the merchant. If necessary, the customer can later "
478"(bottom arrow). This creates a digital contract\n" 469"use this digitally signed contract in a court of law to prove the exact "
479"signed by the customer's coins and the\n" 470"terms of the contract and that he paid the respective amount. The "
480"merchant. If necessary, the customer can later\n" 471"customer does not learn the banking details of the merchant, and Taler "
481"use this digitally signed contract in a court\n" 472"does not require the merchant to learn the identity of the customer. "
482"of law to prove the exact terms of the contract\n" 473"Naturally, the customer can spend any fraction of his digital coins (the "
483"and that he paid the respective amount. The\n" 474"system takes care of customers getting change)."
484"customer does not learn the banking details of\n"
485"the merchant, and Taler does not require the\n"
486"merchant to learn the identity of the\n"
487"customer. Naturally, the customer can spend any\n"
488"fraction of his digital coins (the system takes\n"
489"care of customers getting change).\n"
490msgstr "" 475msgstr ""
491 476
492#: developers.html.j2:210 477#: developers.html.j2:210
493msgid "" 478msgid ""
494"Merchants receiving digital\n" 479"Merchants receiving digital coins <b>deposit</b> the respective claims "
495"coins <b>deposit</b> the respective claims\n" 480"that resulted from the contract signing with the customer at the exchange"
496"that resulted from the contract signing with\n" 481" to redeem the coins. The deposit step does not reveal the details of the"
497"the customer at the exchange to redeem the\n" 482" contract between the customer and the merchant or the identity of the "
498"coins. The deposit step does not reveal the\n" 483"customer to the exchange in any way. However, the exchange does learn the"
499"details of the contract between the customer\n" 484" identity of the merchant via the provided bank routing information. The "
500"and the merchant or the identity of the\n" 485"merchant can, for example when compelled by the state for taxation, "
501"customer to the exchange in any way. However,\n" 486"provide information linking the individual deposit to the respective "
502"the exchange does learn the identity of the\n" 487"contract signed by the customer. Thus, the exchange's database allows the"
503"merchant via the provided bank routing\n" 488" state to enforce that merchants pay applicable taxes (and do not engage "
504"information. The merchant can, for example\n" 489"in illegal contracts)."
505"when compelled by the state for taxation,\n"
506"provide information linking the individual\n"
507"deposit to the respective contract signed by\n"
508"the customer. Thus, the exchange's database\n"
509"allows the state to enforce that merchants pay\n"
510"applicable taxes (and do not engage in illegal\n"
511"contracts).\n"
512msgstr "" 490msgstr ""
513 491
514#: developers.html.j2:233 492#: developers.html.j2:233
515msgid "" 493msgid ""
516"Finally, the exchange transfers funds\n" 494"Finally, the exchange transfers funds corresponding to the digital coins "
517"corresponding to the digital coins redeemed by\n" 495"redeemed by the merchants to the merchant's <b>bank</b> account. The "
518"the merchants to the merchant's <b>bank</b>\n" 496"exchange may combine multiple small transactions into one larger bank "
519"account. The exchange may combine multiple\n" 497"transfer. The merchant can query the exchange about the relationship "
520"small transactions into one larger bank\n" 498"between the bank transfers and the individual claims that were deposited."
521"transfer. The merchant can query the exchange\n"
522"about the relationship between the bank\n"
523"transfers and the individual claims that were\n"
524"deposited.\n"
525msgstr "" 499msgstr ""
526 500
527#: developers.html.j2:247 501#: developers.html.j2:247
528msgid "" 502msgid ""
529"Most importantly, the exchange keeps\n" 503"Most importantly, the exchange keeps cryptographic proofs that allow it "
530"cryptographic proofs that allow it to\n" 504"to demonstrate that it is operating correctly to third parties. The "
531"demonstrate that it is operating correctly to\n" 505"system requires an external <b>auditor</b>, such as a government-"
532"third parties. The system requires an\n" 506"appointed financial regulatory body, to frequently verify the exchange's "
533"external <b>auditor</b>, such as a\n" 507"databases and check that its bank balance matches the total value of the "
534"government-appointed financial regulatory body,\n" 508"remaining coins in circulation."
535"to frequently verify the exchange's databases\n"
536"and check that its bank balance matches the\n"
537"total value of the remaining coins in\n"
538"circulation.\n"
539msgstr "" 509msgstr ""
540 510
541#: developers.html.j2:262 511#: developers.html.j2:262
542msgid "" 512msgid ""
543"Without the auditor, the exchange operators\n" 513"Without the auditor, the exchange operators could embezzle funds they are"
544"could embezzle funds they are holding in\n" 514" holding in reserve. Customers and merchants cannot cheat each other or "
545"reserve. Customers and merchants cannot cheat\n" 515"the exchange. If any party's computers are compromised, the financial "
546"each other or the exchange. If any party's\n" 516"damage is limited to the respective party and proportional to the funds "
547"computers are compromised, the financial damage\n" 517"they have in circulation during the period of the compromise."
548"is limited to the respective party and\n"
549"proportional to the funds they have in\n"
550"circulation during the period of the\n"
551"compromise.\n"
552msgstr "" 518msgstr ""
553 519
554#: faq.html.j2:5 520#: faq.html.j2:5
@@ -557,17 +523,17 @@ msgstr ""
557 523
558#: faq.html.j2:6 524#: faq.html.j2:6
559msgid "" 525msgid ""
560"<p>Taler does not use any Blockchain technology or Bitcoin directly.\n" 526"<p>Taler does not use any Blockchain technology or Bitcoin directly. "
561"Taler is not based on proof-of-work or any other distributed consensus\n" 527"Taler is not based on proof-of-work or any other distributed consensus "
562"mechanism. Instead Taler is based on blind signatures.</p>\n" 528"mechanism. Instead Taler is based on blind signatures.</p>"
563msgstr "" 529msgstr ""
564 530
565#: faq.html.j2:11 531#: faq.html.j2:11
566msgid "" 532msgid ""
567"<p>It would be possible, however, to withdraw coins denominated in\n" 533"<p>It would be possible, however, to withdraw coins denominated in "
568"Bitcoin into a Taler wallet (with an appropriate exchange), which\n" 534"Bitcoin into a Taler wallet (with an appropriate exchange), which would "
569"would give some benefits over plain Bitcoin, such as instant\n" 535"give some benefits over plain Bitcoin, such as instant confirmation "
570"confirmation times.</p>\n" 536"times.</p>"
571msgstr "" 537msgstr ""
572 538
573#: faq.html.j2:18 539#: faq.html.j2:18
@@ -576,9 +542,9 @@ msgstr ""
576 542
577#: faq.html.j2:19 543#: faq.html.j2:19
578msgid "" 544msgid ""
579"<p>Your wallet stores digital coins and thus ultimately your computer\n" 545"<p>Your wallet stores digital coins and thus ultimately your computer "
580"holds your balance. The exchange keeps funds matching all unspent\n" 546"holds your balance. The exchange keeps funds matching all unspent coins "
581"coins in an escrow bank account.</p>\n" 547"in an escrow bank account.</p>"
582msgstr "" 548msgstr ""
583 549
584#: faq.html.j2:25 550#: faq.html.j2:25
@@ -587,16 +553,16 @@ msgstr ""
587 553
588#: faq.html.j2:26 554#: faq.html.j2:26
589msgid "" 555msgid ""
590"<p>Since the digital coins of value in your wallet are anonymized, the\n" 556"<p>Since the digital coins of value in your wallet are anonymized, the "
591"exchange can not assist you in recovering a lost or stolen wallet.\n" 557"exchange can not assist you in recovering a lost or stolen wallet. Just "
592"Just like with a physical wallet for cash, you are responsible for\n" 558"like with a physical wallet for cash, you are responsible for keeping it "
593"keeping it safe.</p>\n" 559"safe.</p>"
594msgstr "" 560msgstr ""
595 561
596#: faq.html.j2:32 562#: faq.html.j2:32
597msgid "" 563msgid ""
598"<p>The risk of losing a wallet can be mitigated by making backups or\n" 564"<p>The risk of losing a wallet can be mitigated by making backups or "
599"keeping the balance reasonably low.</p>\n" 565"keeping the balance reasonably low.</p>"
600msgstr "" 566msgstr ""
601 567
602#: faq.html.j2:37 568#: faq.html.j2:37
@@ -605,9 +571,9 @@ msgstr ""
605 571
606#: faq.html.j2:38 572#: faq.html.j2:38
607msgid "" 573msgid ""
608"<p>In case of a compromise of one of your devices, an attacker can\n" 574"<p>In case of a compromise of one of your devices, an attacker can spend "
609"spend coins from your wallet. Checking your balance might reveal\n" 575"coins from your wallet. Checking your balance might reveal to you that "
610"to you that your device has been compromised.</p>\n" 576"your device has been compromised.</p>"
611msgstr "" 577msgstr ""
612 578
613#: faq.html.j2:44 579#: faq.html.j2:44
@@ -616,15 +582,15 @@ msgstr ""
616 582
617#: faq.html.j2:45 583#: faq.html.j2:45
618msgid "" 584msgid ""
619"<p>If your friend provides goods or services for you in exchange for a\n" 585"<p>If your friend provides goods or services for you in exchange for a "
620"payment, they can easily set up a Taler merchant and receive the\n" 586"payment, they can easily set up a Taler merchant and receive the payment "
621"payment in their bank account.</p>\n" 587"in their bank account.</p>"
622msgstr "" 588msgstr ""
623 589
624#: faq.html.j2:50 590#: faq.html.j2:50
625msgid "" 591msgid ""
626"<p>Future versions of the Taler wallet may allow exchanging coins\n" 592"<p>Future versions of the Taler wallet may allow exchanging coins among "
627"among friends directly as well.</p>\n" 593"friends directly as well.</p>"
628msgstr "" 594msgstr ""
629 595
630#: faq.html.j2:56 596#: faq.html.j2:56
@@ -633,12 +599,12 @@ msgstr ""
633 599
634#: faq.html.j2:57 600#: faq.html.j2:57
635msgid "" 601msgid ""
636"<p>Taler wallets can store digital coins corresponding to multiple\n" 602"<p>Taler wallets can store digital coins corresponding to multiple "
637"different currencies such as the Euro, US Dollars or Bitcoins.</p>\n" 603"different currencies such as the Euro, US Dollars or Bitcoins.</p>"
638msgstr "" 604msgstr ""
639 605
640#: faq.html.j2:61 606#: faq.html.j2:61
641msgid "<p>Taler currently does not offer conversion between currencies.</p>\n" 607msgid "<p>Taler currently does not offer conversion between currencies.</p>"
642msgstr "" 608msgstr ""
643 609
644#: faq.html.j2:65 610#: faq.html.j2:65
@@ -647,12 +613,11 @@ msgstr ""
647 613
648#: faq.html.j2:66 614#: faq.html.j2:66
649msgid "" 615msgid ""
650"<p>Your wallet stores digital coins that are <a\n" 616"<p>Your wallet stores digital coins that are <a "
651"href=\"https://en.wikipedia.org/wiki/Blind_signature\">blindly\n" 617"href=\"https://en.wikipedia.org/wiki/Blind_signature\">blindly signed</a>"
652"signed</a> by an exchange. The use of a blind signature protects your\n" 618" by an exchange. The use of a blind signature protects your privacy as it"
653"privacy as it prevents the exchange from knowing which coin it signed\n" 619" prevents the exchange from knowing which coin it signed for which "
654"for which customer.</p>\n" 620"customer.</p>"
655"\n"
656msgstr "" 621msgstr ""
657 622
658#: glossary.html.j2:6 623#: glossary.html.j2:6
@@ -662,7 +627,7 @@ msgstr ""
662#: glossary.html.j2:8 627#: glossary.html.j2:8
663msgid "" 628msgid ""
664"trusted third party that verifies that the `exchange` is operating " 629"trusted third party that verifies that the `exchange` is operating "
665"correctly\n" 630"correctly"
666msgstr "" 631msgstr ""
667 632
668#: glossary.html.j2:12 633#: glossary.html.j2:12
@@ -672,7 +637,7 @@ msgstr ""
672#: glossary.html.j2:14 637#: glossary.html.j2:14
673msgid "" 638msgid ""
674"traditional financial service provider who offers wire `transfers` " 639"traditional financial service provider who offers wire `transfers` "
675"between accounts\n" 640"between accounts"
676msgstr "" 641msgstr ""
677 642
678#: glossary.html.j2:18 643#: glossary.html.j2:18
@@ -682,7 +647,7 @@ msgstr ""
682#: glossary.html.j2:20 647#: glossary.html.j2:20
683msgid "" 648msgid ""
684"coins are individual token representing a certain amount of value, also " 649"coins are individual token representing a certain amount of value, also "
685"known as the `denomination` of the coin\n" 650"known as the `denomination` of the coin"
686msgstr "" 651msgstr ""
687 652
688#: glossary.html.j2:24 653#: glossary.html.j2:24
@@ -690,7 +655,7 @@ msgid "contract"
690msgstr "" 655msgstr ""
691 656
692#: glossary.html.j2:26 657#: glossary.html.j2:26
693msgid "the proposal signed by the wallet.\n" 658msgid "the proposal signed by the wallet."
694msgstr "" 659msgstr ""
695 660
696#: glossary.html.j2:30 661#: glossary.html.j2:30
@@ -700,7 +665,7 @@ msgstr ""
700#: glossary.html.j2:32 665#: glossary.html.j2:32
701msgid "" 666msgid ""
702"unit of currency, specifies both the currency and the face value of a " 667"unit of currency, specifies both the currency and the face value of a "
703"`coin`\n" 668"`coin`"
704msgstr "" 669msgstr ""
705 670
706#: glossary.html.j2:36 671#: glossary.html.j2:36
@@ -710,7 +675,7 @@ msgstr ""
710#: glossary.html.j2:38 675#: glossary.html.j2:38
711msgid "" 676msgid ""
712"RSA key used by the exchange to certify that a given `coin` is valid and " 677"RSA key used by the exchange to certify that a given `coin` is valid and "
713"of a particular `denomination`\n" 678"of a particular `denomination`"
714msgstr "" 679msgstr ""
715 680
716#: glossary.html.j2:42 681#: glossary.html.j2:42
@@ -721,7 +686,7 @@ msgstr ""
721msgid "" 686msgid ""
722"operation by which a merchant passes coins to an exchange, expecting the " 687"operation by which a merchant passes coins to an exchange, expecting the "
723"exchange to credit his `bank` account in the future using a wire " 688"exchange to credit his `bank` account in the future using a wire "
724"`transfer`\n" 689"`transfer`"
725msgstr "" 690msgstr ""
726 691
727#: glossary.html.j2:48 692#: glossary.html.j2:48
@@ -733,7 +698,7 @@ msgid ""
733"a `coin` is dirty if its public key may be known to an entity other than " 698"a `coin` is dirty if its public key may be known to an entity other than "
734"the customer, thereby creating the danger of some entity being able to " 699"the customer, thereby creating the danger of some entity being able to "
735"link multiple transactions of coin's owner if the coin is not refreshed " 700"link multiple transactions of coin's owner if the coin is not refreshed "
736"first\n" 701"first"
737msgstr "" 702msgstr ""
738 703
739#: glossary.html.j2:54 704#: glossary.html.j2:54
@@ -742,8 +707,8 @@ msgstr ""
742 707
743#: glossary.html.j2:56 708#: glossary.html.j2:56
744msgid "" 709msgid ""
745"Taler's payment service provider. Issues eletronic `coins` during " 710"Taler's payment service provider. Issues eletronic `coins` during "
746"`withdrawal` and redeems them when they are `deposited` by merchants.\n" 711"`withdrawal` and redeems them when they are `deposited` by merchants."
747msgstr "" 712msgstr ""
748 713
749#: glossary.html.j2:60 714#: glossary.html.j2:60
@@ -751,7 +716,7 @@ msgid "extension"
751msgstr "" 716msgstr ""
752 717
753#: glossary.html.j2:62 718#: glossary.html.j2:62
754msgid "implementation of a `wallet` for browsers\n" 719msgid "implementation of a `wallet` for browsers"
755msgstr "" 720msgstr ""
756 721
757#: glossary.html.j2:66 722#: glossary.html.j2:66
@@ -759,7 +724,7 @@ msgid "fresh coin"
759msgstr "" 724msgstr ""
760 725
761#: glossary.html.j2:68 726#: glossary.html.j2:68
762msgid "a `coin` is fresh if its public key is only known to the customer\n" 727msgid "a `coin` is fresh if its public key is only known to the customer"
763msgstr "" 728msgstr ""
764 729
765#: glossary.html.j2:72 730#: glossary.html.j2:72
@@ -769,7 +734,7 @@ msgstr ""
769#: glossary.html.j2:74 734#: glossary.html.j2:74
770msgid "" 735msgid ""
771"offline key used by the exchange to certify denomination keys and message" 736"offline key used by the exchange to certify denomination keys and message"
772" signing keys\n" 737" signing keys"
773msgstr "" 738msgstr ""
774 739
775#: glossary.html.j2:78 740#: glossary.html.j2:78
@@ -777,7 +742,7 @@ msgid "message signing key"
777msgstr "" 742msgstr ""
778 743
779#: glossary.html.j2:80 744#: glossary.html.j2:80
780msgid "key used by the exchange to sign online messages, other than coins\n" 745msgid "key used by the exchange to sign online messages, other than coins"
781msgstr "" 746msgstr ""
782 747
783#: glossary.html.j2:84 748#: glossary.html.j2:84
@@ -787,15 +752,11 @@ msgstr ""
787#: glossary.html.j2:86 752#: glossary.html.j2:86
788msgid "" 753msgid ""
789"specification of the details of a transaction, specifies the payment " 754"specification of the details of a transaction, specifies the payment "
790"obligations\n" 755"obligations for the customer (i.e. the amount), the deliverables of the "
791"for the customer (i.e. the amount), the deliverables of the merchant and " 756"merchant and other related information, such as deadlines or locations; "
792"other\n" 757"However, it lacks some information that the backend is supposed to "
793"related information, such as deadlines or locations; However, it lacks " 758"provide. In other words, after the backend adds the missing information "
794"some\n" 759"to the offer and signs it, it becomes a proposal."
795"information that the backend is supposed to provide.\n"
796"In other words, after the backend adds the missing information to the "
797"offer and\n"
798"signs it, it becomes a proposal.\n"
799msgstr "" 760msgstr ""
800 761
801#: glossary.html.j2:95 762#: glossary.html.j2:95
@@ -803,7 +764,7 @@ msgid "owner"
803msgstr "" 764msgstr ""
804 765
805#: glossary.html.j2:97 766#: glossary.html.j2:97
806msgid "a `coin` is owned by the entity that knows the private key of the coin\n" 767msgid "a `coin` is owned by the entity that knows the private key of the coin"
807msgstr "" 768msgstr ""
808 769
809#: glossary.html.j2:101 770#: glossary.html.j2:101
@@ -813,7 +774,7 @@ msgstr ""
813#: glossary.html.j2:103 774#: glossary.html.j2:103
814msgid "" 775msgid ""
815"message that cryptographically demonstrates that a particular claim is " 776"message that cryptographically demonstrates that a particular claim is "
816"correct\n" 777"correct"
817msgstr "" 778msgstr ""
818 779
819#: glossary.html.j2:107 780#: glossary.html.j2:107
@@ -821,7 +782,7 @@ msgid "proposal"
821msgstr "" 782msgstr ""
822 783
823#: glossary.html.j2:109 784#: glossary.html.j2:109
824msgid "a sketch that has been completed and signed by the merchant backend.\n" 785msgid "a sketch that has been completed and signed by the merchant backend."
825msgstr "" 786msgstr ""
826 787
827#: glossary.html.j2:113 788#: glossary.html.j2:113
@@ -832,7 +793,7 @@ msgstr ""
832msgid "" 793msgid ""
833"funds set aside for future use; either the balance of a customer at the " 794"funds set aside for future use; either the balance of a customer at the "
834"exchange ready for `withdrawal`, or the funds kept in the exchange's bank" 795"exchange ready for `withdrawal`, or the funds kept in the exchange's bank"
835" account to cover obligations from coins in circulation\n" 796" account to cover obligations from coins in circulation"
836msgstr "" 797msgstr ""
837 798
838#: glossary.html.j2:119 799#: glossary.html.j2:119
@@ -842,7 +803,7 @@ msgstr ""
842#: glossary.html.j2:121 803#: glossary.html.j2:121
843msgid "" 804msgid ""
844"operation by which a `dirty` `coin` is converted into one or more `fresh`" 805"operation by which a `dirty` `coin` is converted into one or more `fresh`"
845" coins\n" 806" coins"
846msgstr "" 807msgstr ""
847 808
848#: glossary.html.j2:125 809#: glossary.html.j2:125
@@ -853,7 +814,7 @@ msgstr ""
853msgid "" 814msgid ""
854"operation by which a merchant steps back from the right to funds that he " 815"operation by which a merchant steps back from the right to funds that he "
855"obtained from a `deposit` operation, giving the right to the funds back " 816"obtained from a `deposit` operation, giving the right to the funds back "
856"to the customer\n" 817"to the customer"
857msgstr "" 818msgstr ""
858 819
859#: glossary.html.j2:131 820#: glossary.html.j2:131
@@ -864,7 +825,7 @@ msgstr ""
864msgid "" 825msgid ""
865"users can share ownership of a `coin` by sharing access to the coin's " 826"users can share ownership of a `coin` by sharing access to the coin's "
866"private key, thereby allowing all co-owners to spend the coin at any " 827"private key, thereby allowing all co-owners to spend the coin at any "
867"time.\n" 828"time."
868msgstr "" 829msgstr ""
869 830
870#: glossary.html.j2:137 831#: glossary.html.j2:137
@@ -872,7 +833,7 @@ msgid "signing key"
872msgstr "" 833msgstr ""
873 834
874#: glossary.html.j2:139 835#: glossary.html.j2:139
875msgid "see message signing key.\n" 836msgid "see message signing key."
876msgstr "" 837msgstr ""
877 838
878#: glossary.html.j2:143 839#: glossary.html.j2:143
@@ -882,7 +843,7 @@ msgstr ""
882#: glossary.html.j2:145 843#: glossary.html.j2:145
883msgid "" 844msgid ""
884"operation by which a customer gives a merchant the right to `deposit` " 845"operation by which a customer gives a merchant the right to `deposit` "
885"coins in return for merchandise\n" 846"coins in return for merchandise"
886msgstr "" 847msgstr ""
887 848
888#: glossary.html.j2:149 849#: glossary.html.j2:149
@@ -890,7 +851,7 @@ msgid "transfer"
890msgstr "" 851msgstr ""
891 852
892#: glossary.html.j2:151 853#: glossary.html.j2:151
893msgid "method of sending funds between `bank` accounts\n" 854msgid "method of sending funds between `bank` accounts"
894msgstr "" 855msgstr ""
895 856
896#: glossary.html.j2:155 857#: glossary.html.j2:155
@@ -900,7 +861,7 @@ msgstr ""
900#: glossary.html.j2:157 861#: glossary.html.j2:157
901msgid "" 862msgid ""
902"method by which ownership is exclusively transferred from one entity to " 863"method by which ownership is exclusively transferred from one entity to "
903"another\n" 864"another"
904msgstr "" 865msgstr ""
905 866
906#: glossary.html.j2:161 867#: glossary.html.j2:161
@@ -908,7 +869,7 @@ msgid "transaction id"
908msgstr "" 869msgstr ""
909 870
910#: glossary.html.j2:163 871#: glossary.html.j2:163
911msgid "unique number by which a merchant identifies a `transaction`\n" 872msgid "unique number by which a merchant identifies a `transaction`"
912msgstr "" 873msgstr ""
913 874
914#: glossary.html.j2:167 875#: glossary.html.j2:167
@@ -918,7 +879,7 @@ msgstr ""
918#: glossary.html.j2:169 879#: glossary.html.j2:169
919msgid "" 880msgid ""
920"software running on a customer's computer; withdraws, stores and spends " 881"software running on a customer's computer; withdraws, stores and spends "
921"coins\n" 882"coins"
922msgstr "" 883msgstr ""
923 884
924#: glossary.html.j2:173 885#: glossary.html.j2:173
@@ -926,7 +887,7 @@ msgid "wire transfer"
926msgstr "" 887msgstr ""
927 888
928#: glossary.html.j2:175 889#: glossary.html.j2:175
929msgid "see `transfer`\n" 890msgid "see `transfer`"
930msgstr "" 891msgstr ""
931 892
932#: glossary.html.j2:179 893#: glossary.html.j2:179
@@ -936,7 +897,7 @@ msgstr ""
936#: glossary.html.j2:181 897#: glossary.html.j2:181
937msgid "" 898msgid ""
938"subject of a wire `transfer`; usually a random string to uniquely " 899"subject of a wire `transfer`; usually a random string to uniquely "
939"identify the `transfer`\n" 900"identify the `transfer`"
940msgstr "" 901msgstr ""
941 902
942#: glossary.html.j2:185 903#: glossary.html.j2:185
@@ -946,7 +907,7 @@ msgstr ""
946#: glossary.html.j2:187 907#: glossary.html.j2:187
947msgid "" 908msgid ""
948"operation by which a `wallet` can convert funds from a reserve to fresh " 909"operation by which a `wallet` can convert funds from a reserve to fresh "
949"coins\n" 910"coins"
950msgstr "" 911msgstr ""
951 912
952#: governments.html.j2:6 913#: governments.html.j2:6
@@ -955,13 +916,12 @@ msgstr ""
955 916
956#: governments.html.j2:8 917#: governments.html.j2:8
957msgid "" 918msgid ""
958"Taler provides accountability to ensure business operate\n" 919"Taler provides accountability to ensure business operate legally, while "
959"legally, while also respecting civil liberties of\n" 920"also respecting civil liberties of citizens. Taler is a payment system "
960"citizens. Taler is a payment system based on\n" 921"based on open standards and free software. Taler needs governments as "
961"open standards and free software. Taler needs\n" 922"they set a financial framework and act as trusted regulators. Taler "
962"governments as they set a financial framework and act as\n" 923"contributes to digital sovereignty in the critical financial "
963"trusted regulators. Taler contributes to digital\n" 924"infrastructure."
964"sovereignty in the critical financial infrastructure.\n"
965msgstr "" 925msgstr ""
966 926
967#: governments.html.j2:25 index.html.j2:71 927#: governments.html.j2:25 index.html.j2:71
@@ -970,51 +930,44 @@ msgstr "Tassabile"
970 930
971#: governments.html.j2:28 931#: governments.html.j2:28
972msgid "" 932msgid ""
973"Taler was built with the goal of fighting corruption and\n" 933"Taler was built with the goal of fighting corruption and supporting "
974"supporting taxation. With Taler, the receiver of any\n" 934"taxation. With Taler, the receiver of any form of payment is easily "
975"form of payment is easily identified by the government,\n" 935"identified by the government, and the merchant can be compelled to "
976"and the merchant can be compelled to provide the contract\n" 936"provide the contract that was accepted by the customer. Governments can "
977"that was accepted by the customer. Governments can use\n" 937"use this data to tax businesses and individuals based on their income, "
978"this data to tax businesses and individuals based on\n" 938"making tax evasion and black markets less viable."
979"their income, making tax evasion and black markets less\n"
980"viable.\n"
981msgstr "" 939msgstr ""
982 940
983#: governments.html.j2:41 941#: governments.html.j2:41
984msgid "" 942msgid ""
985"Thus, despite offering anonymity for citizens spending\n" 943"Thus, despite offering anonymity for citizens spending digital cash to "
986"digital cash to buy goods and services, Taler also\n" 944"buy goods and services, Taler also ensures that the state can observe "
987"ensures that the state can observe incoming funds. This\n" 945"incoming funds. This can be used to ensure businesses engage only in "
988"can be used to ensure businesses engage only in legal\n" 946"legal activities, and do not evade income tax, sales tax or value-added "
989"activities, and do not evade income tax, sales tax or\n" 947"tax. However, this observational capability does not extend to the "
990"value-added tax. However, this observational capability\n" 948"immediate personal domain. In particular, monitoring does not cover "
991"does not extend to the immediate personal domain. In\n" 949"shared access to funds with trusted friends and family, or synchronizing "
992"particular, monitoring does not cover shared access to\n" 950"wallets across multiple devices."
993"funds with trusted friends and family, or synchronizing\n"
994"wallets across multiple devices.\n"
995msgstr "" 951msgstr ""
996 952
997#: governments.html.j2:61 953#: governments.html.j2:61
998msgid "" 954msgid ""
999"Taler's payments are cryptographically secured. Thus,\n" 955"Taler's payments are cryptographically secured. Thus, customers, "
1000"customers, merchants and the Taler payment service provider\n" 956"merchants and the Taler payment service provider (the exchange) can "
1001"(the exchange) can mathematically\n" 957"mathematically demonstrate their lawful behavior in court in case of "
1002"demonstrate their lawful behavior in court in case of\n" 958"disputes. Financial damages are strictly limited, improving economic "
1003"disputes. Financial damages are strictly limited,\n" 959"security for individuals, merchants, the exchange and the state."
1004"improving economic security for individuals, merchants,\n"
1005"the exchange and the state.\n"
1006msgstr "" 960msgstr ""
1007 961
1008#: governments.html.j2:73 962#: governments.html.j2:73
1009msgid "" 963msgid ""
1010"As a payment service provider, the Taler exchange is\n" 964"As a payment service provider, the Taler exchange is subject to financial"
1011"subject to financial regulation. Financial regulation and\n" 965" regulation. Financial regulation and regular audits are critical to "
1012"regular audits are critical to establish trust. In\n" 966"establish trust. In particular, the Taler design mandates the existence "
1013"particular, the Taler design mandates the existence of an\n" 967"of an independent auditor who checks cryptographic proofs that accumulate"
1014"independent auditor who checks cryptographic proofs that\n" 968" at the exchange to ensure that the escrow account is managed honestly. "
1015"accumulate at the exchange to ensure that the escrow\n" 969"This ensures that the exchange does not threaten the economy due to "
1016"account is managed honestly. This ensures that the\n" 970"fraud."
1017"exchange does not threaten the economy due to fraud.\n"
1018msgstr "" 971msgstr ""
1019 972
1020#: governments.html.j2:88 index.html.j2:97 973#: governments.html.j2:88 index.html.j2:97
@@ -1024,10 +977,9 @@ msgstr "Libero"
1024 977
1025#: governments.html.j2:91 978#: governments.html.j2:91
1026msgid "" 979msgid ""
1027"Taler is free software implementing an open protocol\n" 980"Taler is free software implementing an open protocol standard. Thus, "
1028"standard. Thus, Taler will enable competition and avoid\n" 981"Taler will enable competition and avoid the monopolization of payment "
1029"the monopolization of payment systems that threatens\n" 982"systems that threatens global political and financial stability today."
1030"global political and financial stability today.\n"
1031msgstr "" 983msgstr ""
1032 984
1033#: governments.html.j2:101 985#: governments.html.j2:101
@@ -1036,11 +988,9 @@ msgstr "Efficiente"
1036 988
1037#: governments.html.j2:104 989#: governments.html.j2:104
1038msgid "" 990msgid ""
1039"Taler has an efficient design. Unlike\n" 991"Taler has an efficient design. Unlike Blockchain-based payment systems, "
1040"Blockchain-based payment systems, such as Bitcoin,\n" 992"such as Bitcoin, Taler will not threaten the availability of national "
1041"Taler will not threaten the availability of\n" 993"electric grids or (significantly) contribute to environmental pollution."
1042"national electric grids or (significantly)\n"
1043"contribute to environmental pollution.\n"
1044msgstr "" 994msgstr ""
1045 995
1046#: governments.html.j2:120 996#: governments.html.j2:120
@@ -1093,41 +1043,36 @@ msgstr ""
1093 1043
1094#: governments.html.j2:140 1044#: governments.html.j2:140
1095msgid "" 1045msgid ""
1096"Taler assumes governments can observe traditional wire transfers\n" 1046"Taler assumes governments can observe traditional wire transfers entering"
1097"entering and leaving the Taler payment system. Starting with the\n" 1047" and leaving the Taler payment system. Starting with the wire transfers, "
1098"wire transfers, governments can obtain:\n" 1048"governments can obtain:"
1099msgstr "" 1049msgstr ""
1100 1050
1101#: governments.html.j2:148 1051#: governments.html.j2:148
1102msgid "" 1052msgid ""
1103"The total amount of digital currency withdrawn by a\n" 1053"The total amount of digital currency withdrawn by a customer. The "
1104"customer. The government can impose limits on how much\n" 1054"government can impose limits on how much digital cash a customer can "
1105"digital cash a customer can withdraw within a\n" 1055"withdraw within a given time frame."
1106"given time frame.\n"
1107msgstr "" 1056msgstr ""
1108 1057
1109#: governments.html.j2:157 1058#: governments.html.j2:157
1110msgid "" 1059msgid "The income received by any merchant via the Taler system."
1111"The income received by any merchant via the Taler\n"
1112"system.\n"
1113msgstr "" 1060msgstr ""
1114 1061
1115#: governments.html.j2:164 1062#: governments.html.j2:164
1116msgid "" 1063msgid ""
1117"The exact details of the underlying contract that was\n" 1064"The exact details of the underlying contract that was signed between "
1118"signed between customer and merchant. However, this\n" 1065"customer and merchant. However, this information would typically not "
1119"information would typically not include the identity\n" 1066"include the identity of the customer."
1120"of the customer.\n"
1121msgstr "" 1067msgstr ""
1122 1068
1123#: governments.html.j2:174 1069#: governments.html.j2:174
1124msgid "" 1070msgid ""
1125"The amounts of digital coins legitimately withdrawn\n" 1071"The amounts of digital coins legitimately withdrawn by customers from the"
1126"by customers from the exchange, the value of\n" 1072" exchange, the value of non-redeemed digital coins in customer's wallets,"
1127"non-redeemed digital coins in customer's wallets, the\n" 1073" the value and corresponding wire details of deposit operations performed"
1128"value and corresponding wire details of deposit\n" 1074" by merchants with the exchange, and the income of the exchange from "
1129"operations performed by merchants with the exchange,\n" 1075"transaction fees."
1130"and the income of the exchange from transaction fees.\n"
1131msgstr "" 1076msgstr ""
1132 1077
1133#: index.html.j2:10 1078#: index.html.j2:10
@@ -1136,12 +1081,12 @@ msgstr ""
1136 1081
1137#: index.html.j2:13 1082#: index.html.j2:13
1138msgid "" 1083msgid ""
1139"GNU Taler is an electronic payment system under development at\n" 1084"GNU Taler is an electronic payment system under development at <a "
1140"<a href=\"http://www.inria.fr/\">Inria</a>. We expect to make it\n" 1085"href=\"http://www.inria.fr/\">Inria</a>. We expect to make it operational"
1141"operational in 2017. You can learn about Taler on this website,\n" 1086" in 2017. You can learn about Taler on this website, try the <a "
1142"try the <a href=\"https://demo.taler.net\">demo</a> and look at\n" 1087"href=\"https://demo.taler.net\">demo</a> and look at our <a "
1143"our <a href=\"https://docs.taler.net\">developer</a> and <a\n" 1088"href=\"https://docs.taler.net\">developer</a> and <a "
1144"href=\"https://api.taler.net\">API</a> documentation.\n" 1089"href=\"https://api.taler.net\">API</a> documentation."
1145msgstr "" 1090msgstr ""
1146 1091
1147#: index.html.j2:29 1092#: index.html.j2:29
@@ -1150,53 +1095,48 @@ msgstr ""
1150 1095
1151#: index.html.j2:32 1096#: index.html.j2:32
1152msgid "" 1097msgid ""
1153"Taler is easy to integrate with existing Web\n" 1098"Taler is easy to integrate with existing Web applications. Payments are "
1154"applications. Payments are cryptographically\n" 1099"cryptographically secured and are confirmed within milliseconds with "
1155"secured and are confirmed within milliseconds with\n" 1100"extremely low transaction costs."
1156"extremely low transaction costs.\n"
1157msgstr "" 1101msgstr ""
1158 1102
1159#: index.html.j2:45 1103#: index.html.j2:45
1160msgid "" 1104msgid ""
1161"Taler does not introduce a new currency. Taler\n" 1105"Taler does not introduce a new currency. Taler uses a digital wallet "
1162"uses a digital wallet storing coins and payment service\n" 1106"storing coins and payment service providers with escrow accounts in "
1163"providers with escrow accounts in existing currencies.\n" 1107"existing currencies. Thus, Taler's cryptographic coins correspond to "
1164"Thus, Taler's cryptographic coins correspond to existing\n" 1108"existing currencies, such as US Dollars, Euros or even Bitcoins."
1165"currencies, such as US Dollars, Euros or even Bitcoins.\n"
1166msgstr "" 1109msgstr ""
1167 1110
1168#: index.html.j2:59 1111#: index.html.j2:59
1169msgid "" 1112msgid ""
1170"By design Taler does not suffer from many classes\n" 1113"By design Taler does not suffer from many classes of security problems "
1171"of security problems such as phishing or counterfeit.\n" 1114"such as phishing or counterfeit. Thanks to its security features, Taler "
1172"Thanks to its security features, Taler never rejects a legitimate\n" 1115"never rejects a legitimate customer due to a fraud-detection false "
1173"customer due to a fraud-detection false positive.\n" 1116"positive."
1174msgstr "" 1117msgstr ""
1175 1118
1176#: index.html.j2:74 1119#: index.html.j2:74
1177msgid "" 1120msgid ""
1178"When using Taler, merchant's revenue is transparent for tax\n" 1121"When using Taler, merchant's revenue is transparent for tax collection "
1179"collection authorities. Unlike cash and most digital currencies,\n" 1122"authorities. Unlike cash and most digital currencies, Taler helps prevent"
1180"Taler helps prevent black markets. Taler is not suitable for\n" 1123" black markets. Taler is not suitable for illegal activities."
1181"illegal activities.\n"
1182msgstr "" 1124msgstr ""
1183 1125
1184#: index.html.j2:86 1126#: index.html.j2:86
1185msgid "" 1127msgid ""
1186"When you pay with Taler, your identity does not\n" 1128"When you pay with Taler, your identity does not have to be revealed. Just"
1187"have to be revealed. Just like\n" 1129" like payments in cash, nobody else can track how you spent your "
1188"payments in cash, nobody else can track how you\n" 1130"electronic money. However, you obtain a legally valid proof of payment."
1189"spent your electronic money. However, you obtain a\n"
1190"legally valid proof of payment.\n"
1191msgstr "" 1131msgstr ""
1192 1132
1193#: index.html.j2:100 1133#: index.html.j2:100
1194msgid "" 1134msgid ""
1195"Taler provides protocols and reference implementations that in\n" 1135"Taler provides protocols and reference implementations that in principle "
1196"principle enables anybody to run their own payment infrastructure,\n" 1136"enables anybody to run their own payment infrastructure, be it "
1197"be it individuals, organizations or whole countries. Since the\n" 1137"individuals, organizations or whole countries. Since the reference "
1198"reference implementation is a <a href=\"http://www.gnu.org/\">GNU</a>\n" 1138"implementation is a <a href=\"http://www.gnu.org/\">GNU</a> package, it "
1199"package, it will always remain free software.\n" 1139"will always remain free software."
1200msgstr "" 1140msgstr ""
1201 1141
1202#: index.html.j2:117 1142#: index.html.j2:117
@@ -1205,12 +1145,12 @@ msgstr ""
1205 1145
1206#: index.html.j2:118 1146#: index.html.j2:118
1207msgid "" 1147msgid ""
1208"<p>To pay with Taler, customers install an electronic wallet\n" 1148"<p>To pay with Taler, customers install an electronic wallet on their "
1209"on their device. Before the first payment, the wallet's balance must\n" 1149"device. Before the first payment, the wallet's balance must be charged in"
1210"be charged in the desired currency by some other means of payment.</p>\n" 1150" the desired currency by some other means of payment.</p> <p>Once the "
1211"<p>Once the wallet is charged, payments on websites take only one click,\n" 1151"wallet is charged, payments on websites take only one click, are never "
1212"are never falsely rejected by fraud detection and do not pose any risk\n" 1152"falsely rejected by fraud detection and do not pose any risk of phishing "
1213"of phishing or identity theft.</p>\n" 1153"or identity theft.</p>"
1214msgstr "" 1154msgstr ""
1215 1155
1216#: index.html.j2:128 1156#: index.html.j2:128
@@ -1219,11 +1159,11 @@ msgstr ""
1219 1159
1220#: index.html.j2:129 1160#: index.html.j2:129
1221msgid "" 1161msgid ""
1222"<p>To receive Taler payments, a merchant needs a bank account\n" 1162"<p>To receive Taler payments, a merchant needs a bank account in the "
1223"in the desired currency. We provide supporting software\n" 1163"desired currency. We provide supporting software in various programming "
1224"in various programming languages to make the integration painless.\n" 1164"languages to make the integration painless. The merchant's backend for "
1225"The merchant's backend for Taler transaction processing can run\n" 1165"Taler transaction processing can run on the merchant's premises or be "
1226"on the merchant's premises or be hosted by a third party.</p>\n" 1166"hosted by a third party.</p>"
1227msgstr "" 1167msgstr ""
1228 1168
1229#: index.html.j2:145 1169#: index.html.j2:145
@@ -1240,10 +1180,8 @@ msgstr ""
1240 1180
1241#: investors.html.j2:9 1181#: investors.html.j2:9
1242msgid "" 1182msgid ""
1243"We have created a company, Taler Systems SA in\n" 1183"We have created a company, Taler Systems SA in Luxembourg.<br> Please "
1244"Luxembourg.<br>\n" 1184"contact <tt>invest@taler.net</tt> if you want to invest in Taler."
1245"Please contact <tt>invest@taler.net</tt>\n"
1246"if you want to invest in Taler.\n"
1247msgstr "" 1185msgstr ""
1248 1186
1249#: investors.html.j2:24 1187#: investors.html.j2:24
@@ -1253,20 +1191,17 @@ msgstr ""
1253#: investors.html.j2:27 1191#: investors.html.j2:27
1254msgid "" 1192msgid ""
1255"Our <a href=\"about.html\">team</a> combines world-class business " 1193"Our <a href=\"about.html\">team</a> combines world-class business "
1256"leaders,\n" 1194"leaders, cryptographers, software engineers, civil-rights activists and "
1257"cryptographers, software engineers, civil-rights\n" 1195"academics. We are unified by a vision of how payments should work and the"
1258"activists and academics. We are unified by a vision\n" 1196" goal of imposing this vision upon the world."
1259"of how payments should work and the goal of\n"
1260"imposing this vision upon the world.\n"
1261msgstr "" 1197msgstr ""
1262 1198
1263#: investors.html.j2:37 1199#: investors.html.j2:37
1264msgid "" 1200msgid ""
1265"We are currently supported by <a href=\"http://www.inria.fr/\">Inria</a>," 1201"We are currently supported by <a href=\"http://www.inria.fr/\">Inria</a>,"
1266" the French\n" 1202" the French national institute for research in informatics and "
1267"national institute for research in informatics and\n"
1268"automation, and the <a href=\"https://renewablefreedom.org/\">Renewable " 1203"automation, and the <a href=\"https://renewablefreedom.org/\">Renewable "
1269"Freedom Foundation</a>.\n" 1204"Freedom Foundation</a>."
1270msgstr "" 1205msgstr ""
1271 1206
1272#: investors.html.j2:45 1207#: investors.html.j2:45
@@ -1276,16 +1211,13 @@ msgstr ""
1276#: investors.html.j2:48 1211#: investors.html.j2:48
1277msgid "" 1212msgid ""
1278"All transactions in Taler are secured using <a " 1213"All transactions in Taler are secured using <a "
1279"href=\"bibliography.html\">modern\n" 1214"href=\"bibliography.html\">modern cryptography</a> and trust in all "
1280"cryptography</a> and trust in all parties is\n" 1215"parties is minimized. Financial damage is bounded (for customers, "
1281"minimized. Financial damage is bounded (for\n" 1216"merchants and the exchange) even in the case that systems are compromised"
1282"customers, merchants and the exchange) even in the\n" 1217" and private keys are stolen. Databases can be audited for consistency, "
1283"case that systems are compromised and private keys\n" 1218"resulting in either the detection of compromised systems or the "
1284"are stolen. Databases can be audited for\n" 1219"demonstration that participants were honest. Actual transaction costs are"
1285"consistency, resulting in either the detection of\n" 1220" fractions of a cent."
1286"compromised systems or the demonstration that\n"
1287"participants were honest. Actual transaction costs\n"
1288"are fractions of a cent.\n"
1289msgstr "" 1221msgstr ""
1290 1222
1291#: investors.html.j2:63 1223#: investors.html.j2:63
@@ -1294,15 +1226,13 @@ msgstr ""
1294 1226
1295#: investors.html.j2:66 1227#: investors.html.j2:66
1296msgid "" 1228msgid ""
1297"The scalable business model for Taler is the operation\n" 1229"The scalable business model for Taler is the operation of the payment "
1298"of the payment service provider, which converts money from\n" 1230"service provider, which converts money from traditional payment systems "
1299"traditional payment systems (MasterCard, SEPA, UPI,\n" 1231"(MasterCard, SEPA, UPI, Visa, Bitcoin, ACH, SWIFT, etc.) to anonymous "
1300"Visa, Bitcoin, ACH, SWIFT, etc.) to anonymous\n" 1232"electronic coins in the same currency. The customer can then redeem the "
1301"electronic coins in the same currency. The customer\n" 1233"electronic coins at a merchant, who can exchange them for money "
1302"can then redeem the electronic coins at a merchant,\n" 1234"represented using traditional payment systems at the exchange. The "
1303"who can exchange them for money represented using\n" 1235"exchange charges fees to facilitate the transactions."
1304"traditional payment systems at the exchange. The\n"
1305"exchange charges fees to facilitate the transactions.\n"
1306msgstr "" 1236msgstr ""
1307 1237
1308#: investors.html.j2:85 1238#: investors.html.j2:85
@@ -1315,10 +1245,10 @@ msgstr ""
1315 1245
1316#: investors.html.j2:110 1246#: investors.html.j2:110
1317msgid "" 1247msgid ""
1318"The payment service operator runs the <em>Taler exchange</em>.\n" 1248"The payment service operator runs the <em>Taler exchange</em>. The "
1319"The exchange charges <b>transaction fees</b> to customers or merchants.\n" 1249"exchange charges <b>transaction fees</b> to customers or merchants. Its "
1320"Its operational expenses are from wire transfers with the banking\n" 1250"operational expenses are from wire transfers with the banking system and "
1321"system and the operation of the computing infrastructure.\n" 1251"the operation of the computing infrastructure."
1322msgstr "" 1252msgstr ""
1323 1253
1324#: investors.html.j2:120 1254#: investors.html.j2:120
@@ -1353,11 +1283,10 @@ msgstr ""
1353 1283
1354#: merchants.html.j2:8 1284#: merchants.html.j2:8
1355msgid "" 1285msgid ""
1356"Taler is a cost-effective electronic payment system\n" 1286"Taler is a cost-effective electronic payment system which provides you "
1357"which provides you with cryptographic proof that\n" 1287"with cryptographic proof that the payment worked correctly within "
1358"the payment worked correctly within milliseconds.\n" 1288"milliseconds. Your Web customers pay with previously unknown levels of "
1359"Your Web customers pay with previously unknown\n" 1289"convenience without risk of fraud."
1360"levels of convenience without risk of fraud.\n"
1361msgstr "" 1290msgstr ""
1362 1291
1363#: merchants.html.j2:22 1292#: merchants.html.j2:22
@@ -1366,39 +1295,32 @@ msgstr "Veloce"
1366 1295
1367#: merchants.html.j2:25 1296#: merchants.html.j2:25
1368msgid "" 1297msgid ""
1369"Processing transactions with Taler is fast,\n" 1298"Processing transactions with Taler is fast, allowing you to confirm the "
1370"allowing you to confirm the transaction with your\n" 1299"transaction with your customer virtually immediately. Your customers will"
1371"customer virtually immediately. Your customers\n" 1300" appreciate that they do not have to type in credit card information and "
1372"will appreciate that they do not have to type in\n" 1301"play the &quot;verified by&quot; game. By making payments significantly "
1373"credit card information and play the &quot;verified\n" 1302"more convenient for your customers, you may be able to use Taler for "
1374"by&quot; game. By making payments significantly\n" 1303"small transactions that would not work with credit card payments due to "
1375"more convenient for your customers, you may be able\n" 1304"the mental overhead for customers."
1376"to use Taler for small transactions that would not\n"
1377"work with credit card payments due to the mental\n"
1378"overhead for customers.\n"
1379msgstr "" 1305msgstr ""
1380 1306
1381#: merchants.html.j2:44 1307#: merchants.html.j2:44
1382msgid "" 1308msgid ""
1383"You will have cryptographic proof of payment from the\n" 1309"You will have cryptographic proof of payment from the Taler payment "
1384"Taler payment service provider. With Taler you never\n" 1310"service provider. With Taler you never handle sensitive customer account "
1385"handle sensitive customer account information and thus\n" 1311"information and thus do not have to undergo any particular security "
1386"do not have to undergo any particular security audits\n" 1312"audits (such as PCI DSS). Your systems will have customer contracts with "
1387"(such as PCI DSS). Your systems will have customer\n" 1313"qualified signatures for all transactions which you can use in court in "
1388"contracts with qualified signatures for all\n" 1314"case of disputes."
1389"transactions which you can use in court in case of\n"
1390"disputes.\n"
1391msgstr "" 1315msgstr ""
1392 1316
1393#: merchants.html.j2:61 1317#: merchants.html.j2:61
1394msgid "" 1318msgid ""
1395"Taler is free software, and you can use the\n" 1319"Taler is free software, and you can use the liberally-licensed reference "
1396"liberally-licensed reference code as a starting\n" 1320"code as a starting point to integrate Taler into your services. To use "
1397"point to integrate Taler into your services. To use\n" 1321"Taler, you do not need to pay license fees, and the free software "
1398"Taler, you do not need to pay license fees, and the\n" 1322"development model will ensure that you can select from many competing "
1399"free software development model will ensure that\n" 1323"integrators for support."
1400"you can select from many competing integrators for\n"
1401"support.\n"
1402msgstr "" 1324msgstr ""
1403 1325
1404#: merchants.html.j2:76 1326#: merchants.html.j2:76
@@ -1407,11 +1329,10 @@ msgstr ""
1407 1329
1408#: merchants.html.j2:79 1330#: merchants.html.j2:79
1409msgid "" 1331msgid ""
1410"Taler is uses efficient cryptographic constructions with low\n" 1332"Taler is uses efficient cryptographic constructions with low bandwidth "
1411"bandwidth and storage requirements. Combined with Taler's strong\n" 1333"and storage requirements. Combined with Taler's strong security which "
1412"security which makes fraud impossible, Taler payment service\n" 1334"makes fraud impossible, Taler payment service providers can operate with "
1413"providers can operate with very low overhead and\n" 1335"very low overhead and thus offer low transaction fees."
1414"thus offer low transaction fees.\n"
1415msgstr "" 1336msgstr ""
1416 1337
1417#: merchants.html.j2:89 1338#: merchants.html.j2:89
@@ -1420,10 +1341,9 @@ msgstr "Flessibile"
1420 1341
1421#: merchants.html.j2:92 1342#: merchants.html.j2:92
1422msgid "" 1343msgid ""
1423"Taler can be used for different currencies (such as\n" 1344"Taler can be used for different currencies (such as Euros, US Dollars or "
1424"Euros, US Dollars or Bitcoins) and any amount, limited\n" 1345"Bitcoins) and any amount, limited only by applicable regulatation and "
1425"only by applicable regulatation and what denominations\n" 1346"what denominations the payment service provider supports."
1426"the payment service provider supports.\n"
1427msgstr "" 1347msgstr ""
1428 1348
1429#: merchants.html.j2:101 1349#: merchants.html.j2:101
@@ -1432,11 +1352,10 @@ msgstr "Etico"
1432 1352
1433#: merchants.html.j2:104 1353#: merchants.html.j2:104
1434msgid "" 1354msgid ""
1435"Taler prevents tax evasion and money laundering.\n" 1355"Taler prevents tax evasion and money laundering. Taler's protocols are "
1436"Taler's protocols are efficient and do not use wasteful\n" 1356"efficient and do not use wasteful proof-of-work calculations. Taler "
1437"proof-of-work calculations. Taler encourages\n" 1357"encourages transparency by providing an open standard and free software "
1438"transparency by providing an open standard and free\n" 1358"reference implementations."
1439"software reference implementations.\n"
1440msgstr "" 1359msgstr ""
1441 1360
1442#: merchants.html.j2:119 1361#: merchants.html.j2:119
@@ -1466,28 +1385,25 @@ msgstr ""
1466 1385
1467#: merchants.html.j2:147 1386#: merchants.html.j2:147
1468msgid "" 1387msgid ""
1469"The backend <b>signs</b> and <b>stores</b> the\n" 1388"The backend <b>signs</b> and <b>stores</b> the complete terms of offers "
1470"complete terms of offers made by the merchant to customers.\n" 1389"made by the merchant to customers. For this, the merchant's frontend "
1471"For this, the merchant's frontend needs to give the\n" 1390"needs to give the customer's order in a JSON format to the backend."
1472"customer's order in a JSON format to the backend.\n"
1473msgstr "" 1391msgstr ""
1474 1392
1475#: merchants.html.j2:156 1393#: merchants.html.j2:156
1476msgid "" 1394msgid ""
1477"The backend <b>validates</b> payments received from\n" 1395"The backend <b>validates</b> payments received from the wallet and "
1478"the wallet and <b>executes</b> them with the Taler\n" 1396"<b>executes</b> them with the Taler payment service provider (the "
1479"payment service provider (the exchange). For this,\n" 1397"exchange). For this, the merchant's frontend must pass the payment "
1480"the merchant's frontend must pass the payment\n" 1398"request through to the Taler backend and check the HTTP status code that "
1481"request through to the Taler backend and check the\n" 1399"is returned."
1482"HTTP status code that is returned.\n"
1483msgstr "" 1400msgstr ""
1484 1401
1485#: merchants.html.j2:167 1402#: merchants.html.j2:167
1486msgid "" 1403msgid ""
1487"The backend can <b>list</b> completed transactions\n" 1404"The backend can <b>list</b> completed transactions and <b>map</b> wire "
1488"and <b>map</b> wire transfers to sets of business\n" 1405"transfers to sets of business transactions, including the exact terms of "
1489"transactions, including the exact terms of each\n" 1406"each contract."
1490"contract.\n"
1491msgstr "" 1407msgstr ""
1492 1408
1493#: press.html.j2:4 1409#: press.html.j2:4
@@ -1709,3 +1625,1001 @@ msgstr ""
1709#~ msgid "Low Fees" 1625#~ msgid "Low Fees"
1710#~ msgstr "Prezzi bassi" 1626#~ msgstr "Prezzi bassi"
1711 1627
1628#~ msgid ""
1629#~ "Taler largely functions like digital "
1630#~ "cash. You withdraw money from your "
1631#~ "bank account into your electronic "
1632#~ "wallet, and can henceforth spend digital"
1633#~ " cash. The electronic wallet can "
1634#~ "carry multiple currencies. "
1635#~ msgstr ""
1636
1637#~ msgid ""
1638#~ "Taler uses modern cryptography, ensuring "
1639#~ "that there is no counterfeit. Your "
1640#~ "digital wallet is safer than your "
1641#~ "physical wallet. At most, you can "
1642#~ "lose its contents because your computer"
1643#~ " or mobile is irreparably damaged or"
1644#~ " compromised. Unlike a physical wallet,"
1645#~ " you can make backups to secure "
1646#~ "against data loss."
1647#~ msgstr ""
1648
1649#~ msgid ""
1650#~ "You will be able to withdraw money"
1651#~ " to replenish the digital coins in"
1652#~ " your wallet using your credit card"
1653#~ " or wire transfers. Afterwards you "
1654#~ "can pay with one-click using the"
1655#~ " Taler wallet, which optionally keeps "
1656#~ "your transaction history on your "
1657#~ "computer."
1658#~ msgstr ""
1659
1660#~ msgid ""
1661#~ "Coins in your digital wallet will "
1662#~ "be of the same denomination as the"
1663#~ " cash in your physical wallet. Taler"
1664#~ " is not a crypto-currency, so "
1665#~ "you do not have to worry about "
1666#~ "cryto-currency related value fluctuations."
1667#~ " Banking with Taler is subject to"
1668#~ " the usual government protections for "
1669#~ "financial services."
1670#~ msgstr ""
1671
1672#~ msgid ""
1673#~ "We currently provide a <a "
1674#~ "href=\"wallet.html\">wallet browser extension</a> "
1675#~ "for Chromium, Chrome, Firefox, Opera and"
1676#~ " Edge. Wallets for mobile phones and"
1677#~ " other platforms will be available in"
1678#~ " the future. "
1679#~ msgstr ""
1680
1681#~ msgid ""
1682#~ "You can see how Taler works in "
1683#~ "practice by visiting our <a "
1684#~ "href=\"https://demo.taler.net\">demo page</a>. "
1685#~ msgstr ""
1686
1687#~ msgid ""
1688#~ "To <b>withdraw</b> electronic coins, the "
1689#~ "customer transfers funds from his bank"
1690#~ " account to the Taler payment service"
1691#~ " provider (the exchange). The wire "
1692#~ "transfer subject must match a code "
1693#~ "identifying the customer's wallet. After "
1694#~ "the wire transfer is complete, the "
1695#~ "wallet will automatically withdraw the "
1696#~ "coins from the exchange."
1697#~ msgstr ""
1698
1699#~ msgid ""
1700#~ "To <b>spend</b> electronic coins, a "
1701#~ "merchant must cause the wallet to "
1702#~ "display a proposal for some purchase."
1703#~ " The wallet will ask the customer"
1704#~ " for one-click confirmation. Payment "
1705#~ "is then instant. Transaction histories "
1706#~ "and digitally signed contracts can be"
1707#~ " preserved by the wallet."
1708#~ msgstr ""
1709
1710#~ msgid ""
1711#~ "An archived, public mailing list for "
1712#~ "GNU Taler is hosted at <a "
1713#~ "href=\"https://lists.gnu.org/mailman/listinfo/taler\">https://lists.gnu.org/mailman/listinfo/taler</a>."
1714#~ " You can send messages to the "
1715#~ "list at <a "
1716#~ "href=\"mailto:taler@gnu.org\">taler@gnu.org</a>. "
1717#~ msgstr ""
1718
1719#~ msgid ""
1720#~ "Team members are generally reachable at"
1721#~ " <tt>LASTNAME@taler.net</tt>. All of us "
1722#~ "support receiving GnuPG encrypted e-mails. \n"
1723#~ msgstr ""
1724
1725#~ msgid ""
1726#~ "We track open feature requests and "
1727#~ "bugs in our <a "
1728#~ "href=\"https://gnunet.org/bugs/\">Bug tracker</a>, which"
1729#~ " is shared with the GNUnet project."
1730#~ " You can also report bugs or "
1731#~ "feature requests to the mailing list."
1732#~ " "
1733#~ msgstr ""
1734
1735#~ msgid ""
1736#~ "For non-technical commercial requests, "
1737#~ "please contact <tt>ceo AT taler.net</tt>. \n"
1738#~ msgstr ""
1739
1740#~ msgid ""
1741#~ "GNU Taler is free software implementing"
1742#~ " an open protocol. Anybody is welcome"
1743#~ " to integrate our reference implementation"
1744#~ " into their applications. Different "
1745#~ "components of Taler are being made "
1746#~ "available under different licenses. The "
1747#~ "Affero GPLv3+ is used for the "
1748#~ "exchange, the LGPLv3+ is used for "
1749#~ "reference code demonstrating integration with"
1750#~ " merchant platforms, and licenses like "
1751#~ "GPLv3+ are used for wallets and "
1752#~ "related customer-facing software. We "
1753#~ "are open for constructive suggestions "
1754#~ "for maximizing the adoption of this "
1755#~ "payment platform. "
1756#~ msgstr ""
1757
1758#~ msgid ""
1759#~ "Taler is designed to work on the"
1760#~ " Internet. To ensure that Taler "
1761#~ "payments can work with restrictive "
1762#~ "network setups, Taler uses a RESTful "
1763#~ "protocol over HTTP or HTTPS. Taler's "
1764#~ "security does not depend upon the "
1765#~ "use of HTTPS, but obviously merchants"
1766#~ " may choose to offer HTTPS for "
1767#~ "consistency and because it generally is"
1768#~ " better for privacy compared to HTTP."
1769#~ " Taler uses JSON to encode structure"
1770#~ " data, making it easy to integrate"
1771#~ " Taler with existing Web applications. "
1772#~ "Taler's protocol is documented in detail"
1773#~ " at <a "
1774#~ "href=\"https://api.taler.net/\">api.taler.net</a>. "
1775#~ msgstr ""
1776
1777#~ msgid ""
1778#~ "Taler is currently primarily developed "
1779#~ "by a research team at <a "
1780#~ "href=\"http://www.inria.fr/\">Inria</a> and <a "
1781#~ "href=\"https://gnunet.org/\">GNUnet</a>. However, "
1782#~ "contributions from anyone are welcome. "
1783#~ "Our Git repositories can be cloned "
1784#~ "using the Git and HTTP access "
1785#~ "methods against <tt>git.taler.net</tt> with "
1786#~ "the name of the respective repository."
1787#~ " A list of repositories can be "
1788#~ "found in our <a "
1789#~ "href=\"https://git.taler.net/\">GitWeb</a>. "
1790#~ msgstr ""
1791
1792#~ msgid ""
1793#~ "In addition to this website, the "
1794#~ "<a href=\"https://git.taler.net/\">documented code</a> "
1795#~ "and the <a href=\"https://api.taler.net/\">API "
1796#~ "documentation</a>. Technical papers can be"
1797#~ " found in our <a "
1798#~ "href=\"bibliography.html\">bibliography</a>. "
1799#~ msgstr ""
1800
1801#~ msgid ""
1802#~ "We have a mailing list for "
1803#~ "developer discussions. You can subscribe "
1804#~ "to or read the list archive at "
1805#~ "<a "
1806#~ "href=\"http://lists.gnu.org/mailman/listinfo/taler\">http://lists.gnu.org/mailman/listinfo/taler</a>."
1807#~ " "
1808#~ msgstr ""
1809
1810#~ msgid ""
1811#~ "We have <a "
1812#~ "href=\"https://buildbot.net/\">Buildbot</a> automation "
1813#~ "tests to detect regressions and check"
1814#~ " for portability at <a "
1815#~ "href=\"https://buildbot.taler.net/\">buildbot.taler.net</a>. "
1816#~ msgstr ""
1817
1818#~ msgid ""
1819#~ "We use <a "
1820#~ "href=\"http://ltp.sourceforge.net/coverage/lcov.php\">LCOV</a> "
1821#~ "to analyze the code coverage of "
1822#~ "our tests, the results are available "
1823#~ "at <a href=\"https://lcov.taler.net/\">lcov.taler.net</a>."
1824#~ " "
1825#~ msgstr ""
1826
1827#~ msgid ""
1828#~ "We use <a "
1829#~ "href=\"https://gnunet.org/gauger\">Gauger</a> for "
1830#~ "performance regression analysis of the "
1831#~ "exchange backend at <a "
1832#~ "href=\"https://gauger.taler.net/\">gauger.taler.net</a>. "
1833#~ msgstr ""
1834
1835#~ msgid ""
1836#~ "The Taler system consists of protocols"
1837#~ " executed among a number of actors"
1838#~ " as illustrated in the illustration "
1839#~ "on the right. Typical transactions "
1840#~ "involve the following steps: "
1841#~ msgstr ""
1842
1843#~ msgid ""
1844#~ "A customer instructs his <b>bank</b> to"
1845#~ " transfer funds from his account to"
1846#~ " the Taler exchange (top left). In"
1847#~ " the subject of the transaction, he"
1848#~ " includes an authentication token from "
1849#~ "his electronic <b>wallet</b>. In Taler "
1850#~ "terminology, the customer creates a "
1851#~ "reserve at the exchange. "
1852#~ msgstr ""
1853
1854#~ msgid ""
1855#~ "Once the exchange has received the "
1856#~ "wire transfer, it allows the customer's"
1857#~ " electronic wallet to <b>withdraw</b> "
1858#~ "electronic coins. The electronic coins "
1859#~ "are digital representations of the "
1860#~ "original currency from the transfer. It"
1861#~ " is important to note that the "
1862#~ "exchange does not learn the &quot;serial"
1863#~ " numbers&quot; of the coins created "
1864#~ "in this process, so it cannot tell"
1865#~ " later which customer purchased what "
1866#~ "at which merchant. The use of "
1867#~ "Taler does not change the currency "
1868#~ "or the total value of the funds"
1869#~ " (except for fees which the exchange"
1870#~ " may charge for the service). "
1871#~ msgstr ""
1872
1873#~ msgid ""
1874#~ "Once the customer has the digital "
1875#~ "coins in his wallet, the wallet "
1876#~ "can be used to <b>spend</b> the "
1877#~ "coins with merchant portals that support"
1878#~ " the Taler payment system and accept"
1879#~ " the respective exchange as a "
1880#~ "business partner (bottom arrow). This "
1881#~ "creates a digital contract signed by "
1882#~ "the customer's coins and the merchant."
1883#~ " If necessary, the customer can "
1884#~ "later use this digitally signed contract"
1885#~ " in a court of law to prove "
1886#~ "the exact terms of the contract "
1887#~ "and that he paid the respective "
1888#~ "amount. The customer does not learn "
1889#~ "the banking details of the merchant, "
1890#~ "and Taler does not require the "
1891#~ "merchant to learn the identity of "
1892#~ "the customer. Naturally, the customer "
1893#~ "can spend any fraction of his "
1894#~ "digital coins (the system takes care "
1895#~ "of customers getting change). "
1896#~ msgstr ""
1897
1898#~ msgid ""
1899#~ "Merchants receiving digital coins "
1900#~ "<b>deposit</b> the respective claims that "
1901#~ "resulted from the contract signing with"
1902#~ " the customer at the exchange to "
1903#~ "redeem the coins. The deposit step "
1904#~ "does not reveal the details of the"
1905#~ " contract between the customer and "
1906#~ "the merchant or the identity of "
1907#~ "the customer to the exchange in "
1908#~ "any way. However, the exchange does "
1909#~ "learn the identity of the merchant "
1910#~ "via the provided bank routing "
1911#~ "information. The merchant can, for "
1912#~ "example when compelled by the state "
1913#~ "for taxation, provide information linking "
1914#~ "the individual deposit to the respective"
1915#~ " contract signed by the customer. "
1916#~ "Thus, the exchange's database allows the"
1917#~ " state to enforce that merchants pay"
1918#~ " applicable taxes (and do not engage"
1919#~ " in illegal contracts). "
1920#~ msgstr ""
1921
1922#~ msgid ""
1923#~ "Finally, the exchange transfers funds "
1924#~ "corresponding to the digital coins "
1925#~ "redeemed by the merchants to the "
1926#~ "merchant's <b>bank</b> account. The exchange"
1927#~ " may combine multiple small transactions"
1928#~ " into one larger bank transfer. The"
1929#~ " merchant can query the exchange "
1930#~ "about the relationship between the bank"
1931#~ " transfers and the individual claims "
1932#~ "that were deposited. "
1933#~ msgstr ""
1934
1935#~ msgid ""
1936#~ "Most importantly, the exchange keeps "
1937#~ "cryptographic proofs that allow it to"
1938#~ " demonstrate that it is operating "
1939#~ "correctly to third parties. The system"
1940#~ " requires an external <b>auditor</b>, such"
1941#~ " as a government-appointed financial "
1942#~ "regulatory body, to frequently verify "
1943#~ "the exchange's databases and check that"
1944#~ " its bank balance matches the total"
1945#~ " value of the remaining coins in "
1946#~ "circulation. "
1947#~ msgstr ""
1948
1949#~ msgid ""
1950#~ "Without the auditor, the exchange "
1951#~ "operators could embezzle funds they are"
1952#~ " holding in reserve. Customers and "
1953#~ "merchants cannot cheat each other or "
1954#~ "the exchange. If any party's computers"
1955#~ " are compromised, the financial damage "
1956#~ "is limited to the respective party "
1957#~ "and proportional to the funds they "
1958#~ "have in circulation during the period"
1959#~ " of the compromise. "
1960#~ msgstr ""
1961
1962#~ msgid ""
1963#~ "<p>Taler does not use any Blockchain "
1964#~ "technology or Bitcoin directly. Taler is"
1965#~ " not based on proof-of-work or"
1966#~ " any other distributed consensus mechanism."
1967#~ " Instead Taler is based on blind "
1968#~ "signatures.</p> "
1969#~ msgstr ""
1970
1971#~ msgid ""
1972#~ "<p>It would be possible, however, to "
1973#~ "withdraw coins denominated in Bitcoin "
1974#~ "into a Taler wallet (with an "
1975#~ "appropriate exchange), which would give "
1976#~ "some benefits over plain Bitcoin, such"
1977#~ " as instant confirmation times.</p> "
1978#~ msgstr ""
1979
1980#~ msgid ""
1981#~ "<p>Your wallet stores digital coins and"
1982#~ " thus ultimately your computer holds "
1983#~ "your balance. The exchange keeps funds"
1984#~ " matching all unspent coins in an "
1985#~ "escrow bank account.</p> "
1986#~ msgstr ""
1987
1988#~ msgid ""
1989#~ "<p>Since the digital coins of value "
1990#~ "in your wallet are anonymized, the "
1991#~ "exchange can not assist you in "
1992#~ "recovering a lost or stolen wallet. "
1993#~ "Just like with a physical wallet "
1994#~ "for cash, you are responsible for "
1995#~ "keeping it safe.</p> "
1996#~ msgstr ""
1997
1998#~ msgid ""
1999#~ "<p>The risk of losing a wallet can"
2000#~ " be mitigated by making backups or"
2001#~ " keeping the balance reasonably low.</p>"
2002#~ " "
2003#~ msgstr ""
2004
2005#~ msgid ""
2006#~ "<p>In case of a compromise of one"
2007#~ " of your devices, an attacker can "
2008#~ "spend coins from your wallet. Checking"
2009#~ " your balance might reveal to you "
2010#~ "that your device has been "
2011#~ "compromised.</p> "
2012#~ msgstr ""
2013
2014#~ msgid ""
2015#~ "<p>If your friend provides goods or "
2016#~ "services for you in exchange for a"
2017#~ " payment, they can easily set up "
2018#~ "a Taler merchant and receive the "
2019#~ "payment in their bank account.</p> "
2020#~ msgstr ""
2021
2022#~ msgid ""
2023#~ "<p>Future versions of the Taler wallet"
2024#~ " may allow exchanging coins among "
2025#~ "friends directly as well.</p> "
2026#~ msgstr ""
2027
2028#~ msgid ""
2029#~ "<p>Taler wallets can store digital coins"
2030#~ " corresponding to multiple different "
2031#~ "currencies such as the Euro, US "
2032#~ "Dollars or Bitcoins.</p> "
2033#~ msgstr ""
2034
2035#~ msgid "<p>Taler currently does not offer conversion between currencies.</p> "
2036#~ msgstr ""
2037
2038#~ msgid ""
2039#~ "<p>Your wallet stores digital coins that"
2040#~ " are <a "
2041#~ "href=\"https://en.wikipedia.org/wiki/Blind_signature\">blindly "
2042#~ "signed</a> by an exchange. The use "
2043#~ "of a blind signature protects your "
2044#~ "privacy as it prevents the exchange "
2045#~ "from knowing which coin it signed "
2046#~ "for which customer.</p> "
2047#~ msgstr ""
2048
2049#~ msgid ""
2050#~ "trusted third party that verifies that"
2051#~ " the `exchange` is operating correctly \n"
2052#~ msgstr ""
2053
2054#~ msgid ""
2055#~ "traditional financial service provider who "
2056#~ "offers wire `transfers` between accounts \n"
2057#~ msgstr ""
2058
2059#~ msgid ""
2060#~ "coins are individual token representing "
2061#~ "a certain amount of value, also "
2062#~ "known as the `denomination` of the "
2063#~ "coin "
2064#~ msgstr ""
2065
2066#~ msgid "the proposal signed by the wallet. "
2067#~ msgstr ""
2068
2069#~ msgid ""
2070#~ "unit of currency, specifies both the "
2071#~ "currency and the face value of a"
2072#~ " `coin` "
2073#~ msgstr ""
2074
2075#~ msgid ""
2076#~ "RSA key used by the exchange to"
2077#~ " certify that a given `coin` is "
2078#~ "valid and of a particular `denomination`"
2079#~ " "
2080#~ msgstr ""
2081
2082#~ msgid ""
2083#~ "operation by which a merchant passes "
2084#~ "coins to an exchange, expecting the "
2085#~ "exchange to credit his `bank` account"
2086#~ " in the future using a wire "
2087#~ "`transfer` "
2088#~ msgstr ""
2089
2090#~ msgid ""
2091#~ "a `coin` is dirty if its public"
2092#~ " key may be known to an entity"
2093#~ " other than the customer, thereby "
2094#~ "creating the danger of some entity "
2095#~ "being able to link multiple transactions"
2096#~ " of coin's owner if the coin is"
2097#~ " not refreshed first "
2098#~ msgstr ""
2099
2100#~ msgid ""
2101#~ "Taler's payment service provider. Issues "
2102#~ "eletronic `coins` during `withdrawal` and "
2103#~ "redeems them when they are `deposited`"
2104#~ " by merchants. "
2105#~ msgstr ""
2106
2107#~ msgid "implementation of a `wallet` for browsers "
2108#~ msgstr ""
2109
2110#~ msgid "a `coin` is fresh if its public key is only known to the customer "
2111#~ msgstr ""
2112
2113#~ msgid ""
2114#~ "offline key used by the exchange "
2115#~ "to certify denomination keys and message"
2116#~ " signing keys "
2117#~ msgstr ""
2118
2119#~ msgid "key used by the exchange to sign online messages, other than coins "
2120#~ msgstr ""
2121
2122#~ msgid ""
2123#~ "specification of the details of a "
2124#~ "transaction, specifies the payment obligations"
2125#~ " for the customer (i.e. the amount),"
2126#~ " the deliverables of the merchant and"
2127#~ " other related information, such as "
2128#~ "deadlines or locations; However, it "
2129#~ "lacks some information that the backend"
2130#~ " is supposed to provide. In other "
2131#~ "words, after the backend adds the "
2132#~ "missing information to the offer and "
2133#~ "signs it, it becomes a proposal. "
2134#~ msgstr ""
2135
2136#~ msgid "a `coin` is owned by the entity that knows the private key of the coin "
2137#~ msgstr ""
2138
2139#~ msgid ""
2140#~ "message that cryptographically demonstrates "
2141#~ "that a particular claim is correct \n"
2142#~ msgstr ""
2143
2144#~ msgid "a sketch that has been completed and signed by the merchant backend. "
2145#~ msgstr ""
2146
2147#~ msgid ""
2148#~ "funds set aside for future use; "
2149#~ "either the balance of a customer "
2150#~ "at the exchange ready for `withdrawal`,"
2151#~ " or the funds kept in the "
2152#~ "exchange's bank account to cover "
2153#~ "obligations from coins in circulation "
2154#~ msgstr ""
2155
2156#~ msgid ""
2157#~ "operation by which a `dirty` `coin` "
2158#~ "is converted into one or more "
2159#~ "`fresh` coins "
2160#~ msgstr ""
2161
2162#~ msgid ""
2163#~ "operation by which a merchant steps "
2164#~ "back from the right to funds that"
2165#~ " he obtained from a `deposit` "
2166#~ "operation, giving the right to the "
2167#~ "funds back to the customer "
2168#~ msgstr ""
2169
2170#~ msgid ""
2171#~ "users can share ownership of a "
2172#~ "`coin` by sharing access to the "
2173#~ "coin's private key, thereby allowing all"
2174#~ " co-owners to spend the coin at"
2175#~ " any time. "
2176#~ msgstr ""
2177
2178#~ msgid "see message signing key. "
2179#~ msgstr ""
2180
2181#~ msgid ""
2182#~ "operation by which a customer gives "
2183#~ "a merchant the right to `deposit` "
2184#~ "coins in return for merchandise "
2185#~ msgstr ""
2186
2187#~ msgid "method of sending funds between `bank` accounts "
2188#~ msgstr ""
2189
2190#~ msgid ""
2191#~ "method by which ownership is exclusively"
2192#~ " transferred from one entity to "
2193#~ "another "
2194#~ msgstr ""
2195
2196#~ msgid "unique number by which a merchant identifies a `transaction` "
2197#~ msgstr ""
2198
2199#~ msgid ""
2200#~ "software running on a customer's "
2201#~ "computer; withdraws, stores and spends "
2202#~ "coins "
2203#~ msgstr ""
2204
2205#~ msgid "see `transfer` "
2206#~ msgstr ""
2207
2208#~ msgid ""
2209#~ "subject of a wire `transfer`; usually"
2210#~ " a random string to uniquely identify"
2211#~ " the `transfer` "
2212#~ msgstr ""
2213
2214#~ msgid ""
2215#~ "operation by which a `wallet` can "
2216#~ "convert funds from a reserve to "
2217#~ "fresh coins "
2218#~ msgstr ""
2219
2220#~ msgid ""
2221#~ "Taler provides accountability to ensure "
2222#~ "business operate legally, while also "
2223#~ "respecting civil liberties of citizens. "
2224#~ "Taler is a payment system based on"
2225#~ " open standards and free software. "
2226#~ "Taler needs governments as they set "
2227#~ "a financial framework and act as "
2228#~ "trusted regulators. Taler contributes to "
2229#~ "digital sovereignty in the critical "
2230#~ "financial infrastructure. "
2231#~ msgstr ""
2232
2233#~ msgid ""
2234#~ "Taler was built with the goal of"
2235#~ " fighting corruption and supporting "
2236#~ "taxation. With Taler, the receiver of"
2237#~ " any form of payment is easily "
2238#~ "identified by the government, and the"
2239#~ " merchant can be compelled to provide"
2240#~ " the contract that was accepted by"
2241#~ " the customer. Governments can use "
2242#~ "this data to tax businesses and "
2243#~ "individuals based on their income, "
2244#~ "making tax evasion and black markets "
2245#~ "less viable. "
2246#~ msgstr ""
2247
2248#~ msgid ""
2249#~ "Thus, despite offering anonymity for "
2250#~ "citizens spending digital cash to buy"
2251#~ " goods and services, Taler also "
2252#~ "ensures that the state can observe "
2253#~ "incoming funds. This can be used "
2254#~ "to ensure businesses engage only in "
2255#~ "legal activities, and do not evade "
2256#~ "income tax, sales tax or value-"
2257#~ "added tax. However, this observational "
2258#~ "capability does not extend to the "
2259#~ "immediate personal domain. In particular, "
2260#~ "monitoring does not cover shared access"
2261#~ " to funds with trusted friends and"
2262#~ " family, or synchronizing wallets across"
2263#~ " multiple devices. "
2264#~ msgstr ""
2265
2266#~ msgid ""
2267#~ "Taler's payments are cryptographically "
2268#~ "secured. Thus, customers, merchants and "
2269#~ "the Taler payment service provider (the"
2270#~ " exchange) can mathematically demonstrate "
2271#~ "their lawful behavior in court in "
2272#~ "case of disputes. Financial damages are"
2273#~ " strictly limited, improving economic "
2274#~ "security for individuals, merchants, the "
2275#~ "exchange and the state. "
2276#~ msgstr ""
2277
2278#~ msgid ""
2279#~ "As a payment service provider, the "
2280#~ "Taler exchange is subject to financial"
2281#~ " regulation. Financial regulation and "
2282#~ "regular audits are critical to establish"
2283#~ " trust. In particular, the Taler "
2284#~ "design mandates the existence of an "
2285#~ "independent auditor who checks cryptographic"
2286#~ " proofs that accumulate at the "
2287#~ "exchange to ensure that the escrow "
2288#~ "account is managed honestly. This "
2289#~ "ensures that the exchange does not "
2290#~ "threaten the economy due to fraud. \n"
2291#~ msgstr ""
2292
2293#~ msgid ""
2294#~ "Taler is free software implementing an"
2295#~ " open protocol standard. Thus, Taler "
2296#~ "will enable competition and avoid the"
2297#~ " monopolization of payment systems that "
2298#~ "threatens global political and financial "
2299#~ "stability today. "
2300#~ msgstr ""
2301
2302#~ msgid ""
2303#~ "Taler has an efficient design. Unlike"
2304#~ " Blockchain-based payment systems, such "
2305#~ "as Bitcoin, Taler will not threaten "
2306#~ "the availability of national electric "
2307#~ "grids or (significantly) contribute to "
2308#~ "environmental pollution. "
2309#~ msgstr ""
2310
2311#~ msgid ""
2312#~ "Taler assumes governments can observe "
2313#~ "traditional wire transfers entering and "
2314#~ "leaving the Taler payment system. "
2315#~ "Starting with the wire transfers, "
2316#~ "governments can obtain: "
2317#~ msgstr ""
2318
2319#~ msgid ""
2320#~ "The total amount of digital currency "
2321#~ "withdrawn by a customer. The government"
2322#~ " can impose limits on how much "
2323#~ "digital cash a customer can withdraw "
2324#~ "within a given time frame. "
2325#~ msgstr ""
2326
2327#~ msgid "The income received by any merchant via the Taler system. "
2328#~ msgstr ""
2329
2330#~ msgid ""
2331#~ "The exact details of the underlying "
2332#~ "contract that was signed between "
2333#~ "customer and merchant. However, this "
2334#~ "information would typically not include "
2335#~ "the identity of the customer. "
2336#~ msgstr ""
2337
2338#~ msgid ""
2339#~ "The amounts of digital coins "
2340#~ "legitimately withdrawn by customers from "
2341#~ "the exchange, the value of non-"
2342#~ "redeemed digital coins in customer's "
2343#~ "wallets, the value and corresponding "
2344#~ "wire details of deposit operations "
2345#~ "performed by merchants with the "
2346#~ "exchange, and the income of the "
2347#~ "exchange from transaction fees. "
2348#~ msgstr ""
2349
2350#~ msgid ""
2351#~ "GNU Taler is an electronic payment "
2352#~ "system under development at <a "
2353#~ "href=\"http://www.inria.fr/\">Inria</a>. We expect "
2354#~ "to make it operational in 2017. "
2355#~ "You can learn about Taler on this"
2356#~ " website, try the <a "
2357#~ "href=\"https://demo.taler.net\">demo</a> and look at"
2358#~ " our <a href=\"https://docs.taler.net\">developer</a>"
2359#~ " and <a href=\"https://api.taler.net\">API</a> "
2360#~ "documentation. "
2361#~ msgstr ""
2362
2363#~ msgid ""
2364#~ "Taler is easy to integrate with "
2365#~ "existing Web applications. Payments are "
2366#~ "cryptographically secured and are confirmed"
2367#~ " within milliseconds with extremely low "
2368#~ "transaction costs. "
2369#~ msgstr ""
2370
2371#~ msgid ""
2372#~ "Taler does not introduce a new "
2373#~ "currency. Taler uses a digital wallet"
2374#~ " storing coins and payment service "
2375#~ "providers with escrow accounts in "
2376#~ "existing currencies. Thus, Taler's "
2377#~ "cryptographic coins correspond to existing "
2378#~ "currencies, such as US Dollars, Euros"
2379#~ " or even Bitcoins. "
2380#~ msgstr ""
2381
2382#~ msgid ""
2383#~ "By design Taler does not suffer "
2384#~ "from many classes of security problems"
2385#~ " such as phishing or counterfeit. "
2386#~ "Thanks to its security features, Taler"
2387#~ " never rejects a legitimate customer "
2388#~ "due to a fraud-detection false "
2389#~ "positive. "
2390#~ msgstr ""
2391
2392#~ msgid ""
2393#~ "When using Taler, merchant's revenue is"
2394#~ " transparent for tax collection "
2395#~ "authorities. Unlike cash and most "
2396#~ "digital currencies, Taler helps prevent "
2397#~ "black markets. Taler is not suitable"
2398#~ " for illegal activities. "
2399#~ msgstr ""
2400
2401#~ msgid ""
2402#~ "When you pay with Taler, your "
2403#~ "identity does not have to be "
2404#~ "revealed. Just like payments in cash,"
2405#~ " nobody else can track how you "
2406#~ "spent your electronic money. However, "
2407#~ "you obtain a legally valid proof "
2408#~ "of payment. "
2409#~ msgstr ""
2410
2411#~ msgid ""
2412#~ "Taler provides protocols and reference "
2413#~ "implementations that in principle enables "
2414#~ "anybody to run their own payment "
2415#~ "infrastructure, be it individuals, "
2416#~ "organizations or whole countries. Since "
2417#~ "the reference implementation is a <a "
2418#~ "href=\"http://www.gnu.org/\">GNU</a> package, it "
2419#~ "will always remain free software. "
2420#~ msgstr ""
2421
2422#~ msgid ""
2423#~ "<p>To pay with Taler, customers install"
2424#~ " an electronic wallet on their "
2425#~ "device. Before the first payment, the"
2426#~ " wallet's balance must be charged in"
2427#~ " the desired currency by some other"
2428#~ " means of payment.</p> <p>Once the "
2429#~ "wallet is charged, payments on websites"
2430#~ " take only one click, are never "
2431#~ "falsely rejected by fraud detection and"
2432#~ " do not pose any risk of "
2433#~ "phishing or identity theft.</p> "
2434#~ msgstr ""
2435
2436#~ msgid ""
2437#~ "<p>To receive Taler payments, a merchant"
2438#~ " needs a bank account in the "
2439#~ "desired currency. We provide supporting "
2440#~ "software in various programming languages "
2441#~ "to make the integration painless. The"
2442#~ " merchant's backend for Taler transaction"
2443#~ " processing can run on the merchant's"
2444#~ " premises or be hosted by a "
2445#~ "third party.</p> "
2446#~ msgstr ""
2447
2448#~ msgid ""
2449#~ "We have created a company, Taler "
2450#~ "Systems SA in Luxembourg.<br> Please "
2451#~ "contact <tt>invest@taler.net</tt> if you want"
2452#~ " to invest in Taler. "
2453#~ msgstr ""
2454
2455#~ msgid ""
2456#~ "Our <a href=\"about.html\">team</a> combines "
2457#~ "world-class business leaders, cryptographers, "
2458#~ "software engineers, civil-rights activists "
2459#~ "and academics. We are unified by a"
2460#~ " vision of how payments should work"
2461#~ " and the goal of imposing this "
2462#~ "vision upon the world. "
2463#~ msgstr ""
2464
2465#~ msgid ""
2466#~ "We are currently supported by <a "
2467#~ "href=\"http://www.inria.fr/\">Inria</a>, the French "
2468#~ "national institute for research in "
2469#~ "informatics and automation, and the <a"
2470#~ " href=\"https://renewablefreedom.org/\">Renewable Freedom "
2471#~ "Foundation</a>. "
2472#~ msgstr ""
2473
2474#~ msgid ""
2475#~ "All transactions in Taler are secured"
2476#~ " using <a href=\"bibliography.html\">modern "
2477#~ "cryptography</a> and trust in all "
2478#~ "parties is minimized. Financial damage "
2479#~ "is bounded (for customers, merchants and"
2480#~ " the exchange) even in the case "
2481#~ "that systems are compromised and private"
2482#~ " keys are stolen. Databases can be"
2483#~ " audited for consistency, resulting in "
2484#~ "either the detection of compromised "
2485#~ "systems or the demonstration that "
2486#~ "participants were honest. Actual transaction"
2487#~ " costs are fractions of a cent. \n"
2488#~ msgstr ""
2489
2490#~ msgid ""
2491#~ "The scalable business model for Taler"
2492#~ " is the operation of the payment "
2493#~ "service provider, which converts money "
2494#~ "from traditional payment systems (MasterCard,"
2495#~ " SEPA, UPI, Visa, Bitcoin, ACH, "
2496#~ "SWIFT, etc.) to anonymous electronic "
2497#~ "coins in the same currency. The "
2498#~ "customer can then redeem the electronic"
2499#~ " coins at a merchant, who can "
2500#~ "exchange them for money represented "
2501#~ "using traditional payment systems at the"
2502#~ " exchange. The exchange charges fees "
2503#~ "to facilitate the transactions. "
2504#~ msgstr ""
2505
2506#~ msgid ""
2507#~ "The payment service operator runs the"
2508#~ " <em>Taler exchange</em>. The exchange "
2509#~ "charges <b>transaction fees</b> to customers"
2510#~ " or merchants. Its operational expenses "
2511#~ "are from wire transfers with the "
2512#~ "banking system and the operation of "
2513#~ "the computing infrastructure. "
2514#~ msgstr ""
2515
2516#~ msgid ""
2517#~ "Taler is a cost-effective electronic "
2518#~ "payment system which provides you with"
2519#~ " cryptographic proof that the payment "
2520#~ "worked correctly within milliseconds. Your "
2521#~ "Web customers pay with previously "
2522#~ "unknown levels of convenience without "
2523#~ "risk of fraud. "
2524#~ msgstr ""
2525
2526#~ msgid ""
2527#~ "Processing transactions with Taler is "
2528#~ "fast, allowing you to confirm the "
2529#~ "transaction with your customer virtually "
2530#~ "immediately. Your customers will appreciate"
2531#~ " that they do not have to type"
2532#~ " in credit card information and play"
2533#~ " the &quot;verified by&quot; game. By "
2534#~ "making payments significantly more convenient"
2535#~ " for your customers, you may be "
2536#~ "able to use Taler for small "
2537#~ "transactions that would not work with"
2538#~ " credit card payments due to the "
2539#~ "mental overhead for customers. "
2540#~ msgstr ""
2541
2542#~ msgid ""
2543#~ "You will have cryptographic proof of "
2544#~ "payment from the Taler payment service"
2545#~ " provider. With Taler you never "
2546#~ "handle sensitive customer account information"
2547#~ " and thus do not have to "
2548#~ "undergo any particular security audits "
2549#~ "(such as PCI DSS). Your systems "
2550#~ "will have customer contracts with "
2551#~ "qualified signatures for all transactions "
2552#~ "which you can use in court in "
2553#~ "case of disputes. "
2554#~ msgstr ""
2555
2556#~ msgid ""
2557#~ "Taler is free software, and you "
2558#~ "can use the liberally-licensed reference"
2559#~ " code as a starting point to "
2560#~ "integrate Taler into your services. To"
2561#~ " use Taler, you do not need to"
2562#~ " pay license fees, and the free "
2563#~ "software development model will ensure "
2564#~ "that you can select from many "
2565#~ "competing integrators for support. "
2566#~ msgstr ""
2567
2568#~ msgid ""
2569#~ "Taler is uses efficient cryptographic "
2570#~ "constructions with low bandwidth and "
2571#~ "storage requirements. Combined with Taler's"
2572#~ " strong security which makes fraud "
2573#~ "impossible, Taler payment service providers"
2574#~ " can operate with very low overhead"
2575#~ " and thus offer low transaction fees."
2576#~ " "
2577#~ msgstr ""
2578
2579#~ msgid ""
2580#~ "Taler can be used for different "
2581#~ "currencies (such as Euros, US Dollars"
2582#~ " or Bitcoins) and any amount, limited"
2583#~ " only by applicable regulatation and "
2584#~ "what denominations the payment service "
2585#~ "provider supports. "
2586#~ msgstr ""
2587
2588#~ msgid ""
2589#~ "Taler prevents tax evasion and money "
2590#~ "laundering. Taler's protocols are efficient"
2591#~ " and do not use wasteful proof-"
2592#~ "of-work calculations. Taler encourages "
2593#~ "transparency by providing an open "
2594#~ "standard and free software reference "
2595#~ "implementations. "
2596#~ msgstr ""
2597
2598#~ msgid ""
2599#~ "The backend <b>signs</b> and <b>stores</b> "
2600#~ "the complete terms of offers made "
2601#~ "by the merchant to customers. For "
2602#~ "this, the merchant's frontend needs to"
2603#~ " give the customer's order in a "
2604#~ "JSON format to the backend. "
2605#~ msgstr ""
2606
2607#~ msgid ""
2608#~ "The backend <b>validates</b> payments received"
2609#~ " from the wallet and <b>executes</b> "
2610#~ "them with the Taler payment service "
2611#~ "provider (the exchange). For this, the"
2612#~ " merchant's frontend must pass the "
2613#~ "payment request through to the Taler "
2614#~ "backend and check the HTTP status "
2615#~ "code that is returned. "
2616#~ msgstr ""
2617
2618#~ msgid ""
2619#~ "The backend can <b>list</b> completed "
2620#~ "transactions and <b>map</b> wire transfers "
2621#~ "to sets of business transactions, "
2622#~ "including the exact terms of each "
2623#~ "contract. "
2624#~ msgstr ""
2625
diff --git a/template.py b/template.py
index c0c42ea9..059bca5d 100755
--- a/template.py
+++ b/template.py
@@ -16,6 +16,7 @@ import jinja2
16import glob 16import glob
17import codecs 17import codecs
18import os 18import os
19import i18nfix
19 20
20env = jinja2.Environment(loader=jinja2.FileSystemLoader(os.path.dirname(__file__)), 21env = jinja2.Environment(loader=jinja2.FileSystemLoader(os.path.dirname(__file__)),
21 extensions=["jinja2.ext.i18n"], 22 extensions=["jinja2.ext.i18n"],
@@ -24,7 +25,6 @@ env = jinja2.Environment(loader=jinja2.FileSystemLoader(os.path.dirname(__file__
24 undefined=jinja2.StrictUndefined, 25 undefined=jinja2.StrictUndefined,
25 autoescape=False) 26 autoescape=False)
26 27
27
28for in_file in glob.glob("*.j2"): 28for in_file in glob.glob("*.j2"):
29 name, ext = re.match(r"(.*)\.([^.]+)$", in_file.rstrip(".j2")).groups() 29 name, ext = re.match(r"(.*)\.([^.]+)$", in_file.rstrip(".j2")).groups()
30 tmpl = env.get_template(in_file) 30 tmpl = env.get_template(in_file)
@@ -50,6 +50,8 @@ for in_file in glob.glob("*.j2"):
50 localedir="locale", 50 localedir="locale",
51 languages=[locale]) 51 languages=[locale])
52 52
53 tr.gettext = i18nfix.wrap_gettext(tr.gettext)
54
53 env.install_gettext_translations(tr, newstyle=True) 55 env.install_gettext_translations(tr, newstyle=True)
54 56
55 57
diff --git a/web-common b/web-common
Subproject dc9d5ab2308fef7cdd1e8c95fbf4fdd51bed7bf Subproject 357a9df65bf5afbf2eb621ac3afc84495021a1b