-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathextract_strings_from_config_file.py
More file actions
executable file
·48 lines (40 loc) · 1.28 KB
/
extract_strings_from_config_file.py
File metadata and controls
executable file
·48 lines (40 loc) · 1.28 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# alan2 - An openbox menu builder
# Copyright (C) 2013 Semplice Project
#
# 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.
#
# 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.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# Authors:
# Eugenio "g7" Paolantonio <me@medesimo.eu>
#
import ConfigParser as cp
cfg = cp.SafeConfigParser()
cfg.read("./alan.conf")
potfile = open("lang/alan2/alan2.pot", "a+")
potfile.write("\n")
lines = potfile.readlines()
# Fake ugly counter
counter = 0
for sect in cfg.sections():
for opt in cfg.options(sect):
# *label*
if "label" in opt and not ("msgid \"%s\"\n" % cfg.get(sect, opt)) in lines:
# Yay!
counter += 1
potfile.write("""#: alan.conf:%i
msgid "%s"
msgstr ""
""" % (counter, cfg.get(sect, opt)))
potfile.close()