Jump to content

Main public logs

This is a combined display of all logs except the patrol, review, tag and thanks logs:

Who performed the action – enter their name without prefix under "Performer".
The page or user affected by an action – enter the page or user name (prefixed with "User:") under "Target".
User logs
  • 12:32, 21 November 2023 AmazingJus talk contribs created page Module:User:AmazingJus (Created page with 'local export = {} local gsub = mw.ustring.gsub local function lc(str) return mw.getLanguage("(insert lang here)"):lc(str) end -- IPA transcription function export.toIPA(entry) -- get user input as a table if type(entry) == "table" then entry = entry.args[1] end entry = lc(entry) -- make all text lowercase entry = " " .. entry .. " " -- make all word borders have a space -- rest of code goes here return mw.text.trim(entry) end return export')