2007-01-28 02:19:17 +01:00
|
|
|
# SOME DESCRIPTIVE TITLE.
|
|
|
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
|
|
# This file is distributed under the same license as the PACKAGE package.
|
|
|
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
|
|
#
|
|
|
|
#, fuzzy
|
|
|
|
msgid ""
|
|
|
|
msgstr ""
|
|
|
|
"Project-Id-Version: PACKAGE VERSION\n"
|
|
|
|
"Report-Msgid-Bugs-To: \n"
|
Fix CSRF attacks against the preferences and edit forms. Closes: #475445
The fix involved embedding the session id in the forms, and not allowing the
forms to be submitted if the embedded id does not match the session id.
In the case of the preferences form, if the session id is not embedded,
then the CGI parameters are cleared. This avoids a secondary attack where the
link to the preferences form prefills password or other fields, and
the user hits "submit" without noticing these prefilled values.
In the case of the editpage form, the anonok plugin can allow anyone to edit,
and so I chose not to guard against CSRF attacks against users who are not
logged in. Otherwise, it also embeds the session id and checks it.
For page editing, I assume that the user will notice if content or commit
message is changed because of CGI parameters, and won't blndly hit save page.
So I didn't block those CGI paramters. (It's even possible to use those CGI
parameters, for good, not for evil, I guess..)
The only other CSRF attack I can think of in ikiwiki involves the poll plugin.
It's certianly possible to set up a link that causes the user to unknowingly
vote in a poll. However, the poll plugin is not intended to be used for things
that people would want to attack, since anyone can after all edit the poll page
and fill in any values they like. So this "attack" is ignorable.
2008-04-10 22:35:30 +02:00
|
|
|
"POT-Creation-Date: 2008-04-10 16:18-0400\n"
|
2007-01-28 02:19:17 +01:00
|
|
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
|
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
|
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
|
|
"MIME-Version: 1.0\n"
|
|
|
|
"Content-Type: text/plain; charset=CHARSET\n"
|
|
|
|
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
|
2008-01-29 10:45:54 +01:00
|
|
|
#: ../IkiWiki/CGI.pm:125
|
2007-01-28 02:19:17 +01:00
|
|
|
msgid "You need to log in first."
|
|
|
|
msgstr ""
|
|
|
|
|
2008-01-29 10:45:54 +01:00
|
|
|
#: ../IkiWiki/CGI.pm:155
|
2008-01-07 22:34:13 +01:00
|
|
|
msgid "login failed, perhaps you need to turn on cookies?"
|
|
|
|
msgstr ""
|
|
|
|
|
Fix CSRF attacks against the preferences and edit forms. Closes: #475445
The fix involved embedding the session id in the forms, and not allowing the
forms to be submitted if the embedded id does not match the session id.
In the case of the preferences form, if the session id is not embedded,
then the CGI parameters are cleared. This avoids a secondary attack where the
link to the preferences form prefills password or other fields, and
the user hits "submit" without noticing these prefilled values.
In the case of the editpage form, the anonok plugin can allow anyone to edit,
and so I chose not to guard against CSRF attacks against users who are not
logged in. Otherwise, it also embeds the session id and checks it.
For page editing, I assume that the user will notice if content or commit
message is changed because of CGI parameters, and won't blndly hit save page.
So I didn't block those CGI paramters. (It's even possible to use those CGI
parameters, for good, not for evil, I guess..)
The only other CSRF attack I can think of in ikiwiki involves the poll plugin.
It's certianly possible to set up a link that causes the user to unknowingly
vote in a poll. However, the poll plugin is not intended to be used for things
that people would want to attack, since anyone can after all edit the poll page
and fill in any values they like. So this "attack" is ignorable.
2008-04-10 22:35:30 +02:00
|
|
|
#: ../IkiWiki/CGI.pm:173 ../IkiWiki/CGI.pm:499
|
|
|
|
msgid "Your login session has expired."
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/CGI.pm:194
|
2007-04-30 00:58:27 +02:00
|
|
|
msgid "Login"
|
|
|
|
msgstr ""
|
|
|
|
|
Fix CSRF attacks against the preferences and edit forms. Closes: #475445
The fix involved embedding the session id in the forms, and not allowing the
forms to be submitted if the embedded id does not match the session id.
In the case of the preferences form, if the session id is not embedded,
then the CGI parameters are cleared. This avoids a secondary attack where the
link to the preferences form prefills password or other fields, and
the user hits "submit" without noticing these prefilled values.
In the case of the editpage form, the anonok plugin can allow anyone to edit,
and so I chose not to guard against CSRF attacks against users who are not
logged in. Otherwise, it also embeds the session id and checks it.
For page editing, I assume that the user will notice if content or commit
message is changed because of CGI parameters, and won't blndly hit save page.
So I didn't block those CGI paramters. (It's even possible to use those CGI
parameters, for good, not for evil, I guess..)
The only other CSRF attack I can think of in ikiwiki involves the poll plugin.
It's certianly possible to set up a link that causes the user to unknowingly
vote in a poll. However, the poll plugin is not intended to be used for things
that people would want to attack, since anyone can after all edit the poll page
and fill in any values they like. So this "attack" is ignorable.
2008-04-10 22:35:30 +02:00
|
|
|
#: ../IkiWiki/CGI.pm:195
|
2007-04-30 00:58:27 +02:00
|
|
|
msgid "Preferences"
|
|
|
|
msgstr ""
|
|
|
|
|
Fix CSRF attacks against the preferences and edit forms. Closes: #475445
The fix involved embedding the session id in the forms, and not allowing the
forms to be submitted if the embedded id does not match the session id.
In the case of the preferences form, if the session id is not embedded,
then the CGI parameters are cleared. This avoids a secondary attack where the
link to the preferences form prefills password or other fields, and
the user hits "submit" without noticing these prefilled values.
In the case of the editpage form, the anonok plugin can allow anyone to edit,
and so I chose not to guard against CSRF attacks against users who are not
logged in. Otherwise, it also embeds the session id and checks it.
For page editing, I assume that the user will notice if content or commit
message is changed because of CGI parameters, and won't blndly hit save page.
So I didn't block those CGI paramters. (It's even possible to use those CGI
parameters, for good, not for evil, I guess..)
The only other CSRF attack I can think of in ikiwiki involves the poll plugin.
It's certianly possible to set up a link that causes the user to unknowingly
vote in a poll. However, the poll plugin is not intended to be used for things
that people would want to attack, since anyone can after all edit the poll page
and fill in any values they like. So this "attack" is ignorable.
2008-04-10 22:35:30 +02:00
|
|
|
#: ../IkiWiki/CGI.pm:196
|
2007-04-30 00:58:27 +02:00
|
|
|
msgid "Admin"
|
|
|
|
msgstr ""
|
|
|
|
|
Fix CSRF attacks against the preferences and edit forms. Closes: #475445
The fix involved embedding the session id in the forms, and not allowing the
forms to be submitted if the embedded id does not match the session id.
In the case of the preferences form, if the session id is not embedded,
then the CGI parameters are cleared. This avoids a secondary attack where the
link to the preferences form prefills password or other fields, and
the user hits "submit" without noticing these prefilled values.
In the case of the editpage form, the anonok plugin can allow anyone to edit,
and so I chose not to guard against CSRF attacks against users who are not
logged in. Otherwise, it also embeds the session id and checks it.
For page editing, I assume that the user will notice if content or commit
message is changed because of CGI parameters, and won't blndly hit save page.
So I didn't block those CGI paramters. (It's even possible to use those CGI
parameters, for good, not for evil, I guess..)
The only other CSRF attack I can think of in ikiwiki involves the poll plugin.
It's certianly possible to set up a link that causes the user to unknowingly
vote in a poll. However, the poll plugin is not intended to be used for things
that people would want to attack, since anyone can after all edit the poll page
and fill in any values they like. So this "attack" is ignorable.
2008-04-10 22:35:30 +02:00
|
|
|
#: ../IkiWiki/CGI.pm:248
|
2007-01-28 02:19:17 +01:00
|
|
|
msgid "Preferences saved."
|
|
|
|
msgstr ""
|
|
|
|
|
Fix CSRF attacks against the preferences and edit forms. Closes: #475445
The fix involved embedding the session id in the forms, and not allowing the
forms to be submitted if the embedded id does not match the session id.
In the case of the preferences form, if the session id is not embedded,
then the CGI parameters are cleared. This avoids a secondary attack where the
link to the preferences form prefills password or other fields, and
the user hits "submit" without noticing these prefilled values.
In the case of the editpage form, the anonok plugin can allow anyone to edit,
and so I chose not to guard against CSRF attacks against users who are not
logged in. Otherwise, it also embeds the session id and checks it.
For page editing, I assume that the user will notice if content or commit
message is changed because of CGI parameters, and won't blndly hit save page.
So I didn't block those CGI paramters. (It's even possible to use those CGI
parameters, for good, not for evil, I guess..)
The only other CSRF attack I can think of in ikiwiki involves the poll plugin.
It's certianly possible to set up a link that causes the user to unknowingly
vote in a poll. However, the poll plugin is not intended to be used for things
that people would want to attack, since anyone can after all edit the poll page
and fill in any values they like. So this "attack" is ignorable.
2008-04-10 22:35:30 +02:00
|
|
|
#: ../IkiWiki/CGI.pm:306
|
2007-02-10 21:37:36 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "%s is not an editable page"
|
|
|
|
msgstr ""
|
|
|
|
|
Fix CSRF attacks against the preferences and edit forms. Closes: #475445
The fix involved embedding the session id in the forms, and not allowing the
forms to be submitted if the embedded id does not match the session id.
In the case of the preferences form, if the session id is not embedded,
then the CGI parameters are cleared. This avoids a secondary attack where the
link to the preferences form prefills password or other fields, and
the user hits "submit" without noticing these prefilled values.
In the case of the editpage form, the anonok plugin can allow anyone to edit,
and so I chose not to guard against CSRF attacks against users who are not
logged in. Otherwise, it also embeds the session id and checks it.
For page editing, I assume that the user will notice if content or commit
message is changed because of CGI parameters, and won't blndly hit save page.
So I didn't block those CGI paramters. (It's even possible to use those CGI
parameters, for good, not for evil, I guess..)
The only other CSRF attack I can think of in ikiwiki involves the poll plugin.
It's certianly possible to set up a link that causes the user to unknowingly
vote in a poll. However, the poll plugin is not intended to be used for things
that people would want to attack, since anyone can after all edit the poll page
and fill in any values they like. So this "attack" is ignorable.
2008-04-10 22:35:30 +02:00
|
|
|
#: ../IkiWiki/CGI.pm:410 ../IkiWiki/Plugin/brokenlinks.pm:24
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Plugin/inline.pm:265 ../IkiWiki/Plugin/opendiscussion.pm:17
|
2008-02-03 21:02:34 +01:00
|
|
|
#: ../IkiWiki/Plugin/orphans.pm:28 ../IkiWiki/Render.pm:95
|
2008-02-12 04:48:27 +01:00
|
|
|
#: ../IkiWiki/Render.pm:172
|
2007-01-28 02:19:17 +01:00
|
|
|
msgid "discussion"
|
|
|
|
msgstr ""
|
|
|
|
|
Fix CSRF attacks against the preferences and edit forms. Closes: #475445
The fix involved embedding the session id in the forms, and not allowing the
forms to be submitted if the embedded id does not match the session id.
In the case of the preferences form, if the session id is not embedded,
then the CGI parameters are cleared. This avoids a secondary attack where the
link to the preferences form prefills password or other fields, and
the user hits "submit" without noticing these prefilled values.
In the case of the editpage form, the anonok plugin can allow anyone to edit,
and so I chose not to guard against CSRF attacks against users who are not
logged in. Otherwise, it also embeds the session id and checks it.
For page editing, I assume that the user will notice if content or commit
message is changed because of CGI parameters, and won't blndly hit save page.
So I didn't block those CGI paramters. (It's even possible to use those CGI
parameters, for good, not for evil, I guess..)
The only other CSRF attack I can think of in ikiwiki involves the poll plugin.
It's certianly possible to set up a link that causes the user to unknowingly
vote in a poll. However, the poll plugin is not intended to be used for things
that people would want to attack, since anyone can after all edit the poll page
and fill in any values they like. So this "attack" is ignorable.
2008-04-10 22:35:30 +02:00
|
|
|
#: ../IkiWiki/CGI.pm:466
|
2007-01-28 02:19:17 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "creating %s"
|
|
|
|
msgstr ""
|
|
|
|
|
Fix CSRF attacks against the preferences and edit forms. Closes: #475445
The fix involved embedding the session id in the forms, and not allowing the
forms to be submitted if the embedded id does not match the session id.
In the case of the preferences form, if the session id is not embedded,
then the CGI parameters are cleared. This avoids a secondary attack where the
link to the preferences form prefills password or other fields, and
the user hits "submit" without noticing these prefilled values.
In the case of the editpage form, the anonok plugin can allow anyone to edit,
and so I chose not to guard against CSRF attacks against users who are not
logged in. Otherwise, it also embeds the session id and checks it.
For page editing, I assume that the user will notice if content or commit
message is changed because of CGI parameters, and won't blndly hit save page.
So I didn't block those CGI paramters. (It's even possible to use those CGI
parameters, for good, not for evil, I guess..)
The only other CSRF attack I can think of in ikiwiki involves the poll plugin.
It's certianly possible to set up a link that causes the user to unknowingly
vote in a poll. However, the poll plugin is not intended to be used for things
that people would want to attack, since anyone can after all edit the poll page
and fill in any values they like. So this "attack" is ignorable.
2008-04-10 22:35:30 +02:00
|
|
|
#: ../IkiWiki/CGI.pm:484 ../IkiWiki/CGI.pm:512 ../IkiWiki/CGI.pm:522
|
|
|
|
#: ../IkiWiki/CGI.pm:556 ../IkiWiki/CGI.pm:601
|
2007-01-28 02:19:17 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "editing %s"
|
|
|
|
msgstr ""
|
|
|
|
|
Fix CSRF attacks against the preferences and edit forms. Closes: #475445
The fix involved embedding the session id in the forms, and not allowing the
forms to be submitted if the embedded id does not match the session id.
In the case of the preferences form, if the session id is not embedded,
then the CGI parameters are cleared. This avoids a secondary attack where the
link to the preferences form prefills password or other fields, and
the user hits "submit" without noticing these prefilled values.
In the case of the editpage form, the anonok plugin can allow anyone to edit,
and so I chose not to guard against CSRF attacks against users who are not
logged in. Otherwise, it also embeds the session id and checks it.
For page editing, I assume that the user will notice if content or commit
message is changed because of CGI parameters, and won't blndly hit save page.
So I didn't block those CGI paramters. (It's even possible to use those CGI
parameters, for good, not for evil, I guess..)
The only other CSRF attack I can think of in ikiwiki involves the poll plugin.
It's certianly possible to set up a link that causes the user to unknowingly
vote in a poll. However, the poll plugin is not intended to be used for things
that people would want to attack, since anyone can after all edit the poll page
and fill in any values they like. So this "attack" is ignorable.
2008-04-10 22:35:30 +02:00
|
|
|
#: ../IkiWiki/CGI.pm:691
|
2007-01-28 02:19:17 +01:00
|
|
|
msgid "You are banned."
|
|
|
|
msgstr ""
|
|
|
|
|
2008-02-10 07:11:48 +01:00
|
|
|
#: ../IkiWiki/Plugin/aggregate.pm:101
|
2007-01-28 02:19:17 +01:00
|
|
|
#, perl-format
|
2007-03-07 13:04:45 +01:00
|
|
|
msgid "missing %s parameter"
|
2007-01-28 02:19:17 +01:00
|
|
|
msgstr ""
|
|
|
|
|
2008-02-10 07:11:48 +01:00
|
|
|
#: ../IkiWiki/Plugin/aggregate.pm:128
|
2007-01-28 02:19:17 +01:00
|
|
|
msgid "new feed"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-02-10 07:11:48 +01:00
|
|
|
#: ../IkiWiki/Plugin/aggregate.pm:142
|
2007-01-28 02:19:17 +01:00
|
|
|
msgid "posts"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-02-10 07:11:48 +01:00
|
|
|
#: ../IkiWiki/Plugin/aggregate.pm:144
|
2007-01-28 02:19:17 +01:00
|
|
|
msgid "new"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Plugin/aggregate.pm:307
|
2007-01-28 02:19:17 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "expiring %s (%s days old)"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Plugin/aggregate.pm:314
|
2007-01-28 02:19:17 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "expiring %s"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Plugin/aggregate.pm:341
|
2007-01-28 02:19:17 +01:00
|
|
|
#, perl-format
|
2007-04-23 21:32:21 +02:00
|
|
|
msgid "processed ok at %s"
|
2007-01-28 02:19:17 +01:00
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Plugin/aggregate.pm:345
|
2007-01-28 02:19:17 +01:00
|
|
|
#, perl-format
|
2007-04-23 21:32:21 +02:00
|
|
|
msgid "checking feed %s ..."
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Plugin/aggregate.pm:350
|
2007-04-23 21:32:21 +02:00
|
|
|
#, perl-format
|
2007-01-28 02:19:17 +01:00
|
|
|
msgid "could not find feed at %s"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Plugin/aggregate.pm:365
|
2007-04-23 21:32:21 +02:00
|
|
|
msgid "feed not found"
|
2007-01-28 02:19:17 +01:00
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Plugin/aggregate.pm:376
|
2007-01-28 02:19:17 +01:00
|
|
|
#, perl-format
|
2007-04-27 02:30:49 +02:00
|
|
|
msgid "(invalid UTF-8 stripped from feed)"
|
2007-04-23 21:32:21 +02:00
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Plugin/aggregate.pm:382
|
2008-01-09 08:42:58 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "(feed entities escaped)"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Plugin/aggregate.pm:388
|
2007-04-23 21:32:21 +02:00
|
|
|
msgid "feed crashed XML::Feed!"
|
2007-01-28 02:19:17 +01:00
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Plugin/aggregate.pm:462
|
2007-01-28 02:19:17 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "creating new page %s"
|
|
|
|
msgstr ""
|
|
|
|
|
2007-12-16 22:52:39 +01:00
|
|
|
#: ../IkiWiki/Plugin/brokenlinks.pm:40
|
2007-11-12 20:40:24 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "%s from %s"
|
|
|
|
msgstr ""
|
|
|
|
|
2007-12-16 22:52:39 +01:00
|
|
|
#: ../IkiWiki/Plugin/brokenlinks.pm:47
|
2007-01-28 02:19:17 +01:00
|
|
|
msgid "There are no broken links!"
|
|
|
|
msgstr ""
|
|
|
|
|
2007-05-09 02:48:09 +02:00
|
|
|
#: ../IkiWiki/Plugin/conditional.pm:18
|
|
|
|
#, perl-format
|
|
|
|
msgid "%s parameter is required"
|
2007-03-07 13:04:45 +01:00
|
|
|
msgstr ""
|
|
|
|
|
2008-01-29 23:50:11 +01:00
|
|
|
#: ../IkiWiki/Plugin/edittemplate.pm:41
|
2007-12-12 22:50:29 +01:00
|
|
|
msgid "template not specified"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-01-29 23:50:11 +01:00
|
|
|
#: ../IkiWiki/Plugin/edittemplate.pm:44
|
2007-12-12 22:50:29 +01:00
|
|
|
msgid "match not specified"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-01-29 23:50:11 +01:00
|
|
|
#: ../IkiWiki/Plugin/edittemplate.pm:49
|
2007-12-12 22:50:29 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "edittemplate %s registered for %s"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-01-29 23:50:11 +01:00
|
|
|
#: ../IkiWiki/Plugin/edittemplate.pm:111
|
2007-12-12 22:50:29 +01:00
|
|
|
msgid "failed to process"
|
|
|
|
msgstr ""
|
|
|
|
|
2007-01-28 02:19:17 +01:00
|
|
|
#: ../IkiWiki/Plugin/fortune.pm:18
|
|
|
|
msgid "fortune failed"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/googlecalendar.pm:22
|
2007-03-07 13:04:45 +01:00
|
|
|
msgid "failed to find url in html"
|
|
|
|
msgstr ""
|
|
|
|
|
2007-07-25 07:04:47 +02:00
|
|
|
#: ../IkiWiki/Plugin/graphviz.pm:58
|
2007-04-09 11:09:02 +02:00
|
|
|
msgid "failed to run graphviz"
|
|
|
|
msgstr ""
|
|
|
|
|
2007-08-05 22:48:13 +02:00
|
|
|
#: ../IkiWiki/Plugin/graphviz.pm:85
|
2007-04-09 11:09:02 +02:00
|
|
|
msgid "prog not a valid graphviz program"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-01-09 08:42:58 +01:00
|
|
|
#: ../IkiWiki/Plugin/img.pm:53
|
2007-03-07 13:04:45 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "bad size \"%s\""
|
|
|
|
msgstr ""
|
|
|
|
|
2008-01-09 08:42:58 +01:00
|
|
|
#: ../IkiWiki/Plugin/img.pm:63 ../IkiWiki/Plugin/img.pm:67
|
|
|
|
#: ../IkiWiki/Plugin/img.pm:84
|
2007-03-07 13:04:45 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "failed to read %s: %s"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-01-09 08:42:58 +01:00
|
|
|
#: ../IkiWiki/Plugin/img.pm:70
|
2007-03-07 13:04:45 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "failed to resize: %s"
|
2007-01-28 02:19:17 +01:00
|
|
|
msgstr ""
|
|
|
|
|
2008-01-09 08:42:58 +01:00
|
|
|
#: ../IkiWiki/Plugin/img.pm:101
|
2007-05-24 21:56:08 +02:00
|
|
|
#, perl-format
|
|
|
|
msgid "failed to determine size of image %s"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Plugin/inline.pm:46
|
2007-01-28 02:19:17 +01:00
|
|
|
msgid "Must specify url to wiki with --url when using --rss or --atom"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Plugin/inline.pm:153
|
2007-01-28 02:19:17 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "unknown sort type %s"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Plugin/inline.pm:224
|
2007-04-12 06:13:55 +02:00
|
|
|
msgid "Add a new post titled:"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Plugin/inline.pm:240
|
2007-03-02 05:00:42 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "nonexistant template %s"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Plugin/inline.pm:273 ../IkiWiki/Render.pm:99
|
2007-01-31 08:18:06 +01:00
|
|
|
msgid "Discussion"
|
|
|
|
msgstr ""
|
|
|
|
|
Fix CSRF attacks against the preferences and edit forms. Closes: #475445
The fix involved embedding the session id in the forms, and not allowing the
forms to be submitted if the embedded id does not match the session id.
In the case of the preferences form, if the session id is not embedded,
then the CGI parameters are cleared. This avoids a secondary attack where the
link to the preferences form prefills password or other fields, and
the user hits "submit" without noticing these prefilled values.
In the case of the editpage form, the anonok plugin can allow anyone to edit,
and so I chose not to guard against CSRF attacks against users who are not
logged in. Otherwise, it also embeds the session id and checks it.
For page editing, I assume that the user will notice if content or commit
message is changed because of CGI parameters, and won't blndly hit save page.
So I didn't block those CGI paramters. (It's even possible to use those CGI
parameters, for good, not for evil, I guess..)
The only other CSRF attack I can think of in ikiwiki involves the poll plugin.
It's certianly possible to set up a link that causes the user to unknowingly
vote in a poll. However, the poll plugin is not intended to be used for things
that people would want to attack, since anyone can after all edit the poll page
and fill in any values they like. So this "attack" is ignorable.
2008-04-10 22:35:30 +02:00
|
|
|
#: ../IkiWiki/Plugin/inline.pm:500
|
2007-01-28 02:19:17 +01:00
|
|
|
msgid "RPC::XML::Client not found, not pinging"
|
|
|
|
msgstr ""
|
|
|
|
|
2007-04-04 02:40:57 +02:00
|
|
|
#: ../IkiWiki/Plugin/linkmap.pm:98
|
2007-03-07 13:04:45 +01:00
|
|
|
msgid "failed to run dot"
|
2007-01-28 02:19:17 +01:00
|
|
|
msgstr ""
|
|
|
|
|
2008-01-07 22:34:13 +01:00
|
|
|
#: ../IkiWiki/Plugin/lockedit.pm:29
|
2007-02-02 03:33:03 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "%s is locked by %s and cannot be edited"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-12 19:21:48 +01:00
|
|
|
#: ../IkiWiki/Plugin/mdwn.pm:42
|
2007-01-28 02:19:17 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "failed to load Markdown.pm perl module (%s) or /usr/bin/markdown (%s)"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-02-12 04:48:27 +01:00
|
|
|
#: ../IkiWiki/Plugin/meta.pm:132
|
* meta: Drop support for "meta link", since supporting this for internal
links required meta to be run during scan, which complicated its data
storage, since it had to clear data stored during the scan pass to avoid
duplicating it during the normal preprocessing pass.
* If you used "meta link", you should switch to either "meta openid" (for
openid delegations), or tags (for internal, invisible links). I assume
that nobody really used "meta link" for external, non-openid links, since
the htmlscrubber ate those. (Tell me differently and I'll consider bringing
back that support.)
* meta: Improved data storage.
* meta: Drop the hackish filter hook that was used to clear
stored data before preprocessing, this hack was ugly, and broken (cf:
liw's disappearing openids).
* aggregate: Convert filter hook to a needsbuild hook.
2007-12-16 21:56:09 +01:00
|
|
|
msgid "stylesheet not found"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-12 19:21:48 +01:00
|
|
|
#: ../IkiWiki/Plugin/meta.pm:166
|
2007-12-08 21:36:34 +01:00
|
|
|
msgid "redir page not found"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-12 19:21:48 +01:00
|
|
|
#: ../IkiWiki/Plugin/meta.pm:179
|
2007-12-09 01:39:32 +01:00
|
|
|
msgid "redir cycle is not allowed"
|
2007-12-08 23:40:50 +01:00
|
|
|
msgstr ""
|
|
|
|
|
2007-01-28 02:19:17 +01:00
|
|
|
#: ../IkiWiki/Plugin/mirrorlist.pm:23
|
|
|
|
msgid "Mirrors"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/mirrorlist.pm:23
|
|
|
|
msgid "Mirror"
|
|
|
|
msgstr ""
|
|
|
|
|
2007-02-20 04:05:47 +01:00
|
|
|
#: ../IkiWiki/Plugin/more.pm:8
|
|
|
|
msgid "more"
|
|
|
|
msgstr ""
|
|
|
|
|
2007-04-30 06:51:57 +02:00
|
|
|
#: ../IkiWiki/Plugin/openid.pm:45
|
2007-04-30 00:58:27 +02:00
|
|
|
msgid "Log in with"
|
2007-01-28 02:19:17 +01:00
|
|
|
msgstr ""
|
|
|
|
|
2007-04-30 06:51:57 +02:00
|
|
|
#: ../IkiWiki/Plugin/openid.pm:48
|
2007-01-28 02:19:17 +01:00
|
|
|
msgid "Get an OpenID"
|
|
|
|
msgstr ""
|
|
|
|
|
2007-01-31 08:18:06 +01:00
|
|
|
#: ../IkiWiki/Plugin/orphans.pm:42
|
2007-01-28 02:19:17 +01:00
|
|
|
msgid "All pages are linked to by other pages."
|
|
|
|
msgstr ""
|
|
|
|
|
2007-07-27 04:03:14 +02:00
|
|
|
#: ../IkiWiki/Plugin/pagetemplate.pm:21
|
|
|
|
msgid "bad or missing template"
|
|
|
|
msgstr ""
|
|
|
|
|
2007-05-20 03:00:21 +02:00
|
|
|
#: ../IkiWiki/Plugin/passwordauth.pm:162
|
2007-01-28 02:19:17 +01:00
|
|
|
msgid "Account creation successful. Now you can Login."
|
|
|
|
msgstr ""
|
|
|
|
|
2007-05-20 03:00:21 +02:00
|
|
|
#: ../IkiWiki/Plugin/passwordauth.pm:165
|
2007-01-28 02:19:17 +01:00
|
|
|
msgid "Error creating account."
|
|
|
|
msgstr ""
|
|
|
|
|
2007-05-20 03:00:21 +02:00
|
|
|
#: ../IkiWiki/Plugin/passwordauth.pm:186
|
2007-01-28 02:19:17 +01:00
|
|
|
msgid "Failed to send mail"
|
|
|
|
msgstr ""
|
|
|
|
|
2007-05-20 03:00:21 +02:00
|
|
|
#: ../IkiWiki/Plugin/passwordauth.pm:188
|
2007-01-28 02:19:17 +01:00
|
|
|
msgid "Your password has been emailed to you."
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/poll.pm:64
|
|
|
|
msgid "vote"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/poll.pm:72
|
|
|
|
msgid "Total votes:"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/polygen.pm:32
|
|
|
|
msgid "polygen not installed"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/polygen.pm:51
|
|
|
|
msgid "polygen failed"
|
|
|
|
msgstr ""
|
|
|
|
|
2007-08-13 05:07:31 +02:00
|
|
|
#: ../IkiWiki/Plugin/postsparkline.pm:32
|
2007-03-11 03:29:15 +01:00
|
|
|
msgid "missing formula"
|
|
|
|
msgstr ""
|
|
|
|
|
2007-08-13 05:07:31 +02:00
|
|
|
#: ../IkiWiki/Plugin/postsparkline.pm:39
|
2007-03-11 03:29:15 +01:00
|
|
|
msgid "unknown formula"
|
|
|
|
msgstr ""
|
|
|
|
|
2007-02-15 21:06:14 +01:00
|
|
|
#. translators: These descriptions of times of day are used
|
|
|
|
#. translators: in messages like "last edited <description>".
|
|
|
|
#. translators: %A is the name of the day of the week, while
|
|
|
|
#. translators: %A- is the name of the previous day.
|
|
|
|
#: ../IkiWiki/Plugin/prettydate.pm:15
|
|
|
|
msgid "late %A- night"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/prettydate.pm:17
|
|
|
|
msgid "in the wee hours of %A- night"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/prettydate.pm:20
|
|
|
|
msgid "terribly early %A morning"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/prettydate.pm:22
|
|
|
|
msgid "early %A morning"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/prettydate.pm:25
|
2007-05-09 02:48:09 +02:00
|
|
|
msgid "mid-morning %A"
|
2007-02-15 21:06:14 +01:00
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/prettydate.pm:26
|
2007-02-20 04:05:47 +01:00
|
|
|
msgid "late %A morning"
|
2007-02-15 21:06:14 +01:00
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/prettydate.pm:27
|
|
|
|
msgid "at lunch time on %A"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/prettydate.pm:29
|
|
|
|
msgid "%A afternoon"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/prettydate.pm:32
|
|
|
|
msgid "late %A afternoon"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/prettydate.pm:33
|
|
|
|
msgid "%A evening"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/prettydate.pm:35
|
|
|
|
msgid "late %A evening"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/prettydate.pm:37
|
|
|
|
msgid "%A night"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-01-29 10:45:54 +01:00
|
|
|
#: ../IkiWiki/Plugin/prettydate.pm:78
|
2007-02-15 21:06:14 +01:00
|
|
|
msgid "at teatime on %A"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-01-29 10:45:54 +01:00
|
|
|
#: ../IkiWiki/Plugin/prettydate.pm:82
|
2007-02-15 21:06:14 +01:00
|
|
|
msgid "at midnight"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-01-29 10:45:54 +01:00
|
|
|
#: ../IkiWiki/Plugin/prettydate.pm:85
|
2007-02-15 21:06:14 +01:00
|
|
|
msgid "at noon on %A"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-02-03 21:02:34 +01:00
|
|
|
#: ../IkiWiki/Plugin/recentchanges.pm:74
|
|
|
|
msgid "missing page"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/recentchanges.pm:76
|
|
|
|
#, perl-format
|
|
|
|
msgid "The page %s does not exist."
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Plugin/recentchangesdiff.pm:26
|
|
|
|
msgid "(Diff truncated)"
|
|
|
|
msgstr ""
|
|
|
|
|
2007-01-28 02:19:17 +01:00
|
|
|
#: ../IkiWiki/Plugin/search.pm:34
|
|
|
|
#, perl-format
|
|
|
|
msgid "Must specify %s when using the search plugin"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/search.pm:58
|
|
|
|
msgid "cleaning hyperestraier search index"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/search.pm:64
|
|
|
|
msgid "updating hyperestraier search index"
|
|
|
|
msgstr ""
|
|
|
|
|
2007-12-19 01:50:40 +01:00
|
|
|
#: ../IkiWiki/Plugin/shortcut.pm:18
|
|
|
|
msgid "shortcut plugin will not work without a shortcuts.mdwn"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/shortcut.pm:27
|
2007-03-07 13:04:45 +01:00
|
|
|
msgid "missing name or url parameter"
|
2007-01-28 02:19:17 +01:00
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#. translators: This is used to display what shortcuts are defined.
|
|
|
|
#. translators: First parameter is the name of the shortcut, the second
|
|
|
|
#. translators: is an URL.
|
2007-12-19 01:50:40 +01:00
|
|
|
#: ../IkiWiki/Plugin/shortcut.pm:36
|
2007-01-28 02:19:17 +01:00
|
|
|
#, perl-format
|
2007-02-15 21:06:14 +01:00
|
|
|
msgid "shortcut %s points to <i>%s</i>"
|
2007-01-28 02:19:17 +01:00
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Plugin/smiley.pm:32
|
2007-04-06 22:36:29 +02:00
|
|
|
msgid "failed to parse any smileys"
|
2007-01-28 02:19:17 +01:00
|
|
|
msgstr ""
|
|
|
|
|
2007-03-07 07:27:27 +01:00
|
|
|
#: ../IkiWiki/Plugin/sparkline.pm:63
|
2007-03-07 13:04:45 +01:00
|
|
|
msgid "parse error"
|
2007-03-07 07:27:27 +01:00
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/sparkline.pm:69
|
2007-03-07 13:04:45 +01:00
|
|
|
msgid "bad featurepoint diameter"
|
2007-03-07 07:27:27 +01:00
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/sparkline.pm:79
|
2007-03-07 13:04:45 +01:00
|
|
|
msgid "bad featurepoint location"
|
2007-03-07 07:27:27 +01:00
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/sparkline.pm:90
|
2007-03-07 13:04:45 +01:00
|
|
|
msgid "missing values"
|
2007-03-07 07:27:27 +01:00
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/sparkline.pm:95
|
2007-03-07 13:04:45 +01:00
|
|
|
msgid "bad height value"
|
2007-03-07 07:27:27 +01:00
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/sparkline.pm:102
|
2007-03-07 13:04:45 +01:00
|
|
|
msgid "missing width parameter"
|
2007-03-07 07:27:27 +01:00
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/sparkline.pm:106
|
2007-03-07 13:04:45 +01:00
|
|
|
msgid "bad width value"
|
2007-03-07 07:27:27 +01:00
|
|
|
msgstr ""
|
|
|
|
|
2007-03-07 08:41:07 +01:00
|
|
|
#: ../IkiWiki/Plugin/sparkline.pm:144
|
2007-03-07 13:04:45 +01:00
|
|
|
msgid "failed to run php"
|
|
|
|
msgstr ""
|
|
|
|
|
2007-09-07 19:06:42 +02:00
|
|
|
#: ../IkiWiki/Plugin/table.pm:22
|
2007-03-07 13:04:45 +01:00
|
|
|
msgid "cannot find file"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-01-05 08:26:24 +01:00
|
|
|
#: ../IkiWiki/Plugin/table.pm:64
|
2007-03-07 13:04:45 +01:00
|
|
|
msgid "unknown data format"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-01-05 08:26:24 +01:00
|
|
|
#: ../IkiWiki/Plugin/table.pm:72
|
2007-03-07 13:04:45 +01:00
|
|
|
msgid "empty data"
|
2007-03-07 06:33:45 +01:00
|
|
|
msgstr ""
|
|
|
|
|
2008-01-05 08:26:24 +01:00
|
|
|
#: ../IkiWiki/Plugin/table.pm:92
|
2007-03-07 12:40:22 +01:00
|
|
|
msgid "Direct data download"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-01-05 08:26:24 +01:00
|
|
|
#: ../IkiWiki/Plugin/table.pm:126
|
2007-03-07 12:40:22 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "parse fail at line %d: %s"
|
|
|
|
msgstr ""
|
|
|
|
|
2007-01-28 02:19:17 +01:00
|
|
|
#: ../IkiWiki/Plugin/template.pm:19
|
2007-03-07 13:04:45 +01:00
|
|
|
msgid "missing id parameter"
|
2007-01-28 02:19:17 +01:00
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/template.pm:26
|
|
|
|
#, perl-format
|
|
|
|
msgid "template %s not found"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Plugin/template.pm:45
|
2007-03-07 13:04:45 +01:00
|
|
|
msgid "failed to process:"
|
2007-01-28 02:19:17 +01:00
|
|
|
msgstr ""
|
|
|
|
|
2007-08-24 23:02:19 +02:00
|
|
|
#: ../IkiWiki/Plugin/teximg.pm:30
|
2007-08-22 23:06:13 +02:00
|
|
|
msgid "missing tex code"
|
|
|
|
msgstr ""
|
|
|
|
|
2007-08-24 23:02:19 +02:00
|
|
|
#: ../IkiWiki/Plugin/teximg.pm:37
|
2007-08-22 23:06:13 +02:00
|
|
|
msgid "code includes disallowed latex commands"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-12 20:45:10 +01:00
|
|
|
#: ../IkiWiki/Plugin/teximg.pm:88
|
2007-08-22 23:06:13 +02:00
|
|
|
msgid "failed to generate image from code"
|
|
|
|
msgstr ""
|
|
|
|
|
2007-11-06 21:19:50 +01:00
|
|
|
#: ../IkiWiki/Plugin/toggle.pm:88
|
|
|
|
msgid "(not toggleable in preview mode)"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-12 20:45:10 +01:00
|
|
|
#: ../IkiWiki/Rcs/Stub.pm:69
|
2007-01-28 02:19:17 +01:00
|
|
|
msgid "getctime not implemented"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Render.pm:289 ../IkiWiki/Render.pm:310
|
2007-01-28 02:19:17 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "skipping bad filename %s"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Render.pm:365
|
2007-01-28 02:19:17 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "removing old page %s"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Render.pm:406
|
2007-01-28 02:19:17 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "scanning %s"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Render.pm:411
|
2007-01-28 02:19:17 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "rendering %s"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Render.pm:432
|
2007-01-28 02:19:17 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "rendering %s, which links to %s"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Render.pm:453
|
2007-01-28 02:19:17 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "rendering %s, which depends on %s"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Render.pm:492
|
2007-01-28 02:19:17 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "rendering %s, to update its backlinks"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Render.pm:504
|
2007-01-28 02:19:17 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "removing %s, no longer rendered by %s"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki/Render.pm:530
|
2007-01-28 02:19:17 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "ikiwiki: cannot render %s"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#. translators: The first parameter is a filename, and the second
|
|
|
|
#. translators: is a (probably not translated) error message.
|
|
|
|
#: ../IkiWiki/Setup.pm:15
|
|
|
|
#, perl-format
|
|
|
|
msgid "cannot read %s: %s"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Setup/Standard.pm:32
|
|
|
|
msgid "generating wrappers.."
|
|
|
|
msgstr ""
|
|
|
|
|
2007-03-21 07:05:21 +01:00
|
|
|
#: ../IkiWiki/Setup/Standard.pm:72
|
2007-01-28 02:19:17 +01:00
|
|
|
msgid "rebuilding wiki.."
|
|
|
|
msgstr ""
|
|
|
|
|
2007-03-21 07:05:21 +01:00
|
|
|
#: ../IkiWiki/Setup/Standard.pm:75
|
2007-01-28 02:19:17 +01:00
|
|
|
msgid "refreshing wiki.."
|
|
|
|
msgstr ""
|
|
|
|
|
2007-03-21 07:05:21 +01:00
|
|
|
#: ../IkiWiki/Setup/Standard.pm:84
|
2007-01-28 02:19:17 +01:00
|
|
|
msgid "done"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Wrapper.pm:16
|
|
|
|
#, perl-format
|
|
|
|
msgid "%s doesn't seem to be executable"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Wrapper.pm:20
|
|
|
|
msgid "cannot create a wrapper that uses a setup file"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../IkiWiki/Wrapper.pm:24
|
|
|
|
msgid "wrapper filename not specified"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#. translators: The first parameter is a filename, and the second is
|
|
|
|
#. translators: a (probably not translated) error message.
|
2008-01-29 10:45:54 +01:00
|
|
|
#: ../IkiWiki/Wrapper.pm:48
|
2007-01-28 02:19:17 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "failed to write %s: %s"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#. translators: The parameter is a C filename.
|
2008-01-29 10:45:54 +01:00
|
|
|
#: ../IkiWiki/Wrapper.pm:99
|
2007-01-28 02:19:17 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "failed to compile %s"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#. translators: The parameter is a filename.
|
2008-01-29 10:45:54 +01:00
|
|
|
#: ../IkiWiki/Wrapper.pm:119
|
2007-01-28 02:19:17 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "successfully generated %s"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#: ../ikiwiki.in:13
|
|
|
|
msgid "usage: ikiwiki [options] source dest"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-02-12 04:48:27 +01:00
|
|
|
#: ../ikiwiki.in:82
|
2007-08-05 22:48:13 +02:00
|
|
|
msgid "usage: --set var=value"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki.pm:117
|
2007-01-28 02:19:17 +01:00
|
|
|
msgid "Must specify url to wiki with --url when using --cgi"
|
|
|
|
msgstr ""
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki.pm:186 ../IkiWiki.pm:187
|
2007-01-28 02:19:17 +01:00
|
|
|
msgid "Error"
|
|
|
|
msgstr ""
|
|
|
|
|
|
|
|
#. translators: The first parameter is a
|
|
|
|
#. translators: preprocessor directive name,
|
|
|
|
#. translators: the second a page name, the
|
|
|
|
#. translators: third a number.
|
2008-03-30 03:02:47 +02:00
|
|
|
#: ../IkiWiki.pm:747
|
2007-01-28 02:19:17 +01:00
|
|
|
#, perl-format
|
|
|
|
msgid "%s preprocessing loop detected on %s at depth %i"
|
|
|
|
msgstr ""
|