2022-08-16 23:47:28 +00:00
|
|
|
# Change the look of Adwaita, with ease
|
|
|
|
# Copyright (C) 2022 Gradience Team
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
2022-08-17 21:35:59 +00:00
|
|
|
#
|
2022-08-16 23:47:28 +00:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2022-08-17 21:35:59 +00:00
|
|
|
#
|
2022-08-16 23:47:28 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
2022-08-13 16:59:06 +00:00
|
|
|
import os
|
|
|
|
|
2022-08-17 21:35:59 +00:00
|
|
|
|
2022-08-13 16:59:06 +00:00
|
|
|
def list_po():
|
|
|
|
files = []
|
|
|
|
for _, _, filesname in os.walk("po"):
|
2022-08-17 21:35:59 +00:00
|
|
|
for file in filesname:
|
2022-08-13 16:59:06 +00:00
|
|
|
if file.endswith(".po"):
|
|
|
|
files.append(file.strip(".po"))
|
|
|
|
return files
|
2022-08-17 21:35:59 +00:00
|
|
|
|
2022-08-13 16:59:06 +00:00
|
|
|
|
|
|
|
with open("LINGUAS", "w") as file:
|
|
|
|
po = "\n".join(list_po())
|
|
|
|
file.write(po)
|