模块:Phrases:修订间差异

来自「荏苒之境」
无编辑摘要
无编辑摘要
第17行: 第17行:
local language = translation.getCurrentLanguageSubpage()
local language = translation.getCurrentLanguageSubpage()
if language == nil or language == "" then
if language ~= "zh-cn" then
language = "zh-cn"
if language == nil or language == "" then
end
language = "zh-cn"
end
local theme_query = cargo.query(PHRASE_THEMES_TABLE, "_ID", {
where = "PhraseTable='"..table_name.."' AND Theme='"..theme.."'"
local theme_query = cargo.query(PHRASE_THEMES_TABLE, "_ID", {
})
where = "PhraseTable='"..table_name.."' AND Theme='"..theme.."'"
if #theme_query == 0 then
cargo.store(PHRASE_THEMES_TABLE, {
PhraseTable = table_name,
Theme = theme
})
})
if #theme_query == 0 then
cargo.store(PHRASE_THEMES_TABLE, {
PhraseTable = table_name,
Theme = theme
})
end
for i, phrase in ipairs(parent_frame.args) do
if i ~= 1 then
cargo.store(table_name, {
Language = language,
Phrase = escape_sql(trim(phrase)),
Theme = theme
})
end
end
end
end
第34行: 第46行:
for i, phrase in ipairs(parent_frame.args) do
for i, phrase in ipairs(parent_frame.args) do
if i ~= 1 then
if i ~= 1 then
cargo.store(table_name, {
Language = language,
Phrase = escape_sql(trim(phrase)),
Theme = theme
})
t[#t+1] = "<li>"
t[#t+1] = "<li>"
t[#t+1] = frame:preprocess(phrase)
t[#t+1] = frame:preprocess(phrase)
第44行: 第51行:
end
end
end
end
t[#t+1] = "</ul>"
t[#t+1] = "</ul>"
return table.concat(t)
return table.concat(t)

2025年8月23日 (六) 20:10的版本

此模块的文档可以在模块:Phrases/doc创建

local translation = require("Module:Template translation")
local utils_str = require("Module:Utils/String")

local cargo = mw.ext.cargo
local escape_sql = utils_str.escape_sql
local trim = utils_str.trim

local PHRASE_THEMES_TABLE = "PhraseThemes"

local phrases = {}

phrases.show = function(frame)
	local args = frame.args
	local table_name = escape_sql(args.table)
	local parent_frame = frame:getParent()
	local theme = escape_sql(trim(parent_frame.args[1]))
	
	local language = translation.getCurrentLanguageSubpage()
	if language ~= "zh-cn" then
		if language == nil or language == "" then
			language = "zh-cn"
		end
		
		local theme_query = cargo.query(PHRASE_THEMES_TABLE, "_ID", {
			where = "PhraseTable='"..table_name.."' AND Theme='"..theme.."'"
		})
		if #theme_query == 0 then
			cargo.store(PHRASE_THEMES_TABLE, {
				PhraseTable = table_name,
				Theme = theme
			})
		end
		
		for i, phrase in ipairs(parent_frame.args) do
			if i ~= 1 then
				cargo.store(table_name, {
					Language = language,
					Phrase = escape_sql(trim(phrase)),
					Theme = theme
				})
			end
		end
	end
	
	local t = {"<ul>"}
	for i, phrase in ipairs(parent_frame.args) do
		if i ~= 1 then
			t[#t+1] = "<li>"
			t[#t+1] = frame:preprocess(phrase)
			t[#t+1] = "</li>"
		end
	end
	t[#t+1] = "</ul>"
	return table.concat(t)
end

return phrases