From 19c272bce505b394413a4ee0396ca028324fc48f Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sun, 30 Oct 2016 20:46:25 +0100 Subject: Add entry ID to nameless entry info --- init.lua | 4 ++-- locale/de.txt | 2 +- locale/template.txt | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/init.lua b/init.lua index 1071db4..b4f4660 100644 --- a/init.lua +++ b/init.lua @@ -552,7 +552,7 @@ function doc.generate_entry_list(cid, playername) local viewedprefix = "#00FFFF" local name = edata.name if name == nil or name == "" then - name = S("(Nameless entry)") + name = string.format(S("Nameless entry (%s)"), eid) if doc.entry_viewed(playername, cid, eid) then viewedprefix = "#FF4444" else @@ -716,7 +716,7 @@ function doc.formspec_entry(category_id, entry_id) local entry = doc.get_entry(category_id, entry_id) local ename = entry.name if ename == nil or ename == "" then - ename = S("(Nameless entry)") + ename = string.format(S("Nameless entry (%s)"), entry_id) end formstring = "label[0,0;"..minetest.formspec_escape(string.format(S("Help > %s > %s"), category.def.name, ename)).."]" formstring = formstring .. category.def.build_formspec(entry.data) diff --git a/locale/de.txt b/locale/de.txt index 73d9717..2f0524e 100644 --- a/locale/de.txt +++ b/locale/de.txt @@ -31,4 +31,4 @@ This category is empty. = Diese Kategorie ist leer. This is the Documentation System, Version %s. = Dies ist das Dokumentationssystem, Version %s. You haven't chosen a category yet. Please choose one in the category list first. = Sie haben noch keine Kategorie gewählt. Bitte wählen Sie zuerst eine Kategorie in der Kategorienliste aus. You haven't chosen an entry yet. Please choose one in the entry list first. = Sie haben noch keinen Eintrag gewählt. Bitte wählen Sie zuerst einen Eintrag in der Eintragsliste aus. -(Nameless entry) = (Namenloser Eintrag) +Nameless entry (%s) = Namenloser Eintrag (%s) diff --git a/locale/template.txt b/locale/template.txt index 15fed74..4862725 100644 --- a/locale/template.txt +++ b/locale/template.txt @@ -31,4 +31,4 @@ This category is empty. = This is the Documentation System, Version %s. = You haven't chosen a category yet. Please choose one in the category list first. = You haven't chosen an entry yet. Please choose one in the entry list first. = -(Nameless entry) = +Nameless entry (%s) = -- cgit v1.2.3