Re: desktop and/or menu files localization

2007-07-14 Thread Ming Hua
On Sat, Jul 14, 2007 at 07:54:58AM +0200, Christian Perrier wrote:
> 
> Quoting Josselin Mouette ([EMAIL PROTECTED]):
> > Le vendredi 13 juillet 2007 à 17:30 -0400, Joey Hess a écrit :
> > > There are probably enhancements that would let it create _better_
> > > .desktop files. For example, ones with translations..
> > 
> > Ah, right. I forgot translations. Another good reason to drop the Debian
> > menu system.
> 
> Speaking about desktop files l10n, the current way to
> translate them does not seem to scale very well to me.
> 
> From what I see in the dozens of .desktop files I have on my own
> system, I see "Field[code]" fields for translations of "Field". 

IIUC, these fields are (can be) automatically filled by intltool, using
the translations in PO files.  So for translators the whole process is
transparent, they only need to deal with PO files.

> I suppose that big projects like KDE and GNOME have setup their own
> l10n infrastructure to localize these, but allowing the same to happen
> with other .desktop files would be an interesting enhancement.

The tool is there, it's just up to the individual software writer if
he/she wants to set up the infrastructure for translating desktop file.

[I am not subscribed to debian-devel, please cc: me if debian-i18n is
not crossposted.]

Ming
2007.07.14


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



package name changes in atlas-cpp (was Re: library renaming due to changed libstdc++ configuration)

2005-11-28 Thread Ming Hua
On Tue, Nov 15, 2005 at 06:28:05AM +0100, Matthias Klose wrote:
> 
>  * Rename and rebuild the libraries listed below. The new suffix for
>these packages should be in any case "c2a" (instead of "c2"). No
>new suffix is needed when the soname changes in a new upstream
>upload.

I noticed that atlas-cpp with renamed library packages has been
uploaded, and it renames the binary packages as follows:
libatlas-cpp-0.6-0 => libatlas-cpp-0.6-0c2
libatlas-cpp-0.6-0-dbg => libatlas-cpp-0.6-0c2-dbg

I have two questions for this:

1. Should -dbg packages be renamed or not?
2. Shouldn't the suffix be c2a in this case?

This also has the consequence of having different binary package names
than Ubuntu (Ubuntu only renamed libatlas-cpp-0.6-0 to
libatlas-cpp-0.6-0c2a, didn't rename -dbg package), Ubuntu MOTU cc:ed.

(Please cc: the reply to me, I'm not subscribed to debian-devel, thanks.)

Ming
2005.11.28


signature.asc
Description: Digital signature


Bug#311986: ITP: scim-input-pad -- on-screen input pad IM engine module for SCIM

2005-06-04 Thread Ming Hua
Package: wnpp
Severity: wishlist
Owner: Ming Hua <[EMAIL PROTECTED]>

* Package name: scim-input-pad
  Version : 0.1.0
  Upstream Author : James Su <[EMAIL PROTECTED]>
* URL : http://www.scim-im.org/
* License : GPL
  Description : on-screen input pad IM engine module for SCIM

SCIM (Smart Common Input Method) is an input method (IM) platform.

This package provides the on-screen input pad IM engine module for SCIM.
Using the input pad users can see a group of symbols and choose from
them as input.  The symbol groups included in this package are basic
symbols (technical symbols, punctuation symbols, etc.), Chinese numbers
and radicals, Japanese Katakana and Hiragana symbols, and special key
events (dead keys, compose keys, etc.).

For details about SCIM, please see the description of package scim.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.8-2-k7
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: PAM messages on chrooted console

2003-06-01 Thread Ming Hua
Thanks everyone for your kind help!

Since I am setting this chroot environment as an experimental area
(maybe I'll install sid there), security is not a big concern.
Therefore I used Andreas' solution: modify /etc/init.d/sysklogd to
SYSLOGD='/var/chroot/dev/log'
and restart syslogd.

I am going to look into the --bind option of mount.

Ming
2003.05.31




PAM messages on chrooted console

2003-05-30 Thread Ming Hua
I sent this to debian-user yesterday, but received no reply.  Since
developers are more likely to use chroot, I am sending this to
debian-devel again.  Apology to those who get duplicates.

Hi,

I am trying to run a chroot on my woody machine (so that I can try sid
later).  I set up the chroot environment according to Debian Reference:
woody# apt-get install debootstrap
woody# debootstrap woody /var/chroot http://...
woody# mount -t proc proc /var/chroot/proc
woody# cp /etc/hosts /var/chroot/etc/hosts
woody# chroot /var/chroot /bin/bash
chroot# base-config
Then I configured /etc/inittab to make tty6 a chroot login:
6:23:respawn:/usr/sbin/chroot /var/chroot /sbin/getty 38400

After restarting init my tty6 works, however I keep getting PAM messages
on my console such as:
PAM_unix[19031]: (login) session opened for user minghua by minghua(uid=0)
I noticed such messages go to /var/log/auth.log in my stardard
installation, however this log in chroot (/var/chroot/var/log/auth.log)
is existent but empty.  I also looked at my /var/chroot/etc/syslog.conf,
but it is identical to /etc/syslog.conf.

I searched around but didn't find much useful.  Would anybody please
tell me how to redirect these PAM messages to log file?  Is there any
documentation I am missing?

Please CC the reply to me.

Thanks in advance,
Ming
2003.05.29

P.S.:  Is /var/chroot a good place (it is a separate partition)?  There
seems to be no recommendation anywhere.  What places do other people
use?