X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Flib%2Fcounting.qh;h=12ec4a9b61dc7f09a4fff6c80a735022c558ae70;hp=c44951225ba2bc179bfb67f7c25812ed8de135dd;hb=0bd99205bd154e058edc6b82995d24e3375f5f97;hpb=f16c95a1e2c5b13ba3e7bd11eed191493afa801f diff --git a/qcsrc/lib/counting.qh b/qcsrc/lib/counting.qh index c44951225b..12ec4a9b61 100644 --- a/qcsrc/lib/counting.qh +++ b/qcsrc/lib/counting.qh @@ -61,6 +61,7 @@ _("CI_THI^%d seconds"), /* third */ \ _("CI_MUL^%d seconds")) /* multi */ +[[eraseable]] string count_ordinal(int interval) { // This function is designed primarily for the English language, it's impossible @@ -86,6 +87,7 @@ string count_ordinal(int interval) return ""; } +[[eraseable]] string count_fill(float interval, string zeroth, string first, string second, string third, string multi) { // This function is designed primarily for the English language, it's impossible @@ -116,6 +118,7 @@ string count_fill(float interval, string zeroth, string first, string second, st return ""; } +[[eraseable]] string process_time(float outputtype, float seconds) { float tmp_hours = 0, tmp_minutes = 0, tmp_seconds = 0;