l10n/owners owners.list,NONE,1.1 pr-owners,NONE,1.1

Dimitris Glezos (glezos) fedora-extras-commits at redhat.com
Wed Jun 6 15:13:32 UTC 2007


Author: glezos

Update of /cvs/fedora/l10n/owners
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv24157/l10n/owners

Added Files:
	owners.list pr-owners 
Log Message:
Initial import of L10N-related files



--- NEW FILE owners.list ---
# Fedora Localization Project (FLP) owners.list
#
# Format:
# product|component|description|initialowner|initialqacontact|initialcclist
#
# If you don't know what product & component are, ask someone who knows bugzilla :)
# initialowner is the initial owner of bugs on this component
# initialqacontact is the initial qa contact of bugs on this component
# initialcclist is the list of people initially CC'd for bugs on this component
#
# All e-mail addresses used here MUST correspond to existing bugzilla accounts!

# Initial edit 4-Jun-2007 by dimitris at glezos.com
# - Based on FDP owners.list
#
# Roles in FLP (translation-specific bugs)
#   initialowner = language maintainer and/or language co-maintainer
#   intialqacontact = language co-maintainer and/or language QA
#   intialcclist = language QA,others
#
# Some relevant bugzilla accounts:
#   dimitris at glezos.com
#   aalam at redhat.com
#   cchang at redhat.com
#   kwade at redhat.com
#   stickster at gmail.com

#
# Global FLP components
#
Fedora Localization|l10n-requests|Requests for new Fedora Localization, and other miscellaneous work.|dimitris at glezos.com|aalam at redhat.com|fedora-trans-list at redhat.com
Fedora Localization|project-tracking|Non-specific FLP work tracking bugs.|dimitris at glezos.com|aalam at redhat.com|fedora-trans-list at redhat.com

#
# Specific FLP languages are considered bugzilla components
#
Fedora Localization|Greek [el]|Bug reports about Greek [el] translations / Αναφορές σφαλμάτων για μεταφράσεις στα ελληνικά [el]|dimitris at glezos.com|nikosx at gmail.com|fedora-trans-el at redhat.com
Fedora Localization|Malay [ms]|Bug reports about Malay [ms] translations / Laporan pepijat untuk terjemahan Bahasa Melayu [ms]|sharuzzaman at gmail.com|translation-team-ms at lists.sourceforge.net
Fedora Localization|Polish [pl]|Bug reports about Polish [pl] translations / Raporty o błędach w polskim [pl] tłumaczniu|raven at pmail.pl|raven at pmail.pl|fedora-trans-pl at redhat.com
Fedora Localization|Serbian [sr]|Bug reports about Serbian [sr] translations / Извештај о грешкама у вези српског превода [sr]|grejigl-gnomeprevod at yahoo.ca|miloskomarcevic at netscape.net|fedora-trans-sr at redhat.com


#
# All other languages fall back to the main list
#
Fedora Localization|Other language|Bug reports about translations for languages not mentioned in this list|dimitris at glezos.com|aalam at redhat.com|fedora-trans-list at redhat.com


--- NEW FILE pr-owners ---
#!/bin/sh
########################################################################
# This "pr-owners" script displays the content of the "owners.list"
# file in a human readable format.  Use it like this:
#
#	$ ./pr-owners owners.list | less
#
########################################################################
awk	'
function trim( s,	v )	{
	v = s
	sub( /^[ \t]*/, "", v )
	sub( /[ \t]*$/, "", v )
	return( v )
}
BEGIN	{
	FS = "|"
}
{	sub( /#.*$/, "" )	}
NF == 6	{
	product      = trim( $1 )
	component    = trim( $2 )
	description  = trim( $3 )
	initialowner = trim( $4 )
	qacontact    = trim( $5 )
	initialcclist = trim( $6 )
	if( others )	{
		printf "\n"
	}
	others = 1
	printf "%s/%s\n\n", product, component
	printf "\tOwner:\t%s\n", initialowner
	printf "\tQA:\t%s\n", qacontact
	printf "\tCC:\t%s\n", initialcclist
	printf "\n"
	# printf "\t%s\n", description
	nwords = split( description, words, /[ \t]/ )
	# printf "%d words\n", nwords
	leadin = ""
	sep = ""
	line = ""
	for( i = 1; i <= nwords; ++i )	{
		word = words[ i ]
		if( (length(word)+length(sep)+length(line)) >= 64 )	{
			printf "\t%s\n", line
			line = ""
			sep = ""
		}
		line = line sep word
		sep = " "
	}
	if( length( line ) > 0 )	{
		printf "\t%s\n", line
	}
}
' $@




More information about the scm-commits mailing list