Changeset 165
- Timestamp:
- 04/11/06 19:05:21 (3 years ago)
- Files:
-
- trunk/Makefile.in (modified) (4 diffs)
- trunk/etc/mesk.desktop.in (modified) (1 diff)
- trunk/po/Makefile.in (modified) (1 diff)
- trunk/src/mesk/common/i18n.py (modified) (1 diff)
- trunk/src/mesk_gui.glade (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Makefile.in
r164 r165 1 1 # 2 # Copyright (C) 200 4-2005Travis Shirk <travis@pobox.com>2 # Copyright (C) 2006 Travis Shirk <travis@pobox.com> 3 3 # 4 4 # This program is free software; you can redistribute it and/or modify … … 43 43 44 44 etc/mesk.desktop: etc/mesk.desktop.in 45 intltool-merge -d po etc/mesk.desktop.in etc/mesk.desktop 45 intltool-merge --utf8 --desktop-style \ 46 ./po etc/mesk.desktop.in etc/mesk.desktop 46 47 47 48 install: all … … 103 104 -rm ./svn-commit* 104 105 -rm ./scripts/mesk 106 -find . -name \*~ -exec rm {} \; 105 107 106 108 maintainer-clean: distclean … … 115 117 cp ChangeLog AUTHORS COPYING README NEWS THANKS ${DIST_NAME} 116 118 cp acsite.m4 configure setup.py.in Makefile.in ${DIST_NAME} 117 cp launch.sh ${DIST_NAME}118 119 119 120 cp -r ./src ${DIST_NAME} 120 121 cp -r ./scripts ${DIST_NAME} 121 122 cp -r ./po ${DIST_NAME} 123 mkdir ${DIST_NAME}/etc 124 cp ./etc/mesk.desktop.in ${DIST_NAME}/etc 122 125 # TODO 123 126 #mkdir ${DIST_NAME}/doc trunk/etc/mesk.desktop.in
r162 r165 15 15 #MimeType=audio/x-mp3;audio/x-mpeg;audio/mpeg;audio/x-mpegurl; 16 16 # XXX: Update with DiscBurning is supported 17 Categories=GTK; Audio;Music;Player;GTK;GNOME;17 Categories=GTK;Music; 18 18 # TODO: Need an icon 19 19 #Icon=gajim.png trunk/po/Makefile.in
r164 r165 1 # 2 # Copyright (C) 2006 Travis Shirk <travis@pobox.com> 3 # 4 # This program is free software; you can redistribute it and/or modify 5 # it under the terms of the GNU General Public License as published by 6 # the Free Software Foundation; either version 2 of the License, or 7 # (at your option) any later version. 8 # 9 # This program is distributed in the hope that it will be useful, 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 # GNU General Public License for more details. 13 # 14 # You should have received a copy of the GNU General Public License 15 # along with this program; if not, write to the Free Software 16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 17 # 1 18 NAME=mesk 2 19 LANGS:=es fr trunk/src/mesk/common/i18n.py
r164 r165 44 44 _translation = gettext.translation('mesk', DIR) 45 45 except IOError: 46 print >> sys.stderr, "Failed to load gettext translations" 46 47 _translation = gettext.NullTranslations() 47 48 init() 48 print "_translation:", _translation49 49 50 50 def _(s): trunk/src/mesk_gui.glade
r164 r165 371 371 <widget class="GtkLabel" id="track_time_label"> 372 372 <property name="visible">True</property> 373 <property name="label" translatable="yes"> 00:00</property>373 <property name="label" translatable="yes">--:--</property> 374 374 <property name="use_underline">False</property> 375 375 <property name="use_markup">True</property>
