/usr/share/lua/5.1/tongue.lua is in lua-tongue 0.8-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | -- lib/tongue.lua
--
-- Lua I18N library 'Tongue'
--
-- Copyright 2016 Daniel Silverstone <dsilvers@digital-scurf.org>
--
-- For licence terms, see COPYING
--
--- Lua I18N library - Tongue
--
local _VERSION = 1
local _ABI = 1
local VERSION = "Tongue Version " .. tostring(_VERSION)
local codex = require "tongue.codex"
local langpack = require "tongue.langpack"
local transliteration = require "tongue.transliteration"
local util = require "tongue.util"
return {
_VERSION = _VERSION,
VERSION = VERSION,
_ABI = _ABI,
ABI = ABI,
codex = codex,
langpack = langpack,
transliteration = transliteration,
translit = transliteration,
t13n = transliteration,
util = util,
}
|