msgstr ""
"Project-Id-Version: Platforma Redakcyjna\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-07-10 16:58+0200\n"
+"POT-Creation-Date: 2014-03-21 14:34+0100\n"
"PO-Revision-Date: 2013-07-10 16:58+0100\n"
"Last-Translator: Radek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>\n"
"Language-Team: Fundacja Nowoczesna Polska <fundacja@nowoczesnapolska.org."
msgid "Visual editor"
msgstr "Edytor wizualny"
+#: templates/wiki/bootstrap.html:95
+msgid "Informations about lesson"
+msgstr "Informacje o lekcji"
+
+#: templates/wiki/bootstrap.html:97
+msgid "Stage"
+msgstr "Etap"
+
+#: templates/wiki/bootstrap.html:98
+msgid "Assignment"
+msgstr "Przypisano"
+
#~ msgid "ZIP file"
#~ msgstr "Plik ZIP"
#~ msgid "Users"
#~ msgstr "Użytkownicy"
-#~ msgid "Assigned to me"
-#~ msgstr "Przypisane do mnie"
-
#~ msgid "Unassigned"
#~ msgstr "Nie przypisane"
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-02-28 15:04+0100\n"
+"POT-Creation-Date: 2014-03-21 14:43+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
msgid "Document contains unsaved changes!"
msgstr "Dokument zawiera niezapisane zmiany"
-#: static/wiki/editor/src/editor/modules/data/data.js:116
+#: static/wiki/editor/src/editor/modules/data/data.js:137
msgid "Local draft of a document exists"
msgstr "Istnieje kopia lokalna dokumentu"
-#: static/wiki/editor/src/editor/modules/data/data.js:117
+#: static/wiki/editor/src/editor/modules/data/data.js:138
msgid ""
"Unsaved local draft of this version of the document exists in your browser. "
"Do you want to load it instead?"
-msgstr "Twoja przeglądarka posiada niezapisaną jeszcze na serwerze lokalną kopię tej wersji dokumentu. Czy chcesz jej teraz użyć?"
+msgstr ""
+"Twoja przeglądarka posiada niezapisaną jeszcze na serwerze lokalną kopię tej "
+"wersji dokumentu. Czy chcesz jej teraz użyć?"
-#: static/wiki/editor/src/editor/modules/data/data.js:118
+#: static/wiki/editor/src/editor/modules/data/data.js:139
msgid "Yes, restore local draft"
msgstr "Tak, chcę użyć lokalną kopię"
-#: static/wiki/editor/src/editor/modules/data/data.js:119
+#: static/wiki/editor/src/editor/modules/data/data.js:140
msgid "No, use version loaded from the server"
msgstr "Nie, chcę załadować wersję z serwera"
msgid "Cancel"
msgstr "Anuluj"
-#: static/wiki/editor/src/editor/modules/rng/rng.js:104
+#: static/wiki/editor/src/editor/modules/mainBar/mainBar.js:15
+msgid "anonymous"
+msgstr "anonim"
+
+#: static/wiki/editor/src/editor/modules/rng/rng.js:119
msgid "Saving document"
msgstr "Zapisywanie dokumentu"
-#: static/wiki/editor/src/editor/modules/rng/rng.js:105
+#: static/wiki/editor/src/editor/modules/rng/rng.js:120
msgid "Saving local copy"
msgstr "Zapisywanie kopii lokalnej"
-#: static/wiki/editor/src/editor/modules/rng/rng.js:113
+#: static/wiki/editor/src/editor/modules/rng/rng.js:128
msgid "Document saved"
msgstr "Dokument zapisany"
-#: static/wiki/editor/src/editor/modules/rng/rng.js:114
+#: static/wiki/editor/src/editor/modules/rng/rng.js:129
msgid "Local copy saved"
-msgstr "Kopia lokalna zapisana"
+msgstr "Wersja robocza zapisana"
+
+msgid "Draft Saved"
+msgstr "Zapisana wersja robocza"
+
+msgid "no draft exists"
+msgstr "brak wersji roboczej"
+
+msgid "drop a working draft"
+msgstr "porzuć wersję roboczą"
'document_id': chunk.id,
'title': chunk.book.title,
'history': get_history(chunk),
- 'version': chunk.revision()
+ 'version': chunk.revision(),
+ 'stage': chunk.stage.name if chunk.stage else None,
+ 'assignment': chunk.user.username if chunk.user else None
}),
'serialized_templates': simplejson.dumps([
{'id': t.id, 'name': t.name, 'content': t.content} for t in Template.objects.filter(is_partial=True)
revision = doc.revision()
return JSONResponse({
'text': doc.materialize() if parent_revision != revision else None,
- 'meta': {},
'version': revision,
+ 'stage': doc.stage.name if doc.stage else None,
+ 'assignment': doc.user.username if doc.user else None
})
else:
return JSONFormInvalid(form)
return JSONResponse({
'document': doc.materialize() if before != doc.revision() else None,
- 'meta': {},
'version': doc.revision(),
})
else: