From 4f00ccbdae50d421edb0cd89a3426ce56482e81c Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sun, 7 Aug 2016 18:25:27 +0200 Subject: [PATCH] Capitalize first letter in item descriptions --- init.lua | 2 +- locale/de.txt | 4 ++-- locale/template.txt | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/init.lua b/init.lua index beae0a3..7642a3d 100644 --- a/init.lua +++ b/init.lua @@ -9,7 +9,7 @@ end dice2 = {} dice2.colors = { "white", "red" } -dice2.descriptions = { S("white dice"), S("red dice") } +dice2.descriptions = { S("White dice"), S("Red dice") } --[[ throw dice (randomly change facedir and play sound ]] function dice2.throw(pos, node, clicker, itemstack, pointed_thing) diff --git a/locale/de.txt b/locale/de.txt index 1d45712..9c2f178 100644 --- a/locale/de.txt +++ b/locale/de.txt @@ -1,4 +1,4 @@ -white dice = weißer Spielwürfel -red dice = roter Spielwürfel +White dice = Weißer Spielwürfel +Red dice = Roter Spielwürfel A huge wooden dice with the numbers 1-6, just for fun. = Ein riesiger hölzerner Spielwürfel mit den Zahlen 1-6, nur zum Spaß. Rightclick on a placed dice to “throw” it, which rotates it randomly. = Klicken Sie mit der rechten Maustaste auf einen Spielwürfel, um ihn zu »werfen«, was ihn zufällig rotiert. diff --git a/locale/template.txt b/locale/template.txt index a648f5d..80f1f8c 100644 --- a/locale/template.txt +++ b/locale/template.txt @@ -1,4 +1,4 @@ -white dice -red dice +White dice +Red dice A huge wooden dice with the numbers 1-6, just for fun. Rightclick on a placed dice to “throw” it, which rotates it randomly. -- 2.11.4.GIT