From cbe0c64ab99d8816e4d496bdd908ae9132af2c8f Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Jan 14 2021 12:01:38 +0000 Subject: [PATCH 1/2] Remove old websites close #939 and #940 --- diff --git a/fedorahosted.org/ChangeLog b/fedorahosted.org/ChangeLog deleted file mode 100644 index 5ee7bd3..0000000 --- a/fedorahosted.org/ChangeLog +++ /dev/null @@ -1,43 +0,0 @@ -2007-12-23 Ignacio Vazquez-Abrams - - * Initial release - -2008-01-04 Ignacio Vazquez-Abrams - - * Added "Request a New Project" page - -2008-01-21 Ignacio Vazquez-Abrams - - * New pages, added sidebar, fixed titles - -2008-01-25 Ignacio Vazquez-Abrams - - * Added Trac directory support - -2008-01-29 Ignacio Vazquez-Abrams - - * Sort projects by description - * Fixed issue where the URL doesn't end with / - -2008-01-29 Mike McGrath - - * Used [trac][base_url] for trac link - -2008-01-30 Ignacio Vazquez-Abrams - - * Added authorized VCS URL - * Generate VCS URLs from info in Trac config files - -2008-02-22 Ignacio Vazquez-Abrams - - * Support UTF-8 project names and descriptions - -2008-03-12 Ignacio Vazquez-Abrams - - * Fixed FI ticket #437 (rel eng git url errors) - * Unified handing of project dict in index template - -2008-03-21 Ignacio Vazquez-Abrams - - * Fixed a small issue with git repos and the anon link - diff --git a/fedorahosted.org/Makefile b/fedorahosted.org/Makefile deleted file mode 100644 index b4907f5..0000000 --- a/fedorahosted.org/Makefile +++ /dev/null @@ -1,5 +0,0 @@ -include ../Makefile.in - -$(LANGUAGES) .NOTPARALLEL: % : | po/%.mo data/templates/translations.html - $(PYTHON) build/hosted.py -o out -i data/content -l $@ -p po -s static -b $(BASEPATH) -d data/projects.csv -t /srv/web/trac/projects -c svn -c git -c mtn -c hg -c bzr - diff --git a/fedorahosted.org/build/hosted.py b/fedorahosted.org/build/hosted.py deleted file mode 100755 index 5f82161..0000000 --- a/fedorahosted.org/build/hosted.py +++ /dev/null @@ -1,241 +0,0 @@ -#!/usr/bin/python -# vim: set ts=4 sw=4 et -''' -build.py - A script to generate static, translated HTML pages from Genshi -templates/PO files. - -Some code/design taken from python.org's website build script -(https://svn.python.org/www/trunk/beta.python.org/build/new-build/) -''' - -import os -import sys -import timing -import re -import shutil -import csv -import iniparse -import urlparse -import operator -import locale - -from optparse import OptionParser - -from gettext import GNUTranslations - -from genshi.filters import Translator -from genshi.template import TemplateLoader - -from genshi.core import Markup - -from pkg_resources import get_distribution - -locale.setlocale(locale.LC_COLLATE, 'en_US') - -vcsloc = { - 'hg': '/srv/hg', - 'bzr': '/srv/bzr', - 'git': '/srv/git', - 'mtn': '/srv/mtn', - 'svn': '/srv/svn' -} - -def process(args): - if os.path.exists(options.output) and options.erase: - shutil.rmtree(options.output) - if not os.path.exists(options.output): - os.makedirs(options.output) - if options.static is not None: - static = options.static.split(','); - for dir in static: - outpath = os.path.join(options.output, dir) - if os.path.exists(outpath): - shutil.rmtree(outpath) - copytree(dir, outpath) - if options.trac and os.path.isdir(options.trac): - # If we are building VCS-only projects along with Trac projects, join - if options.vcs: - projects = read_vcs(options.vcs) - prjs = read_trac(options.trac) - if prjs: - for id,prj in prjs.items(): - # Overwrite with trac data if there's any - projects[id] = prj - else: - projects = read_trac(options.trac) - else: - if options.data: - projects = read_data(options.data) - else: - projects = {} - projects.keys().sort() - timing.start() - for dirpath, dirnames, filenames in os.walk(options.input): - try: - process_dir(dirpath, filenames, projects) - except: - if options.keepgoing: - print 'Error!' - else: - raise - timing.finish() - print 'Website build time: %s' % timing.milli() - -def read_vcs(vcslist): - projects = {} - for vcs in vcslist: - if not vcs in vcsloc.keys(): - continue - vcspath = vcsloc[vcs] - if os.path.isdir(vcspath): - for item in os.listdir(vcspath): - if (os.path.isdir(os.path.join(vcspath, item))# Dirs - and not os.path.islink(os.path.join(vcspath, item))# No links - and not item.endswith('.old')):#Ugly, I know, any better idea? - project = { - 'group': item[0].upper(), - 'url': 'http://%(vcs)s.fedorahosted.org/%(vcs)s/%(project)s' % {'vcs': vcs, 'project': item}, - 'desc': 'Project %(project)s under %(vcs)s' % {'project': item.split('.')[0], 'vcs': vcs}, - 'title': item.split('.')[0], - 'vcs': vcs, - 'vcsbase': item - } - projects[item.split('.')[0]] = project - return projects - -def read_data(filename): - projects = {} - for line in csv.reader(open(filename, 'r')): - if not line[0].startswith('#'): - project = { - 'group': line[0][0].upper(), - 'url': 'https://fedorahosted.org/%s/' % (line[0]), - 'desc': line[1].decode('utf-8'), - 'title': line[1].decode('utf-8') - } - if len(line) > 2: - project['vcs'] = line[2] - project['vcsbase'] = '' - project['vcsweburl'] = 'https://fedorahosted.org/%s/browser/' % (line[0]) - projects[line[0]] = project - return projects - -def read_trac(path): - projects = {} - for dir in os.listdir(path): - filename = os.path.join(path, dir, 'conf', 'trac.ini') - if os.path.isfile(filename): - print filename - conf = iniparse.INIConfig(file(filename, 'r')) - base_url = 'https://fedorahosted.org/%s' % dir - if 'base_url' in conf['trac'] and conf['trac']['base_url']: - base_url = conf['trac']['base_url'] - descr = '' - if 'descr' in conf['project']: - descr = conf['project']['descr'] - - project = { - 'group': base_url.rstrip('/').split('/')[-1][0].upper(), - 'url': base_url, - 'desc': conf['project']['name'].decode('utf-8'), - 'title': descr.decode('utf-8') - } - if 'repository_type' in conf['trac']: - project['vcs'] = conf['trac']['repository_type'] - # What happens if this is a trac-only project? - if 'repository_dir' in conf['trac'] and conf['trac']['repository_dir']: - project['vcsbase'] = os.path.realpath( - conf['trac']['repository_dir']).replace('/srv/%s/' % project['vcs'], '', 1) - else: - project['vcsbase'] = '' - project['vcsweburl'] = urlparse.urljoin( - base_url.rstrip('/') + '/', 'browser') - projects[base_url.rstrip('/').split('/')[-1]] = project - return projects - -def process_dir(dirpath, filenames, projects): - ''' - Process a directory - ''' - translations = GNUTranslations(open(os.path.join(options.podir, options.lang + '.mo'))) - if int(get_distribution('genshi').version[2]) < 6: - loader = TemplateLoader(['.'], callback=lambda template: template.filters.insert(0, Translator(translations.ugettext))) - else: - loader = TemplateLoader(['.'], callback=lambda template: template.filters.insert(0, Translator(translations))) - for fn in filenames: - if fn.endswith('~') or fn.endswith('.swp'): - continue - src_file = os.path.join(dirpath, fn) - dest_file = os.path.join(options.output, src_file[len(options.input):]) + '.' + options.lang # Hideous - curpage = src_file[len(options.input):].rstrip('.html') - relpath = '../' * (dest_file.count('/') - 1) - relpath = relpath.rstrip('/') - if relpath == '': relpath = '.' - if not os.path.exists(os.path.dirname(dest_file)): - os.makedirs(os.path.dirname(dest_file)) - template = loader.load(src_file) - # Variables made availble to all templates - page = template.generate( - _=lambda text: Markup(translations.ugettext(text)), - lang=options.lang, - path=options.basepath, - relpath=relpath, - curpage=curpage, - projects=projects - ).render(method='html', doctype='html') - output = open(dest_file, 'w') - output.write(page) - output.close() - -def copytree(src, dest): - ''' - Recursively copy a directory, skipping .git directories. - ''' - os.makedirs(dest) - ls = os.listdir(src) - for name in ls: - if name == '.git': - continue - orig = os.path.join(src, name) - new = os.path.join(dest, name) - if os.path.isdir(orig): - copytree(orig, new) - else: - shutil.copy(orig, new) - -def main(): - global options - parser = OptionParser() - parser.add_option('-p', '--podir', dest='podir', - help='Directory containing PO files', metavar='PODIR') - parser.add_option('-l', '--lang', dest='lang', - help='Language to generate', metavar='LANG') - parser.add_option('-i', '--input', dest='input', - help='Input directory', metavar='INPUT') - parser.add_option('-o', '--output', dest='output', - help='Directory to output to', metavar='OUTPUT') - parser.add_option('-s', '--static', dest='static', - help='Comma separated static directories to copy', metavar='STATIC') - parser.add_option('-b', '--base', dest='basepath', - help='Base website path', metavar='BASEPATH') - parser.add_option('-k', '--keepgoing', - action='store_true', dest='keepgoing', default=False, - help='keep going past errors if possible') - parser.add_option('-e', '--erase', - action='store_true', dest='erase', default=False, - help='Erase any existing output directory first') - parser.add_option('-d', '--data', dest='data', default=None, - help='Filename to read project data from') - parser.add_option('-t', '--trac', dest='trac', default=None, - help='Path to read Trac project data from under') - parser.add_option('-c', '--vcs', dest='vcs', action='append', - help='Append these version control systems') - base_path = os.path.dirname(os.path.abspath(__file__)) - (options, args) = parser.parse_args() - options.basepath = options.basepath.rstrip('/') - options.input = options.input.rstrip('/') + '/' - options.output = options.output.rstrip('/') + '/' - process(args) - -if __name__ == "__main__": - main() diff --git a/fedorahosted.org/data/content/410.html b/fedorahosted.org/data/content/410.html deleted file mode 100644 index c0a9644..0000000 --- a/fedorahosted.org/data/content/410.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - ${_('Hosted Projects - Fedora Hosted')} - - - -

${_('No such project.')}

-

- ${_('The requested project does not exist on Fedora Hosted.')} -

- - diff --git a/fedorahosted.org/data/content/about.html b/fedorahosted.org/data/content/about.html deleted file mode 100644 index 041b8f6..0000000 --- a/fedorahosted.org/data/content/about.html +++ /dev/null @@ -1,16 +0,0 @@ - - - - - ${_('About - Fedora Hosted')} - - - -

${_('About Fedora Hosted')}

-

${_('Fedora Hosted is a <a href="http://fedoraproject.org">Fedora Project</a>-sponsored way for developers to host their code and collaborate online. We provide each project with source control via git, Mercurial, bzr, and others, as well as a bug tracker and wiki via Trac.')}

-

${_('Your new project is just a <a href="new">work ticket</a> away.')}

- - \ No newline at end of file diff --git a/fedorahosted.org/data/content/faq.html b/fedorahosted.org/data/content/faq.html deleted file mode 100644 index d218198..0000000 --- a/fedorahosted.org/data/content/faq.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - ${_('FAQs - Fedora Hosted')} - - - -

${_('Frequently-Asked Questions')}

-

${_('What is Fedora Hosted?')}

-

${_('Fedora Hosted is a project sponsored by <a href="http://fedoraproject.org/">the Fedora Project</a> to allow upstream developers to host their code and collaborate online.')}

-

${_('How can I request a new project?')}

-

${_('File a <a href="new">work ticket</a> with the Fedora Infrastructure team.')}

-

${_('Where can I go for help?')}

-

${_('The best ways to get help are to join the <a href="irc://irc.freenode.net/#fedora-admin"><code>#fedora-admin</code></a> IRC channel on <a href="http://www.freenode.net/">Freenode</a> or to <a href="https://fedorahosted.org/fedora-infrastructure/">open a ticket</a> with the Fedora Infrastructure team.')}

-

${_('How can I get a Fedora Hosted account?')}

-

${_('Your normal Fedora Project account works with Fedora Hosted. Simply <a href="https://admin.fedoraproject.org/accounts/">apply</a> for a Fedora Project account if you haven\'t already. Do note that you must sign a Contributor License Agreement with the Fedora Project in order to contribute code.')}

-

${_('How do I configure git so that I can push to my Fedora Hosted repo?')}

-

${_('Do a git clone of your repo. Then, in your repo\'s directory on your system, edit .git/config under the [remote "origin"] section to follow the following pattern for the URL setting: ')}

${_('url = ssh://')}${_('username')}${_('@git.fedorahosted.org/git/')}${_('projectname')}${_('.git')}
${_('Where:')}
  • ${_('username')}${_(' is your Fedora Account System username.')}
  • ${_('projectname')}${_(' is the name of your fedorahosted.org project as listed on the front of fedorahosted.org.')}

-

${_('How can I publish archive releases (tgz, zip, etc) for my project?')}

-

${_('Create the archive on your workstation and run <code>scp myProject-0.1.tar.gz fedorahosted.org:&lt;Project Name&gt;</code>. The archive will be located under <a href="https://fedorahosted.org/releases/">https://fedorahosted.org/releases/</a>')}

-

${_('How can I delete something I uploaded to my archive?')}

-

${_('Please file a ticket in the <a href="https://fedorahosted.org/fedora-infrastructure/">fedora-infrastructure trac</a> listing the exact file you wish removed and why')}

-

${_('Is there a more convenient way to access releases than the path <code>/releases/m/y/myproject</code>?')}

-

${_("There is. <code>https://fedorahosted.org/released/myproject</code> will go to the same place. The disadvantage of this is you must know the project name and can't browse for projects.")}

-

${_('I just got a new git repository, how can I push/pull?')}

-

${_('Before anyone can clone/push the new repository a master push must be done with the command (from your local git repo): git push ssh://git.fedorahosted.org/git/yourproject.git/ master')}

-

${_('How do I get permission to commit to a project?')}

-

${_('You should <a href="https://admin.fedoraproject.org/accounts/group/list">apply</a> for the commit group of the project, which should be <code>&lt;scm&gt;&lt;project&gt;</code>, e.g. for the desktop-effects project, apply to the <code>gitdesktop-effects</code> group.')}

-

${_('While I wait for my repository to be created, can I work on my code elsewhere?')}

-

${_('Of course. Visit <a href="http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org">http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org</a> for instructions on how to set up a temporary repository in your fedorapeople.org space.')}

-

${_('Why does hg tells me the repository doesn\'t exist even though I know I have the correct URL?')}

-

${_('Unfortunately hg doesn\'t use true URLs. You have to use a "/" as a delimiter between hostname and path and a second "/" as the root of the filesystem path. For instance, if you\'re accessing the repository for authconfig you need to use "hg clone ssh://hg.fedorahosted.org//hg/authconfig"')}

-

${_('Can I offer pre-compiled binaries on Fedora Hosted?')}

-

${_('You may, as long as the following conditions are met: <ol><li>The code project must be available under a Free Software license appropriate for Fedora.</li><li>You must make the source code you used to build the binaries available, and not distributed in the same tarball, or at a minimum make available a "source only" tarball.</li><li>You must provide clear instructions for building the software.</li></ol>')}

- - diff --git a/fedorahosted.org/data/content/index.html b/fedorahosted.org/data/content/index.html deleted file mode 100644 index d66b4a9..0000000 --- a/fedorahosted.org/data/content/index.html +++ /dev/null @@ -1,41 +0,0 @@ - - - - - ${_('Hosted Projects - Fedora Hosted')} - - -

${_('Available Projects')}

-
- * - ${chr(x)} -
- - - - - - - - - - - - - - - - - - - - - -
${_('Project Description')}${_('VCS')}${_('Web')}${_('Anon URL')}${_('Auth URL')}
${id} (${project['desc']})[${project['vcs']}]browseanonauth
${_('No projects registered in this group')}
- - diff --git a/fedorahosted.org/data/content/new.html b/fedorahosted.org/data/content/new.html deleted file mode 100644 index 1eff631..0000000 --- a/fedorahosted.org/data/content/new.html +++ /dev/null @@ -1,36 +0,0 @@ - - - - - ${_('Request a New Project - Fedora Hosted')} - - - -

${_('Request a New Project')}

-

${_('New project requests must be filed via a ticket in the <a href="https://fedorahosted.org/fedora-infrastructure">Fedora Infrastructure Trac instance</a>. Be sure to log in before attempting to create a ticket.')}

-

${_('Fill in the fields as follows:')}

-
    -
  • Short Summary: Hosting request for ${_('&lt;name of project&gt;')}
  • -
  • Type: Hosting Request
  • -
  • Priority: ${_('<code>minor</code> unless this is an urgent request. If you are uncertain whether or not the request is urgent then set this field to <code>minor</code>.')}
  • -
  • Component: Hosted Projects
  • -
-

${_('Use the following template for the full description of the ticket:')}

-
Project name: myProject
-
-Project short summary: myProject does X and Y, for the purpose of Z.
-
-SCM choice (git/bzr/hg/svn): git
-
-Project admin Fedora Account System account name: myAccountName
-
-Yes/No, would you like a Trac instance for your project?: no
-
-Do you need a mailing list? If so, comma-separate a list of what you'd like them to be called. Otherwise, put "no": myProject-developers
-
-Send commits to the following list (leave empty if none needed): list-name@lists.fedorahosted.org
- - diff --git a/fedorahosted.org/data/content/terms.html b/fedorahosted.org/data/content/terms.html deleted file mode 100644 index 71fad81..0000000 --- a/fedorahosted.org/data/content/terms.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - ${_('Terms of Use - Fedora Hosted')} - - - -

${_('Terms of Use')}

-

${_('The Fedora Project Infrastructure team provides Fedora Hosted services on a best-effort basis. Many of the people that manage it are volunteers. Response time to new project requests is typically between 1 hour and 3 days. Outages, should they occur, are handled with a much higher priority.')}

-

${_('The Fedora Project reserves the right to remove any project from our system that does not meet the following criteria:')}

-
    -
  1. ${_('Code contained in the project does not meet our <a href="http://fedoraproject.org/wiki/Legal/Licenses">license requirements</a>')}
  2. -
  3. ${_('No significant changes have been committed or applied for at least six (6) months')}
  4. -
-

${_('We will always do our best to contact missing developers and ensure that the code, Trac databases, and any relevant data is kept on hand so that it may be presented to the project owner in the event that a project is removed.')}

- - \ No newline at end of file diff --git a/fedorahosted.org/data/projects.csv b/fedorahosted.org/data/projects.csv deleted file mode 100644 index e0275d5..0000000 --- a/fedorahosted.org/data/projects.csv +++ /dev/null @@ -1,7 +0,0 @@ -#id,description,vcs -aplaws,"APLAWS Open source CMS",svn -bluecurve,"Bluecurve icon set",git -bodhi,"bodhi update manager",hg -bzrtest,"bzr test project",bzr -mtntest,"monotone test project",mtn -novcs,"VCS-free test project" diff --git a/fedorahosted.org/data/templates/css.html b/fedorahosted.org/data/templates/css.html deleted file mode 100644 index 8610360..0000000 --- a/fedorahosted.org/data/templates/css.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - diff --git a/fedorahosted.org/data/templates/foot.html b/fedorahosted.org/data/templates/foot.html deleted file mode 100644 index edf2809..0000000 --- a/fedorahosted.org/data/templates/foot.html +++ /dev/null @@ -1,21 +0,0 @@ - - -
- -
- diff --git a/fedorahosted.org/data/templates/head.html b/fedorahosted.org/data/templates/head.html deleted file mode 100644 index 480aa5a..0000000 --- a/fedorahosted.org/data/templates/head.html +++ /dev/null @@ -1,9 +0,0 @@ - - - - diff --git a/fedorahosted.org/data/templates/js.html b/fedorahosted.org/data/templates/js.html deleted file mode 100644 index 69eed93..0000000 --- a/fedorahosted.org/data/templates/js.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - diff --git a/fedorahosted.org/data/templates/master.html b/fedorahosted.org/data/templates/master.html deleted file mode 100644 index 5bef7b2..0000000 --- a/fedorahosted.org/data/templates/master.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - -
- - -
- ${select('*')} -
-
- - -
- diff --git a/fedorahosted.org/data/templates/sidebar.html b/fedorahosted.org/data/templates/sidebar.html deleted file mode 100644 index 2bcc382..0000000 --- a/fedorahosted.org/data/templates/sidebar.html +++ /dev/null @@ -1,29 +0,0 @@ - - - - diff --git a/fedorahosted.org/index.cs b/fedorahosted.org/index.cs deleted file mode 100644 index 99d029b..0000000 --- a/fedorahosted.org/index.cs +++ /dev/null @@ -1,83 +0,0 @@ - - - - Fedora Project - - - - - - -
- -
-

Available Projects

-
  • - - - : Error
    - ()
    -
-
- To request a project be added please open a ticket in the Fedora Infrastructure Ticket Tracker.
- Contact: admin at fedoraproject.org
-
-
-
-
- -
- - - - - - diff --git a/fedorahosted.org/po/LINGUAS b/fedorahosted.org/po/LINGUAS deleted file mode 100644 index b432f94..0000000 --- a/fedorahosted.org/po/LINGUAS +++ /dev/null @@ -1,57 +0,0 @@ -ar -as -ast -bal -bg -bn -bn_IN -br -ca -cs -da -de -el -en -en_GB -es -eu -fa -fi -fr -gl -gu -he -hi -hu -ia -id -is -it -ja -ka -kn -ko -lv -ml -mr -nb -nl -or -pa -pl -pt -pt_BR -ro -ru -sk -sq -sr -sv -ta -te -tg -tr -uk -vi -zh_CN -zh_TW diff --git a/fedorahosted.org/po/ach.po b/fedorahosted.org/po/ach.po deleted file mode 100644 index 511de8b..0000000 --- a/fedorahosted.org/po/ach.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2014-03-24 16:45+0000\n" -"Last-Translator: Jared Smith \n" -"Language-Team: Acoli (http://www.transifex.com/projects/p/fedora-web/language/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
  1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
  2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
  3. You must provide clear " -"instructions for building the software.
" -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/af.po b/fedorahosted.org/po/af.po deleted file mode 100644 index 0ac19ad..0000000 --- a/fedorahosted.org/po/af.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2011-03-04 00:29+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Afrikaans (http://www.transifex.com/projects/p/fedora-web/language/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
  1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
  2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
  3. You must provide clear " -"instructions for building the software.
" -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Borge" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/ar.po b/fedorahosted.org/po/ar.po deleted file mode 100644 index 1e2619b..0000000 --- a/fedorahosted.org/po/ar.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Arabic (http://www.transifex.com/projects/p/fedora-web/language/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
  1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
  2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
  3. You must provide clear " -"instructions for building the software.
" -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "يدار مشروع فيدورا و يقاد من قبل المجتمع و ترعاه ريدهات . هذا موقع مدار مجتمعيًا . ريدهات لا تتحمل مسؤولية المحتوى ." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "داعمون" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "قانوني" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "إرشادات العلامة التجارية" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "إبحار" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "الرئيسية" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "حول" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "لغة الموقع" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/as.po b/fedorahosted.org/po/as.po deleted file mode 100644 index ebfa55a..0000000 --- a/fedorahosted.org/po/as.po +++ /dev/null @@ -1,434 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# neb , 2011 -# Nilamdyuti Goswami , 2011 -# Nilamdyuti Goswami , 2012 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Assamese (http://www.transifex.com/projects/p/fedora-web/language/as/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: as\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "হস্ট কৰা প্ৰকল্পসমূহ - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "এনে কোনো প্ৰকল্প নাই ।" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "অনুৰোধ কৰা প্ৰকল্প Fedora Hosted ত নাই ।" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "বিষয়ে - Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Fedora Hosted ৰ বিষয়ে" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Hosted এটা Fedora প্ৰকল্প-বিকাশকৰ বাবে নিজৰ কোড অন-লাইন থ'বলৈ আৰু একেলগে কাম কৰিবলৈ এটা পোষকতা কৰা ধৰণ ।প্ৰত্যেক প্ৰকল্পক আমি git, Mercurial, bzr, আৰু অন্যৰ যোগেদি আমি উৎসৰ নিয়ন্ত্ৰণ ব্যৱস্থা প্ৰদান কৰোঁ, Trac ৰ যোগেদি বাগ ট্ৰেকাৰ আৰু ৱিকিৰ বাহিৰে ।" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "আপোনাৰ নতুন প্ৰকল্প অকল এটা work ticket দূৰত ।" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "FAQs - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "সাধাৰণতে কৰা প্ৰশ্ন" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Fedora Hosted কি ?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora Hosted Fedora প্ৰকল্প ৰ দ্বাৰা পোষকতা কৰা এটা প্ৰকল্প যি মূখ্য বিকাশকক তেওঁলোকৰ কোড আৰু একেলগে অন-লাইন কাম কৰিবলৈ দিয়ে ।" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "মই এটা নতুন প্ৰকল্প কেনেদৰে অনুৰোধ কৰোঁ ?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Fedora Infrastructure ৰ গোটৰ সৈতে এটা work ticket প্ৰতিবেদন কৰক ।" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "সহায়ৰ বাবে ক'ত যাওঁ ?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "সহায় পোৱাৰ সৰ্বোত্তম উপায় হ'ল #fedora-admin IRC ছেনেল Freenode ত আগভাগ লোৱা বা Fedora Infrastructure গোটৰ সৈতে এটা সমস্যাৰ টিকেট খুলি লোৱা ।" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "এটা Fedora Hosted হিচাপ কেনেকৈ পাওঁ ?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "Fedora Hosted ৰ সৈতে আপোনাৰ সাধাৰণ Fedora প্ৰকল্পৰ হিচাপে কাম কৰে । যদি আপোনাৰ ওচৰত নাই তেনেহ'লে এটা Fedora Project হিচাপৰ বাবে অনুৰোধকৰক । মনত ৰাখিব যে আপোনাৰ কোডক অন্তৰ্ভুক্ত কৰিবলৈ Fedora প্ৰকল্পৰ সৈতে আপুনি এখন Contributor License Agreement চহি কৰিব লাগিব ।" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "মোৰ প্ৰকল্পৰ বাবে আৰ্কাইভ (tgz, zip, etc) মুক্তিসমূহ কেনেদৰে প্ৰকাশ কৰোঁ ?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "আপোনাৰ ৱৰ্কস্টেছনত আৰ্কাইভ নিৰ্মাণ কৰক আৰু scp myProject-0.1.tar.gz fedorahosted.org:<প্ৰকল্পৰ নাম> চলাওক । আৰ্কাইভ https://fedorahosted.org/releases/ ত থাকিব ।" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "মোৰ আৰ্কাইভলে আপল'ড কৰা কিবা মই কেনেকৈ মচিম?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "অনুগ্ৰহ কৰি আপুনি আতৰাব বিচৰা নথিপত্ৰ আৰু তাৰ কাৰণ তালিকাভুক্ত কৰা এটা fedora-infrastructure trac ত জমা দিয়ক।" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "/releases/m/y/myproject পথৰ সলনি মুক্তিসমূহ অভিগম কৰাৰ আৰু কোনো সহজ উপায় আছে নে ?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "আছে । https://fedorahosted.org/released/myproject একে স্থানলৈ যাব । কিন্তু ইয়াৰ অসুবিধা এইটো যে আপুনি প্ৰকল্পৰ নাম জানিব লাগিব আৰু প্ৰকল্পসমূহৰ চৰণ কৰিব নোৱাৰিব ।" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "মই এইমাত্ৰ এটা নতুন git ভঁৰাল পাইছো, মই push/pull কেনেদৰে কৰোঁ ?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "কোনোৱে নতুন ভঁৰাল clone/push কৰাৰ পূৰ্বে এই আদেশেৰে এটা মাছ্টাৰ push কৰিব লাগিব (আপোনাৰ স্থানীয় git repo ৰ পৰা): git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "এটা প্ৰকল্পলৈ প্ৰতিজ্ঞাবদ্ধ হোৱাৰ অনুমতি মই কেনেদৰে পাম ?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "আপুনি প্ৰকল্পৰ প্ৰতিজ্ঞাবদ্ধ দললৈ http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "নিশ্চয় । আপোনাৰ fedorapeople.org স্থানত এটা অস্থায়ী ভঁৰাল কেনেদৰে সৃষ্টি কৰিব পাৰি সেইটো জানিবলৈ http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org চাওক ।" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "মোৰ ওচৰত এটা শুদ্ধ URL থাকোঁতেও মোক কিয় কয় যে ভঁৰাল নাই " - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "দুৰভাগ্যক্ৰমে hg -এ সঠিক URLসমূহ ব্যৱহাৰ নকৰে। আপুনি হস্টৰ নাম আৰু পথৰ মাজত এটা \"/\" -ক ডিলিমিটাৰ হিচাপে আৰু দ্বিতীয় এটা \"/\" -ক নথিপত্ৰপ্ৰণালী পথৰ ৰুট হিচাপে ব্যৱহাৰ কৰিব লাগিব। উদাহৰণস্বৰুপে, আপুনি যদি authconfig -ৰ ভৰাললে প্ৰবেশাধিকাৰ বিচাৰিছে আপুনি \"hg clone ssh://hg.fedorahosted.org//hg/authconfig\" ব্যৱহাৰ কৰিব লাগিব" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "মই Fedora Hosted -ত পুৰ্বতে সম্পাদন কৰা বাইনাৰিসমূহ আগবঢ়াব পাৰু নে?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
  1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
  2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
  3. You must provide clear " -"instructions for building the software.
" -msgstr "আপুনি বিচাৰিলে, যিমান দেৰি নিম্নলিখিত চুক্তিসমূহ পুৰন হৈ আছে:
  1. কোড সংকল্পটো Fedora -ৰ কাৰণে উপযুক্ত Free Software license -ৰ অন্তৰ্গত উপলব্ধ হব লাগিব।
  2. আপুনি বাইনাৰিসমূহ উপলব্ধ কৰাবলে ব্যৱহাৰ কৰা উৎস কোডকবনাব লাগিব, একেটা টাৰবলত বিলোৱা হব নালাগিব, অথবা এটা নুন্যতম সৃষ্টিত \"কেৱল উৎস\" টাৰবল উপলব্ধ হব লাগিব।
  3. আপুনি চফ্টওৱেৰটো বনাবলে পৰিস্ফুট নিৰ্দেশ দিব লাগিব।
" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "উপলব্ধ প্ৰকল্প" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "সকলো উপলব্ধ প্ৰকল্প দেখুৱাওক" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "প্ৰকল্পৰ বিৱৰণ" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "ৱেব" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "Anon URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "Auth URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "ৰাইট-ক্লিক কৰক আৰু anonymous VCS URI ক আপোনাৰ ক্লিপব'ৰডলৈ নকল কৰক" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "ৰাইট-ক্লিক কৰক আৰু authorized VCS URI ক আপোনাৰ ক্লিপব'ৰডলৈ নকল কৰক" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "এই দলত কোনো প্ৰকল্পৰ পঞ্জিকৰণ কৰা হোৱা নাই" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "এটা নতুন প্ৰকল্পৰ অনুৰোধ কৰক - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "এটা নতুন প্ৰককল্পৰ অনুৰোধ কৰক" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "নতুন প্ৰকল্পৰ অনুৰোধ Fedora Infrastructure Trac instance ত টিকেটৰ যোগেদি কৰিব লাগিব । টিকেট সৃষ্টি কৰাৰ পূৰ্বে প্ৰৱেশ কৰিব নাপাহৰিব ।" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "তলত দিয়াৰ দৰে ক্ষেত্ৰসমূহ পূৰ্ণ কৰক:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<প্ৰকল্পৰ নাম>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "minor যেতিয়ালৈকে অত্যাৱশ্যকৰ অনুৰোধ নাহে । যদি আপুনি এই অনুৰোধটো অত্যাৱশ্যক হোৱা নিশ্চিত নহয় তেনেহ'লে এই ক্ষেত্ৰক minor লৈ নিৰ্ধাৰণ কৰক ।" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "টিকেটৰ সম্পূৰ্ণ বিৱৰণৰ বাবে এই চানেকি ব্যৱহাৰ কৰক:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "ব্যৱহাৰৰ চৰ্ত্ত - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "ব্যৱহাৰৰ চৰ্ত্ত" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "Fedora Project Infrastructure দলে Fedora Hosted সেৱা যিমান পাৰে ভাল ভাবে আগবঢ়ায় । তাক পৰিচালনা কৰা বহু লোক স্বেচ্ছাৰে কৰা । নতুন প্ৰকল্পৰ উত্তৰ সাধাৰণতে ১ ঘন্টাৰ পৰা ৩ দিনলৈকে হয় । কোনো সেৱা বন্ধ হ'লে, যদি হয়, তাক অধিক গুৰুত্ব দিয়া হয় ।" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "তলৰ আদৰ্শৰ মতে নোহোৱা যি কোনো প্ৰকল্পক আমাৰ ব্যৱস্থাপ্ৰণালীৰ পৰা আঁতৰাবলৈ Fedora প্ৰকল্পৰ অধিকাৰ আছে:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "প্ৰকল্পত থকা কোড আমাৰ অনুজ্ঞা চুক্তিৰ প্ৰয়োজনতাৰ মতে নহয়" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "যোৱা ছয় (৬) মাহত কোনো বিশেষ সাল সলনি কৰা হোৱা নাই বা প্ৰযোজ্য কৰা হোৱা নাই" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "হেৰুৱা বিকাশকক সংযোগ কৰিবলৈ আমি চেষ্টা কৰিম আৰু কোড, Trac ডাটাবেছ, আৰু যি কোনো প্ৰয়োজনীয় তথ্য হাতত পোৱাকে ৰাখিবলৈ চেষ্টা কৰিম যাতে প্ৰকল্প আঁতৰাওঁতে প্ৰকল্পৰ গৰাকীক দিব পাৰি ।" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "Fedora প্ৰকল্পক সম্পৰদায় আৰু Red Hat এ পৰিচালনা কৰে আৰু চলায় । এইটো এটা সম্প্ৰদায়ে পৰিচালনা কৰা ছাইট । ইয়াৰ বিষয়বস্তুৰ বাবে Red Hat দায়ী নহয় ।" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "পোষকতা কৰা" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "আইন" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "পণ্যচিহ্নৰ পথপ্ৰদৰ্শক" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "গমন কৰা" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "ঘৰ" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "বিষয়ে" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "নতুন প্ৰকল্প" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "ৱেবছাইটৰ ভাষা" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "হ'স্টিংৰ পোষকতা কৰা" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "ServerBeach ৰ দ্বাৰা পোষকতা কৰা হৈছে" diff --git a/fedorahosted.org/po/ast.po b/fedorahosted.org/po/ast.po deleted file mode 100644 index c5266ad..0000000 --- a/fedorahosted.org/po/ast.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Asturian (http://www.transifex.com/projects/p/fedora-web/language/ast/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: ast\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
  1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
  2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
  3. You must provide clear " -"instructions for building the software.
" -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Patrocinadores" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Navegación" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Iniciu" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Llingua de la web" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Patrocinadores" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/bal.po b/fedorahosted.org/po/bal.po deleted file mode 100644 index 6040976..0000000 --- a/fedorahosted.org/po/bal.po +++ /dev/null @@ -1,432 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# neb , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Balochi (http://www.transifex.com/projects/p/fedora-web/language/bal/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: bal\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "پروژ یانی که هوست بوتگنت- فدورا هوستد" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "فدورا هوستد باره" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "فدورا هوستد باره" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "فدورا هوستد باره یک ‍پروژ فدورا ینت. کمک گنگی راه په پیش بروکان تا وتی کدانا هوست کننت و آنلاین همدستی بکننت. ما په هر پروژه ی گون منبع کنترل گنگ از طریق جی آی تی؛ مریکیوریال؛ و دگه چیزان و یک لولک درگیزوک و وی کی از طریق تراک کنت." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "شمی نوکین پروژه درست یک ٹیک کار دورینت." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "باز جست بوتگین سوال فدورا هوستد" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "باز جست بوتگین سوال" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "فدورا هوستد چی اینت؟" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "فدورا هوستد امداد یک پروژه ینت که گون فدورا پروژه امداد بوتت تا پیش بروکان را اجازت بدنت تا وتی کدانا بهلنت و آنلاین همدستی بکننت." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "من چطورکا تونا یک نوکین پروژه ی را بلوٹاں؟" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "یک ٹیکتی ٹیکت کار گون تیم سازمان فدورا دیم دهت" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "من یک کمک لوٹگ کجاه تونا برواں؟" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "بهترین را په کمک گرگ هور بوگ گون #fedora-admin IRC Freenodeکانال اوره یا ٹیکتی نوکین په تیم سازمان فدروا دیم دهت." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "من چونکا تونا یک حساب فدورا هوستد بگران؟" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "شمی معمولی حساب په پروژه فدورا گون فدورا هوست کار کنت. ساده قبول کنیت په یک حساب پروژه فدورا اگه تا الان نداشتیت. توجه کنگ بیت که شما بایدن توافق نامه امداد کنونان امضا کنیت تا کدانا هور بکنیت." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "من چطورکا تونا آرشیوی آراتکانا په وتی پروژه منتشر بکنا؟" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "آرشیوی ته وتی کامپیوتر ا درست کنیت و اجرا کنیت scp myProject-0.1.tar.gz fedorahosted.org:<Project Name> آرشیو ته https://fedorahosted.org/releases/ جاگه گیپت" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "من هنون یک نوکین git امباری گپتت؛ من چطورکا تونا کشانی یا دری گیزاں؟" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "پیش چه ایشی که کسی بتوان یک نوکین امباری جمع/دریگزیت یک مستری درگیزگی بایدن گون دستور ( چه وتی لوکالیgit امبارا) بنویسیت :' git push 'ssh://git.fedorahosted.org/git/yourproject.git/ master'" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
  1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
  2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
  3. You must provide clear " -"instructions for building the software.
" -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "موجودین پروژه" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "کلیک راست بکن و ته وتی کلیپ برد ناشناس کپی من VCS URI " - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "راست کلیک بکن و ته وتی کلیپ برد VCS URI به طور تصدیق شده کپی کن" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "نوکین پروژه ی بلوٹینیت- فدورا هوستد" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "نوکین پروژه ی بلوٹ" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "نوکین درخواست پروژه بایستی از طریق یک تیکتی در لوٹینگ بیتFedora Infrastructure Trac instance مطمین بیت که قبل چه تیکت جنگ وارد سایت ببیت." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "جاهان هنچوش که کاینت پر بکن" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<پروژه ی نام>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "کم ترین مگر وهدی که یک ضرورتین لوٹگیت. اگه مطمین نهت که شمی لوٹگ ضرورینت یا نه جاگه ها به طورکم نرین بلیت " - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "چه آیگین تم‍پلیٹ په توضیح کامل ٹیکت استفاده کنیت." - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "شرایط استفاده کنگ- فدورا هوستد" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "شرایط استفاده کنگ" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "تیم پروژه فدروا حذمتان فدورا هوستد ا گون بهترین تلاش پیش کنت. گیشترین کسانی که آ ییا راهبری کننت وت لوٹوکنت. زمان جواب دهگ په نوکین پروژه لوٹگان معمولا یک دا سه ساعت اینت. تاهیرانی که پیش کیت گون گیشترین ترجیح دست گرگ بیت" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "فدورا پروژه وتا حق دنت که هر پروژه ی که می جهلیگین معیارانا دشته می بیت چه وتی سیستم ا حذف کنت:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "کد دارین پروژه که می ضرورتین لیسانسا نداریت" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "حداقل در شش ماه هچ مهمی تغییری انجام یا تاید نه بوتا." - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "ما یک سره وتی جهدانا کنیت که گون چه دست داتگین پیش بروکان تماس بگرین و مطمین ببین که کد ان دیتابیس تراک و هر دابین مرتبطین دیتا په دست انت. شاید شی په داروک هبر دیگ بیت که آی زورگ بیت" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "پروژه فدورا گون انجمن دارگ و پیش برگ بیت و رد هت آبی را امداد کنت. ای شی یک انجمن داروکی سایتت و رد هت مسول محتوای نهنت." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "امداد کنوکان" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "قانونی" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "تجاری مارک راهنمایی" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "فدورا" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "تورگ" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "لوگ" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "باره" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "نوکین پروژه" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "زبان سایت" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "هوستیگ امداد کنوک" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "پشتیبانی بوتگ: گون سرور بیچ" diff --git a/fedorahosted.org/po/bg.po b/fedorahosted.org/po/bg.po deleted file mode 100644 index d17ba85..0000000 --- a/fedorahosted.org/po/bg.po +++ /dev/null @@ -1,432 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Valentin Laskov , 2011, 2012 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Valentin Laskov \n" -"Language-Team: Bulgarian (http://www.transifex.com/projects/p/fedora-web/language/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "Хоствани проекти - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "Няма такъв проект." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "Исканият проект не съществува във Fedora Hosted." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "За проекта - Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "За Fedora Hosted" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Hosted предоставя спонсориран от Проекта Fedora начин за хостване на проекти на разработчици, за съхраняване на тяхната работа и за онлайн сътрудничество. Ние осигуряваме за всеки проект контрол на кода чрез git, Mercurial, bzr и други, както и система за докладване и проследяване на бъгове и уики чрез Trac." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "Вашият нов проект е на едно цъкване само." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "ЧЗВ - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Често задавани въпроси" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Какво е Fedora Hosted?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora Hosted е проект, спонсориран от Проекта Fedora, предоставящ на разработчиците от ъпстрийма начин за хостване и онлайн сътрудничество." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "Как мога да заявя нов проект?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Попълнете заявка към Fedora Infrastructure team." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "Къде да погледна за помощ?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "Най-добрият начин да получите помощ е да се включите в #fedora-admin IRC канала на Freenode или да направите запитване към Fedora Infrastructure team." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Как мога да получа Fedora Hosted акаунт?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "Може да ползвате акаунта, който имате в Проекта Fedora и за Fedora Hosted. Просто си създайте такъв в Проекта Fedora, ако все още не сте го направили. Имайте предвид, че ще трябва да подпишете Contributor License Agreement с Проекта Fedora за сътрудничество." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "Как да конфигурирам git така, че да качва в моето Fedora Hosted хранилище?" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "Направете git клонинг но Вошето хранилище. След това, в директорията на хранилището на Вашата система редактирайте .git/config под секцията [remote \"origin\"] като използвате следните стойности за URL настройки: " - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "url = ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "username" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahosted.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "projectname" - -#: data/content/faq.html:22 -msgid ".git" -msgstr ".git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "Където:" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "е Вашето потребителско име във Fedora Account System." - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr " е името на Вашия проект във fedorahosted.org, както се вижда в списъка в началото на fedorahosted.org." - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "Как мога да публикувам архивни издания (tgz, zip и др.) на моя проект?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "Направете архива на Вашата работна станция и изпълнете scp myProject-0.1.tar.gz fedorahosted.org:<Project Name>. Архивът ще бъде поставен в https://fedorahosted.org/releases/" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "Как мога да изтрия нещо, което съм качил в моя архив?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "Моля, попълнете заявка (ticket) във fedora-infrastructure trac с описание на точния файл и причината, поради която искате той да бъде изтрит." - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "Няма ли по-удобен начин за достъп до проекта вместо /releases/m/y/myproject?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "Има. https://fedorahosted.org/released/myproject ще Ви отведе до същото място. Неудобството е, че трябва да знаете името на проекта и не се виждат другите проекти." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "Току що се сдобих с ново git хранилище, как мога да качвам/свалям?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "Преди който и да е да може да клонира/качва, новото хранилище се нуждае от master качване, което трябва да направите с командата (от Вашето локално git хранилище): git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "Как да получа позволение да качвам (commit) към проект?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "Вие ще трябва да кандидатствате за членство в commit групата на проекта, което ще е <scm><project>, напр. за проекта desktop-effects, трябва да кандидатствате за групата gitdesktop-effects." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "Мога ли, докато чакам моето хранилище да бъде създадено, да работя върху моя код другаде?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "Разбира се. Посетете страницата http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org за инструкции как да си направите временно хранилище във Вашето fedorapeople.org пространство." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "Защо hg ми казва, че хранилището не съществува, въпреки че знам, че имам правилния URL?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "За съжаление hg не използва истинските URL. Ще трябва да използвате \"/\" като разделител между името на хоста и пътя, и второ \"/\" за корен на пътя във файловата система. Например, за достъп до хранилището на authconfig, ще трябва да ползвате \"hg clone ssh://hg.fedorahosted.org//hg/authconfig\"" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "Мога ли на Fedora Hosted да предлагам готови компилирани програми?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
  1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
  2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
  3. You must provide clear " -"instructions for building the software.
" -msgstr "Да, можете, докато са изпълнени следните условия:
  1. Кодът на проекта трябва да е достъпен под условията на подходящ за Fedora Free Software лиценз.
  2. Вие трябва да направите така, че изходният код, използван за компилиране на програмата да е достъпен и да не се предоставя в един файл-архив, заедно с компилираната програма, или като минимум, да предоставяте файл-архив \"само изходен код\".
  3. Вие трябва да предоставяте ясни инструкции за компилиране на софтуера.
" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "Налични проекти" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "Покажи всички проекти" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "Описание на проекта" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "Web" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "Анон. URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "Удост. URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "Цъкнете с десния бутон за да копирате VCS URI за анонимен достъп в клипборда" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "Цъкнете с десния бутон за да копирате VCS URI за достъп с удостоверяване в клипборда" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "В тази група няма заявени проекти" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "Заявка за нов проект - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "Заявка за нов проект" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "Заявката за нов проект трябва да бъде подадена чрез попълване на заявка (ticket) в Fedora Infrastructure Trac instance. За да можете да го направите, трябва да сте влезли със своето име и парола." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "Попълнете полетата както е показано по-долу:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<име на проекта>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "minor освен ако това не е спешна заявка. Ако се двоумите дали заявката е спешна или не, задайте minor за това поле." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "Използвайте следния шаблон за пълно описание на обявата:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "Условия за ползване - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "Условия за ползване" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "Екипът от Проекта Fedora Infrastructure осигурява услугата Fedora Hosted като полага възможно най-големи усилия. Много от хората, занимаващи се с това, са доброволци. Времето за отговор на заявка за нов проект, обикновено, е между 1 час и 3 дни. Прекъсванията, ако такива настъпят, се обработват с много по-висок приоритет." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "Проектът Fedora си запазва правото да премахне който и да е проект от нашата система, който не отговаря на следните критерии:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "Код, съдържащ се в проекта, не отговаря на нашите лицензни изисквания" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "Няма значими промени, извършени или приложени през последните най-малко шест (6) месеца" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "Ние винаги ще правим всичко възможно, за да се свържем с липсващите разработчици и да се убедим, че кодът, Trac базите с данни и всякакви свързани с проекта данни, се съхраняват под ръка, така че да могат да бъдат предоставени на собственика на проекта в случай, че проектът е премахнат." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© 2012 Red Hat, Inc. и други. Моля, каквито и да са коментари или корекции, изпращайте на websites team." - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "Проектът Fedora е управляван и поддържан от общността и е спонсориран от Red Hat. Този сайт се поддържа от общността. Red Hat не носи отговорност за съдържанието му." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Спонсори" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Правни" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Указания за запазените марки" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Меню" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Начало" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "Относно" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "Нов проект" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Език на сайта" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Спонсор за хостинга" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "Спонсорирано от ServerBeach" diff --git a/fedorahosted.org/po/bn.po b/fedorahosted.org/po/bn.po deleted file mode 100644 index 86ef91e..0000000 --- a/fedorahosted.org/po/bn.po +++ /dev/null @@ -1,436 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Ayesha Akhtar , 2012 -# Mahay Alam Khan , 2012 -# neb , 2011 -# newton , 2012 -# Robin Mehdee , 2012 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Bengali (http://www.transifex.com/projects/p/fedora-web/language/bn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: bn\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "উপস্থাপিত প্রজেক্ট - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "এই ধরনের কোনো প্রজেক্ট উপস্থিত নেই।" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "অনুরোধ করা প্রজেক্টিটি বর্তমানে Fedora Hosted-এ উপস্থিত নেই।" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Fedora Hosted পরিচিতি" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Fedora Hosted পরিচিতি" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Project-দ্বারা নিবেদিত Fedora Hosted-র সাহায্যে ডিভেলপররা তাদের কোড উপস্থাপন করতে ও অন্যান্য ডিভেলপরদের সাথে অন-লাইন সহযোগিতা করতে পারবেন। প্রতিটি প্রজেক্টের সোর্স কোড নিয়ন্ত্রণের জন্য git, Mercurial, bzr, প্রভৃতি ভার্সান কনট্রোল সিস্টেম উপলব্ধ করা হয়। উপরন্তু, বাগ ট্র্যাকার ও Trac সহযোগে একটি wiki উপস্থিত থাকে।" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "শুধুমাত্র একটি ওয়ার্ক টিকেট নির্মাণ করে আপনার নতুন প্রজেক্ট আরম্ভ করুন।" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "প্রশ্নাবলী - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "প্রশ্নাবলী" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Fedora Hosted কী?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora Project-র উদ্যোগে উপস্থাপিত Fedora Hosted-র মাধ্যমে বিভিন্ন প্রজেক্টের ডিভেলপররা তাদের কোড উপলব্ধ করতে পারবেন ও অন-লাইন পদ্ধতির মাধ্যমে অন্যান্য ডিভেলপরদের সহযোগিতা প্রাপ্ত করতে পারবেন।" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "নতুন প্রজেক্ট আরম্ভের প্রক্রিয়া কী?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Fedora ইনফ্রাস্ট্রাকচার দলে একটি ওয়ার্ক টিকেট দায়ের করুন।" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "সাহায্য প্রাপ্ত করার উপায় কী?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "সাহায্য প্রাপ্ত করার জন্য Freenode সার্ভারে উপলব্ধ #fedora-admin IRC চ্যানেলে যোগ দিন অথবা Fedora ইনফ্রাস্ট্রাকচার দলের সাথে একটি টিকেট নির্মাণ করুন।" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Fedora Hosted অ্যাকাউন্ট কীভাবে পাওয়া যাবে?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "Fedora Hosted-র সাথে Fedora Project অ্যাকাউন্ট ব্যবহার করা যাবে। Fedora Project অ্যাকাউন্ট উপস্থিত না থাকলে একটি নতুন অ্যাকাউন্টের অনুরোধ জানিয়ে দিন। উল্লেখ্য, কোড জমা দেওয়ার জন্য Fedora Project-র কনট্রিবিউটর লাইসেন্স চুক্তি (CLA) স্বাক্ষর করা আবশ্যক।" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "প্রজেক্টের আর্কাইভ করা রিলিজ (tgz, zip, etc) প্রকাশনার পদ্ধতি কী?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "আপনার কম্পিউটারে একটি আর্কাইভ নির্মাণ করুন ও scp myProject-0.1.tar.gz fedorahosted.org:<Project Name> কমান্ড প্রয়োগ করুন। https://fedorahosted.org/releases/-র অধীন আর্কাইভটি সংরক্ষণ করা হবে।" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "আমার আর্কাইভে আপলোড করা জিনিস আমি কিভাবে মুছে ফেলতে পারি?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "/releases/m/y/myproject পাথের পরিবর্তে, অন্য কোনো সুবিধাজনক প্রক্রিয়ার সাহায্যে রিলিজেগুলি প্রাপ্ত করা যাবে কি?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "হ্যাঁ। বিকল্প হিসাবে, https://fedorahosted.org/released/myproject ব্যবহার করেও একই স্থানে যাওয়া যাবে। কিন্তু এই ক্ষেত্রে, প্রজেক্টের সঠিক নাম জানা আবশ্যক এবং প্রজেক্ট ব্রাউজ করে অনুসন্ধান করা যাবে না।" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "একটি নতুন git সংগ্রহস্থল নির্মাণ করেছি, push/pull করার পদ্ধতি কী?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "অন্যান্য কোনো ব্যক্তি দ্বারা clone/push কমান্ড ব্যবহারের পূর্বে, উল্লিখিত কমান্ড সহযোগে (স্থানীয় git সংগ্রহস্থল থেকে) একটি প্রধান push করা আবশ্যক : git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "প্রজেক্টের মধ্যে commit অর্থাৎ সংযোজন করার অনুমতি কী ভাবে প্রাপ্ত করা যাবে?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "সংশ্লিষ্ট প্রজেক্টের commit দলে অনুরোধ জানান। সাধারণত এইগুলির ক্ষেত্রে <scm><project> বিন্যাসের নাম প্রয়োগ করা হয়। উদাহরণ, desktop-effects প্রজেক্টের ক্ষেত্রে gitdesktop-effects দলে যোগদানের অনুরোধ জানান।" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "সংগ্রহস্থল নির্মাণ না হওয়া অব্দি, অন্য কোনো স্থানে কোড সংরক্ষণ করে কাজ করা যাবে কি?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "নিশ্চয়। fedorapeople.org-এ আপনার জন্য নির্ধারিত স্থানে একটি অস্থায়ী সংগ্রহস্থল নির্মাণের পদ্ধতি জানার জন্য http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org-এ উপস্থিত নির্দেশাবলী পড়ুন।" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "সঠিক URL প্রয়োগ করার স্বত্ত্বও hg দ্বারা সংগ্রহস্থলের অনুপস্থিতি সূচক বার্তা কেন প্রদর্শন করা হচ্ছে?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "আমি কি ফোডোরা হোস্টিং এ পূর্বে কম্পাইলকৃত বাইনারী প্রস্তাব করতে পারি?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
  1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
  2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
  3. You must provide clear " -"instructions for building the software.
" -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "উপলব্ধ প্রজেক্ট" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "সকল প্রজেক্ট প্রদর্শন করা হবে" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "প্রজেক্টের বিবরণ" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "ওয়েব" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "Anon URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "Auth URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "মাউজের ডানদিকের বাটন ক্লিক করে, নামবিহীন VCS URI ক্লিপ-বোর্ডে কপি করুন" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "মাউজের ডানদিকের বাটন ক্লিক করে, অনুমোদিত VCS URI ক্লিপ-বোর্ডে কপি করুন" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "এই দলের ক্ষেত্রে কোনো প্রজেক্ট নিবন্ধন করা হয়নি" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "নতুন প্রজেক্টের অনুরোধ - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "নতুন প্রজেক্টের অনুরোধ" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "নতুন প্রজেক্টের অনুরোধ জানানোর জন্য Fedora Infrastructure Trac-এ একটি নতুন টিকেট দায়ের করুন। টিকেট নির্মাণের পূর্বে, একটি বৈধ Fedora অ্যাকাউন্ট সহ লগ-ইন করা আবশ্যক।" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "নিম্নলিখিত নির্দেশ অনুযায়ী তথ্য পূরণ করুন:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<প্রজেক্টের নাম>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "অতিগুরুত্বপূর্ণ অনুরোধ ভিন্ন, এই ক্ষেত্রে minor মান প্রয়োগ করুন। যদি গুরুত্বের মাত্রা সম্পর্কে নিশ্চিত না হন তাহলেও minor মান নির্বাচন করুন।" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "টিকেটের সম্পূর্ণ বিবরণ লেখার জন্য নিম্নলিখিত টেমপ্লেট ব্যবহার করুন:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "ব্যবহারের শর্তাবলী - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "ব্যবহারের শর্তাবলী" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "Fedora Hosted-র জন্য Fedora Project ইনফ্রাস্ট্রাকচার দ্বারা যথাসম্ভব সহায়তা উপলব্ধ করা হয় ও পরিচালনায় সাহায্যকারী অধিকাংশ ব্যক্তিরা স্বচ্ছায় এই কাজ করে থাকেন। নতুন প্রজেক্টের অনুরোধ জানানো হলে ১ ঘন্টা থেকে ৩ দিনের মধ্যে উত্তর দেওয়া হয়। কোনো কারণে এই পরিসেবা বিঘ্নিত হওয়ার ফলে আউটেজ ঘোষিত হলে, দ্রুত তা সংশোধনের প্রচেষ্টা করা হয়।" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "কোনো প্রজেক্ট দ্বারা নিম্নলিখিত শর্তগুলি পালন না করা হলে, Fedora Project সংশ্লিষ্ট প্রজেক্ট মুছে ফেলার অধিকার রাখে:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "প্রজেক্টে উপস্থিত কোড, আমাদের লাইসেন্স সংক্রান্ত শর্ত উলঙ্ঘন করলে" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "অন্তত ছয় (৬) মাস, কোনো উল্লেখযোগ্য পরিবর্তন করা না হলে" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "অনুপস্থিত ডিভেলপদের সাথে সর্বদা যোগাযোগের প্রচেষ্টা করা হয়। কোনো প্রজেক্ট সরিয়ে ফেলার প্রয়োজন হলে প্রজেক্টের কোড, Trac ডাটাবেস ও অন্যান্য সামগ্রী দ্রুত হস্তান্তরের উদ্দেশ্যে উপলব্ধ রাখা হয়।" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "Red Hat-র উদ্যোগে উপস্থাপিত Fedora Project, পরিচালনা ও উন্নতির দ্বায়ভার Fedora সম্প্রদায় বহণ করে। এই সাইটও Fedora সম্প্রদায় দ্বারা চালিত হয় ও এইখানে উপস্থিত কোনো তথ্যের জন্য Red Hat দ্বায়ী নয়।" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "উদ্যোক্তা" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "আইনী" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "ট্রেডমার্ক সম্পর্কিত নিয়মাবলী" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "চলাচল" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "প্রধান পাতা" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "পরিচিতি" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "নতুন প্রজেক্ট" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "ওয়েব-সাইট প্রদর্শনের ভাষা" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "হোস্টিং উদ্যোক্তা" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "ServerBeach দ্বারা নিবেদিত" diff --git a/fedorahosted.org/po/bn_IN.po b/fedorahosted.org/po/bn_IN.po deleted file mode 100644 index 520715a..0000000 --- a/fedorahosted.org/po/bn_IN.po +++ /dev/null @@ -1,433 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# BIRAJ KARMAKAR , 2012 -# neb , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Bengali (India) (http://www.transifex.com/projects/p/fedora-web/language/bn_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: bn_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "উপস্থাপিত প্রজেক্ট - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "এই ধরনের কোনো প্রজেক্ট উপস্থিত নেই।" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "অনুরোধ করা প্রজেক্টিটি বর্তমানে Fedora Hosted-এ উপস্থিত নেই।" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Fedora Hosted পরিচিতি" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Fedora Hosted পরিচিতি" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Project-দ্বারা নিবেদিত Fedora Hosted-র সাহায্যে ডিভেলপররা তাদের কোড উপস্থাপন করতে ও অন্যান্য ডিভেলপরদের সাথে অন-লাইন সহযোগিতা করতে পারবেন। প্রতিটি প্রজেক্টের সোর্স কোড নিয়ন্ত্রণের জন্য git, Mercurial, bzr, প্রভৃতি ভার্সান কনট্রোল সিস্টেম উপলব্ধ করা হয়। উপরন্তু, বাগ ট্র্যাকার ও Trac সহযোগে একটি wiki উপস্থিত থাকে।" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "শুধুমাত্র একটি ওয়ার্ক টিকেট নির্মাণ করে আপনার নতুন প্রজেক্ট আরম্ভ করুন।" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "প্রশ্নাবলী - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "প্রশ্নাবলী" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Fedora Hosted কী?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora Project-র উদ্যোগে উপস্থাপিত Fedora Hosted-র মাধ্যমে বিভিন্ন প্রজেক্টের ডিভেলপররা তাদের কোড উপলব্ধ করতে পারবেন ও অন-লাইন পদ্ধতির মাধ্যমে অন্যান্য ডিভেলপরদের সহযোগিতা প্রাপ্ত করতে পারবেন।" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "নতুন প্রজেক্ট আরম্ভের প্রক্রিয়া কী?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Fedora ইনফ্রাস্ট্রাকচার দলে একটি ওয়ার্ক টিকেট দায়ের করুন।" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "সাহায্য প্রাপ্ত করার উপায় কী?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "সাহায্য প্রাপ্ত করার জন্য Freenode সার্ভারে উপলব্ধ #fedora-admin IRC চ্যানেলে যোগ দিন অথবা Fedora ইনফ্রাস্ট্রাকচার দলের সাথে একটি টিকেট নির্মাণ করুন।" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Fedora Hosted অ্যাকাউন্ট কীভাবে পাওয়া যাবে?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "Fedora Hosted-র সাথে Fedora Project অ্যাকাউন্ট ব্যবহার করা যাবে। Fedora Project অ্যাকাউন্ট উপস্থিত না থাকলে একটি নতুন অ্যাকাউন্টের অনুরোধ জানিয়ে দিন। উল্লেখ্য, কোড জমা দেওয়ার জন্য Fedora Project-র কনট্রিবিউটর লাইসেন্স চুক্তি (CLA) স্বাক্ষর করা আবশ্যক।" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "প্রজেক্টের আর্কাইভ করা রিলিজ (tgz, zip, etc) প্রকাশনার পদ্ধতি কী?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "আপনার কম্পিউটারে একটি আর্কাইভ নির্মাণ করুন ও scp myProject-0.1.tar.gz fedorahosted.org:<Project Name> কমান্ড প্রয়োগ করুন। https://fedorahosted.org/releases/-র অধীন আর্কাইভটি সংরক্ষণ করা হবে।" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "কিভাবে আমি মুছে ফেলতে পারব কিছু আমি আমার আর্কাইভ আপলোড করব?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr " একটা টিকেট ফাইল অনুগ্রহ করে Fedora-পরিকাঠামো trac সঠিক ফাইল আপনি অপসারণ করতে ইচ্ছুক তালিকা এবং কেন" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "/releases/m/y/myproject পাথের পরিবর্তে, অন্য কোনো সুবিধাজনক প্রক্রিয়ার সাহায্যে রিলিজেগুলি প্রাপ্ত করা যাবে কি?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "হ্যাঁ। বিকল্প হিসাবে, https://fedorahosted.org/released/myproject ব্যবহার করেও একই স্থানে যাওয়া যাবে। কিন্তু এই ক্ষেত্রে, প্রজেক্টের সঠিক নাম জানা আবশ্যক এবং প্রজেক্ট ব্রাউজ করে অনুসন্ধান করা যাবে না।" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "একটি নতুন git সংগ্রহস্থল নির্মাণ করেছি, push/pull করার পদ্ধতি কী?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "অন্যান্য কোনো ব্যক্তি দ্বারা clone/push কমান্ড ব্যবহারের পূর্বে, উল্লিখিত কমান্ড সহযোগে (স্থানীয় git সংগ্রহস্থল থেকে) একটি প্রধান push করা আবশ্যক : git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "প্রজেক্টের মধ্যে commit অর্থাৎ সংযোজন করার অনুমতি কী ভাবে প্রাপ্ত করা যাবে?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "সংশ্লিষ্ট প্রজেক্টের commit দলে অনুরোধ জানান। সাধারণত এইগুলির ক্ষেত্রে <scm><project> বিন্যাসের নাম প্রয়োগ করা হয়। উদাহরণ, desktop-effects প্রজেক্টের ক্ষেত্রে gitdesktop-effects দলে যোগদানের অনুরোধ জানান।" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "সংগ্রহস্থল নির্মাণ না হওয়া অব্দি, অন্য কোনো স্থানে কোড সংরক্ষণ করে কাজ করা যাবে কি?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "নিশ্চয়। fedorapeople.org-এ আপনার জন্য নির্ধারিত স্থানে একটি অস্থায়ী সংগ্রহস্থল নির্মাণের পদ্ধতি জানার জন্য http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org-এ উপস্থিত নির্দেশাবলী পড়ুন।" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "সঠিক URL প্রয়োগ করার স্বত্ত্বও hg দ্বারা সংগ্রহস্থলের অনুপস্থিতি সূচক বার্তা কেন প্রদর্শন করা হচ্ছে?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "আমি দিতে পারি প্রাক কম্পাইল করা বাইনারি Fedora Hosted উপর" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
  1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
  2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
  3. You must provide clear " -"instructions for building the software.
" -msgstr "আপনি যেমন লম্বা, নিম্নলিখিত শর্তগুলি পূরণ করতে পারেন:.
  1. কোড প্রকল্পের একটি মুক্ত সফটওয়্যার লাইসেন্স Fedora-র জন্য উপযুক্ত অধীন উপলব্ধ থাকা আবশ্যক
  2. আপনি সোর্স কোড আপনি নির্মানের জন্য ব্যবহার করা আবশ্যক বাইনারি পাওয়া যায়, এবং না একই টারবল রূপে বিতরণ করা, অথবা একটি সর্বনিম্ন উপলব্ধ করা একটি \"উৎস শুধুমাত্র\" টারবল রূপে.
  3. আপনি সফ্টওয়্যার নির্মাণের জন্য স্পষ্ট নির্দেশ প্রদান. অবশ্যই " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "উপলব্ধ প্রজেক্ট" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "সকল প্রজেক্ট প্রদর্শন করা হবে" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "প্রজেক্টের বিবরণ" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "ওয়েব" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "Anon URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "Auth URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "মাউজের ডানদিকের বাটন ক্লিক করে, নামবিহীন VCS URI ক্লিপ-বোর্ডে কপি করুন" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "মাউজের ডানদিকের বাটন ক্লিক করে, অনুমোদিত VCS URI ক্লিপ-বোর্ডে কপি করুন" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "এই দলের ক্ষেত্রে কোনো প্রজেক্ট নিবন্ধন করা হয়নি" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "নতুন প্রজেক্টের অনুরোধ - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "নতুন প্রজেক্টের অনুরোধ" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "নতুন প্রজেক্টের অনুরোধ জানানোর জন্য Fedora Infrastructure Trac-এ একটি নতুন টিকেট দায়ের করুন। টিকেট নির্মাণের পূর্বে, একটি বৈধ Fedora অ্যাকাউন্ট সহ লগ-ইন করা আবশ্যক।" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "নিম্নলিখিত নির্দেশ অনুযায়ী তথ্য পূরণ করুন:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<প্রজেক্টের নাম>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "অতিগুরুত্বপূর্ণ অনুরোধ ভিন্ন, এই ক্ষেত্রে minor মান প্রয়োগ করুন। যদি গুরুত্বের মাত্রা সম্পর্কে নিশ্চিত না হন তাহলেও minor মান নির্বাচন করুন।" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "টিকেটের সম্পূর্ণ বিবরণ লেখার জন্য নিম্নলিখিত টেমপ্লেট ব্যবহার করুন:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "ব্যবহারের শর্তাবলী - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "ব্যবহারের শর্তাবলী" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "Fedora Hosted-র জন্য Fedora Project ইনফ্রাস্ট্রাকচার দ্বারা যথাসম্ভব সহায়তা উপলব্ধ করা হয় ও পরিচালনায় সাহায্যকারী অধিকাংশ ব্যক্তিরা স্বচ্ছায় এই কাজ করে থাকেন। নতুন প্রজেক্টের অনুরোধ জানানো হলে ১ ঘন্টা থেকে ৩ দিনের মধ্যে উত্তর দেওয়া হয়। কোনো কারণে এই পরিসেবা বিঘ্নিত হওয়ার ফলে আউটেজ ঘোষিত হলে, দ্রুত তা সংশোধনের প্রচেষ্টা করা হয়।" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "কোনো প্রজেক্ট দ্বারা নিম্নলিখিত শর্তগুলি পালন না করা হলে, Fedora Project সংশ্লিষ্ট প্রজেক্ট মুছে ফেলার অধিকার রাখে:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "প্রজেক্টে উপস্থিত কোড, আমাদের লাইসেন্স সংক্রান্ত শর্ত উলঙ্ঘন করলে" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "অন্তত ছয় (৬) মাস, কোনো উল্লেখযোগ্য পরিবর্তন করা না হলে" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "অনুপস্থিত ডিভেলপদের সাথে সর্বদা যোগাযোগের প্রচেষ্টা করা হয়। কোনো প্রজেক্ট সরিয়ে ফেলার প্রয়োজন হলে প্রজেক্টের কোড, Trac ডাটাবেস ও অন্যান্য সামগ্রী দ্রুত হস্তান্তরের উদ্দেশ্যে উপলব্ধ রাখা হয়।" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "Red Hat-র উদ্যোগে উপস্থাপিত Fedora Project, পরিচালনা ও উন্নতির দ্বায়ভার Fedora সম্প্রদায় বহণ করে। এই সাইটও Fedora সম্প্রদায় দ্বারা চালিত হয় ও এইখানে উপস্থিত কোনো তথ্যের জন্য Red Hat দ্বায়ী নয়।" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "উদ্যোক্তা" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "আইনী" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "ট্রেডমার্ক সম্পর্কিত নিয়মাবলী" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "চলাচল" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "প্রধান পাতা" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "পরিচিতি" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "নতুন প্রজেক্ট" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "ওয়েব-সাইট প্রদর্শনের ভাষা" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "হোস্টিং উদ্যোক্তা" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "ServerBeach দ্বারা নিবেদিত" diff --git a/fedorahosted.org/po/bo.po b/fedorahosted.org/po/bo.po deleted file mode 100644 index c3fe56a..0000000 --- a/fedorahosted.org/po/bo.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2011-03-04 00:29+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Tibetan (http://www.transifex.com/projects/p/fedora-web/language/bo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: bo\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
    1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
    2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
    3. You must provide clear " -"instructions for building the software.
    " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/br.po b/fedorahosted.org/po/br.po deleted file mode 100644 index 49d504d..0000000 --- a/fedorahosted.org/po/br.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2011-03-04 00:29+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Breton (http://www.transifex.com/projects/p/fedora-web/language/br/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: br\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
    1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
    2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
    3. You must provide clear " -"instructions for building the software.
    " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Paeroned" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Degemer" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/bs.po b/fedorahosted.org/po/bs.po deleted file mode 100644 index d1c5aea..0000000 --- a/fedorahosted.org/po/bs.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2012-07-03 23:12+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Bosnian (http://www.transifex.com/projects/p/fedora-web/language/bs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: bs\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
    1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
    2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
    3. You must provide clear " -"instructions for building the software.
    " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/ca.po b/fedorahosted.org/po/ca.po deleted file mode 100644 index e9d6954..0000000 --- a/fedorahosted.org/po/ca.po +++ /dev/null @@ -1,433 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# neb , 2011 -# Robert Antoni Buj i Gelonch, 2014-2015 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Robert Antoni Buj i Gelonch\n" -"Language-Team: Catalan (http://www.transifex.com/projects/p/fedora-web/language/ca/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "Projectes allotjats - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "No existeix el projecte." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "El projecte no es troba a Fedora Hosted." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Fedora Hosted - Quant a" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Quant a Fedora Hosted" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Hosted és un projecte patrocinat pel Projecte Fedora per a què els desenvolupadors allotgin el seu codi i col·laborin mitjançant Internet. Proporcionem control del codi font amb git, Mercurial, bzr i d'altres, així com el seguiment d'errors i una wiki a través de Trac." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "El vostre projecte únicament requereix un tiquet de treball per a iniciar-se." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "Fedora Hosted - PMF" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Preguntes més freqüents" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Què és Fedora Hosted?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora Hosted és un projecte patrocinat pel Projecte Fedora que permet als desenvolupadors en sentit ascendent allotjar el seu codi i col·laborar per Internet." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "Com puc sol·licitar un nou projecte?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Empleneu un tiquet de treball amb l'equip d'infraestructura de Fedora." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "On puc obtenir ajuda?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "La millor manera per a què obtingueu ajuda és que us uniu al canal #fedora-admin d'IRC de Freenode o bé obriu un tiquet amb l'equip d'infraestructura de Fedora." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Com puc obtenir un compte a Fedora Hosted?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "El vostre compte estàndard del projecte Fedora funciona amb Fedora Hosted. Si encara no teniu cap compte el podeu crear aquí. Tingueu en compte que haureu de signar un acord de llicència de contribució (CLA, Contributor License Agreement) amb el projecte Fedora per a poder contribuir el codi." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "Com configuro git per a que puga pujar al meu diposit de Fedora Hosted?" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "Feu un git clone del vostre dipòsit. Després, en el directori del dipòsit del vostre sistema, editeu .git/config i sota la secció [remote \"origin\"] seguiu el següent patró per a la configuració de la URL: " - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "url = ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "nom_usuari" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahosted.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "nom_projecte" - -#: data/content/faq.html:22 -msgid ".git" -msgstr ".git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "On:" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "és el vostre nom d'usuari del sistema de comptes de Fedora" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "és el nom del vostre projecte a fedorahosted.org com es mostra al davant de fedorahosted.org." - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "Com puc publicar versions arxivades (tgz, zip, etcètera) per al meu projecte?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "Creeu l'arxiu en el vostre ordinador i executeu scp myProject-0.1.tar.gz fedorahosted.org:<Nom del projecte>. L'arxiu es trobarà a https://fedorahosted.org/releases/" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "Com puc eliminar alguna cosa que hagi pujat al meu arxiu?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "Ompliu un tiquet en fedora-infrastructure trac indicant el fitxer exacte que voleu que es tregui i el per què" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "Hi ha alguna manera millor per a accedir als llançaments de les versions que no sigui amb la ruta /releases/m/y/myproject?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "Sí: https://fedorahosted.org/released/myproject us dirigeix al mateix lloc. El desavantatge és que heu de conèixer el nom del projecte, i no podeu navegar pels projectes." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "Tinc un nou dipòsit git, com puc fer push/pull?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "Abans que ningú pugui fer un clone/push del nou dipòsit, cal fer un push al master, fent servir l'ordre (des del vostre dipòsit local): git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "Com puc obtenir permís per a fer enviaments en un projecte?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "Haureu d'aplicar per al grup d'enviaments del projecte, el qual ha de ser <scm><project>, per exemple per al projecte desktop-effects, apliqueu el grup gitdesktop-effects." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "Mentre espero que es creï el meu dipòsit, puc treballar amb el meu codi en un altre lloc?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "Clar que sí. Visiteu http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org per a obtenir instruccions quant a com establir un dipòsit temporal en el vostre espai fedorapeople.org." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "Per què hg em diu que no existeix el dipòsit tot i que sé que tinc la URL correcta?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "Malauradament hg no utilitza URL reals. Heu d'utilitzar \"/\" com a delimitador entre el nom de l'equip i el camí, i un segon \"/\" com a l'arrel del camí del sistema de fitxers. Per exemple, si esteu accedint al dipòsit de l'authconfig heu d'utilitzar \"hg clone ssh://hg.fedorahosted.org//hg/authconfig\"" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "Puc oferir binaris pre-compilats en Fedora Hosted?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
    1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
    2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
    3. You must provide clear " -"instructions for building the software.
    " -msgstr "Ho podreu fer sempre que es compleixin les següents condicions:
    1. El codi del projecte ha d'estar sota una llicència lliure adequada per a Fedora.
    2. Heu de fer que el vostre codi font pugui construir els binaris, i aquest els distribueixi en el mateix tarball, o com a mínim feu que estigui disponible un tarball amb \"únicament el codi\".
    3. Heu de proporcionar instruccions clares per a la construcció del programari.
    " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "Projectes disponibles" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "Visualitza tots els projectes" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "Descripció del projecte" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "SCV" - -#: data/content/index.html:19 -msgid "Web" -msgstr "Web" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "URL anòn." - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "URL d'autent." - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "Feu clic amb el botó dret i copieu l'adreça URI anònima del SCV al vostre porta-retalls" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "Feu clic amb el botó dret i copieu l'adreça URI autoritzada del SCV al vostre porta-retalls" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "No hi han projectes registrats en aquest grup" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "Fedora Hosted - Sol·licitud d'un nou projecte" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "Sol·licitud d'un nou projecte" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "Les sol·licituds de nous projectes s'han d'emplenar mitjançant un tiquet en la instància Trac de la infraestructura de Fedora. Assegureu-vos que abans de crear un tiquet hagueu iniciat una sessió." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "Empleneu els següents camps:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<nom del projectet>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "minor excepte si es tracta d'una petició urgent. Si no esteu segurs de que ho sigui, establiu el camp a minor." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "Utilitzeu la següent plantilla per a la descripció complerta del tiquet:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "Fedora Hosted - Termes d'ús" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "Termes d'ús" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "L'equip d'infraestructura del projecte Fedora proporciona els serveis de Fedora Hosted de la millor manera possible. Moltes de les persones que ho gestionen són voluntaris. El temps de resposta per a les peticions de nous projectes normalment està entre 1 hora i 3 dies. Les fallades, en cas n'hi hagin, es gestionen amb molta més urgència." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "El projecte Fedora es reserva el dret de suprimir qualsevol projecte del seu sistema que no compleixi els següents criteris:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "El codi contingut en el projecte no compleix els nostres requisits de llicències" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "No s'han fet canvis significatius des de fa com a mínim sis (6) mesos" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "Sempre intentarem contactar amb els desenvolupadors i us assegurem que el codi, les bases de dades de Trac i qualsevol dada rellevant es mantindrà en les nostres mans, per poder presentar-ho al propietari del projecte en cas que es suprimeixi un projecte." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© 2012 Red Hat, Inc. i d'altres. Envieu qualsevol comentari o suggeriment a l'equip de llocs web." - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "El projecte Fedora és mantingut i conduït per la comunitat i patrocinat per Red Hat. Aquest és un lloc mantingut per la comunitat. Red Hat no se'n fa responsable del contingut." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Patrocinadors" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Legal" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Guia de les marques comerciar registrades" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Navegació" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Inici" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "Quant a" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "Nou projecte" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Idioma del lloc web" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Patrocinador d'allotjament" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "Patrocinat per ServerBeach" diff --git a/fedorahosted.org/po/cs.po b/fedorahosted.org/po/cs.po deleted file mode 100644 index ff081eb..0000000 --- a/fedorahosted.org/po/cs.po +++ /dev/null @@ -1,434 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Jan Varta , 2011 -# Josef Hruska , 2012,2014 -# neb , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Josef Hruska \n" -"Language-Team: Czech (http://www.transifex.com/projects/p/fedora-web/language/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: cs\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "Hostované projekty - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "Žádné projekty." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "Požadovaný projekt na Fedora Hosted neexistuje." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "O - Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "O Fedora Hosted" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Hosted je projekt sponzoravaný Fedorou, který umožňuje vývojářům sdílet svůj kód a spolupracovat online.Každému projektu poskytujeme kontrolu nad zdrojovým kódem pomocí git, Mercurial, brz a jiných stejně jako nástoje na sledování chyb a wiki." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "Váš nový projekt je od Vás na vzdálenost pracovního lístku." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "FAQ - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Často kladené dotazy" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Co je to Fedora Hosted?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora Hosted je projekt sponzorovanýProjektem Fedora,který má umožnit nekonvečním vývojářům sdílet jejich kód a spolupracovat online." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "Jak mohu požádat o nový projekt?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Podejte pracovní tiket na tým strarající se o infrastrukturu Fedory." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "Kam se mám obrátit o pomoc?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "Nejlepší způsoby jak získat pomoc jsou připojení se k #fedora-admin IRC kanálu na Freenode nebo podání lístku na tým infrastruktury Fedory." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Jak mohu získat účet u Fedora Hosted?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "Váš běžný Fedora účet funguje s Fedora Hosted. Jednoduše zažádejte o FedoraProjekt účet pokud jste tak již neučinily. Nezapoměnte, že musíte s Fedorou uzavřít Contributor License Agreement(CLA) pokud chcete Přispívat kódem." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "Jak mám nakonfigurovat git, abych mohl nahrávat do svého repository Fedora Hosted?" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "Proveďte git clone vašeho repository. Poté v adresáři vašeho repository na svém systému upravte .git/config pod sekcí [remote \"origin\"] tak, abyste postupovali dle následující šablony pro nastavení URL:" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "url = ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "username" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahosted.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "projectname" - -#: data/content/faq.html:22 -msgid ".git" -msgstr ".git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "Kde:" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "je vaše uživatelské jméno na Systému účtů Fedory." - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "je název vašeho projektu na fedorahosted.org tak, jak je zobrazen na úvodní stránce fedorahosted.org." - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "Jak mohu uveřejňovat archivy(tgz, zip, atp.) v mém projektu?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "Vytvořte archiv na své pracovní stanici a zadejte code>scp mujProjekt-0.1.tar.gz fedorahosted.org:<Jmeno projektu>.Archiv bude umístěn v https://fedorahosted.org/releases/" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "Jak mohu smazat to, co jsem nahrál do svého archivu?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "Prosíme vytvořte záznam o problému na adrese fedora-infrastructure trac s přesným uvedením souboru, který se přejete odstranit a důvod odstranění." - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "Existuje pohodlnější cesta jak přistupovat k jednotlivým verzím než přes cestu/releases/m/y/myproject?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "Existuje. https://fedorahosted.org/released/myproject Vászavede na stejné místo. Nevýhodou tohoto postupu je, že musíte znát jméno projektu a nemůžete projekty listovat." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "Zrovna jsem dostal nové git uložiště. Jak mohu nahrávat/stahovat?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "Dříve než je komukoli umožněno kopírovat/nahrávat z/do nového uložistě, musíbýt provedeno prvotní nahrání pomocí následujícího příkazu(z Vašeho lokálníhogit repozitáře): git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "Jak získám svolení k nahrání projektu do uložiště?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "Je třeba požádat o členství ve skupině, která má toto právo, což by mělo být <scm><projekt>, například pro desktop-effects projekt, žádejte o členstvív gitdesktop-effects skupině." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "Zatím co čekám na vytvoření svého uložiště, mohu pracovat na svém kódu někde jinde?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "Samozřejmě. Pro víe informací navštivte http://fedoraproject.org/wiki/Infrastructure/fedorapeople.orgkde naleznete instrukce jak vytvořit dočasné uložiště ve Vašem prostoru na fedorapeople.org." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "Proč mi hg tvrdí, že uložiště neexistuje i když jsem si jist, že mám správné URL?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "Naneštěstí hg nepoužívá skutečná URL. Jako oddělovač názvu hosta a cesty musíte používat \"/\" a druhé \"/\" jako kořen cesty souborového systému. Například přistupujete-li do repository pro authconfig, potřebujete použít \"hg clone ssh://hg.fedorahosted.org//hg/authconfig\"" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "Mohu na Fedora Hosted nabízet předkompilované binární soubory?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
    1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
    2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
    3. You must provide clear " -"instructions for building the software.
    " -msgstr "Můžete, pokud jsou splněny tyto podmínky:
    1. Projekt kódu musí být dostupný pod licencí svobodného softwaru vhodnou pro Fedoru.
    2. Musíte zpřístupnit zdrojový kód, který jste použili k sestavení binárního kódu a není šířen ve stejném balíčku, a nebo jako minimum musíte zpřístupnit balíček \"pouze\" zdrojového kódu.
    3. Musíte poskytnout jasné pokyny pro sestavení softwaru.
    " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "Dostupné projekty" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "Zobrazit všechny projekty" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "Popis projektu" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "Web" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "Anonymní URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "Autorizovaná URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "Stiskněte pravé tlačítko a zkopírujte anonymní VCS URI do Vaší schránky" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "Stiskněte pravé tlačítko a zkopírujte autorizovanou VCS URI do Vaší schránky" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "V této skupině nejsou registrované žádné projekty" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "Požadavek na nový projekt - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "Požadujte nový projekt" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "Požadavek na nový projekt musí být vyplňen skrze lístek nacházející se v Systému Infrastruktury Fedory. Přesvědčte se, že jste přihlášeni než začnete vytvářet požadavek. " - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "Pole vyplňte následovně" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<název projektu>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "menší pokud se nejedná o urgentní požadavek. Pokud si nejste jistizda se jedná o urgentní požadavek či nikoli, pak nastavte toto pole na menší" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "Následující šablonu použijte pro úplný popis požadavku:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "Podmínky použití - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "Podmínky použití" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "Tým starající se o infrastrukturu Fedory poskytuje Fedora Hosted službyna nejvyšší úrovni. Mnoho lidí spravujících tento projekt jsou dobrovolníci.Odpovědní doba na požadavky na nové projekty je typicky mezi 1 hodinou a 3dny. Pokud se objevý výpadky, tak jsou řešeny s mnohem vyšší prioritou." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "Fedora Projekt si vyhrazuje právo odstranit ze svého systému libovolný projekt, který nesplňuje následující podmínky:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "Kód obsažený v projektu nesplňuje naše licenční požadavky" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "Nebyly provedeny žádné podstatné změny v uplynulých šesti (6)měsících" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "Vždy uděláme co je v našich silách abychom kontaktovali nepřítomné vývojářea zajistili tak, že veškerý kód, Trac databáze a libovolná relevantní data jsou zálohována aby mohla být prezentována majiteli projektu v případě, že je projekt odstraněn." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© 2012 Red Hat, Inc. a další. Prosíme jakékoliv poznámky nebo opravy zasílejte webovému týmu." - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "Projekt Fedora, který podporuje společnost Red Hat, je udržovaný a řízený komunitou. Tato stránka je udržována komunitou. Společnost Red Hat není zodpovědná za její obsah." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Sponzoři" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Právní poznámky" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Směrnice ochranné známky" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Navigace" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Domů" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "O" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "Nový projekt" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Jazyk WWW stránek" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Sponzor Hostingu" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "Sponzorováno ServerBeach" diff --git a/fedorahosted.org/po/da.po b/fedorahosted.org/po/da.po deleted file mode 100644 index 320b521..0000000 --- a/fedorahosted.org/po/da.po +++ /dev/null @@ -1,433 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Kris Thomsen , 2011-2012 -# neb , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Kris Thomsen \n" -"Language-Team: Danish (http://www.transifex.com/projects/p/fedora-web/language/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "Beværtede projekter - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "Intet sådant projekt." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "Det forespurgte projekt findes ikke på Fedora Hosted." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Om - Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Om Fedora Hosted" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Hosted er en Fedoraprojekt-sponsoreret måde for udviklere at huse deres kode og samarbejde over nettet. Vi tilbyder hvert projekt med kildekontrol via git, Mercurial, bzr, og andre, såvel som en fejlsøger og wiki via Trac." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "Dit nye projekt er kun en arbejdsseddel væk." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "OSS - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Ofte stillede spørgsmål" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Hvad er Fedora Hosted?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora Hosted er et projekt sponsoreret af Fedoraprojektet for at tillade opstrømsudviklere at huse deres kode og samarbejde over nettet." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "Hvordan kan jeg anmode om et nyt projekt?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Udfyld en arbejdsseddel til infrastrukturholdet i Fedora." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "Hvor skal jeg spørge efter hjælp?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "Den bedste måde at få hjælp på, er at hoppe med i #fedora-admin IRC-kanalen på Freenode eller at åbne en seddel til infrastrukturholdet i Fedora." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Hvordan kan jeg få en Fedora Hosted-konto?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "Din normale konto til Fedoraprojektet virker med Fedora Hosted. Bare ansøg om en konto til Fedoraprojektet, hvis du ikke allerede har en. Bemærk at du skal skrive under på en Contributor License Agreement med Fedoraprojektet for at bidrage med kode." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "Hvordan konfigurerer jeg git så jeg kan pushe til mit Fedora Hosted-arkiv?" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "Lav en git clone af dit arkiv. Derefter skal du rette i .git/config i dit arkivs mappe på dit system, under [remote \"origin\"]-sektionen til at følge følgende mønster for URL-indstillingen:" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "url = ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "brugernavn" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahosted.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "projektnavn" - -#: data/content/faq.html:22 -msgid ".git" -msgstr ".git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "Hvor:" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "er dit Fedora-kontosystem-brugernavn." - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "er navnet på dit fedorahosted.org-projekt, som listet på forsiden af fedorahosted.org." - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "Hvordan kan jeg offentliggøre arkivudgivelser (tgz, zip osv.) for mit projekt?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "Opret arkivet på din arbejdsstation og kør scp mitProjekt-0.1.tar.gz fedorahosted.org:<Projektnavn>. Arkivet vil blive placeret under https://fedorahosted.org/releases/" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "Hvordan kan jeg slette noget jeg lagde op i mit arkiv?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "Åben venligst en billet i fedora-infrastructure trac, hvor du oplister den fil du vil slette, og hvorfor" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "Er der en mere praktisk måde at tilgå udgivelserne end stien /releases/m/y/mitprojekt?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "Det er der. https://fedorahosted.org/released/mitprojekt vil føre dig til det samme sted. Ulempen ved dette er at du skal kende projektnavnet og kan ikke gennemse projekterne." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "Jeg har lige fået et nyt gitarkiv, hvordan kan jeg skubbe/trække?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "Før nogen kan klone/skubbe det nye arkiv, skal et master-skub udføres med kommandoen (fra dit lokale gitarkiv): git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "Hvordan får jeg rettigheder til at indsende bidrag til et projekt?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "Du skal melde dig til projektets bidragsgruppe, som bør være <scm><projekt>, for eksempel desktop-effects-projektet, meld dig til gruppen gitdesktop-effects." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "Kan jeg arbejde på min kode et andet sted, mens jeg venter på at mit arkiv bliver oprettet?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "Selvfølgelig. Besøg http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org for instruktioner om hvordan du sætter et midlertidigt arkiv op på din fedorapeople.org plads." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "Hvorfor fortæller hg mig at arkivet ikke eksisterer selvom jeg ved jeg har den rigtige URL?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "Desværre bruger hg ikke ægte URL'er. Du skal bruge et \"/\" som adskiller mellem værtsnavn og sti, og et andet \"/\" som roden i filsystemsstien. For eksempel hvis du vil ind på et pakkearkiv for authconfig skal du bruge \"hg clone ssh://hg.fedorahosted.org//hg/authconfig\"" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "Kan jeg tilbyde forudkompilerede binærpakker på Fedora Hosted?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
    1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
    2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
    3. You must provide clear " -"instructions for building the software.
    " -msgstr "Du må, så længe du overholder følgende krav:
    1. Kodeprojektet skal være tilgængelig under en fri software-licens som passer til Fedora.
    2. Du skal gøre koden du brugt til at bygge binærpakkerne tilgængelige og ikke distribuere dem i den samme tarball, eller som minimum gøre dem tilgængelige som en \"kun kildekode\"-tarball.
    3. Du skal udbyde klare instruktioner for hvordan man bygger softwaren.
    " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "Tilgængelige projekter" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "Vis alle projekter" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "Projektbeskrivelse" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "Internet" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "Anonym URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "Autoriseret URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "Højre-klik og kopiér den anonyme VCS-URI til dit klippebord" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "Højre-klik og kopiér den autoriserede VCS-URI til dit klippebord" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "Ingen projekter registreret i denne gruppe" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "Anmod om et nyt projekt - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "Anmod om et nyt projekt" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "Nye projektanmodninger skal indsendes via en seddel i Fedora infrastruktur Trac-instansen. Husk at logge ind før du forsøger at oprette en seddel." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "Udfyld felterne således:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<navn på projekt>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "minor medmindre der et en presserende anmodning. Hvis du er usikker på om anmodningen er presserende eller ej, skal du sætte feltet til minor." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "Brug den følgende skabelon til den fulde beskrivelse af seddelen:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "Retningslinjer - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "Retningslinjer" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "Infrastrukturholdet i Fedora-projektet tilbyder Fedora Hosted-tjenester på et bedste-anstrengelsesgrundlag. Mange af folkene der styrer det er frivillige. Svartid til nye projekt-anmodninger er typisk mellem 1 time og 3 dage. Strømsvigt, hvis de skulle opstå, behandles med en langt højere prioritet." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "Fedoraprojektet forbeholder sig retten til at fjerne ethvert projekt fra vores system, der ikke overholder følgende kriterier:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "Koden i dette projekt overholder ikke vores licensbetingelser" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "Ingen særlige ændringer er blevet indsendt eller tilføjet i mindst seks (6) måneder" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "Vi vil altid gøre vores bedste for at kontakte manglende udviklere og sørge for at koden, Tracdatabaserne og al relevant data holdes i hånden, så det kan blive præsenteret for projektets ejer, hvis det skulle ske at projektet slettes." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© 2012 Red Hat, Inc. og andre. Send venligst eventuelle kommentarer eller rettelser til website-holdet." - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "Fedoraprojektet vedligeholdes og drives af fællesskabet og sponseres af Red Hat. Denne side vedligeholdes af fællesskabet. Red Hat er ikke ansvarlig for indholdet." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Sponsorer" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Lovligt" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Retningslinjer for varemærke" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Navigation" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Hjem" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "Om" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "Nyt projekt" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Sprog på netsted" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Beværtningssponsor" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "Sponsoreret af ServerBeach" diff --git a/fedorahosted.org/po/de.po b/fedorahosted.org/po/de.po deleted file mode 100644 index 7f1bd64..0000000 --- a/fedorahosted.org/po/de.po +++ /dev/null @@ -1,436 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Laurin , 2011 -# neb , 2011 -# Roman Spirgi , 2012 -# Tobias Bohrmann , 2012 -# Vinzenz Vietzke , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Roman Spirgi \n" -"Language-Team: German (http://www.transifex.com/projects/p/fedora-web/language/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "Gehostete Projekte - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "Projekt existiert nicht." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "Das aufgerufene Projekt existiert bei Fedora Hosted nicht." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Über - Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Über Fedora Hosted" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Hosted wird vom Fedora-Projekt bereitgestellt, damit Entwickler ihren Code hosten und online zusammenarbeiten können. Wir bieten jedem Projekt Hilfsmittel wie git, Mercurial, bzr und ähnliches zur Code-Kontrolle sowie einen Bug-Tracker und auch ein Trac-Wiki." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "Ihr neues Projekt liegt nur ein Ticket entfernt." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "FAQs - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Häufig gestellte Fragen" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Was ist Fedora Hosted?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora Hosted ist ein Projekt, welches vom Fedora-Projekt bereitgestellt wird und allen Upstream-Entwicklern erlaubt ihren Code zu hosten und online zusammenzuarbeiten." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "Wie kann ich ein neues Projekt beantragen?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Erstellen Sie ein Ticket an das Fedora-Infrastruktur-Team." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "Wo kann ich Hilfe bekommen?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "Der einfachste Weg um Hilfe zu erhalten, ist ein Besuch des IRC-Channels #fedora-admin auf Freenode oder öffnen Sie einfach ein Ticket beim Team von Fedora-Infrastruktur." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Wie kann ich ein Konto für Fedora Hosted bekommen?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "Ihr normales Konto vom Fedora-Projekt funktioniert auch bei Fedora Hosted. Legen Sie sich einfach ein Konto für das Fedora-Projekt an, wenn Sie noch keines haben sollten. Beachten Sie, dass Sie das "Contributor License Agreement" des Fedora-Projekts akzeptieren müssen, wenn Sie Code beisteuern möchten." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "Wie konfiguriere ich git, so dass ich zu meiner Fedora Hosted-Paketquelle veröffentlichen kann?" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "Erstellen Sie einen Git-Klon Ihrer Paketquelle. Dann bearbeiten Sie im Paktequellen-Verzeichnis auf Ihrem System .git/config unter dem [remote \"origin\"] Abschnitt mit Hilfe des folgenden Musters für die URL-Einstellung:" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "URL= ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "Benutzername" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahosted.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "Projektname" - -#: data/content/faq.html:22 -msgid ".git" -msgstr ".git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "Wo:" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "ist Ihr Benutzername des Fedora-Kontosystems." - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr " ist der Name Ihres fedorahosted.org-Projekts, wie es auf der Hauptseite von fedorahosted.org gelistet wird." - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "Wie kann ich Versionen als Archivdatei (tgz, zip, etc) für mein Projekt veröffentlichen?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "Erzeugen Sie die Archivdatei auf Ihrem Rechner und führen Sie scp meinProjekt-0.1.tar.gz fedorahosted.org:<Project Name> aus. Die Archivdatei wird dann unter https://fedorahosted.org/releases/ verfügbar werden." - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "Wie kann ich etwas löschen, was ich in mein Archiv hochgeladen habe?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "Bitte reichen Sie ein Ticket in der Fedora Infrastructure Trac ein, mit Angabe der genauen Datei, die Sie löschen möchten und warum" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "Gibt es einen praktischeren Weg als den Pfad /releases/m/e/meinprojekt um auf Releases zuzugreifen?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "Den gibt es, https://fedoraproject.org/released/meinprojekt führt zum gleichen Ergebnis. Der Nachteil dabei ist, dass Sie den Projektnamen kennen müssen und nicht nach Projekten suchen können." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "Ich habe soeben ein neues git-Repository erhalten - wie kann ich hinauf- und herunterladen?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "Bevor irgendjemand das neue Repository benutzen kann, muss ein "Master-Push" mit folgendem Befehl (von Ihrem lokalen git-Repository aus) ausgeführt werden: git push ssh://git.fedorahosted.org/git/IhrProjekt.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "Wie bekomme ich die Erlaubnis bei einem Projekt Änderungen einzuspielen?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "Sie sollten sich hierzu für die dazugehörige Gruppe bewerben, vermutlich ist es <scm><project>, z.B. für das Projekt \"desktop-effects\", bewerben Sie sich bei der Gruppe gitdesktop-effects." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "Kann ich an meinem Code anderswo arbeiten, solange ich auf mein Repository warte?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "Natürlich. Besuchen Sie http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org um zu erfahren, wie Sie ein temporäres Repository auf Ihrem Account unter fedorapeople.org erstellen können." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "Warum sagt hg, dass das Repository nicht existiert, obwohl ich die korrekte URL habe?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "Leider verwendet hg keine echten URLs. Sie müssen einen \"/\" als Trenner zwischen Hostnamen und Pfad sowie einen zweiten \"/\" als Wurzel des Dateisystempfads verwenden. Wenn sie beispielsweise auf das Repository für authconfig zugreifen, müssen sie \"hg clone ssh://hg.fedorahosted.org//hg/authconfig\" verwenden." - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "Kann ich vorkompilierte Binärpakete auf Fedora Hosted anbieten?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
    1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
    2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
    3. You must provide clear " -"instructions for building the software.
    " -msgstr "Sie dürfen, so lange die folgenden Bedingungen erfüllt sind:
    1. Der Code muss unter einer für Fedora passenden Freien Software Lizenz verfügbar sein.
    2. Für Sourcecode, mit dem sie Binärpakete erstellt haben und der nicht im selben Tarball verteilt wird, müssen sie mindestens ein \"source only\"-Tarball bereit stellen.
    3. Sie müssen eine klare Anleitung zum Bau der Software bereit stellen.
    " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "Vorhandene Projekte" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "All vorhandene Projekte anzeigen" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "Projekt-Beschreibung" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS (Version Control System)" - -#: data/content/index.html:19 -msgid "Web" -msgstr "Web" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "Anonyme URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "Authentifikations-URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "Mit der rechten Maustaste klicken und die Adresse des anonymen Versionskontrollsystems in die Zwischenablage kopieren" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "Mit der rechten Maustaste klicken und die Adresse des authorisierten Versionskontrollsystems in die Zwischenablage kopieren" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "Keine Projekte in dieser Gruppe registriert" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "Beantragen eines neuen Projekts - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "Beantragen eines neues Projekts" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "Neue Projektanfragen müssen über ein Ticket im Trac von Fedora-Infrastruktur eingereicht werden. Stellen Sie sicher, dass Sie eingeloggt sind, bevor Sie ein Ticket anlegen." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "Bitte füllen Sie Felder aus wie folgt:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<Name des Projekts>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "minor außer es ist eine dringende Anfrage. Wenn Sie unsicher sind, ob es eine dringende Anfrage ist oder nicht, setzen Sie das Feld auf minor." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "Benutzen Sie folgende Vorlage für eine komplette Beschreibung Ihres Tickets:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "Nutzungsbedingungen - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "Nutzungsbedingungen" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "Das Infrastruktur-Team des Fedora-Projekts stellt die Dienste von Fedora Hosted bestmöglichst bereit. Viele der Leute, die es verwalten, sind freiwillige. Die Reaktionszeit für neue Projektanfragen ist üblicherweise zwischen einer Stunde und drei Tagen. Ausfälle, sollten sie denn vorkommen, werden mit einer viel höheren Priorität behandelt." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "Das Fedora-Projekt behält sich das Recht vor jedes Projekt von unserem System zu entfernen, wenn es die folgenden Kriterien nicht erfüllt:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "Der im Projekt enthaltene Code erfüllt unsere Lizenz-Anforderungen nicht" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "Keine grundlegenden Änderungen wurden in den letzten sechs (6) Monaten vorgenommen bzw. übertragen" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "Wir werden immer unser Bestes geben, um verschwundene Entwickler zu kontaktieren und um sicherzustellen, dass der Code, die Trac-Datenbank und alle relevanten Daten bereitgehalten werden, um sie im Falle, dass das Projekt entfernt werden muss, dem Projekt-Eigentümer zurückgeben zu können." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© 2012 Red Hat, Inc. und weitere. Bitte senden Sie Kommentare oder Korrekturhinweise an das Webseiten-Team." - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "Das Fedora-Projekt wird durch die Community verwaltet und von Red Hat unterstützt. Diese Seite wird von der Community gepflegt, Red Hat ist für den Inhalt nicht verantwortlich." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Sponsoren" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Rechtliche Informationen" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Richtlinien zum Markenzeichen" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Navigation" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Homepage" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "Über Fedora Hosted" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "Neues Projekt" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Sprache" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Hosting-Sponsor" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "Gesponsert von ServerBeach" diff --git a/fedorahosted.org/po/de_CH.po b/fedorahosted.org/po/de_CH.po deleted file mode 100644 index d5dc8e7..0000000 --- a/fedorahosted.org/po/de_CH.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2011-03-04 00:29+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/fedora-web/language/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
    1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
    2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
    3. You must provide clear " -"instructions for building the software.
    " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Sponsoren" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Navigation" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Homepage" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Sprache" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/el.po b/fedorahosted.org/po/el.po deleted file mode 100644 index 992cc01..0000000 --- a/fedorahosted.org/po/el.po +++ /dev/null @@ -1,435 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Dimitris Glaros , 2012 -# Dimitris Tomaras , 2011 -# Giannis Konstantinidis, , 2012 -# neb , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Giannis Konstantinidis \n" -"Language-Team: Greek (http://www.transifex.com/projects/p/fedora-web/language/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "Φιλοξενούμενα έργα - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "Δεν υπάρχει τέτοιο έργο." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "Το έργο που ζητήσατε δεν υπάρχει στο Fedora Hosted. " - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Σχετικά - Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Σχετικά με το Fedora Hosted" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Το Fedora Hosted, ένα υποστηριζόμενο έργο από το Έργο Fedora - είναι ένας τρόπος για τους προγραμματιστές να να φιλοξενούν τον κώδικά τους και να συνεργάζονται online. Παρέχουμε σε κάθε έργο έλεγχο του κώδικα μέσω git, Mercurial, bzr και άλλων, καθώς και bug tracker και wiki μέσω Trac." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "Το νέο σας έργο είναι μόνο ένα εισητήριο εργασίας μακριά." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "FAQs - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Συχνές ερωτήσεις" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Τι είναι το Fedora Hosted?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Το Fedora Hosted είναι ένα έργο υποστηριζόμενο από το Έργο Fedora και επιτρέπει σε προγραμματιστές να φιλοξενούν τον κώδικά τους και να συνεργάζονται online." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "Πώς μπορώ να ζητήσω ένα νέο έργο?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Στείλετε ένα εισητήριο εργασίας στην Ομάδα Υποδομών Fedora. " - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "Που μπορώ να απευθυνθώ για βοήθεια;" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "Ο καλύτερος τρόπος να πάρετε βοήθεια είναι να συμμετέχετε στο #fedora-admin κανάλι IRC στο Freenode ή στο open a ticket με την ομάδα Υποδομών του Fedora." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Πώς μπορώ να αποκτήσω έναν λογαριασμό Fedora Hosted?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "Ο κανονικός σας λογαριασμός του Έργου Fedora λειτουργεί και στο Fedora Hosted. Απλά υποβάλλετε αίτητση για έναν λογαριασμό στο Έργο Fedora εάν δεν έχετε ήδη. Θυμηθείτε πως πρέπει να συμπληρώσετε το Contributor License Agreement (CLA) με το Έργο Fedora ώστε να συνεισφέρετε στον κώδικα." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "Πως ρυθμίζω το git ώστε να γίνει αποστολή στο αποθετήριο μου στο Fedora Hosted;" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "Δημιουργήστε ένα git clone του αποθετηρίου. Έπειτα, στη διαδρομή αποθετηρίου στο σύστημα σας, επεξεργαστείτε το .git/config κάτω από την περιοχή [remote \"origin\"] για να ακολουθήσετε το συγκεκριμένο πρότυπο για τη ρύθμιση URL:" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "url = ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "όνομα χρήστη" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahosted.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "όνομαέργου" - -#: data/content/faq.html:22 -msgid ".git" -msgstr ".git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "Που:" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "είναι το όνομα χρήστη σας στο Σύστημα Διαχείρησης Λογαριασμών Fedora." - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "είναι το όνομα του έργου σας στο fedorahosted.org έτσι όπως εμφανίζεται μπροστά στο fedorahosted.org." - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "Πώς μπορώ να δημοσιοποιήσω εκδόσεις αρχείου (tgz, zip, etc) για το έργο μου? " - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "Δημιουργήστε το αρχείο στο μέρος εργασίας σας και τρέξτε scp myProject-0.1.tar.gz fedorahosted.org:<Όνομα Έργου>. Το αρχείο θα πρέπει να τοποθετηθεί στο https://fedorahosted.org/releases/" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "Πώς μπορώ να διαγράψω κάτι που φορτώθηκε στο αρχείο μου;" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "Παρακαλείσθε να υποβάλετε ένα εισιτήριο στην href=\"https://fedorahosted.org/fedora-infrastructure/\"> Προσθήκη ακριβώς αρχείο που θέλετε να αφαιρέσετε και γιατί" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "Υπάρχει πιο πειστικός τρόπος να έχω πρόσβαση στις εκδόσεις από το /releases/m/y/myproject?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "Υπάρχει! Το https://fedorahosted.org/released/myproject θα σας πάει στο ίδιο μέρος. Το μειονέκτημα είναι πως θα πρέπει να να γνωρίζετε το όνομα του έργου και δεν θα μπορείτε να ποληγηθείτε στα έργα." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "Μόλις απέκτησα ένα νέο αποθετήριο, πώς μπορώ να κάνω push/pull?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "Πριν κάποιος να μπορεί να κάνει clone/push στο νέο αποθετήριο ένα master push πρέπει να προηγηθεί με μια εντολή (από το τοπικό σας git repo): git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "Πώς παίρνω άδεια να συνεισφέρω σε ένα έργο?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "Πρέπει να υποβάλλετε αίτηση για τη commit group του έργου, η οποία θα πρέπει να είναι <scm><project>, π.χ. για το desktop-effects project, υποβάλλετε αίτηση στην ομάδα gitdesktop-effects." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "Καθώς περιμένω τη δημιουργία του αποθετηρίου μου, μπορώ να δουλεύω τον κώδικα μου κάπου αλλού;" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "Φυσικά! Επισκεφθείτε το http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org για πληροφορίες σχετικά με το πώς να φτιάξετε ένα προσωρινό αποθετήριο στο fedorapeople.org χώρο σας." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "Γιατί το hg μου λέει πως το αποθετήριο δεν υπάρχει, αν και γνωρίζω πως έχω τη σωστή URL;" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "Δυστυχώς το hg δεν χρησιμοποιεί πραγματικούς συνδέσμους. Θα πρέπει να χρησιμοποιήσετε το \"/\" σαν την ρίζα της διαδρομής του αρχείου συστήματος. Για παράδειγμα, αν αποκτάτε πρόσβαση στο αποθετήριο για το πρόγραμμα ρύθμισης παραμέτρων ασφαλείας θα πρέπει να χρησιμοποιήσετε \"hg clone ssh://hg.fedorahosted.org//hg/authconfig\"" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "Μπορώ να προσφέρω pre-compiled binaries στο Fedora Hosted;" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
    1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
    2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
    3. You must provide clear " -"instructions for building the software.
    " -msgstr "Μπορείτε, όσο τηρούνται οι παρακάτω προϋποθέσεις:
    1. Το έργο κώδικα πρέπει να διατίθεται υπό Ελεύθερου Κώδικα άδεια κατάλληλη για το Fedora.
    2. Πρέπει να διαθέσετε τον πηγαίο κώδικα που χρησιμοποιήσατε για να μεταγλωττίσετε τα εκτελέσιμα αρχεία, και που δεν βρίσκονται στο ίδιο πακέτο αρχείων, ή κατ' ελάχιστο να διαθέσετε ένα \"μόνο κώδικα\" πακέτο αρχείων.
    3. Πρέπει να παρέχετε ξεκάθαρες οδηγίες για την μεταγλώττιση του λογισμικού.
    4. " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "Διαθέσιμα έργα" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "Διαθέσιμα έργα" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "Περιγραφή του έργου" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "Web" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "Anon URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "Auth URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "Κάντε δεξί κλικ και αντιγράψτε το ανώνυμο URI του VCS στο clipboard σας" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "Κάντε δεξί κλικ και αντιγράψτε το εξουσιοδοτημένο URI του VCS στο clipboard σας" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "Δεν υπάρχουν έργα σε αυτήν την ομάδα" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "Αίτηση για Νέο Έργο - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "Αίτηση για Νέο Έργο" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "Αιτήσεις για Νέα Έργα πρέπει να συμπληρώνονται μέσω ενός εισητηρίου στo Fedora Infrastructure Trac instance. Σιγουρευτείτε πως είστε συνδεδεμένος/η πριν προσπαθήσετε να δημιουργήσετε ένα εισητήριο. " - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "Συμπληρώστε τα πεδία όπως παρακάτω:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<όνομα έργου>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "χαμηλή εκτός αν είναι επείγουσα περίπτωση. Εάν δεν είστε σίγουρος/η πως η αίτηση σας είναι επείγουσα βάλτε στο πεδίο χαμηλή." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "Χρησιμοποιήστε τον παρακάτω πίνακα για την πλήρη περιγραφή του εισητηρίου:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "Όροι χρήσης - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "Όροι χρήσης" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "Η Ομάδα Υποδομών του Έργου Fedora παρέχει στο Fedora Hosted τις καλύτερες πιθανές υπηρεσίες. Πολλά από τα άτομα που τη διαχειρίζονται είναι εθελοντές. Ο χρόνος που χρειάζεται για να απαντηθεί μια αίτηση για ένα Νέο Έργο κυμαίνεται σε 1 ώρα με 3 μέρες. Καθυστερημενες αιτήσεις, όποτε τυχαίνουν, θα μπαίνουν σε σειρά προτεραιότητας. " - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "Το Έργο Fedora διατηρεί το δικαίωμα να απομακρύνει από το σύστημα οποιοδήποτε έργο δεν ακολουθεί τα παρακάτω κριτήρια:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "Ο κώδικας που περιέχεται στο έργο δεν συμφωνεί με τις Απαιτήσεις Άδειας Χρήσης" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "Δεν σημειώθηκαν ή υποβλήθηκαν αξιοσημείωτες αλλαγές τους τελευταίους έξι (6) μήνες. " - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "Θα κάνουμε πάντα το καλύτερο για να επικοινωνούμε με απόντες προγραμματιστές και να διαβεβαιώνουμε πως ο κώδικας, οι βάσεις δεδομένων Trac, και οποιαδήποτε σχετικά δεδομένα θα κρατούνται ώστε να μπορούν να δοθούν στον κάτοχο τους στην περίπτωση που το έργο απομακρυνθεί. " - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© 2012 Red Hat, Inc. και άλλοι. Παρακαλώ στείλτε τυχόν σχόλια ή διορθώσεις στην ομάδα διαχείρησης ιστοσελίδων." - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "Το έργο Fedora συντηρείται και οδηγείται από την κοινότητα και επιχορηγείται από τη Red Hat. Αυτός ο ιστότοπος συντηρείται από την κοινότητα του Fedora. Η Red Hat δεν είναι υπεύθυνη για το περιεχόμενο." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Χορηγοί" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Νομικά" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Σήματα κατατεθέντα" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Πλοηγηση" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Αρχική" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "Σχετικά" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "Νέο έργο" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Γλωσσα ιστοσελιδας" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Χορηγός" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "Χορηγία του ServerBeach" diff --git a/fedorahosted.org/po/en.po b/fedorahosted.org/po/en.po deleted file mode 100644 index a6850ed..0000000 --- a/fedorahosted.org/po/en.po +++ /dev/null @@ -1,432 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# neb , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-07-04 01:02+0200\n" -"PO-Revision-Date: 2012-07-03 23:12+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "Hosted Projects - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "No such project." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "The requested project does not exist on Fedora Hosted." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "About - Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "About Fedora Hosted" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Hosted is a Fedora Project-sponsored way for developers to host their code and collaborate online. We provide each project with source control via git, Mercurial, bzr, and others, as well as a bug tracker and wiki via Trac." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "Your new project is just a work ticket away." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "FAQs - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Frequently-Asked Questions" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "What is Fedora Hosted?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora Hosted is a project sponsored by the Fedora Project to allow upstream developers to host their code and collaborate online." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "How can I request a new project?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "File a work ticket with the Fedora Infrastructure team." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "Where can I go for help?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket with the Fedora Infrastructure team." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "How can I get a Fedora Hosted account?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora Project account if you haven't already. Do note that you must sign a Contributor License Agreement with the Fedora Project in order to contribute code." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "How do I configure git so that I can push to my Fedora Hosted repo?" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "Do a git clone of your repo. Then, in your repo's directory on your system, edit .git/config under the [remote \"origin\"] section to follow the following pattern for the URL setting: " - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "url = ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "username" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahosted.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "projectname" - -#: data/content/faq.html:22 -msgid ".git" -msgstr ".git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "Where:" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr " is your Fedora Account System username." - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr " is the name of your fedorahosted.org project as listed on the front of fedorahosted.org." - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "How can I publish archive releases (tgz, zip, etc) for my project?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "Create the archive on your workstation and run scp myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The archive will be located under https://fedorahosted.org/releases/" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "How can I delete something I uploaded to my archive?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "Please file a ticket in the fedora-infrastructure trac listing the exact file you wish removed and why" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "Is there a more convenient way to access releases than the path /releases/m/y/myproject?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "There is. https://fedorahosted.org/released/myproject will go to the same place. The disadvantage of this is you must know the project name and can't browse for projects." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "I just got a new git repository, how can I push/pull?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "Before anyone can clone/push the new repository a master push must be done with the command (from your local git repo): git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "How do I get permission to commit to a project?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "You should apply for the commit group of the project, which should be <scm><project>, e.g. for the desktop-effects project, apply to the gitdesktop-effects group." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "While I wait for my repository to be created, can I work on my code elsewhere?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org for instructions on how to set up a temporary repository in your fedorapeople.org space." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "Why does hg tells me the repository doesn't exist even though I know I have the correct URL?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a delimiter between hostname and path and a second \"/\" as the root of the filesystem path. For instance, if you're accessing the repository for authconfig you need to use \"hg clone ssh://hg.fedorahosted.org//hg/authconfig\"" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "Can I offer pre-compiled binaries on Fedora Hosted?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "You may, as long as the following conditions are met:
      1. The code project must be available under a Free Software license appropriate for Fedora.
      2. You must make the source code you used to build the binaries available, and not distributed in the same tarball, or at a minimum make available a \"source only\" tarball.
      3. You must provide clear instructions for building the software.
      " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "Available Projects" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "Display all projects" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "Project Description" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "Web" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "Anon URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "Auth URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "Right-click and copy the anonymous VCS URI to your clipboard" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "Right-click and copy the authorized VCS URI to your clipboard" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "No projects registered in this group" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "Request a New Project - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "Request a New Project" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "New project requests must be filed via a ticket in the Fedora Infrastructure Trac instance. Be sure to log in before attempting to create a ticket." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "Fill in the fields as follows:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<name of project>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "minor unless this is an urgent request. If you are uncertain whether or not the request is urgent then set this field to minor." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "Use the following template for the full description of the ticket:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "Terms of Use - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "Terms of Use" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "The Fedora Project Infrastructure team provides Fedora Hosted services on a best-effort basis. Many of the people that manage it are volunteers. Response time to new project requests is typically between 1 hour and 3 days. Outages, should they occur, are handled with a much higher priority." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "The Fedora Project reserves the right to remove any project from our system that does not meet the following criteria:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "Code contained in the project does not meet our license requirements" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "No significant changes have been committed or applied for at least six (6) months" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "We will always do our best to contact missing developers and ensure that the code, Trac databases, and any relevant data is kept on hand so that it may be presented to the project owner in the event that a project is removed." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© 2012 Red Hat, Inc. and others. Please send any comments or corrections to the websites team." - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "The Fedora Project is maintained and driven by the community and sponsored by Red Hat. This is a community maintained site. Red Hat is not responsible for content." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Sponsors" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Legal" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Trademark Guidelines" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Navigation" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Home" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "About" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "New Project" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Website Language" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Hosting Sponsor" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "Sponsored by ServerBeach" diff --git a/fedorahosted.org/po/en_GB.po b/fedorahosted.org/po/en_GB.po deleted file mode 100644 index 2fae986..0000000 --- a/fedorahosted.org/po/en_GB.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/fedora-web/language/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© 2012 Red Hat, Inc. and others. Please send any comments or corrections to the websites team." - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "The Fedora Project is maintained and driven by the community and sponsored by Red Hat. This is a community maintained site. Red Hat is not responsible for content." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Sponsors" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Legal" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Trademark Guidelines" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Home" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Website Language" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Hosting Sponsor" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/es.po b/fedorahosted.org/po/es.po deleted file mode 100644 index 6142132..0000000 --- a/fedorahosted.org/po/es.po +++ /dev/null @@ -1,435 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Claudio Rodrigo Pereyra Diaz , 2011, 2012 -# Dennis Tobar , 2011 -# Eduardo Villagrán M , 2012 -# neb , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Daniel Cabrera \n" -"Language-Team: Spanish (http://www.transifex.com/projects/p/fedora-web/language/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "Proyectos Alojados - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "No existe tal proyecto" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "El proyecto requerido no existe en Fedora Hosted" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Acerca de - Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Acerca de Fedora Hosted" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Hosted es una forma respaldada por el Proyecto Fedora en que los desarrolladores pueden almacenar su código y colaborar en línea. Se provee a cada proyecto y control del código fuente via git, Mercurial, bzr y otros, así como y trazador de errores y wiki vía Trac. " - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "Su nuevo proyecto está a solo un tique de trabajo de distancia." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "FAQs - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Preguntas Frecuentes" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "¿Qué es Fedora Hosted?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora Hosted es un proyecto patrocinado por el Proyecto Fedora para permitir a los desarrolladores externos almacenar su código y colaborar en línea." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "¿Cómo puedo pedir un nuevo proyecto?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Ingrese un tique de trabajo con el equipo de Infraestructura de Fedora." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "¿Dónde puedo obtener ayuda?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "Las mejores formas de obtener ayuda es unirse al canal IRC #fedora-admin en Freenode o abrir un tique con el equipo de Infraestructura de Fedora." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "¿Cómo puedo obtener una cuenta de Fedora Hosted?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "Su cuenta normal del Proyecto Fedora funciona con Fedora Hosted. Simplemente aplique para una cuenta del Proyecto Fedora si todavía no tiene una. Note que debe firmar un Acuerdo de Licencia de Contribuyente con el Proyecto Fedora, para poder contribuir con código." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "¿Cómo debo configurar git de modo de poder enviar material a mi repositorio en Fedora Hosted?" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "Ejecute un 'git clone' de su repositorio. Luego, en su sistema, edite el archivo .git/config en el directorio de su repositorio clonado, y en la sección [remote \"origin\"] imite el siguiente esquema para definir la URL:" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "url = ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "username" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahosted.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "projectname" - -#: data/content/faq.html:22 -msgid ".git" -msgstr ".git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "Donde:" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr " es el nombre de usuario del Sistema de cuentas de fedora." - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr " es el nombre de su proyecto en fedorahosted.org, de acuerdo a cómo se muestre en fedorahosted.org." - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "¿Cómo puedo publicar lanzamientos en archivo (tgz, zip, etc) de mi proyecto?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "Cree un archivo en su estación de trabajo y ejecute scp myProject-0.1.tar.gz fedorahosted.org:<Project Name>. El archivo será ubicado bajo https://fedorahosted.org/releases/" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "¿Cómo puedo eliminar algo que he subido a mi archivo?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "Por favor archive un ticket en el trac de fedora-infrastructure listando los archivos exactos que quiere remover y el motivo" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "¿Existe alguna manera más conveniente para acceder los lanzamientos aparte de la ruta /releases/m/y/myproject?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "Existe. https://fedorahosted.org/released/myproject irá al mismo lugar. La desventaja de esto es que deberás saber el nombre del proyecto ya que no es posible explorar los proyectos" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "Ya tengo un repositorio git nuevo, ¿cómo puedo poner/sacar?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "Antes de que alguien pueda clonar/poner en el repositorio nuevo, se debe hacer una copia maestra con el comando (desde su repo git local): git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "¿Cómo obtengo permiso para subir a un proyecto?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "Debe solicitar la participación en el grupo de subida del proyecto, que debe ser <scm><project>, por ejemplo, para el proyecto desktop-effects, únase al grupo gitdesktop-effects." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "Mientras espero a que mi repositorio sea creado, ¿Puedo trabajar con mi código en alguna otra parte?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "Por supuesto. Visita http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org para obtener las instrucciones para configurar un repositorio temporal en tu espacio de fedorapeople.org." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "¿Por qué hg me dice que el repositorio no existe aún cuando sé que tengo el URL correcto?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "Desafortunadamente hg no utiliza URLs verdaderas. Debe usar una \"/\" como delimitador entre el nombre del equipo y la ruta, y una segunda \"/\" como raiz de la ruta del sistema de archivos. Por ejemplo, si usted esta accediendo al repositorio de authconfig necesita usar \"hg clone ssh://hg.fedorahosted.org//hg/authconfig\"" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "¿Puedo ofrecer binarios precompilados en Fedora Hosted?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "Puede, en tanto se cumplan las siguientes condiciones:
      1. El código del proyecto debe estar disponible bajo una licencia de Software Libre apropiada para Fedora.
      2. Debe poner a disposición el código fuente que usó para construir los binarios, y no distribuirlos en el mismo paquete, o, como mínimo, poner a disposición un paquete de \"sólo código fuente\".
      3. Debe proveer instrucciones claras para construir el software.
      " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "Proyectos Disponibles" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "Mostrar todos los proyectos" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "Descripción del proyecto" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "Sitio" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "URL Anónima" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "URL Autorizada" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "Clic-derecho y copie el URI del VCS anónimo a su portapapeles" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "Clic-derecho y copie el URI de VCS autorizado a su portapapeles" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "No hay proyectos registrados en este grupo" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "Pida un Proyecto Nuevo - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "Pida un Nuevo Proyecto" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "Los pedidos de nuevos proyectos deben ser hechos vía un tique en la instancia Trac de la Infraestructura de Fedora . Asegúrese de ingresar antes de intentar crear un tique." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "Llene los campos como sigue:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<nombre del proyecto>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "minor a menos que sea un pedido urgente. Si no sabe si su pedido es urgente o no, entonces ponga minor en este campo." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "Use el siguiente template para la descripción completa del tique:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "Términos de Uso - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "Términos de Uso" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "El equipo de Infraestructura del Proyecto Fedora provee los servicios de Fedora Hosted en base al mejor esfuerzo. Muchas personas que lo administran son voluntarios. Los tiempos de respuesta a pedidos de nuevos proyectos normalmente toman entre 1 hora y 3 días. Las salidas de servicios, cuando suceden, se manejan con una mayor prioridad." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "El Proyecto Fedora se reserva el derecho de eliminar cualquier proyecto de nuestro sistema que no cumpla con los siguientes criterios:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "El código contenido en el proyecto no cumple con nuestros requerimientos de licencia" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "No se han hecho cambios significativos en los últimos seis meses" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "Siempre se hacen lo mejor que se puede para contactar desarrolladores ausentes y asegurar que el código, bases de datos Trac y otros datos relevantes estén a manos para que sean dados al dueño del proyecto en el caso de que el mismo sea eliminado." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© 2012 Red Hat, Inc. y otros. Por favor envíe cualquier tipo de comentarios o correcciones al equipo de sitios web." - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "El Proyecto Fedora es mantenido y manejado por la comunidad y patrocinado por Red Hat. Éste es un sitio mantenido por la comunidad. Red Hat no es responsable por su contenido." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Patrocinadores" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Legal" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Lineamientos de Marcas Comerciales" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Navegación" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Inicio" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "Acerca de" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "Nuevo Proyecto" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Idioma del Sitio Web" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Patrocinador del Hosting" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "Patrocinado por ServerBeach" diff --git a/fedorahosted.org/po/et.po b/fedorahosted.org/po/et.po deleted file mode 100644 index 416d68f..0000000 --- a/fedorahosted.org/po/et.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2012-07-03 23:12+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Estonian (http://www.transifex.com/projects/p/fedora-web/language/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/eu.po b/fedorahosted.org/po/eu.po deleted file mode 100644 index f0aa499..0000000 --- a/fedorahosted.org/po/eu.po +++ /dev/null @@ -1,433 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Asier Iturralde Sarasola , 2012-2013 -# Mikel Olasagasti Uranga , 2012 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Asier Iturralde Sarasola \n" -"Language-Team: Basque (http://www.transifex.com/projects/p/fedora-web/language/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "Ostatatutako proiektuak - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "Proiektu hori ez da existitzen." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "Eskatutako proiektua ez da existitzen Fedora Hosted-en." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Honi buruz - Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Fedora Hosted-i buruz" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "MEG - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Maiz egindako galderak" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Zer da Fedora Hosted?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "Nola eska dezaket proiektu berri bat?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "Non lor dezaket laguntza?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Nola lor dezaket Fedora Hosted kontu bat?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "url = ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "erabiltzaile-izena" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahosted.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "proiektu-izena" - -#: data/content/faq.html:22 -msgid ".git" -msgstr ".git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "Non:" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "Fedora kontu sistemako zure erabiltzaile-izena da." - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "Nola argitara ditzaket nire proiektuaren argitalpenen fitxategiak (tgz, zip eta abar)?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "Sortu fitxategia zure ordenagailuan eta exekutatu scp nireProiektua-0.1.tar.gz fedorahosted.org:<Proiektuaren izena>. Fitxategia hemen kokatuko da: https://fedorahosted.org/releases/" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "Nola ezaba dezaket nire artxibora kargatutako zerbait?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "Nire kode-biltegia sortzen den bitartean, lan egin dezaket nire kodean beste nonbait?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "Proiektu eskuragarriak" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "Bistaratu proiektu guztiak" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "Proiektuaren deskribapena" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "Webgunea" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "Ez dago proiekturik erregistratuta talde honetan" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "Eskatu proiektu berri bat - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "Eskatu proiektu berri bat" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<proiektuaren izena>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "Erabilera baldintzak - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "Erabilera baldintzak" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Babesleak" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Legezko oharra" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Marka errejistratua erabiltzeko gida" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Nabigazioa" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Hasiera" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "Honi buruz" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "Proiektu berria" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Webgunearen hizkuntza" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "ServerBeach-ek babestua" diff --git a/fedorahosted.org/po/fa.po b/fedorahosted.org/po/fa.po deleted file mode 100644 index e2acdd7..0000000 --- a/fedorahosted.org/po/fa.po +++ /dev/null @@ -1,436 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Amir Farsi , 2013 -# Daniyal Yousefi , 2011 -# Morteza Adi , 2012 -# Noori , 2011 -# neb , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Amir Farsi \n" -"Language-Team: Persian (http://www.transifex.com/projects/p/fedora-web/language/fa/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: fa\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "پروژه‌های میزبانی شده - فدورا هاستد" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "چنین پروژه‌ای وجود ندارد" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "پروژهٔ درخواست شده در فدورا هاستد موجود نیست." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "درباره - فدورا هاستد" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "دربارهٔ میزبانی شده فدورا هاستد" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "فدورا هاستد یک روش حمایت پروژهٔ فدورا برای پیش‌برندگان جهت میزبانی کدهایشان و جمع آوری به صورت آنلاین است. ما برای هر پروژه کنترل منبع از طریق جی‌ای‌تی, مرکیورال, بی‌زد‌ار همچنین پیگیری باگ و ویکی از طریق تریس فراهم می‌کنیم." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "پروژهٔ جدید شما در اعلان کاری است." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "پرسش‌های متداول - فدورا هاستد" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "پرسش‌های متداول" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "فدورا هاستد چیست؟" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "فدورا هاستد پروژه‌ای است که توسط پروژهٔ فدورا حمایت می‌شود تا به پیش‌برندگان حاضر اجازه دهد کدهایشان را میزبانی کنند و به صورت برخط با یکدیگر کار کنند." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "چگونه می‌توانم پروژه‌ای جدید درخواست کنم؟" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr ".یک اعلان کاری برای تیم زیرساخت فدورا پر کنید" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "برای کمک به کجا مراجعه کنم؟" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "بهترین راه برای دریافت کمک کانال #fedora-admin در فریند است. یا یک اعلان جدید برای تیم زیرساخت فدورا ایجاد کنید." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "چگونه می‌توانم حساب کاربری فدورا هاستد داشته باشم؟" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "حساب معمولی شما با فدورا هاستد نیز کار می‌کند. به‌راحتی یک حساب پروژه فدورا درخواست کنید اگر تابه‌حال نداشته اید. به یاد داشته باشید که برای مشارکت کد باید توافق‌نامهٔ مجوز مشارکت کننده را امضا کنید." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "کجا:" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "چگونه می‌توانم برای پروژهٔ خودم نسخه‌های آرشیوی (tgz, zip , غیره) منتشر کنم؟" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "یک آرشیو در جای کار خود ایجاد کنید و scp myProject-0.1.tar.gz fedorahosted.org:<Project Name> را اجرا کنید. آرشیو در https://fedorahosted.org/releases/ قرار خواهد گرفت" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "چگونه میتوانم چیزی را که در بایگانی ام آپلود کرده ام را حذف کنم؟" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "لطفا در اینجا fedora-infrastructure tracتیکت جدیدی ایجاد کنید و فایلی را که تمایل دارید حذف نمایید به دقت مشخص و دلیل آن را بیان کنید.." - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "آیا راه مناسب‌تری برای دسترسی به انتشارها از مسیر /releases/m/y/myproject وجود دارد؟" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "مسیر https://fedorahosted.org/released/myproject شما را به همان‌جا خواهد برد. اشکال آن این است که شما باید نام پروژه را بدانید و نمی‌توانید برای پروژه‌ها پویش کنید." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "چگونه می‌توانم یک مخزن جی‌ای‌تی جدید بگیرم, چگونه می‌توانم قرار بدهم یا خارج کنم؟" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "قبل از آنکه کسی بتواند یک مخزن جدید را clone/push بکند باید با دستور (از مخزن جی‌ای‌تی داخلی خودتان) یک ارسال master انجام شود با : git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "چگونه می‌توانم دسترسی ارسال فایل به یک پروژه پیدا کنم؟" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "شما می‌توانید برای گروه ارسال پروژه ثبت نام کنید که باید <scm><project> باشد ، مثلاً برای پروژهٔ افکت‌های دسکتاپ باید به گروه gitdesktop-effects به پیوندید." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "هنگامی که من منتظر ساخته شدن مخزن خودم هستم آیا می‌توانم در جایی دیگر بر روی کدم کار کنم؟" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "البته. اینجا را http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org برای دستورالعمل‌های که چگونه یک مخزن موقت در فضای fedorapeople.org خودتان ایجاد کنید مشاهده کنید." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "چرا hg به من می‌گوید مخزن وجود ندارد در حالی که من می دانم URL درست را وارد کرده‌ام؟" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "متأسفانه hg از URLهای درست استفاده نمی‌کند. شما بایستی از یک \"/\" به عنوان جداکننده بین نام میزبان و مسیر استفاده کنید و یک \"/\" دومی به‌عنوان ریشه مسیر سیستم‌فایل. برای نمونه، اگر شما به مخزن برای authconfig دسترسی دارید شما نیاز دارید که این را به کار ببرید \"hg clone ssh://hg.fedorahosted.org//hg/authconfig\" " - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "آیا می‌توانم برای مجموعه باینری پیش‌کامپایل‌شده در فدورا هاستد تقاضای میزبانی کنم؟ " - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "شما می‌توانید، تا زمانی که شرایط زیر برقرار هستند:
      1. کد پروژه بایستی تحت یک مجوز نرم‌افزار آزاد تهیه شده برای فدورا.
      2. شما بایستی کد منبعی که برای ساختن باینرها به کار برده‌اید را آماده کنید، و نباید آن را در همان آرشیو (تربال)، یا در یک آرشیو (تربال) ساخت حداقلی موجود «تنها منبع» منتشرکنید.
      3. شما بایستی دستورالعمل‌های شفاف برای ساختن نرم‌افزار آماده کنید.
      " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "پروژه‌های موجود" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "نمایش همهٔ پروژه‌ها" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "توضیح پروژه" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "وی‌سی‌اس" - -#: data/content/index.html:19 -msgid "Web" -msgstr "وب" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "آدرس ناشناخته" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "آدرس تأیید شده" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "کلیک راست کنید و VCS URI ناشناس را در کلیپ بردتان کپی کنید" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "کلیک راست کنید و VCS URI مجاز را در کلیپ بردتان کپی کنید" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "در این گروه هیچ پروژهٔ ثبت‌شده‌ای وجود ندارد" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "درخواست پروژهٔ جدید - فدورا هاستد" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "درخواست پروژهٔ جدید" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "درخواست‌های پروژهٔ جدید باید از طریق یک اعلان در پیگیری موارد زیرساخت فدورا انجام شود. قبل از تلاش برای ایجاد یک اعلان مطمئن شود که وارد سیستم شود." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "جاهای خالی را بدین‌گونه پر کنید:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<نام پروژه>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "خرد مگر آن که یک درخواست ضروری باشد. اگر مطمئن نیستند درخواست شما ضروری است یا نه این جا را خرد بگذارید." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "از الگوی زیر برای توضیح کامل بلیط استفاده کنید:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "شرایط استفاده - فدورا هاستد" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "شرایط استفاده" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "تیم زیرساخت پروژه فدورا خدمات فدورا هاستد را بر اساس بهترین تلاش فراهم می آورد. بسیاری از افراد که آن را مدیریت می کنند افراد داوطلب هستند. زمان پاسخ گویی به پروژه های جدید معمولا بین ۱ ساعت تا ۳ روز می باشد. خروج ها,باید اتفاق بیفتند, با ارجحیت بالا بررسی می شوند." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "پروژه فدورا حق برداشتن هر نوع پروژه ای از سیستم مان را که با موازین زیر مطابقت ندارد برای خود محفوظ می دارد:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "کد موجود در پروژه باالترام های پروانه ما مطابقت ندارد" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "تغییر مهمی حداقل در شش ماه گذشته انجام نشده است" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "ما همیشه تمام سعی خود در به کار خواهیم بست تا با پیشبرندگانی که در دسترس نیستند تماس بگیریم و مطمئن شویم که کد, پایگاه های داده پیگری و هرگونه اطلاعات مربوط در دسترس هستند تا شاید آن به دارنده ی پروژه زمانی که برداشته می شود ارائه شوند." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "پروژه فدورا توسط انجمنی که توسط Red Hat اسپانسر شده است، هدایت و نگه داری میشود. این یک پایگاه وب نگه داری شده توسط انجمن است. Red Hat هیچ مسپولیتی برای محتوای آن ندارد." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "حامیان" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "قوانین" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "راهنمای علایم تجاری" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "فدورا" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "ناوبری" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "خانه" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "درباره" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "پروژه جدید" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "زبان پایگاه" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "پشتیبان هاستینگ" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "به حمایت سروربیچ" diff --git a/fedorahosted.org/po/fedorahosted.pot b/fedorahosted.org/po/fedorahosted.pot deleted file mode 100644 index 02a6312..0000000 --- a/fedorahosted.org/po/fedorahosted.pot +++ /dev/null @@ -1,436 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2013. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-11-12 15:19+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and " -"collaborate online. We provide each project with source control via git, " -"Mercurial, bzr, and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow " -"upstream developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure " -"team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-" -"admin IRC channel on Freenode or to open a " -"ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora" -" Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to " -"contribute code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your " -"system, edit .git/config under the [remote \"origin\"] section to follow " -"the following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file " -"you wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will " -"go to the same place. The disadvantage of this is you must know the " -"project name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be " -"done with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply " -"for the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I " -"have the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the" -" filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the " -"binaries available, and not distributed in the same tarball, or at a " -"minimum make available a \"source only\" tarball.
      3. You must " -"provide clear instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain" -" whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on" -" a best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher " -"priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our " -"system that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six " -"(6) months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that " -"the code, Trac databases, and any relevant data is kept on hand so that " -"it may be presented to the project owner in the event that a project is " -"removed." -msgstr "" - -#: data/templates/foot.html:9 -#, python-format -msgid "" -"© %(year)s Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and " -"sponsored by Red Hat. This is a community maintained site. Red Hat is " -"not responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark" -" Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" - diff --git a/fedorahosted.org/po/fi.po b/fedorahosted.org/po/fi.po deleted file mode 100644 index 84aa249..0000000 --- a/fedorahosted.org/po/fi.po +++ /dev/null @@ -1,432 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Juhani Numminen , 2012 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Finnish (http://www.transifex.com/projects/p/fedora-web/language/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "Projektia ei löydy." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "Pyydettyä projektia ei ole olemassa Fedora Hostedissa." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Tietoja - Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Tietoja Fedora Hostedista" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "UKK - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Usein kysytyt kysymykset" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Mikä on Fedora Hosted?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "Kuinka pyydän uutta projektia?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "Web" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<projektin nimi>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Sponsorit" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Navigointi" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Koti" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "Tietoja" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "Uusi projekti" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Sivuston kieli" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Ylläpitosponsori" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/fr.po b/fedorahosted.org/po/fr.po deleted file mode 100644 index 1fbf5ae..0000000 --- a/fedorahosted.org/po/fr.po +++ /dev/null @@ -1,436 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# dominique bribanick , 2011 -# Fabien Archambault , 2012 -# FIRST AUTHOR , 2011 -# Jérôme Fenal , 2012 -# neb , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: French (http://www.transifex.com/projects/p/fedora-web/language/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "Projets hébergés - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "Il n'y a pas de tel projet." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "Le projet demandé n'existe pas sur Fedora Hosted." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "À propos de - Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "À propos de Fedora Hosted" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Hosted est une manière sponsorisée par Fedora Project de permettre aux développeurs d'héberger leurs codes et de collaborer en ligne. Nous fournissons un gestionnaire de versions pour chaque projet via git, Mercurial, et bzr entre autres, ainsi qu'un suivi de bogue et un wiki via Trac." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "Votre nouveau projet n'est qu'à un ticket de travail de vous." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "FAQ - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Foire aux questions" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Qu'est-ce que Fedora Hosted ?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora Hosted est un projet sponsorisé par le Fedora Project afin de permettre aux développeurs d'héberger leur code et de collaborer en ligne." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "Comment demander un nouveau projet ?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Remplissez un ticket de travail avec l'équipe Fedora Infrastructure." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "Où puis-je obtenir de l'aide ?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "Les meilleurs moyens d'obtenir de l'aide sont de rejoindre le salon IRC #fedora-admin sur Freenode ou bien d'ouvrir un ticket avec l'équipe Fedora Infrastructure." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Comment obtenir un compte Fedora Hosted ?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "Votre compte Fedora Project habituel fonctionne avec Fedora Hosted. Faites simplement une demande de création de compte Fedora Project si vous ne l'avez pas déjà fait. Notez que vous devrez signer un Accord de Licence de Contributeur (CLA) avec le Fedora Project afin de pouvoir contribuer au code." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "Comment puis-je configurer git de façon à publier mes dépôts Fedora Hosted ?" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "Effectuez un clone de votre dépôt. Ainsi, dans le répertoire de votre dépôt sur votre système, modifier l'URL dans la section [remote \"origin\"] du fichier .git/config sur le motif suivant :" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "url = ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "utilisateur" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahosted.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "nom_de_projet" - -#: data/content/faq.html:22 -msgid ".git" -msgstr ".git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "Où :" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "est votre nom d'utilisateur Fedora Account System." - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "est le nom de votre projet fedorahosted.org tel que listé en façade de fedorahosted.org." - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "Comment faire pour publier des versions archivées pour mon projet ?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "Créez l'archive dans votre console, puis exécutez scp monProjet-0.1.tar.gz fedorahosted.org:<Nom du Projet>. L'archive se trouvera sous https://fedorahosted.org/releases/" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "Comment puis-je supprimer quelque chose que j'ai ajouté à mon archive ?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "Veuillez envoyer une demande sur fedora-infrastructure trac en indiquant le fichier que vous voulez supprimer et la raison de cette suppression." - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "Existe-t-il un moyen plus pratique que /releases/m/y/myproject pour accéder aux versions ?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "Tout à fait, https://fedorahosted.org/released/myproject vous dirigera vers le même endroit. Le désavantage ici vient du fait que vous devez connaître le nom du projet et vous ne pourrez pas parcourir les projets." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "Je viens d'obtenir un nouveau dépôt git, comment faire pour les émissions/collectes ?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "Avant que quiconque ne puisse dupliquer/émettre le nouveau dépôt, une émission principale doit être exécutée à l'aide de la commande (depuis votre dépôt git local) : git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "Comment obtenir la permission de soumettre des modifications du code à un projet ?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "Vous devriez en premier lieu vous inscrire au groupe « commit » du projet, qui est identifiable comme suit : <scm><project>, par exemple, pour le projet desktop-effects, inscrivez-vous au groupe gitdesktop-effects." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "Est-il possible de travailler ailleurs sur son code en attendant que le dépôt soit créé ?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "Bien sûr. Visitez http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org pour voir les instructions pour créer un dépôt temporaire dans votre espace fedorapeople.org." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "Pourquoi hg m'informe que le dépôt distant n'existe pas bien que l'URL soit valide ?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "Malheureusement hg n'utilise pas de vraies URL. Vous devrez utiliser un « / » comme délimiteur entre le nom d'hôte et le chemin et un second « / » à la racine du chemin du système de fichiers. Par exemple si vous voulez accéder au dépôt qui fournit authconfig vous devrez utiliser « hg clone ssh://hg.fedorahosted.org//hg/authconfig »" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "Puis-je proposer des binaires précompilés sur Fedora Hosted ?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "Vous pouvez du moment que les conditions suivantes sont respectées :
      1. Le code du projet doit être disponible sous une licence libre qui convienne à Fedora.
      2. Vous devez mettre à disposition le code source que vous avez utilisé pour construire ces fichiers binaires, dans un fichier indépendant identifié comme ne contenant que les sources du projet.
      3. Vous devez préciser les instructions pour construire le fichier binaire.
      " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "Projets disponibles" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "Afficher tous les projets" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "Description du projet" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "Web" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "Anon URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "Auth URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "Faites un clic droit et copiez le URI VCS anonyme sur votre presse-papiers" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "Faites un clic droit et copiez l'URI VCS autorisé sur votre presse-papiers" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "Aucun projet n'est enregistré dans ce groupe" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "Demande de nouveau projet - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "Faire la demande d'un nouveau projet" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "Les demandes de nouveau(x) projet(s) doivent être faites via un ticket dans l'instance Trac de Fedora Infrastructure. Assurez-vous de bien vous être connecté avant d'essayer de créer un ticket." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "Remplissez les champs ci-dessous comme suit :" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<Nom du projet>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "mineur, à moins que ça ne soit une requête urgente. Si vous n'êtes pas sûr de savoir si la requête est urgente ou non, alors ajustez ce champ sur mineur." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "Utilisez le modèle suivant pour une description complète du ticket :" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "Conditions d'utilisation - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "Conditions d'utilisation" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "L'équipe Fedora Infrastructure offre ses services à Fedora Hosted sur le principe du meilleur effort possible. Une grande partie de sa direction sont des volontaires. Le temps de réponse aux demandes de nouveaux projets peut varier de 1 heure à 3 jours. Les interruptions de service, lorsqu'elles arrivent, sont traitées avec très haute priorité." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "Le Fedora Project se réserve le droit de retirer du système tout projet qui ne prend pas les critères suivants en compte :" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "Le code présent dans le projet ne répond pas à nos exigences de licence." - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "Aucun changement significatif n'a été validé ou effectué depuis au moins six (6) mois" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "Le Fedora Project fera toujours de son mieux pour contacter les développeurs manquants et pour s'assurer que le code, les bases de données Trac, ainsi que l'ensemble des données importantes soient conservées afin de pouvoir les présenter au propriétaire du projet si celui-ci venait à être supprimé." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© 2011 Red Hat, Inc. et autres. Merci de transmettre vos commentaires ou rectificatifs à l'équipe des sites web." - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "Le projet Fedora est conduit et maintenu par la communauté et sponsorisé par Red Hat. Ce site est maintenu par la communauté. Red Hat ne peut être tenu responsable pour son contenu." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Sponsors" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Service juridique" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Recommandations relatives à la marque" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Navigation" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Accueil" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "À propos" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "Nouveau projet" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Langue du site web" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Hébergement sponsorisé par" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "Sponsorisé par ServerBeach" diff --git a/fedorahosted.org/po/ga.po b/fedorahosted.org/po/ga.po deleted file mode 100644 index 045c7b5..0000000 --- a/fedorahosted.org/po/ga.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2011-03-04 00:29+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Irish (http://www.transifex.com/projects/p/fedora-web/language/ga/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: ga\n" -"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/gl.po b/fedorahosted.org/po/gl.po deleted file mode 100644 index c5c1118..0000000 --- a/fedorahosted.org/po/gl.po +++ /dev/null @@ -1,432 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Fran Diéguez , 2012 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Fran Diéguez \n" -"Language-Team: Galician (http://www.transifex.com/projects/p/fedora-web/language/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "Proxectos hospedados - Hospedados por Fedora" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "Non existe o proxecto." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "O proxecto solicitado non existe en Fedora Hosted" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Sobre - Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Sobre Fedora Hosted" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "O seu novo proxecto só está a un ticket de traballo" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "FAQ - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Preguntas frecuentes" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Que é Fedora Hosted?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "Como podo solicitar un proxecto novo?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "Onde podo buscar axuda?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Como podo obter unha conta de Fedora Hosted?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "url = ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "nomedeusuario" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahosted.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "nomeproxecto" - -#: data/content/faq.html:22 -msgid ".git" -msgstr ".git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "Onde:" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "é o seu nome de usuario no sistema de contas de Fedora" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "é o nome do seu proxecto de fedorahosted.org como se mostra na páxina principal de fedorahosted.org" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "Como podo publicar os arquivos de publicación (tgz, zip, etc) para o meu proxecto?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "Como podo eliminar algo que subín do meu arquivo?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "Hai algunha forma máis correcta de acceder ás publicacións que /releases/m/e/u/proxecto" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "Obtiven un novo repositorio git, como podo remitir e obter cambios?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "Como podo obter permisos para remitir a un proxecto?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "Mentres agardo que se cree o meu repositorio, podo traballar no meu código noutro lugar?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "Proxectos dispoñíbeis" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "Mostrar todos os proxectos" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "Descrición do proxecto" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr " Web" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "URL anónima" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "URL autenticada" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "Non se rexistrou ningún proxecto neste grupo" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "Solicitar un novo proxecto - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "Solicitar un novo proxecto" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "Complete os cambios seguintes:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<nome do proxecto>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "Usar o seguinte modelo para a descrición completa do ticket:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "Termos de uso - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "Termos de uso" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© 2012 Red Hat, Inc. e outros. Envíe comentarios e correccións ao equipo dos sitios web." - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "O Proxecto Fedora é mantido e liderado pola comunidade co patrocinio da Red Hat. Este é un sitio mantido pola comunidade. Red Hat non é responsábel do seu contido." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Patrocinadores" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Legal" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Directrices sobre as marcas rexistradas" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Navegación" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Inicio" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "Sobre" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "Novo proxecto" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Idioma do sitio" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Patrocinador do hospedaxe" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "Patrocinado por ServerBeach" diff --git a/fedorahosted.org/po/gu.po b/fedorahosted.org/po/gu.po deleted file mode 100644 index a14ad82..0000000 --- a/fedorahosted.org/po/gu.po +++ /dev/null @@ -1,433 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# neb , 2011 -# sweta , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Gujarati (http://www.transifex.com/projects/p/fedora-web/language/gu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: gu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "હોસ્ટેડ પ્રોજેક્ટો - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "આવો પ્રોજેક્ટ નથી." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "Fedora Hosted પર સૂચિત પ્રોજેક્ટ અસ્તિત્વ ધરાવતો નથી." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "વિશે - Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Fedora Hosted નાં વિશે" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Hosted એક Fedora Project- છે ડેવલપરો માટે કે જે કોડ લખી શકે અને સાથે મળીને કામ કરી શકે. અમે દરેક પ્રોજેક્ટને સ્ત્રોત નિયંત્રણ પૂરા પાડીએ છે git, Mercurial, bzr, અને બીજાઓ દ્દારા, ની સાથે સાથે બગ ટ્રેકર અને વિકી અને ટ્રેક દ્દારા." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "તમારો નવો પ્રોજેક્ટ એ work ticket થી દૂર છે." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "FAQs - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "વારંવાર પૂછવામાં આવતા પ્રશ્ર્નો" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Fedora Hosted શું છે?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora Hosted એક પ્રોજેક્ટ છે જે Fedora Project દ્દારા પ્રાયોજિત થયેલ છે અપસ્ટ્રીમ ડેવલપરો નાં તેનાં કોડ ને હોસ્ટ કરવા માટે અને ઓનલાઇન મળીને કામ કરવા માટે કામ કરવા માટે પરવાનગી આપે છે." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "નવા પ્રોજેક્ટ ની માંગણી કેવી રીતે કરી શકાય છે?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "એક work ticket Fedora Infrastructure જૂથ સાથે." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "મદદ માટે હું ક્યા જઇ શકુ છુ?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "મદદ માટે સારામાં સારો રસ્તો એ છે કે Freenode પર #fedora-admin IRC ચેનલ ને જોડાવાનું અથવા Fedora Infrastructure જૂથ સાથે ટિકીટ ખોલવા માટે." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "કેવી રીતે હું Fedora Hosted ખાતાને મેળવી શકુ છુ?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "તમારા સામાન્ય Fedora Project ખાતુ Fedora Hosted સાથે કામ કરે છે. બસ એક Fedora Project ખાતા માટે લાગુ કરો જો તમારી પાસે પહેલેથી ન હોય તો. નોંધ કરો કે જે તમે કોડના યોગદાન માટે ક્રમમાં Fedora Project સાથે Contributor License Agreement હસ્તાક્ષર કરવા જ જોઇએ." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "હું કેવી રીતે પુરાણાં પ્રકાશનો (tgz, zip, વગેરે) મારા પ્રોજેક્ટ માટે પ્રકાશિત કરી શકાય છે?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "તમારા વર્કસ્ટેશન પર પુરાંણુ ચલાવો અને scp myProject-0.1.tar.gz fedorahosted.org:<Project Name> ચલાવો. પુરાંણા ભંડાર https://fedorahosted.org/releases/ ની નીચે સ્થાપિત થયેલ હશે" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "શું ત્યાં પાથ /releases/m/y/myproject કરતા વધારે પ્રકાશનોનાં પ્રવેશ માટે સુલભ રસ્તો છે?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "ત્યાં છે. https://fedorahosted.org/released/myproject એ એજ જગ્યાએ જશે. આનો ગેરફાયદો એ છે કે તમારે પ્રોજેક્ટ નામની ખબર હોવી જ જોઇએ અને પ્રોજેક્ટો માટે બ્રાઉઝ કરી શકાતુ નથી." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "મને હમણાં નવી git રિપોઝીટરી મળી છે, કેવી રીતે હું દબાવી/ખેંચી શકુ છુ?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "કોઇપણ દ્દારા નવી રિપોઝીટરીને ક્લોન/દબાવવા માટે પહેલા એક માસ્ટર આદેશ ની સાથે હોવુ જ જોઇએ (તમારા સ્થાનિય git રિપોઝીટરી માંથી): git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "પ્રોજેક્ટને મોકલવા માટે મને કેવી રીતે પરવાનગી મળશે?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "તમારે પ્રોજેક્ટનાં સોંપેલ જૂથ માટે લાગુ કરવુ જોઇએ. કે જે <scm><project> હોવુ જોઇએ, દા.ત. desktop-effects પ્રોજેક્ટ માટે, gitdesktop-effects જૂથમાં લાગુ કરો." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "જ્યારે મારી રિપોઝટરી બનાવવા માટે રાહ જોઇ રહ્યો હોય ત્યારે, શું હું ગમે ત્યાં મારા કોડ પર કામ કરી શકુ છુ?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "અવશ્ય, તમારી fedorapeople.org જગ્યા માં કેવી રીતે કામચલાઉ રિપોઝીટરી સુયોજિત કરાય તે પર સૂચનાઓ માટે http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org ની મુલાકાત લો." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "શામાટે hg કહે છે કે રિપોઝીટરી અસ્તિત્વ ધરાવતી નથી છતાંપણ હું જાણુ છુ મારી પાસે યોગ્ય URL છે?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "કમનસીબે hg સાચી URLs ને વાપરતુ નથી. તમારે યજમાનનામ અને પાથ વચ્ચે ડેલિમીટર તરીકે \"/\" ને વાપરવુ જ પડશે અને ફાઇલપાથનાં રુટ તરીકે બીજુ \"/\". ઉદાહરણ તરીકે, જો તમે authconfig માટે રિપોઝીટરીને વાપરી રહ્યા હોય તો તમારે \"hg clone ssh://hg.fedorahosted.org//hg/authconfig\" ને વાપરવાની જરૂર છે" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "શું હું Fedora Hosted પર પહેલેથી કમ્પાઇલ થયેલ બાઇનરોની માંગણી કરી શકુ છુ?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "ઉપલ્બધ પ્રોજેક્ટો" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "બધા પ્રોજેક્ટોને દર્શાવો" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "પ્રોજેક્ટ વર્ણન" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "વેબ" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "Anon URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "Auth URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "જમણી ક્લિક અને તમારા ક્લિપબોર્ડ માટે નામ વિનાના VCS URI ની નકલ કરો" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "જમણી ક્લિક અને તમારા ક્લિપબોર્ડ માટે સત્તાધિકરણ થયેલ VCS URI ની નકલ કરો" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "આ જૂથમાં પ્રોજેક્ટો રજીસ્ટર થયેલ નથી" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "નવા પ્રોજેક્ટની માગણી - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "નવા પ્રોજેક્ટની માગણી" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "Fedora Infrastructure Trac instance માં ટિકીટ દ્દારા નવાં પ્રોજેક્ટ માંગણીઓને ફાઇલ થયેલ હોવી જ જોઇએ. કોઇ ટિકીટ બનાવવાનો પ્રયત્ન કરતા પહેલા લોગિન હોવાનું ખાતરી કરો." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "નીચે પ્રમાણે ક્ષેત્રોમાં ભરો:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<પ્રોજેક્ટનું નામ>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "minor જ્યાં સુધી આ તત્કાલ માગણી નથી. જો તમે અચોક્કસ છો ક્યાંતો માગણી જરૂરી છે અથવા નહિં તો આ ક્ષેત્ર ને આ minor થી સુયોજિત કરો." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "ટિકીટનું સંપૂર્ણ વર્ણન માટે નીચેનાં ટેમ્પલેટ વાપરો:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "વાપરવાની શરતો - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "વાપરવાની શરતો" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "Fedora Project Infrastructure જૂથ સારામાં સારા ક્ષમતાનાં આધાર પર Fedora Hosted સેવાઓ પૂરી પાડે છે. ઘણાબધા લોકો અહિંયા સ્વયંસેવક છે. નવાં પ્રોજેક્ટ માટે અનુક્રિયા સમય વિશિષ્ટ રીતે ૧ કલાક અને ૩ દિવસોની વચ્ચે છે. આઉટેજ જો ઘટે છે તો તેને અધિક પ્રાથમિકતા સાથે કરવામાં આવે છે." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "Fedora Project કોઇપણ પ્રોજેક્ટ ને અમારી પ્રોજેકટ માંથી દૂર કરવાનો અધિકાર રાખે છે કે જે નીચેનાં માપદંડો નુ પાલન કરતુ નથી:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "પ્રોજેક્ટ માં સમાયેલ કોડ અમારી license requirements ની સાથે પૂરુ થતુ નથી" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "કોઇ મહત્વપૂર્ણ બદલાવો પૂરા કરી દેવામાં આવ્યા નથી અથવા ઓછામાં ઓછા (6) મહિનાઓ માટે લાગુ પાડેલ છે" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "અમે હંમેશા ગુમ ડેવલપરોને સંપર્ક કરવા સારામાં સારી રીતે પ્રયત્ન કરીશુ અને ખાતરી કરીએ છીએ કે કોડ, ડેટાબેઝોને શોધવા, અને કોઇપણ સુસંગત માહિતી હાથમાં રાખેલ છે તેથી કે જે તે ઘટનામાં પ્રોજેક્ટ માલિક માટે રજૂઆત કરેલ હોઇ શકે છે કે જે પ્રોજેક્ટ ને દૂર કરવામાં આવેલ છે." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "The Fedora Project is maintained and driven by the community and sponsored by Red Hat. This is a community maintained site. Red Hat is not responsible for content." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "પ્રાયોજકો" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "કાયદેસર" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Trademark Guidelines" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "સંચરણ" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "ઘર" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "વિશે" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "નવો પ્રોજેક્ટ" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "વેબસાઇટ ભાષા" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "હોસ્ટીંગ પ્રાયોજક" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "ServerBeach દ્દારા પ્રાયોજિત કરેલ છે" diff --git a/fedorahosted.org/po/he.po b/fedorahosted.org/po/he.po deleted file mode 100644 index 592c6e1..0000000 --- a/fedorahosted.org/po/he.po +++ /dev/null @@ -1,433 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# neb , 2011 -# Yaron Shahrabani , 2011-2012 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew (http://www.transifex.com/projects/p/fedora-web/language/he/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "מיזמים מתארחים — אירוח פדורה" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "אין מיזם כזה." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "המיזם המבוקש אינו קיים באירוח פדורה." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "על אודות — אירוח פדורה" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "על אודות אירוח פדורה" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "אירוח פדורה הנה הדרך הממומנת על ידי מיזם פדורה עבור מפתחים המעוניינים לארח את הקוד שלהם ולשתף אחרים ברשת. אנו מציעים לכול מיזם שליטה על קוד המקור באמצעות git, Mercurial, bzr ואחרות, כמו כן מערכת לניהול דיווחי באגים וויקי באמצעות Trac." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "המיזם החדש שלך נמצא במרחק של כרטיס עבודה." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "שאלות נפוצות — אירוח פדורה" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "שאלות נפוצות" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "מה זה אירוח פדורה?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "אירוח פדורה הוא מיזם הממומן על ידי מיזם פדורה כדי להרשות למתכנתים המתחזקים קודים לארח את הקוד שלהם ולשתף אותו דרך האינטרנט." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "כיצד ניתן לבקש מיזם חדש?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "יש להגיש כרטיס עבודה לצוות התשתית של פדורה." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "לאן ניתן לפנות לעזרה?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "הדרכים הטובה ביותר לקבל עזרה הן להצטרף לערוץ #fedora-admin באמצעות IRC בשרת Freenode או oלפתוח כרטיס מול צוות התשתית של פדורה." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "כיצד אוכל לקבל חשבון באירוח פדורה?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "החשבון שלך במיזם פדורה עובד גם עם אירוח פדורה. עליך פשוט להגיש בקשה לחשבון במיזם פדורה אם לא עשית זאת עד כה. יש לשים לב שעליך לחתום על הסכם תרומה לפדורה עם מיזם פדורה כדי לתרום קוד." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "כיצד אוכל לפרסם ארכיוני הפצות (tgz, zip וכו׳) עבור המיזם שלי?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "באפשרותך ליצור את הארכיון בתחנת העבודה שלך ולהריץ את הפקודה scp myProject-0.1.tar.gz fedorahosted.org:<שם המיזם>. הארכיון ימוקם בכתובת https://fedorahosted.org/releases/" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "איך אוכל למחוק משהו שהעליתי לארכיון שלי?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "האם יש דרך נוחה יותר לגשת להפצות מאשר דרך הנתיב /releases/m/y/המיזם_שלי?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "יש. https://fedorahosted.org/released/המיזם_שלי תפנה לאותו המקום. החיסרון בכך הוא שעליך לדעת את שם המיזם ושלא ניתן לעיין במיזמים אחרים." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "הרגע קיבלתי מאגר GIT חדש, כיצד ניתן לבצע push/pull?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "לפני שלמישהו תינתן האפשרות לבצע clone/push למאגר החדש יש לבצע master push באמצעות הפקודה (ממאגר ה־git המקומי שלך): git push ssh://git.fedorahosted.org/git/המיזם_שלך.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "כיצד אוכל לקבל הרשאות לבצע commit למיזם?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "עליך להגיש בקשה לקבוצת ה־commit של המיזם, ששמה אמור להיות <scm><project>, לדוגמה: עבור מיזם desktop-effects, יש להגיש בקשה לקבוצת gitdesktop-effects" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "בזמן שאני ממתין ליצירת המאגר שלי, אוכל לעבוד על הקוד במקום אחר?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "כמובן. כדאי לעיין במסמך שבכתובת http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org להנחיות כיצד להגדיר מאגר זמני בשטח שניתן לך תחת fedorapeople.org." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "מדוע hg מודיע לי כי המאגר שלי אינו קיים למרות שידוע לי כי הכתובת נכונה?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "לרוע המזל hg לא משתמשת בקישורים אמתיים. עליך להשתמש ב־ \"/\" כמפריד בין שם המארח והנתיב ו־\"/\" בתור נתיב השורש של מערכת הקבצים. לדוגמה, אם תתבצע גישה אל המאגר לצורך authconfig עליך להשתמש בפקודה \"hg clone ssh://hg.fedorahosted.org//hg/authconfig\"" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "האם מותר לי להציע קבצים בינריים שהידרתי מראש דרך אירוח פדורה?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "ניתן, כל עוד עמדת בתנאים הבאים:
      1. מיזם הקוד חייב להיות זמין ברישיון תכנה חופשית התואם לפדורה.
      2. עליך להפוך את קוד המקור בו השתמש לבניית הקובץ הבינרי לזמין, או לפחות ליצור קובץ tarball המכיל את הקוד בלבד.
      3. עליך לספק הנחיות ברורות כיצד לבנות את התכנה.
      " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "המיזמים הזמינים" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "הצגת כל המיזמים" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "תיאור המיזם" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "דף אינטרנט" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "כתובת אלמונית" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "כתובת מאומתת" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "יש ללחוץ עם מקש ימני ולהעתיק את הכתובת האלמונית לגישה למערכת ניהול הגרסאות ללוח הגזירים שלך" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "יש ללחוץ עם מקש ימני ולהעתיק את הכתובת המאומתת לגישה למערכת ניהול הגרסאות ללוח הגזירים שלך" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "לא רשומים מיזמים בקבוצה זו" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "בקשת מיזם חדש — אירוח פדורה" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "בקשת מיזם חדש" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "יש למלא בקשות למיזמים חדשים באמצעות כרטיס במהדורת Trac של תשתית פדורה. נא לוודא כי נכנסת לחשבונך בטרם ניסיון ליצירת כרטיס." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "נא למלא את השדות באופן הבא:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr ">שם המיזם<" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "minor אלא אם כן בקשה זו חשובה. אם אינך בטוח האם זוהי בקשה חשובה או לא יש לכוון שדה זה ל־minor." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "יש להשתמש בתבנית הבאה בתור התיאור המלא של הכרטיס:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "תנאי שימוש — אירוח פדורה" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "תנאי שימוש" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "צוות תשתית מיזם פדורה מספק שירותים המתארחים אצל פדורה מתוך רצון טוב. רבים מהאנשים המתחזקים את אירוח פדורה הם מתנדבים. זמני התגובה לבקשות מיזמים חדשים נע בדרך כלל בין שעה ל־3 ימים. הפסקות פעילות, אם הן קורות, מטופלות בעדיפות גבוהה הרבה יותר." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "מיזם פדורה שומר לעצמו את הזכות להסיר כל מיזם מהמערכת שאינו עומד בתנאים הבאים:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "הקוד הנמצא במיזם אינו תואם לדרישות הרישיון שלנו" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "לא חלו שינויים משמעותיים לפחות לא בששת (6) החודשים האחרונים" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "אנו תמיד נעשה כמיטב יכולתנו ליצור קשר עם מתכנתים שאינם פעילים עוד כדי לוודא שהקוד, מסד נתוני ה־Trac וכל הנתונים הרלוונטיים נשארים בהישג ושהם נגישים לבעל המיזם במקרה של הסרת מיזם." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "מיזם פדורה מתוחזק ומונחה על ידי קהילת פדורה וממומן על ידי Red Hat. אתר זה מתוחזק על ידי הקהילה. Red Hat אינה אחראית לתוכנו." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "נותני חסות" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "מסמכים משפטיים" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "הנחיות לשימוש בסימני המסחר" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "פדורה" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "ניווט" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "דף הבית" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "על אודות" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "מיזם חדש" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "שפת האתר" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "נותן החסות לאחסון" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "בחסות ServerBeach" diff --git a/fedorahosted.org/po/hi.po b/fedorahosted.org/po/hi.po deleted file mode 100644 index 22de1d6..0000000 --- a/fedorahosted.org/po/hi.po +++ /dev/null @@ -1,433 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# neb , 2011 -# Tarun , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Hindi (http://www.transifex.com/projects/p/fedora-web/language/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "होस्टेड प्रोजेक्ट - Fedora होस्टेड" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "कोई ऐसा प्रोजेक्ट नहीं." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "निवेदित प्रोजेक्ट Fedora होस्टेड पर स्थित नहीं है." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "परिचय - Fedora होस्टेड" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Fedora होस्टेड का परिचय" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora होस्टेड एक Fedora प्रोजेक्ट-है डेवलेपरों के लिए प्रायोजित रूप से है ताकि वे कोड लिख सकें व साथ मिलकर काम ऑनलाइन कर सकें. हम हर प्रोजेक्ट को स्रोत कंट्रोल देते हैं git, Mercurial, bzr, और दूसरे से होकर, साथ ही साथ एक बग ट्रैकर और विकी और ट्रैक से होकर." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "आपका नया प्रोजेक्ट work ticket की दूरी पर है." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "सामान्य प्रश्न - Fedora होस्टेड" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "सामान्य प्रश्न" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Fedora होस्टेड क्या है?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora होस्टेड एक प्रोजेक्ट है जो Fedora प्रोजेक्ट के द्वारा अपस्ट्रीम डेवलोपरों को उनके कोड को होस्ट करने के लिए और ऑनलाइन मिलकर काम करने के लिए प्रायोजित है." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "कैसे मैं एक नए प्रोजेक्ट के लिए आग्रह कर सकता हूँ?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "एक work ticket Fedora आधारभूत ढाँचा दल के साथ फाइल करें." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "कहाँ मैं मदद के लिए जा सकता हूँ?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "मदद पाने का सबसे अच्छा तरीका है #fedora-admin IRC channel on Freenode में शामिल होना है या Fedora आधारभूत ढाँचा दल के लिए टिकट खोलें है." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "कैसे मैं एक Fedora होस्टेड खाता पा सकता हूँ?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "आपका सामान्य Fedora प्रोजेक्ट खाता Fedora होस्टेड के साथ काम करता है. बस एक Fedora प्रोजेक्ट खाता के लिए आवेदन करें यदि आपके पास पहले से नहीं है. ध्यान रखें कि आपको एक योगदानकर्ता लाइसेंस मसौदा पर Fedora प्रोजेक्ट के साथ हस्ताक्षर करना है ताकि आप कोड का योगदान कर सकें." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "कैसे मैं अभिलेख रिलीज (tgz, zip, आदि) को अपने प्रोजेक्ट के लिए प्रकाशित कर सकता हूँ?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "अपने वर्क स्टेशन पर अभिलेख बनाएँ और scp myProject-0.1.tar.gz fedorahosted.org:<Project Name> चलाएँ. अभिलेख को https://fedorahosted.org/releases/ के अंतर्गत अवस्थित किया जाएगा." - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "क्या रिलीज की पहुँच का कोई अधिक सुविधाजनक तरीका है /releases/m/y/myproject पथ के बनिस्पत?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "वह है. https://fedorahosted.org/released/myproject समान स्थान पर जाएगा. इसकी हानि यह है कि आपको प्रोजेक्ट नाम जरूर जानना चाहिए और प्रोजेक्ट के लिए यह ब्राउज नहीं कर सकता है." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "मैंने अभी एक नया git रिपॉजिटरी पाया है, कैसे मैं पुश/पुल कर सकता हूँ?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "किसी के द्वारा नए रिपॉजिटरी को क्लोन/पुश करने के पहले एक मास्टर पुश कमांड के साथ जरूर किया जाना चाहिए (आपके स्थानीय git रेपो के साथ): git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "कैसे मैं किसी प्रोजेक्ट में कमिट करने की अनुमति पा सकता हूँ?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "आपको प्रोजेक्ट के कमिट समूह के लिए खाता के लिए आवेदन करना चाहिए जो <scm><project> होना चाहिए, उदाहरण के लिए desktop-effects प्रोजेक्ट के लिए, gitdesktop-effects समूह के लिए आवेदन करें." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "जब तक मैं अपना रिपोजिटरी बनाने के लिए प्रतीक्षारत हूँ, क्या मैं अपने कोड को कहीं काम कर सकता हूँ?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "वाकई. http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org देखें अपने fedorapeople.org स्थान पर अस्थायी रिपोजिटरी के सेटअप के निर्देश के लिए देखें." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "क्यों hg मुझसे कहता है कि रिपोजिटरी मौजूद नहीं है हालांकि मैं जानता हूँ कि मेरे पास सही URL है?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "क्या मैं Fedora होस्टेड पर पूर्व संकलित binaries प्रदान कर सकता हूँ?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "उपलब्ध प्रोजेक्ट" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "सभी प्रोजेक्ट दिखाएँ" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "प्रोजेक्ट विवरण" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "वेब" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "Anon URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "Auth URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "दाहिना क्लिक करें और बेनामी VCS URI को अपने क्लिपबोर्ड में नक़ल करें" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "दाहिना क्लिक करें और अपने क्लिपबोर्ड से प्राधिकृत VCS URI को नक़ल करें" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "इस समूह में कोई प्रोजेक्ट पंजीकृत नहीं है" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "एक नए प्रोजेक्ट के लिए आग्रह भेजें - Fedora होस्टेड" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "एक नए प्रोजेक्ट के लिए आग्रह भेजें" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "नया प्रोजेक्ट आग्रह को Fedora आधारभूत ढाँचा ट्रैक इंस्टांस के द्वारा जरूर फाइल किया जाना चाहिए. कोई टिकट बनाने के पहले लॉगिन होना याद रखें." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "इस क्षेत्र में ऐसे भरें:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<प्रोजेक्ट का नाम>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "minor जबतक कि यह तत्काल आग्रह नहीं है. यदि आप अनिश्चित हैं कि आग्रह जरूरी है या नहीं तो इस क्षेत्र को minor ही छोड़ें." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "टिकट के पूर्ण विवरण के लिए निम्नलिखित का प्रयोग करें:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "प्रयोग की शर्तें - Fedora होस्टेड" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "प्रयोग की शर्तें" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "Fedora प्रोजेक्ट आधारभूत ढाँचा दल Fedora होस्टेड सेवाएँ यथासंभव क्षमतानुसार देने की कोशिश करता है. कई लोग यहाँ स्वयंसेवक हैं. किसी नए प्रोजेक्ट के लिए अनुक्रिया समय प्रारूपकीय रूप से 1 घंटे और 3 दिन तक रहता है. आउटेज आदि यदि घटित होता है तो उसे अधिक प्राथमिकता के साथ किया जाता है." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "Fedora प्रोजेक्ट किसी भी प्रोजेक्ट को अपने सिस्टम से हटाने का अधिकार रखता है जो निम्नलिखित मापदंडों का पालन नहीं करता है:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "प्रोजेक्ट में शामिल कोड हमारे लाइसेंस जरूरत को पूरा नहीं करता है" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "कोई महत्वपूर्ण बदलाव यदि कम से कम छह (6) महीने तक नहीं किया गया हो" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "हम हमेशा यथासंभव गुम डेवलेपरों से संपर्क की कोशिश करते हैं और सुनिश्चित करते हैं कि कोड, Trac डेटाबेस, और कोई संबंधित डेटा रखा जाता है ताकि इसे प्रोजेक्ट के स्वामी को दिया जा सके यदि प्रोजेक्ट हटाया जाता है." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "©2012 Red Hat, Inc. और अन्य| कृपया अपने टिप्पणी और सुधार एस पर भेजे संचार प्रौद्योगिकी समूह." - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "फेडोरा प्रोजेक्ट समुदाय के द्वारा अनुरक्षित और निर्देशित है और Red Hat के द्वारा प्रायोजित. यह समुदाय के द्वारा अनुरक्षित साइट है. Red Hat इसकी सामग्री के लिए उत्तरदायी नहीं है." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "प्रायोजक" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "विधिक" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "ट्रेडमार्क गाइडलाइन" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "संचरण" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "घर" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "परिचय" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "नया प्रोजेक्ट" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "वेबसाइट भाषा" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "होस्टिंग प्रायोजक" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "सर्वरबीच प्रायोजित" diff --git a/fedorahosted.org/po/hu.po b/fedorahosted.org/po/hu.po deleted file mode 100644 index eadf9c9..0000000 --- a/fedorahosted.org/po/hu.po +++ /dev/null @@ -1,436 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Gabor Mako , 2012 -# Máté Gelei , 2011 -# neb , 2011 -# Peter Borsa , 2011-2012 -# Zoltan Hoppár , 2012-2013 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Zoltan Hoppár \n" -"Language-Team: Hungarian (http://www.transifex.com/projects/p/fedora-web/language/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "Helyi Projektek - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "Nincs ilyen projekt." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "A kért projekt nem létezik a Fedora Hosted-ben." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Névjegy - Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Fedora Hosted névjegye" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Hosted szolgáltatást a Fedora Projekt támogatja, hogy a fejlesztők kódjukat itt tárolhassák és e hely segítségével együttműködhessenek. Itt minden projekt számára Trac útján biztosított egy verziókezelő (mint a git, Mercurial, bzr, stb.) illetve egy hibakezelő rendszer és egy wiki." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "A projektje csak egy munka jegy távolságra van." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "Fedora Hosted GYIK" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Gyakran ismételt kérdések" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Mi a Fedora Hosted?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora Hosted szolgáltatást a a Fedora Projekt támogatja, hogy biztosítsa a forrás fejlesztőknek a kódjuk elhelyezését illetve a hálózatos együttműködést." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "Hogyan lehet kérni egy új projektet?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Nyisson egy Munkajegyet Fedora Infrastruktúra csapat számára." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "Hova fordulhat segítségért?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "A legjobb módja, hogy segítséget kapjon az, hogy csatlakozik a Freenode #fedora-admin IRC csatornájához vagy, nyit egy jegyet a Fedora Infrastruktúra csapatnál." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Hogyan kaphat egy Fedora Hosted felhasználói azonosítót?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "Fedora Hosted rendes Fedora Projekt felhasználói azonosítóval működik. Egyszerű jelentkezés kell egy Fedora Projekt felhasználói azonosítóért, ha még ez nem történt volna még meg. Vegye észre, hogy kódokkal történő hozzájáruláshoz alá kell írnia egy Hozzájáruló Engedély Szerződést a Fedora Projekttel!" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "Hogyan tudom beállítani a git szolgáltatást, amivel továbbítani tudok a saját Fedora Hosted tárolómba?" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "Készítsen egy másolatot a git clone paranccsal a tárolójáról. Ezután a tárolója mappájában a rendszereden szerkessze meg a .git/config under the [remote \"origin\"] szekciót, hogy követhesse a következő mintát az URL beállításához:" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "url = ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "felhasználói név" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahosted.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "projekt név" - -#: data/content/faq.html:22 -msgid ".git" -msgstr ".git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "Hol:" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "a FAS felhasználói neve." - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "a fedorahosted.org projekt neve amely megtalálható a fedorahosted.org fő oldalán." - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "Hogyan publikálhat archív kiadásokat (tgz, zip, stb.) a saját projektjéhez?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "Archíválás után a saját munkaállomáson futtatni kell az scp myProject-0.1.tar.gz fedorahosted.org:<Project név> parancsot. Az archívum a https://fedorahosted.org/releases/ helyre kerül." - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "Hogy törölhetem az archívumomba feltöltött dolgokat?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "Kérem töltsön ki egy jegyet a fedora-infrastructure trac szolgáltatásában, ahol listázza ki pontosan a fájlokat amelyeket eltávolítana, és az okát is." - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "Van kényelmesebb módja a kiadások elérésének, mint a /kiadas/e/n/projektem út??" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "Van. https://fedorahosted.org/released/myproject ugyanarra a helyre megy. Ennek a hátránya persze az, hogy tudnia kell a projekt nevét, és nem böngészheti a projekteket." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "Épp most lett egy új git tárolóm. Hogyan tudok küldeni push vagy pull parancsot?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "Mielőtt bárki clone vagy push parancsot küldhetne egy új tárolóba, egy master push parancsot kell végrehajtani, a következő paranccsal (a helyi git tárolójából): git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "Hogy kaphatok engedélyt egy projekt beküldéséhez?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "Jelentkezzen a projekt karbantartóinak csoportjába, melyek neve az formát követi. Pl. a gitdesktop-effects például a desktop-effects projekthez tartozó csoport." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "Amíg várok a tárolóm létrehozására, dolgozhatok a kódomon máshol?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "Természetesen. Látogasson el a http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org helyre tájékoztatásért arról, hogyan állíthat fel egy ideiglenes tárolót a saját fedorapeople.org tárhelyén." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "Miért állítja a hg, hogy nem létezik a tároló, még akkor is, ha biztosan jó URL-t adtam meg?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "Sajnos a hg nem igazi URL-eket használ. A \"/\" jelet kell használni elválasztóként a kiszolgálónév és az útvonal között, és még egy \"/\"-t a gyökérkönyvtár megfelelőjeként. Például az authconfig eléréséhez használja a \"hg clone ssh://hg.fedorahosted.org//hg/authconfig\" parancsot" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "Felajánlhatok előrefordított binárisokat a Fedora Hosted-en?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "A következő feltételek teljesülése esetén lehetséges:
      1. A kód projekt a Free Software licensznek feleljen meg ami a Fedorában is érvényes.
      2. Forráskód is szükséges amelyből a binárisok készülnek, nem ugyanazon tar-állományban, hanem külön tőle - vagy legalább \"csak forrás\" tar-állománnyal.
      3. Ezenfelül egyértelmű instrukciókat kell adni a szoftver fordításához.
      " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "Elérhető projektek" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "Minden projektet mutatása" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "Projekt leírás" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "Web" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "Anon URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "Hitl URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "Jobb-klikk és másolás, hogy a névtelen VCS URI a vágólapra kerüljön" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "Jobb-klikk és másolás, hogy a hiteles VCS URI a vágólapra kerüljön" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "Nincs e csoportba bejegyzett projekt" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "Új projekt kérelem - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "Új projekt kérelem" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "Új projekt kéréseket egy jeggyel kell iktatni a Fedora Infrastruktúra Trac szolgáltatásban. Jelentkezzen be, mielőtt megpróbál jegyet létrehozni!" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "Töltse ki a mezőket a következőképpen:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<projekt neve>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "minor hacsak nem sürgős a kérés. Ha nem biztos, hogy sürgős, akkor maradjon minor." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "A következő sablon használható a jegy teljes leírására:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "Felhasználási feltételek - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "Felhasználási feltételek" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "A Fedora Projekt Infrastruktúra csapat biztosítja a Fedora Hosted szolgáltatásait a legjobb teljesíthető alapon. Sok ember, aki igazgatja, önkéntes. A válaszidő egy új projekt kérelemre jellemzően 1 óra és 3 nap között van. A kimaradásokat, ha történnek, sokkal nagyobb prioritással kezelik." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "A Fedora Projekt fenntartja a jogot, hogy bármely projektet eltávolítsa a rendszeréből, ami nem felel meg a következő kritériumoknak:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "A projektben meglévő kód nem felel meg az engedély követelményeinknek" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "Nem volt lényeges változás beküldve vagy megtéve legalább hat (6) hónapig" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "Mi mindig mindent megteszünk, hogy elérjük a hiányzó fejlesztőket és megbizonyosodjunk arról, hogy a kód, Trac adatbázisok, és bármely releváns adat kéznél van, hogy a projekt tulajdonosának előadható legyen, ha a projektet eltávolítják." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© 2012 Red Hat, Inc. és mások. Kérjük küldjenek bármilyen megjegyzést vagy javítási javaslatot a webmester csapatnak." - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "A Fedora Projektet a közösség tartja fent és vezeti a Red Hat támogatásával. Ez egy közösségi hely. Red Hat nem felelős a tartalomért." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Támogatók" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Jogi" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Védjegy útmutató" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Navigáció" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Főoldal" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "Névjegy" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "Új projekt" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Webhely nyelv" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Tárhey támogató" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "ServerBeach támogatásával" diff --git a/fedorahosted.org/po/ia.po b/fedorahosted.org/po/ia.po deleted file mode 100644 index bf26602..0000000 --- a/fedorahosted.org/po/ia.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2011-03-04 00:29+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Interlingua (http://www.transifex.com/projects/p/fedora-web/language/ia/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Patronos" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Initio" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "Re" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/id.po b/fedorahosted.org/po/id.po deleted file mode 100644 index 455bdd3..0000000 --- a/fedorahosted.org/po/id.po +++ /dev/null @@ -1,434 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# eko ikhyar , 2013 -# Muhammad Panji , 2012 -# neb , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: eko ikhyar \n" -"Language-Team: Indonesian (http://www.transifex.com/projects/p/fedora-web/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "Proyek Hosted Projects - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "Tidak ada proyek tersebut." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "Proyek yang diminta tidak ada di Fedora Hosted." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Ihwal - Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Mengenai Fedora Hosted" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Hosted adalah Proyek Fedora-jalan bagi pengembang untuk host kode mereka dan berkolaborasi secara online yang disponsori. Kami menyediakan setiap proyek dengan kontrol sumber melalui git, Mercurial, bzr, dan lain-lain, serta bug tracker dan wiki via Trac." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "Proyek baru anda hanya satu tiket kerja lagi." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "FAQ - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Pertanyaan yang Sering Diajukan" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Apa itu Fedora Hosted?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora Hosted adalah proyek yang di sponsori oleh Proyek Fedora untuk memungkinkan upstream pengembang untuk meng host kode mereka dan berkolaborasi secara online." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "Bagaimana saya bisa meminta proyek baru?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Sebuah berkas tiket kerja dengan tim Infrastruktur Fedora." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "Kemana saya bisa mencari bantuan?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "Cara terbaik untuk mendapatkan bantuan adalah untuk bergabung dengan #fedora-admin Kanal IRC pada Freenode atau to buka sebuah tiket dengan tim infrastruktur Fedora." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Bagaimana saya bisa mendapat akun Fedora Hosted?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "Normalnya akun Proyek Fedora Anda bekerja dengan Fedora Hosted. Cukup apply untuk akun Proyek Fedorajika Anda belum memilikinya. Perlu dicatat bahwa Anda harus menandatangani Perjanjian Lisensi Kontributor dengan Proyek Fedora dalam rangka memberikan kontribusi kode." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "Bagaimana saya bisa mempublikasikan rilis arsip (tgz, zip, dll) untuk proyek saya?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "Buat arsip pada workstation dan jalankan scp myProject-0.1.tar.gz fedorahosted.org:<Project Name>. Arsip tersebut akan terletak di bawah https://fedorahosted.org/releases/" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "Apakah ada cara yang lebih mudah untuk mengakses rilis dari path /releases/m/y/myproject?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "Saya baru saja mendapat repositori git baru, bagaimana saya bisa melakukan push/pull?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "Proyek yang tersedia" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "Tampilkan seluruh proyek" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "Deskripsi Proyek" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "Web" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© 2012 Red Hat, Inc. dan lainnya. Silakan kirim komentar atau koreksi ke tim situs web." - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "Proyek Fedora dikelola dan didorong oleh komunitas dan disponsori oleh Red hat. Ini merupakan situs yang dikelola oleh komunitas. Red Hat tidak bertanggung jawab untuk konten yang ada." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Para Sponsor" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Legal" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Panduan Merk Dagang" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Navigasi" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Beranda" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "Tentang" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Bahasa Situs Web" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Sponsor Hosting" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/is.po b/fedorahosted.org/po/is.po deleted file mode 100644 index b4443b9..0000000 --- a/fedorahosted.org/po/is.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Icelandic (http://www.transifex.com/projects/p/fedora-web/language/is/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: is\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Algengar spurningar FAQ" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "Fedora verkefnið er drifið áfram og viðhaldið af samfélaginu auk þess að vera stutt af Red Hat. Þessi vefur er á vegum samfélagsins. Red Hat er ekki ábyrgt fyrir efni sem hér er að finna." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Stuðningsaðilar" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Leiðbeiningar varðandi vörumerkið" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Flakk" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Heim" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Tungumál vefsíðu" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Stuðningsaðili vefhýsingar" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "Stutt af ServerBeach" diff --git a/fedorahosted.org/po/it.po b/fedorahosted.org/po/it.po deleted file mode 100644 index e05db1b..0000000 --- a/fedorahosted.org/po/it.po +++ /dev/null @@ -1,435 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Antonio Trande , 2011 -# Francesco D'Aluisio , 2013 -# Francesco Tombolini , 2012 -# neb , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Francesco D'Aluisio \n" -"Language-Team: Italian (http://www.transifex.com/projects/p/fedora-web/language/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "Hosted Projects - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "Progetto non presente." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "Il progetto richiesto non esiste su Fedora Hosted." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Informazioni su - Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Informazioni su Fedora Hosted" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Hosted è una modalità di sponsorizzazione di Fedora Project per consentire agli sviluppatori di ospitare i loro progetti il loro codice e collaborare online. Noi forniamo a ciascun progetto sia il controllo sui sorgenti via git, Mercurial, bzr, ed altri, sia un bug tracker ed una wiki via Trac." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "Il tuo nuovo progetto dista solo una segnalazione." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "FAQ - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Domande più frequenti (FAQ)" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Cos'è Fedora Hosted?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora Hosted è un progetto sponsorizzato dal Fedora Project per consentire agli sviluppatori di ospitare il loro codice e collaborare online." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "Come posso richiedere un nuovo progetto?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Invia una segnalazione al team Fedora Infrastructure." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "Dove posso cercare aiuto?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "Il miglior modo di ottenere aiuto è partecipare alle discussioni sul canale IRC #fedora-admin su Freenode o aprire un ticket al team Fedora Infrastructure." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Come posso ottenere un account Fedora Hosted?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "Il normale account Fedora Project funziona anche con Fedora Hosted. Aderisci semplicemente ad un account Fedora Project, se non lo hai già fatto. Notare che è necessario firmare la Contributor License Agreement al Fedora Project per poter contribuire con il codice." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "Come configuro git cosi posso fare push al mio repository Fedora Hosted?" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "Esegui un git clone del tuo repo. Poi, nella directory del tuo repo sul tuo sistema, edita .git/config sotto la sezione [remote \"origin\"] per seguire il seguente schema di URL:" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "url = ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "username" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahosted.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "projectname" - -#: data/content/faq.html:22 -msgid ".git" -msgstr ".git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "Dove:" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "è il tuo username Fedora Account System" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "è il nome del tuo progetto fedorahosted.org come mostrato nella lista del fedorahosted.org." - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "Come posso pubblicare le versioni sotto forma di archivio (tgz, zip, ecc) del mio progetto?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "Crea l'archivio sulla tua workstation ed esegui scp mioProgetto-0.1.tar.gz fedorahosted.org:<Nome Progetto>. L'archivio verrà copiato sotto https://fedorahosted.org/releases/" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "Come posso cancellare qualcosa che ho caricato nel mio archivio?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "Sei pregato di aprire un ticket sul trac del fedora-infrastructure elencando il file esatto che vuoi rimuovere e perché" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "C'è un modo più facile per accedere alla versione invece di usare il percorso /releases/m/y/myproject?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "C'è. https://fedorahosted.org/released/myproject andrà allo stesso indirizzo. Lo svantaggio è che bisogna conoscere prima il nome del progetto e non si può navigare tra i vari progetti." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "Ho appena ottenuto un nuovo repositorio git, come posso eseguire il push/pull?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "Prima che chiunque possa fare il clone/push del nuovo repositorio deve essere fatto un master push con il comando (dal tuo repositorio git locale): git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "Come posso ottenere i permessi per inviare un progetto?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "Devi iscriverti al gruppo commit del progetto, che dovrebbe essere <scm><project>, es. per il progetto desktop-effects, iscriviti al gruppo gitdesktop-effects." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "Mentre aspetto la creazione del mio repository, posso lavorare sul mio codice altrove?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "Certamente. Visita la pagina http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org per ottenere le istruzioni su come allestire un repository temporaneo nel tuo spazio fedorapeople.org" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "Perché hg mi dice che il repository non esiste anche se so di aver inserito l'URL corretto?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "Sfortunatamente hg non usa veri URL. Si usa \"/ \" come delimitatore tra hostname e percorso e un secondo \"/\" come radice del filesystem. Ad esempio, se si accede al repository per l'authconfig è necessario usare \"hg clone ssh://hg.fedorahosted.org//hg/authconfig\"" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "Posso offrire binari precompilati su Fedora Hosted?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "Potresti, se ti attieni alle seguenti condizioni:
      1. Il codice sorgente del progetto sarà disponibile sotto una licenza di software Libero appropriata per Fedora.
      2. il codice sorgente utilizzato per i binari dovrà essere disponibile, e non distribuito nel medesimo tarball, o come minimo reso disponibile come un tarball \"solo sorgente\".
      3. dovrà essere spiegato chiaramente come compilare il software.
      " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "Progetti disponibili" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "Mostra tutti i progetti" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "Descrizione progetto" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "Web" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "URL anon" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "URL auth" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "Fai clicck con il tasto destro del mouse e copia l'URI anonimo del VCS nella clipboard" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "Fai clicck con il tasto destro del mouse e copia l'URI autorizzato del VCS nella clipboard" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "Nessun progetto registrato in questo gruppo" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "Richiedi un nuovo progetto - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "Richiedi un nuovo progetto" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "Le nuove richieste di progetto debbono essere inviate mediante un ticket nell'istanza Trac del Fedora Infrastructure. Assicurati di aver eseguito il login prima di creare il ticket." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "Riempi i campi come segue:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<nome del progetto>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "minor a meno che questa non sia una richiesta urgente. Se non sei certo dell'urgenza della richiesta, imposta questo campo su minor." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "Usa il seguente modello per la descrizione completa del ticket:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "Termini per l'uso - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "Termini per l'uso" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "Il team Fedora Project Infrastructure fornisce servizi Fedora Hosted su base \"best-effort\". Molte delle persone che l'amministrano sono volontari. I tempi di risposta per le richieste di nuovi progetti sono tipicamente fra 1 ora e 3 giorni. Le interruzioni, se sopraggiungessero, sono gestite con una priorità notevolmente più alta." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "Il Fedora Project si riserva il diritto di rimuovere qualsiasi progetto dal proprio sistema nei casi in cui non vengano seguiti i seguenti criteri:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "Il codice contenuto nel progetto non rispetta i requisiti sulle licenze" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "Nessun cambiamento significativo è stato inviato o applicato per almeno sei (6) mesi" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "Facciamo sempre il massimo per contattare gli sviluppatori non più presenti ed assicurare che il codice, i database Trac, e qualsiasi altro dato rilevante sia disponibile affinché possa essere riconsegnato al proprietario del progetto nell'eventualità che questo venga rimosso." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© 2012 Red Hat, Inc. and others. Cortesemente inviare qualsiasi commento o correzione al team websites." - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "Il Fedora Project è mantenuto e guidato dalla comunità e sponsorizzato da Red Hat. Questo è un sito mantenuto dalla comunità. Red Hat non è responsabile per i contenuti." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Sponsor" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Note legali" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Linee guida sui marchi" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Navigazione" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Home" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "Informazioni" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "Nuovo progetto" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Linguaggio del sito" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Hosting Sponsor" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "Sponsorizzato da ServerBeach" diff --git a/fedorahosted.org/po/ja.po b/fedorahosted.org/po/ja.po deleted file mode 100644 index 0c4fcbe..0000000 --- a/fedorahosted.org/po/ja.po +++ /dev/null @@ -1,434 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Hajime Taira , 2011 -# neb , 2011 -# Tomoyuki KATO , 2011, 2012 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Tomoyuki KATO \n" -"Language-Team: Japanese (http://www.transifex.com/projects/p/fedora-web/language/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "ホストされているプロジェクト - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "そのようなプロジェクトはありません。" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "リクエストされたプロジェクトはFedora Hostedに存在しません。" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Fedora Hostedについて - Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Fedora Hostedについて" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Hostedは、開発者がコードをホストしてオンラインでコラボレーションする、Fedora Projectがスポンサーする方法です。 各プロジェクトに対して、git, Mercurial, bzrなどによるソース管理や、Tracによるバグトラッカおよびwikiを提供します。" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "新しいプロジェクトはワークチケットで開始できます。" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "よくある質問(FAQ)- Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "よくある質問" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Fedora Hostedとは何ですか?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora HostedはFedora Projectがスポンサーするプロジェクトで、アップストリームの開発者がコードをホストしてオンラインで協力することが可能になります。" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "どのように新しいプロジェクトをリクエストしたらよいですか?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Fedoraインフラストラクチャチームに対してワークチケットを申請します。" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "ヘルプが必要な場合はどこにアクセスすればよいですか?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "ヘルプが必要な場合、Freenode#fedora-admin IRCチャンネルに参加するか、Fedoraインフラストラクチャチームにチケットを発行するとよいでしょう。" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "どのようにFedora Hostedアカウントを取得できますか?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "通常のFedora ProjectアカウントでFedora Hostedを使用できます。 Fedora Projectのアカウントをお持ちでない場合は、申請してください。 コードを提供するには、Fedora Projectのコントリビュータライセンス契約 (Contributor License Agreement) に署名する必要があります。" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "Fedora Hosted リポジトリにプッシュできるようにするために、どのように Git を設定しますか?" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "リポジトリの Git クローンを実行します。そして、お使いのシステムにある、リポジトリのディレクトリーにおいて、.git/config を編集します。[remote \"origin\"] セクションの下に、以下の URL 設定のパターンを書きます: " - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "url = ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "ユーザー名" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahosted.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "プロジェクト名" - -#: data/content/faq.html:22 -msgid ".git" -msgstr ".git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "箇所:" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr " あなたの Fedora Account System ユーザー名です。" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr " fedorahosted.org のフロントに一覧化されている、あなたなの fedorahosted.org プロジェクトの名前です。" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "自分のプロジェクトのアーカイブリリース(tgz、zip など)を公開するにはどうしたらよいですか?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "ご自分のワークステーションでアーカイブを作成し、scp myProject-0.1.tar.gz fedorahosted.org:<Project Name>を実行します。アーカイブはhttps://fedorahosted.org/releases/以下に置かれます。" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "どのように自分のアーカイブにアップロードしたものを削除できますか?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "あなたが削除したい正確なファイルとその理由を一覧にして、fedora-infrastructure trac にチケットを提出してください。" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "パス/releases/m/y/myproject以外に、簡単にリリースへとアクセスできる方法はありますか?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "あります。https://fedorahosted.org/released/myproject でも同じ場所にアクセスできます。プロジェクト名を認識していなければならず、プロジェクトのブラウズはできません。" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "新しい git レポジトリを git push または git pull する方法は?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "新しいレポジトリを git clone または git push できるようにするには、最初にコマンド git push ssh://git.fedorahosted.org/git/yourproject.git/ master を実行して (ローカル git レポジトリより) マスタープッシュを完了しなければなりません。" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "プロジェクトへのコミット権はどのように取得するのですか?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "プロジェクトのコミットグループに 参加申請 しましょう。コミットグループ名は <scm><project> のような形をしています(例: desktop-effects プロジェクトの場合 gitdesktop-effects グループ)。" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "レポジトリが作成されるのを待つ間に、別の場所でコードの作業を行ってもよいですか?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "もちろんです。 ご自分の fedorapeople.org スペースに一時的なレポジトリを設定する方法についての説明は、http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org をご覧ください。" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "正しい URL を使っているのにも関わらず、なぜ hg はレポジトリが存在しないと応答するのでしょうか?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "残念ながら、hgは本当のURLを使いません。ホスト名とパスとの間の区切りとして\"/\"を、ファイルシステムのパスのルートとして二つ目の\"/\"を使わなければいけません。たとえば、もしauthconfigのリポジトリにアクセスしているならば、\"hg clone ssh://hg.fedorahosted.org//hg/authconfig\"を使う必要があります。" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "Fedora Hosted にコンパイル済みのバイナリファイルを提供できますか?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "以下の条件を満たせば可能です:
      1. コードプロジェクトが Fedora にとって適切なフリーソフトウェアライセンスの元で利用可能であること。
      2. バイナリファイルを作成するのに用いたソースコードを、バイナリに含めず、最低限ソースのみの tarball にて利用可能にし、配布すること。
      3. ソフトウェアのビルドに関する明確な説明がなされていること。
      " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "有効なプロジェクト" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "全てのプロジェクトを表示" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "プロジェクトについての説明" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "ウェブ" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "匿名 URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "認証 URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "右クリックで匿名 VCS URI をクリップボードにコピー" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "右クリックで公認 VCS URI をクリップボードにコピー" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "このプロジェクトに登録されているグループがありません" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "新規プロジェクトのリクエスト - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "新規プロジェクトのリクエスト" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "新規プロジェクトのリクエストは、 Fedora インフラストラクチャ Trac インスタンスのチケットより申請します。 チケットを作成する前にログインしてください。" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "次のようにフィールドを記入します。" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<プロジェクト名>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "緊急のリクエスト以外は minor を指定します。リクエストの緊急性が分からない場合は、 minor を設定してください。" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "チケットの詳細は以下のテンプレートを使用します。" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "利用規約 - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "利用規約" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "Fedora Project インフラストラクチャチームは、最善の努力ベースで Fedora Hosted サービスを提供します。 Fedora Hosted は多くのボランティアによって管理されています。 新規プロジェクトのリクエストに対して、通常 1 時間から 3 日ほどで返答があります。 万が一 Fedora Hosted が停止した場合は、停止に対する対応の方がはるかに優先度が高くなります。" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "Fedora Project は以下の基準に合致しないプロジェクトをシステムから削除する権利を留保します。" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "プロジェクトに含まれるコードがライセンス要件に合致しない" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "6 ヶ月以上有意な変更がコミットまたは適応されていない" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "プロジェクトが削除される場合、最大限に努力して不在の開発者へ連絡し、プロジェクト所有者に提供できるようコードや Trac データベース、その他関連するデータを最大の努力で保持するようにします。" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© 2012 Red Hat, Inc. and others. すべてのコメントや訂正は websites team までお送りください。" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "Fedora Project はコミュニティーによって維持および推進され、Red Hat がスポンサーになっています。このサイトはコミュニティーが維持管理しています。Red Hat は内容について責任を負いません。" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "スポンサー" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Legal" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "商標使用ガイドライン" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "ナビゲーション" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "ホーム" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "Fedora Hosted について" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "新しいプロジェクト" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Web サイトの言語" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "ホストスポンサー" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "スポンサー ServerBeach" diff --git a/fedorahosted.org/po/ka.po b/fedorahosted.org/po/ka.po deleted file mode 100644 index ab59523..0000000 --- a/fedorahosted.org/po/ka.po +++ /dev/null @@ -1,432 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# George Machitidze , 2013 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: George Machitidze \n" -"Language-Team: Georgian (http://www.transifex.com/projects/p/fedora-web/language/ka/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: ka\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "ასეთი პროექტი არ არსებობს." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "ფრიად აქტუალური კითხვები" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "სად შეიძლება მივიღო დახმარება?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "url = ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "მომხმარებელი" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahosted.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "პროექტისსახელი" - -#: data/content/faq.html:22 -msgid ".git" -msgstr ".git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "სად:" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "ხელმისაწვდომი პროექტები" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "ყველა პროექტის ჩვენება" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "პროექტის აღწერილობა" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "ვები" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "ანონიმური URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "ავტორიზაციის URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "ახალი პროექტის მოთხოვნა" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "შეავსეთ მოცემული ველები:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<პროექტის სახელი>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "გამოყენების პირობები" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© 2012 Red Hat, Inc. და სხვები. გთხოვთ გაუგზავნოთ თქვენი მოსაზრებები და შენიშვნები ჩვენს ვებგვერდების ჯგუფს." - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "პროექტ Fedora-ის მხარდაჭერა და მართვა ხდება საზოგადოების მიერ და მას ასპონსორებს Red Hat. ეს საზოგადოების მიერ შექმნილი გვერდია. Red Hat არ არის პასუხისმგებელი მის შინაარსზე." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "სპონსორები" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "იურიდიული" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "სავაჭრო ნიშნები" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "ნავიგაცია" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "სათაო" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "შესახებ" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "ახალი პროექტი" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "ვებგვერდის ენა" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "ჰოსტინგის სპონსორი" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/kk.po b/fedorahosted.org/po/kk.po deleted file mode 100644 index 48c70ef..0000000 --- a/fedorahosted.org/po/kk.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2011-03-04 00:29+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Kazakh (http://www.transifex.com/projects/p/fedora-web/language/kk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: kk\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/kn.po b/fedorahosted.org/po/kn.po deleted file mode 100644 index d97b182..0000000 --- a/fedorahosted.org/po/kn.po +++ /dev/null @@ -1,433 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# neb , 2011 -# shanky , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Kannada (http://www.transifex.com/projects/p/fedora-web/language/kn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: kn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "ಹೋಸ್ಟೆಡ್ ಪರಿಯೋಜನೆಗಳು - ಫೆಡೋರ ಹೋಸ್ಟೆಡ್" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "ಅಂತಹ ಯಾವುದೆ ಪರಿಯೋಜನೆ ಇಲ್ಲ." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "ಮನವಿ ಸಲ್ಲಿಸಲಾದ ಪರಿಯೋಜನೆಯು ಫೆಡೋರ ಹೋಸ್ಟೆಡ್‌ನಲ್ಲಿ ಇಲ್ಲ." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "ಇದರ ಬಗ್ಗೆ - ಫೆಡೋರ ಹೋಸ್ಟೆಡ್" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "ಫೆಡೋರ ಹೋಸ್ಟೆಡ್‌ನ ಬಗೆಗಿನ ಮಾಹಿತಿ" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "ಫೆಡೋರ ಹೋಸ್ಟೆಡ್ ಒಂದು ಫೆಡೋರ ಪರಿಯೋಜನೆಯಾಗಿದೆ-ವಿಕಸನಗಾರರು ತಮ್ಮ ಕೋಡ್‌ಅನ್ನು ಇರಿಸಲು ಹಾಗು ಆನ್‌ಲೈನ್‌ನಲ್ಲಿ ಒಟ್ಟುಕೂಡಿ ಅಭಿವೃದ್ಧಿಪಡಿಸಲು ಬಳಸಲಾಗುವ ಒಂದು ಪ್ರಾಯೋಜಿತ ಮಾರ್ಗವಾಗಿದೆ. ನಾವು ಪ್ರತಿ ಪರಿಯೋಜನೆಗೂ git, Mercurial, bzr, ಹಾಗು ಮುಂತಾದವುಗಳ ಮೂಲಕ ಸೋರ್ಸ್ ನಿಯಂತ್ರಣವನ್ನು ಒದಗಿಸುವುದಲ್ಲದೆ Trac ಮೂಲಕ ಒಂದು ಬಗ್ ಟ್ರಾಕರ್ ಹಾಗು ವಿಕಿಯನ್ನೂ ಸಹ ಒದಗಿಸುತ್ತೇವೆ." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "ನಿಮ್ಮ ಹೊಸ ಪರಿಯೋಜನೆಯು ಕೇವಲ ಒಂದು ಕೆಲಸದ(ವರ್ಕ್) ಟಿಕೆಟ್‌ನಷ್ಟು ದೂರದಲ್ಲಿದೆ." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "FAQಗಳು - ಫೆಡೋರ ಹೋಸ್ಟೆಡ್" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "ಪದೆ ಪದೆ ಕೇಳಲಾಗುವ ಪ್ರಶ್ನೆಗಳು" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "ಫೆಡೋರ ಹೋಸ್ಟೆಡ್ ಎಂದರೇನು?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "ಫೆಡೋರ ಹೋಸ್ಟೆಡ್ ಎನ್ನುವುದು ಫೆಡೋರ ಪರಿಯೋಜನೆ ಇಂದ ಪ್ರಾಯೋಜಿತವಾದ ಪರಯೋಜನೆಯಾಗಿದ್ದು ಅಪ್‌ಸ್ಟ್ರೀಮ್ ವಿಕಸನಗಾರರು ತಮ್ಮ ಕೋಡ್ ಅನ್ನು ಇರಿಸಿಕೊಳ್ಳಲು ಹಾಗು ಆನ್‌ಲೈನಿನಲ್ಲಿ ಕೂಡಿ ಅಭಿವೃದ್ಧಿಪಡಿಸಲು ಅನುವು ಮಾಡಿಕೊಡುತ್ತದೆ." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "ನಾನು ಒಂದು ಹೊಸ ಪರಿಯೋಜನೆಗಾಗಿ ಹೇಗೆ ಮನವಿ ಸಲ್ಲಿಸಬಹುದು?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "ಫೆಡೋರ ಇನ್ಫ್ರಾಸ್ಟ್ರಕ್ಚರ್ ತಂಡಕ್ಕೆ ಒಂದು ಕೆಲಸದ(ವರ್ಕ್) ಟಿಕೆಟನ್ನು ಸಲ್ಲಿಸಿ." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "ನಾನು ನೆರವನ್ನು ಎಲ್ಲಿಂದ ಪಡೆದುಕೊಳ್ಳಬಹುದು?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "ನೆರವನ್ನು ಪಡೆದುಕೊಳ್ಳಲು ಉತ್ತಮವಾದ ಮಾರ್ಗವೆಂದರೆ Freenode ನಲ್ಲಿನ #fedora-admin IRC ಚ್ಯಾನಲ್ ಅಥವ ಫೆಡೋರ ಇನ್ಫಾಸ್ಟ್ರಕ್ಚರ್ ತಂಡಕ್ಕೆ ಒಂದು ಟಿಕೆಟ್ ಅನ್ನು ತೆರೆಯಿರಿ." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "ಒಂದು ಫೆಡೋರ ಹೋಸ್ಟೆಡ್ ಖಾತೆಯನ್ನು ನಾನು ಹೇಗೆ ಪಡೆದುಕೊಳ್ಳಬಹುದು?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "ನಿಮ್ಮ ಸಾಮಾನ್ಯವಾದ ಫೆಡೋರ ಪರಿಯೋಜನಾ ಖಾತೆಗಳು ಫೆಡೋರ ಹೋಸ್ಟೆಡ್‌ನಲ್ಲಿಯೂ ಕೆಲಸ ಮಾಡುತ್ತದೆ. ನಿಮ್ಮಲ್ಲಿ ಈಗಾಗಲೆ ಒಂದು ಫೆಡೋರ ಪರಿಯೋಜನೆಯ ಖಾತೆ ಇಲ್ಲದೆ ಹೋದಲ್ಲಿ, ಅದಕ್ಕಾಗಿ ಮನವಿ ಸಲ್ಲಿಸಿ. ನೀವು ಒಂದು ಒಂದು ಕೋಡ್ ಅನ್ನು ದೇಣಿಗೆ ನೀಡಲು 'ನೆರವಾಗುವವರ ಲೈಸೆನ್ಸ್‍ ಅಗ್ರಿಮೆಂಟ್‌'ಗೆ ಸಹಿ ಮಾಡಬೇಕಾಗುತ್ತದೆ ಎನ್ನುವುದನ್ನು ನೆನಪಿಡಿ." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "ನನ್ನ ಪರಿಯೋಜನೆಗಾಗಿನ ಆರ್ಕೈವ್ ಬಿಡುಗಡೆಗಳನ್ನು (tgz, zip, etc) ನಾನು ಹೇಗೆ ಪ್ರಕಟಿಸಬಹುದು?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "ಆರ್ಕೈವ್ ಅನ್ನು ನಿಮ್ಮ ಗಣಕದಲ್ಲಿ ನಿರ್ಮಿಸಿ ನಂತರ scp myProject-0.1.tar.gz fedorahosted.org:<Project Name> ಅನ್ನು ಚಲಾಯಿಸಿ. ಆರ್ಕೈವ್ ಅನ್ನು https://fedorahosted.org/releases/ ನಲ್ಲಿ ಕಾಣಬಹುದಾಗಿದೆ" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "ಬಿಡುಗಡೆಗಳನ್ನು ನಿಲುಕಿಸಿಕೊಳ್ಳಲು ಮಾರ್ಗ /releases/m/y/myproject ಅನ್ನು ಹೊರತುಪಡಿಸಿ ಬೇರೆ ಯಾವುದಾದರೂ ಸುಲಭವಾದ ದಾರಿ ಇದೆಯೆ?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "ಖಂಡಿತಾ ಇದೆ. https://fedorahosted.org/released/myproject ನಿಮ್ಮನ್ನು ಅದೆ ಜಾಗಕ್ಕೆ ಕೊಂಡೊಯ್ಯುತ್ತದೆ. ಇದರ ಒಂದೇ ಅನಾನುಕೂಲತೆಯೆಂದರೆ ನಿಮಗೆ ಪರಿಯೋಜನೆಯ ಹೆಸರು ತಿಳಿದಿರಬೇಕು ಹಾಗು ಪರಿಯೋಜನೆಗಳಿಗಾಗಿ ಹುಡುಕಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "ನಾನು ಈಗತಾನೆ ಒಂದು ಹೊಸ git ರೆಪೊಸಿಟರಿ ಪಡೆದುಕೊಂಡಿದ್ದೇನೆ, ನಾನು ಅದನ್ನು ಹೇಗೆ push/pull ಮಾಡಲಿ?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "ಯಾರಾದರೂ ಹೊಸ ರೆಪೊಸಿಟರಿಯನ್ನು clone/push ಮಾಡುವ ಮೊದಲು ಈ ಕೆಳಗಿನ ಆಜ್ಞೆಯನ್ನು ಬಳಸಿಕೊಂಡು ಒಂದು master push(ನಿಮ್ಮ ಸ್ಥಳೀಯ git ರೆಪೊವಿನಿಂದ)ಅನ್ನು ಮಾಡಬೇಕಾಗುತ್ತದೆ: git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "ಒಂದು ಪರಿಯೋಜನೆಗೆ ಸಲ್ಲಿಸಲು ಬೇಕಿರುವ ಅನುಮತಿಯನ್ನು ನಾನು ಹೇಗೆ ಪಡೆಯಲಿ?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "ನೀವು ಪರಿಯೋಜನೆಯ ಸಲ್ಲಿಕೆ ಸಮೂಹಕ್ಕೆ ಅರ್ಜಿಯನ್ನುಸಲ್ಲಿಸಬೇಕು, ಇದು <scm><project> ಆಗಿರಬೇಕು, ಉದಾ. desktop-effects(ಗಣಕತೆರೆ-ಪರಿಣಾಮಗಳು) ಪರಿಯೋಜನೆಗೆ, gitdesktop-effects ಸಮೂಹಕ್ಕೆ ಸಲ್ಲಿಸಿ." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "ನನ್ನ ರೆಪೊಸಿಟರಿಯ ನಿರ್ಮಾಣವಾಗುವಷ್ಟರಲ್ಲಿ, ಬೇರೆ ಜಾಗದಲ್ಲಿ ನನ್ನ ಕೋಡ್‌ನ ಮೇಲೆ ಕೆಲಸ ಮಾಡಬಹುದೆ?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "ಖಂಡಿತ. ನಿಮ್ಮ fedorapeople.org ಜಾಗದಲ್ಲಿ ಒಂದು ತಾತ್ಕಾಲಿಕವಾದ ರೆಪೊಸಿಟರಿಯನ್ನು ಹೇಗೆ ಸಿದ್ಧಪಡಿಸಬೇಕು ಎನ್ನುವುದನ್ನು ತಿಳಿಯಲು http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org ಗೆ ಭೇಟಿ ಕೊಡಿ." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "ನಾನು ಖಚಿತವಾಗಿಯೂ ಸರಿಯಾದ URL ಅನ್ನು ಹೊಂದಿದ್ದರೂ ಸಹ ರೆಪೊಸಿಟರಿಯು ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ ಎಂದು hg ಏಕೆ ಹೇಳುತ್ತದೆ ?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "ದುರದೃಷ್ಟವಶಾತ್ hg ಯು ನಿಜವಾದ URLಗಳನ್ನು ಬಳಸುವುದಿಲ್ಲ. ನೀವು \"/\" ಅನ್ನು ಆತಿಥೇಯದ ಹೆಸರು ಹಾಗು ಮಾರ್ಗದ ನಡುವೆ ಒಂದು ಡಿಲಿಮಿಟರ್ ಆಗಿ ಬಳಸಬೇಕು ಹಾಗು ಎರಡನೆಯ \"/\" ಅನ್ನು ಕಡತವ್ಯವಸ್ಥೆ ಮಾರ್ಗದ ಮೂಲವನ್ನು ಸೂಚಿಸಲು ಬಳಸಬೇಕು. ಉದಾಹರಣೆಗೆ, ನೀವು authconfig ನ ರೆಪೊಸಿಟರಿಯನ್ನು ನಿಲುಕಿಸಿಕೊಳ್ಳಲು ಬಯಸಿದಲ್ಲಿ, \"hg clone ssh://hg.fedorahosted.org//hg/authconfig\" ಅನ್ನು ಬಳಸಬೇಕು." - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "ನಾನು ಫೆಡೋರ ಹೋಸ್ಟೆಡ್‌ನಲ್ಲಿ ಮೊದಲೆ ಕಂಪೈಲ್ ಮಾಡಿದ ಬೈನರಿಗಳನ್ನು ಒದಗಿಸಬಹುದೆ?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "ಎಲ್ಲಿಯವರೆಗೆ ಈ ಕೆಳಗಿನ ಷರತ್ತುಗಳಿಗೆ ಬದ್ದರಾಗಿರುತ್ತೀರೊ ಅಲ್ಲಿಯವರೆಗೆ ಒದಗಿಸಬಹುದಾಗಿರುತ್ತದೆ:
      1. ಪರಿಯೋಜನೆಯ ಕೋಡ್ ಅನ್ನು ಫೆಡೋರದ ಬಳಕೆಗೆ ಸೂಕ್ತವಾಗಿರುವಂತೆ ಉಚಿತ ತಂತ್ರಾಶ ಕಾಯ್ದೆಯಡಿಯಲ್ಲಿ ಲಭ್ಯವಾಗಿಸಬೇಕು.
      2. ನೀವು ಬೈನರಿಯನ್ನು ನಿರ್ಮಿಸಲು ಬಳಸಲಾದ ಆಕರ ಸಂಕೇತವನ್ನು ಲಭ್ಯವಾಗಿಸಬೇಕೆ ಹೊರತು ಅದೇ ಟಾರ್ಬಾಲ್‌ನಲ್ಲಿ ವಿತರಿಸಬಾರದು, ಅಥವ ಟಾರ್ಬಾಲ್‌ನಲ್ಲಿನ \"source only\" ಯಲ್ಲಿನ ಕನಿಷ್ಟ ಮೇಕ್ ಅನ್ನು ಮಾತ್ರವೆ ಒದಗಿಸಬಾರದು.
      3. ತಂತ್ರಾಂಶವನ್ನು ನಿರ್ಮಿಸುವ ಹಂತಗಳನ್ನು ನೀವು ವಿವರವಾಗಿ ಒದಗಿಸಬೇಕು.
      " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "ಲಭ್ಯವಿರುವ ಪರಿಯೋಜನೆಗಳು" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "ಎಲ್ಲಾ ಪರಿಯೋಜನೆಗಳನ್ನು ತೋರಿಸು" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "ಪರಿಯೋಜನೆಯ ವಿವರ" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "ಜಾಲ" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "ಅಜ್ಞಾತ URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "ದೃಢೀಕರಣ URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "ಅಜ್ಞಾತ VCS URI ಯ ಮೇಲೆ ಬಲ ಕ್ಲಿಕ್ಕಿಸಿ ಅದನ್ನು ನಿಮ್ಮ ಕ್ಲಿಪ್‌ಬೋರ್ಡಿಗೆ ಕಾಪಿ ಮಾಡಿ" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "ಅಧಿಕೃತವಾದ VCS URI ಯ ಮೇಲೆ ಬಲ ಕ್ಲಿಕ್ಕಿಸಿ ಅದನ್ನು ನಿಮ್ಮ ಕ್ಲಿಪ್‌ಬೋರ್ಡಿಗೆ ಕಾಪಿ ಮಾಡಿ" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "ಈ ಸಮೂಹದಲ್ಲಿ ಯಾವುದೆ ಪರಿಯೋಜನೆಗಳನ್ನು ನೋಂದಾಯಿಸಲಾಗಿಲ್ಲ" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "ಒಂದು ಹೊಸ ಪರಿಯೋಜನೆಗಾಗಿ ಮನವಿ ಸಲ್ಲಿಕೆ - ಫೆಡೋರ ಹೋಸ್ಟೆಡ್" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "ಒಂದು ಹೊಸ ಪರಿಯೋಜನೆಗಾಗಿ ಮನವಿ ಸಲ್ಲಿಸುವಿಕೆ" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "ಫೆಡೋರ ಇನ್ಫಾಸ್ಟ್ರಕ್ಚರ್ Trac instance ನಲ್ಲಿ ಟಿಕೆಟ್‌ ಮೂಲಕವೆ ಹೊಸ ಪರಿಯೋಜನೆಗಾಗಿ ಮನವಿಯನ್ನು ಸಲ್ಲಿಸಬೇಕು. ಒಂದು ಟಿಕೆಟ್ ಅನ್ನು ನಿರ್ಮಿಸುವ ಮೊದಲು ಲಾಗಿನ್ ಆಗಲು ಮರೆಯದಿರಿ." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "ಈ ಕೆಳಗಿನಂತೆ ಸ್ಥಳಗಳನ್ನು ಭರ್ತಿ ಮಾಡಿ:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<ಪರಿಯೋಜನೆಯ ಹೆಸರು>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "ಇದು ಒಂದು ತುರ್ತು ಮನವಿಯಾಗಿರದೆ ಹೋದಲ್ಲಿ minor ಆಗಿರುತ್ತದೆ. ಮನವಿಯು ತುರ್ತಿನದಾಗಿದೆ ಅಥವ ಇಲ್ಲ ಎಂದು ನಿಮಗೆ ಸರಿಯಾಗಿ ತಿಳಿಯದೆ ಹೋದಲ್ಲಿ ಇದನ್ನು minor ಗೆ ಬದಲಾಯಿಸಿ." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "ಟಿಕೆಟ್‌ನ ಸಂಪೂರ್ಣ ವಿವರಣೆಯನ್ನು ತುಂಬಿಸಲು ಈ ಕೆಳಗಿನ ನಮೂನೆಯನ್ನು(ಟೆಂಪ್ಲೇಟ್) ಬಳಸಿ:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "ಬಳಕೆಯ ನಿಯಮಗಳು - ಫೆಡೋರ ಹೋಸ್ಟೆಡ್" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "ಬಳಕೆಯ ನಿಯಮಗಳು" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "ಫೆಡೋರ ಪರಿಯೋಜನ ಇನ್‌ಫ್ರಾಸ್ಟ್ರಕ್ಚರ್ ತಂಡವು ಸಾಧ್ಯವಾದಷ್ಟು ಮಟ್ಟಿಗೆ ಉತ್ತಮವಾದ ಫೆಡೋರ ಹೋಸ್ಟೆಡ್ ಸೇವೆಗಳನ್ನು ಒದಗಿಸುತ್ತದೆ. ಅದನ್ನು ನಿರ್ವಹಿಸುವವರಲ್ಲಿ ಸಾಕಷ್ಟು ಮಂದಿ ಸ್ವಯಂಸೇವಕರಾಗಿದ್ದಾರೆ. ಹೊಸ ಪರಿಯೋಜನೆಗಳಿಗೆ ಪ್ರತ್ಯುತ್ತರಿಸುವ ಕಾಲಾವಧಿಯು ಸಾಮಾನ್ಯವಾಗಿ ಸುಮಾರು 1 ಗಂಟೆಯಿಂದ 3 ದಿನಗಳವರೆಗೆ ಆಗಿರುತ್ತದೆ. ಔಟೇಜುಗಳು ಸಂಭವಿಸಿದಾಗ ಅವಕ್ಕೆ ಹೆಚ್ಚಿನ ಆದ್ಯತೆಯನ್ನು ನೀಡಲಾಗುವುದು." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "ಈ ಕೆಳಗಿನ ಅರ್ಹತೆಯನ್ನು ಹೊಂದಿರದ ಯಾವುದೆ ಪರಿಯೋಜನೆಯನ್ನು ನಮ್ಮ ವ್ಯವಸ್ಥೆಯಿಂದ ತೆಗೆದು ಹಾಕುವ ಹಕ್ಕನ್ನು ಫೆಡೋರ ಪರಿಯೋಜನೆಯು ಕಾದಿರಿಸುತ್ತದೆ:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "ಪರಿಯೋಜನೆಯಲ್ಲಿನ ಕೋಡ್‌ ನಮ್ಮ ಲೈಸೆನ್ಸ್‍ ಅಗತ್ಯಗಳ ನಿಯಮಕ್ಕೆ ಅನುಗುಣವಾಗಿಲ್ಲ" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "ಕಳೆದ ಆರು (6) ತಿಂಗಳಿಂದೀಚೆಗೆ ಯಾವುದೆ ಬದಲಾವಣೆಗಳನ್ನು ಸಲ್ಲಿಸಿಲ್ಲ ಅಥವ ಅನ್ವಯಿಸಲಾಗಿಲ್ಲ" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "ಒಂದು ಪರಿಯೋಜನೆಯನ್ನು ತೆಗೆದು ಹಾಕಲ್ಪಟ್ಟಲ್ಲಿ, ಅದರ ಕೋಡ್, Trac ದತ್ತಸಂಚಯಗಳು, ಹಾಗು ಯಾವುದೆ ಸಂಬಂಧಪಟ್ಟ ಮಾಹಿತಿಗಳನ್ನು ಅದರ ಮಾಲಿಕರಿಗೆ ಮರಳಿಸಲು ಸುಲಭವಾಗುವಂತೆ ಕಾಣೆಯಾಗಿರುವ ವಿಕಸನಗಾರರನ್ನು ಸಂಪರ್ಕಿಸಲು ನಮ್ಮ ಕೈಯಿಂದಾದ ಪ್ರಯತ್ನವನ್ನು ಮಾಡುತ್ತೇವೆ." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "ಫೆಡೋರ ಪರಿಯೋಜನೆಯ ಮೇಲ್ವಿಚಾರಣೆ ಹಾಗು ನಿರ್ವಹಣೆಯನ್ನು ಸಮುದಾಯದಿಂದ ನಡೆಸುತ್ತಿದೆ ಹಾಗು Red Hat ಇದನ್ನು ಪ್ರಾಯೋಜಿಸುತ್ತದೆ. ಇದು ಸಮುದಾಯವು ನೋಡಿಕೊಳ್ಳುವ ತಾಣವಾಗಿದೆ. ಇದರಲ್ಲಿರುವ ಯಾವುದೆ ವಿಷಯಗಳಿಗೆ Red Hat ಜವಾಬ್ದಾರನಾಗಿರುವುದಿಲ್ಲ." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "ಪ್ರಾಯೋಜಕರು" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "ಕಾನೂನು" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "ಟ್ರೇಡ್‌ಮಾರ್ಕ್ ಸೂಚನೆಗಳು" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "ಫೆಡೋರ" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "ನ್ಯಾವಿಗೇಶನ್" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "ನೆಲೆ" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "ಇದರ ಬಗ್ಗೆ" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "ಹೊಸ ಪರಿಯೋಜನೆ" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "ಜಾಲತಾಣದ ಭಾಷೆ" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "ಹೋಸ್ಟಿಂಗ್ ಪ್ರಾಯೋಜಕರು" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "ServerBeach ನಿಂದ ಪ್ರಾಯೋಜಿಸಲಾಗಿದೆ" diff --git a/fedorahosted.org/po/ko.po b/fedorahosted.org/po/ko.po deleted file mode 100644 index c1165e2..0000000 --- a/fedorahosted.org/po/ko.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Korean (http://www.transifex.com/projects/p/fedora-web/language/ko/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: ko\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "후원사 " - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "네비게이션 " - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "홈 " - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "웹사이트 언어 " - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "호스팅 후원사 " - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/ks.po b/fedorahosted.org/po/ks.po deleted file mode 100644 index fa49911..0000000 --- a/fedorahosted.org/po/ks.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2011-03-04 00:29+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Kashmiri (http://www.transifex.com/projects/p/fedora-web/language/ks/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: ks\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/lt.po b/fedorahosted.org/po/lt.po deleted file mode 100644 index e0451c0..0000000 --- a/fedorahosted.org/po/lt.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2012-07-03 23:12+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Lithuanian (http://www.transifex.com/projects/p/fedora-web/language/lt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: lt\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/lv.po b/fedorahosted.org/po/lv.po deleted file mode 100644 index 1417da7..0000000 --- a/fedorahosted.org/po/lv.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Latvian (http://www.transifex.com/projects/p/fedora-web/language/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Sponsori" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Tirdzniecības zīmju vadlīnijas" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Mājas" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "Par" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Mājaslapas valoda" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/mai.po b/fedorahosted.org/po/mai.po deleted file mode 100644 index de2d3ff..0000000 --- a/fedorahosted.org/po/mai.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2012-07-03 23:12+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Maithili (http://www.transifex.com/projects/p/fedora-web/language/mai/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: mai\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/ml.po b/fedorahosted.org/po/ml.po deleted file mode 100644 index 1ac0d0b..0000000 --- a/fedorahosted.org/po/ml.po +++ /dev/null @@ -1,433 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# neb , 2011 -# Rajeesh Nair , 2012 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Rajeesh Nair \n" -"Language-Team: Malayalam (http://www.transifex.com/projects/p/fedora-web/language/ml/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: ml\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "ഹോസ്റ്റ് ചെയ്തിട്ടുള്ള സംരംഭങ്ങള്‍ - ഫെഡോറ ഹോസ്റ്റഡ്" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "ഇത്തരം ഒരു സംരംഭം ലഭ്യമല്ല." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "നിങ്ങള്‍ ആവശ്യപ്പെട്ട സംരംഭം ഫെഡോറ ഹോസ്റ്റഡില്‍ ലഭ്യമല്ല." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "വിവരങ്ങള്‍ - ഫെഡോറ ഹോസ്റ്റഡ്" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "ഫെഡോറ ഹോസ്റ്റഡ് സംബന്ധിച്ചു്" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "ഫെഡോറ ഹോസ്റ്റഡ് ഒരു ഫെഡോറ സംരംഭം ആണു്-ഡവലപ്പര്‍മാര്‍ക്കു് കോഡ് ഹോസ്റ്റ് ചെയ്തു് ഓണ്‍ലൈന്‍ ആയി ബന്ധപ്പെടുത്തുന്നതിനുള്ള ഒരു സ്പോണ്‍സേര്‍ഡ് സംവിധാനം. ഓരോ സംരംഭത്തിനും സോഴ്സ് കണ്ട്രോള്‍ ലഭ്യമാണു് - git, Mercurial, bzr, തുടങ്ങിയവയും, കൂടാതെ Trac വഴി വിക്കിയും ബഗ് ട്രാക്കറും ആണിവ." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "പുതിയ സംരംഭത്തിനായി വര്‍ക്ക് ടിക്കറ്റ് എടുക്കുക." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "ഫെഡോറ ഹോസ്റ്റഡ് - ചോദ്യോത്തരങ്ങള്‍" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "ചോദ്യോത്തരങ്ങള്‍" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "എന്താണു് ഫെഡോറ ഹോസ്റ്റഡ്?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "ഫെഡോറ സംരംഭം സ്പോണ്‍സര്‍ ചെയ്യുന്ന ഒരു സംരംഭം ആണു് ഫെഡോറ ഹോസ്റ്റഡ്. ഡവലപ്പര്‍മാര്‍ക്കു് കോഡ് ഹോസ്റ്റ് ചെയ്തു് ഓണ്‍ലൈന്‍ ആയി ബന്ധപ്പെടുത്തുന്നതിനു് ഇതു് സഹായിക്കുന്നു." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "ഒരു പുതിയ സംരംഭത്തിനായി എങ്ങനെ അപേക്ഷിക്കാം?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "ഫെഡോറ ഇന്‍ഫ്രാസ്ട്രക്ചര്‍ സംഘത്തിനൊപ്പം ഒരു വര്‍ക്ക് ടിക്കറ്റ് രേഖപ്പെടുത്തുക." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "സഹായം എവിടെ നിന്നു ലഭിക്കുന്നു?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "പങ്കു് ചേരുന്നതിനുള്ള പ്രധാന മാര്‍ഗ്ഗങ്ങള്‍ - Freenode-ലുള്ള#fedora-admin ഐആര്‍സി ചാനലില്‍ ചേരുക അല്ലെങ്കില്‍ ഫെഡോറ ഇന്‍ഫ്രാസ്ട്രക്ചര്‍ സംഘത്തിനൊപ്പം ഒരു ടിക്കറ്റ് തുറക്കുക." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "ഒരു ഫെഡോറ ഹോസ്റ്റഡ് അക്കൌണ്ട് എങ്ങനെ ലഭിക്കുന്നു?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "ഫെഡോറ ഹോസ്റ്റഡിനു് നിങ്ങളുടെ ഫെഡോറ സംരംഭത്തിനുള്ള അക്കൌണ്ടു് മതിയാകും. അഥവാ, അങ്ങനെയൊന്നു് ഇല്ലെങ്കില്‍, ഒരു ഫെഡോറ സംരംഭത്തിനായി അപേക്ഷിക്കുക. കുറിപ്പു്: കോഡ് സംഭാവന നല്‍കുന്നതിനായി, നിങ്ങള്‍ ഫെഡോറ സംരംഭത്തിനുള്ള ഒരു കോണ്‍ട്രിബ്യൂട്ടര്‍ ലൈസന്‍സ് എഗ്രീമെന്റില്‍ ഒപ്പു് വയ്ക്കണം." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "എനിക്ക് എന്റെ ഫെഡോറ ഹോസ്റ്റഡ് റിപ്പോയിലേക്ക് പുഷ് ചെയ്യാവുന്ന രീതിയില്‍ എങ്ങനെ ജിറ്റിനെ സജ്ജീകരിക്കാം?" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "നിങ്ങളുടെ റിപ്പോയുടെ ഒരു പകര്‍പ്പ് - git clone - എടുക്കുക. പിന്നെ, നിങ്ങളുടെ കമ്പ്യൂട്ടറിലുള്ള റിപ്പോയുടെ ഡയറക്ടറിക്കകത്തെ .git/config എന്ന ഫയലില്‍ [remote \"origin\"] എന്ന ഭാഗം താഴെക്കാണുന്ന URL മാതൃകയില്‍ എഡിറ്റ് ചെയ്യുക:" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "url = ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "username" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahosted.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "projectname" - -#: data/content/faq.html:22 -msgid ".git" -msgstr ".git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "ഇവിടെ:" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "എന്നത് നിങ്ങളുടെ ഫെഡോറ അക്കൗണ്ട് സിസ്റ്റം യൂസര്‍നാമം." - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "എന്നത് നിങ്ങളുടെ fedorahosted.org പ്രോജക്ടിന്റെ പേര് fedorahosted.org യുടെ മുന്‍വശത്ത് നല്കിയപോലെ." - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "സംരംഭത്തില്‍ എങ്ങനെ ആര്‍ക്കൈവ് റീലിസുകള്‍ (tgz, zip, എന്നിവ) പ്രസിദ്ധീകരിക്കാം?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "നിങ്ങളുടെ വര്‍ക്ക്സ്റ്റേഷനില്‍ ആര്‍ക്കൈവ് ഉണ്ടാക്കി scp myProject-0.1.tar.gz fedorahosted.org:<Project Name> പ്രവര്‍ത്തിപ്പിക്കുക. ആര്‍ക്കൈവ് https://fedorahosted.org/releases/-ല്‍‍ ലഭ്യമാണു്." - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "എന്റെ ആര്‍ക്കൈവില്‍ അപ്‌ലോഡ് ചെയ്തിട്ടുള്ള എന്തെങ്കിലും ഡിലീറ്റ് ചെയ്യുന്നതെങ്ങനെയാണ്?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "ദയവായി നീക്കംചെയ്യാനാഗ്രഹിക്കുന്ന ഫയല്‍ ഏതെന്നും ഏതു കാരണം കൊണ്ടു നീക്കം ചെയ്യുന്നുവെന്നും വ്യക്തമാക്കുന്ന ഒരു ടിക്കറ്റ് ഫെഡോറ-അടിസ്ഥാന-സൗകര്യം ട്രാകില്‍ ഫയല്‍ ചെയ്യുക." - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "/releases/m/y/myproject എന്ന പാഥിനേക്കാള്‍ പതിപ്പുകള്‍ ലഭ്യമാക്കുവാന്‍ ഉത്തമമായ ഒരു മാര്‍ഗ്ഗം ലഭ്യമാണോ?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "ഉവ്വു്, ഇതിനുള്ള ഉത്തരം https://fedorahosted.org/released/myproject ആണു്. പക്ഷേ, ഇതുപയോഗിക്കണമെങ്കില്‍ നിങ്ങള്‍ക്കു് സംരംഭത്തിന്റെ പേരു് ലഭ്യമായിരിക്കണം. അവയ്ക്കു് തെരച്ചില്‍ സാധ്യമല്ല." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "ഇപ്പോള്‍ ഒരു git റിപ്പോസിറ്ററി ലഭ്യമായതേയുള്ളൂ, ഉപയോഗിക്കാമോ?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "പുതിയ റിപ്പോസിറ്ററി ക്ലോണ്‍/പുഷ് ചെയ്യുന്നതിനു് മുമ്പായി ഈ കമാന്‍ഡ് ഉപയോഗിച്ചു് ഒരു മാസ്റ്റര്‍ പുഷ് നടത്തുക (നിങ്ങളുടെ ലോക്കല്‍ git repo-ല്‍ നിന്നും): git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "ഒരു സംരഭത്തിലേക്ക് ഫയലുകള്‍ സമര്‍പ്പിക്കുവാന്‍ എങ്ങനെ സാധിക്കുന്നു?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "സംരഭത്തിന്റെ കമ്മിറ്റ് ഗ്രൂപ്പിലേക്ക് (<scm><project>)നിങ്ങള്‍ ചേരുക.ഉദാഹരണത്തിനു്, desktop-effects സംരംഭത്തിനു്, gitdesktop-effects ഗ്രൂപ്പിലേക്ക് ചേരുക." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "റിപ്പോസിറ്ററി ഉണ്ടാക്കുവാന്‍ കാത്തിരിക്കുന്ന ഈ സമയത്തു്, എനിക്കു് മറ്റെവിടെങ്കിലും എന്റെ കോഡില്‍ പ്രവര്‍ത്തിക്കുവാന്‍ സാധിക്കുമോ?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "തീര്‍ച്ചയായും. നിങ്ങള്‍ക്കു് fedorapeople.org-ല്‍ ലഭ്യമായ സ്ഥലത്തു് ഒരു താല്‍ക്കാലിക റിപ്പോസിറ്ററി സജ്ജമാക്കുന്നതിനുള്ള നിര്‍ദ്ദേശങ്ങള്‍ http://fedoraproject. org/wiki/Infrastructure/fedorapeople.org-ല്‍ ലഭ്യമാണു്." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "യുആര്‍എല്‍ ശരിയാണെങ്കിലും, റിപ്പോസിറ്ററി നിലവിലില്ലെന്നു് hg കാണിക്കുന്നു, കാരണമെന്തു്?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "നിര്‍ഭാഗ്യകരമെന്നു പറയട്ടെ, hg യഥാര്‍ത്ഥ URLകള്‍ ഉപയോഗിക്കുന്നില്ല. ഒരു \"/\" ഹോസ്റ്റ്നെയിമും പാഥും വേര്‍തിരിക്കാനായി അവയ്ക്കിടയിലായും മറ്റൊരു \"/\" ഫയല്‍സിസ്റ്റം പാഥിന്റെ റൂട്ടായും ചേര്‍ക്കേണം. ഉദാഹരണത്തിന്, authconfig നുള്ള റിപ്പോസിറ്ററിയാണ് നിങ്ങള്‍ക്ക് ആവശ്യമെങ്കില്‍ \"hg clone ssh://hg.fedorahosted.org//hg/authconfig\" എന്നുപയോഗിക്കണം." - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "മുന്‍കൂട്ടി തയ്യാറാക്കിയ - പ്രീ കംപൈല്‍ ചെയ്ത- ബൈനറികള്‍ ഫെഡോറ ഹോസ്റ്റഡിലൂടെ നല്കാമോ?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "താഴെ കാണിക്കുന്ന നിബന്ധനകള്‍ കാണിക്കുന്നുണ്ടെങ്കില്‍ ചെയ്യാം:
      1. പ്രോജക്ടിന്റെ കോഡ് ഫെഡോറയ്ക്ക് അനുയോജ്യമായ ഒരു സ്വതന്ത്ര സോഫ്‌റ്റ്‌വെയര്‍ ലൈസന്‍സിനു കീഴില്‍ ലഭ്യമായിരിക്കണം.
      2. You must make the source code you used to build the binaries available, and not distributed in the same tarball, or at a minimum make available a \"source only\" tarball.
      3. സോഫ്റ്റ്‌വെയര്‍ ബില്‍ഡ് ചെയ്യാനുള്ള വ്യക്തമായ നിര്‍ദ്ദേശങ്ങള്‍ നല്കിയിരിക്കണം.
      " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "ലഭ്യമായ സംരംഭങ്ങള്‍" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "എല്ലാ സംരംഭങ്ങളും കാണിക്കുക" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "സംരഭത്തിനുള്ള വിവരണം" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "വെബ്" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "Anon URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "Auth URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "റൈറ്റ് ക്ലിക്ക് ചെയ്തു് അപരിചിതമായ VCS URI നിങ്ങളുടെ ക്ലിപ്ബോര്‍ഡിലേക്കു് പകര്‍ത്തുക" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "റൈറ്റ് ക്ലിക്ക് ചെയ്തു് തിരിച്ചറിയുന്ന VCS URI നിങ്ങളുടെ ക്ലിപ്ബോര്‍ഡിലേക്കു് പകര്‍ത്തുക" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "ഈ ഗ്രൂപ്പില്‍ ഒരു സംരംഭങ്ങളും രജിസ്ടര്‍ ചെയ്തിട്ടില്ല " - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "ഒരു പുതിയ സംരംഭത്തിനായി അപേക്ഷിക്കുക - ഫെഡോറ ഹോസ്റ്റഡ്" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "ഒരു പുതിയ സംരംഭത്തിനായി അപേക്ഷിക്കുക" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "പുതിയ സംരംഭത്തിനുള്ള അപേക്ഷകള്‍ ഫെഡോറ ഇന്‍ഫ്രാസ്ട്രക്ചര്‍ ട്രാക് ഇന്‍സ്റ്റന്‍സ് എന്നതില്‍ ഓരോ ടിക്കറ്റായി പൂരിപ്പിക്കേണ്ടതാണു്. ടിക്കറ്റ് ഉണ്ടാക്കുന്നതിനു് മുമ്പായി ലോഗിന്‍ ചെയ്യേണ്ടതാണു്." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "താഴെ പറഞ്ഞിരിക്കുന്ന ഫീല്‍ഡുകള്‍ പൂരിപ്പിക്കുക:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<സംരംഭത്തിന്റെ പേരു്>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "minor ഇതു് അത്യാവശ്യം ആണെങ്കില്‍. ഈ അപേക്ഷ അത്യാവശ്യമാണോ എന്നു് നിങ്ങള്‍ക്കുറപ്പല്ല എങ്കില്‍, ഈ ഫീള്‍ഡ് minor ആയി നല്‍കുക." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "ടിക്കറ്റിന്റെ പൂര്‍ണ്ണ വിവരങ്ങള്‍ നല്‍കുന്നതിനായി താഴെ പറഞ്ഞിരിക്കുന്ന മാതൃക ഉപയോഗിക്കുക:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "ഉപയോഗ വ്യവസ്തകള്‍ - ഫെഡോറ ഹോസ്റ്റഡ്" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "ഉപയോഗ വ്യവസ്ഥകള്‍" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "ഫെഡോറ സംരംഭ ഇന്‍ഫ്രാസ്ട്രക്ചര്‍ സംഘം മികച്ച ഫെഡോറ ഹോസ്റ്റഡ് സേവനങ്ങള്‍ ലഭ്യമാക്കുന്നു. ഇവ കൈകാര്യം ചെയ്യുന്നവര്‍ മിക്കവരും വോളന്റിയര്‍മാര്‍ ആണു്. പുതിയ സംരംഭങ്ങള്‍ക്കുള്ള മറുപടി ഒരു മണിക്കൂര്‍ മുതല്‍ മൂന്നു് ദിവസത്തിനുള്ളില്‍ ലഭിക്കുന്നു. അഥവാ ഔട്ടേജുകള്‍ ഉണ്ടായാല്‍, അവ എത്രയും പെട്ടെന്നു് പരിഹരിക്കുന്നു." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "താഴെ പറഞ്ഞിരിക്കുന്ന വ്യവസ്ഥകള്‍ ഏതെങ്കിലും സംരംഭം പാലിക്കുന്നില്ല എങ്കില്‍ ഫെഡോറ സംരംഭത്തിനു് അതു് നീക്കുവാനുള്ള പൂര്‍ണ്ണ അധികാരം ഉണ്ടു്:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "സംരംഭത്തിലുള്ള കോഡ് ലൈസന്‍സ് ആവശ്യതകള്‍ അനുസരിച്ചല്ല." - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "കുറഞ്ഞതു് ആറു് (6) മാസത്തിനുള്ളില്‍ പ്രത്യേകിച്ചു് ഒരു മാറ്റങ്ങളും സമര്‍പ്പിച്ചിട്ടില്ല." - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "ലഭ്യമല്ലാത്ത ഡവലപ്പര്‍മാരുമായി ബന്ധപ്പെടുന്നതിനും കോഡ്, ട്രാക് ഡേറ്റാബെയിസുകള്‍ മറ്റു് ആത്യാവശ്യ വിവരങ്ങള്‍ എല്ലാം ലഭ്യമാക്കുന്നതിനും ഞങ്ങള്‍ വളരെ അധികം പരിശ്രമിക്കുന്നതാണു്. ഒരു സംരംഭം നീക്കം ചെയ്യേണ്ട സാഹചര്യം ഉണ്ടായാല്‍ ഇതു് സംരംഭത്തിന്റെ ഉടമസ്ഥനെ ബോധിപ്പിക്കുവാന്‍ സഹായിക്കുന്നു." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© 2012 റെഡ്‌ഹാറ്റ് ഇന്‍കോര്‍പ്പറേറ്റഡും മറ്റുള്ളവരും. എന്തെങ്കിലും അഭിപ്രായങ്ങളോ തിരുത്തുകളോ ഉണ്ടെങ്കില്‍ വെബ്സൈറ്റ്‌സ് ടീം എന്ന വിലാസത്തിലയക്കാം." - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "ഫെഡോറ സംരംഭത്തില്‍ പ്രവര്‍ത്തിക്കുന്നതു് കമ്മ്യൂണിറ്റിയും അതു് സ്പോണ്‍സര്‍ ചെയ്യുന്നതു് Red Hat-ഉം ആണു്. ഈ സൈറ്റ് കൈകാര്യം ചെയ്യുന്നതു് കമ്മ്യൂണിറ്റി ആണു്, അതിനാല്‍ ഇതിലെ ഉള്ളടക്കത്തിന്റെ ഒരു ഉത്തരവാദിത്വവും Red Hat-നു് ഇല്ല." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "സ്പോണ്‍സര്‍മാര്‍" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "നിയമപരം" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "വ്യാപാരമുദ്ര നിര്‍ദ്ദേശങ്ങള്‍" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "ഫെഡോറ" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "എല്ലാ ദിശയിലേക്കും അനായാസ സഞ്ചാരം" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "ആസ്ഥാനം" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "സംബന്ധിച്ചു്" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "പുതിയ സംരംഭം" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "വെബ്സൈറ്റ് ഭാഷ" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "ഹോസ്റ്റ് ചെയ്യുന്ന സ്പോണ്‍സര്‍" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "സ്പോണ്‍സര്‍ ചെയ്യുന്നത് സര്‍വര്‍ബീച്ച് " diff --git a/fedorahosted.org/po/mr.po b/fedorahosted.org/po/mr.po deleted file mode 100644 index 38ab3f1..0000000 --- a/fedorahosted.org/po/mr.po +++ /dev/null @@ -1,432 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# neb , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Marathi (http://www.transifex.com/projects/p/fedora-web/language/mr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: mr\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "प्रदर्शीत प्रकल्प - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "असा प्रकल्प अस्तित्वात नाही." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "विनंतीकृत प्रकल्प Fedora Hosted वर अस्तित्वात नाही." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Fedora Hosted - वियषी" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Fedora Hosted वियषी" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Hosted हे डेव्हलपर करीता कोड प्रदर्शीत करण्याचे व ऑनलाइन एकत्र कार्य करण्यासाठी Fedora Project-द्वारे निर्मीत मार्ग आहे. स्त्रोत नियंत्रण जसे की git, Mercurial, bzr, व इतर, त्याचबरोबर बग नियंत्रण व wiki, Trac द्वारे प्रत्येक प्रकल्प पुरविले जाते." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "नविन प्रकल्प फक्त कार्य टिकीट दूर आहे." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "FAQs - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "नेहमी-विचारलेले प्रश्न" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Fedora Hosted काय आहे?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora Hosted the Fedora Project द्वारे निर्मीत प्रकल्प आहे जे अपस्ट्रीम डेव्हलपर यांस कोड प्रदर्शन करीता व ऑनलाइन एकत्र कार्य करण्याकरीता परवानगी पुरविते." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "नविन प्रकल्प करीता विनंती कशी केली जाऊ शकते?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Fedora Infrastructure समुह सह कार्य टिकीट नोंदणीकृत करा." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "मदत करीता कुठे जायचे?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "मदत प्राप्त करण्याकरीता उत्तम मार्ग म्हणजे Freenode वरील #fedora-admin हे IRC मार्ग उघडा किंवा Fedora Infrastructure समुह करीता टिकीट उघडा." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Fedora Hosted खाते कसे प्राप्त केले जाऊ शकते?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "तुमचे सर्वसाधारण Fedora Project खाते Fedora Hosted सह कार्य करते. खाते आधिपासून नसल्यास Fedora Project खाते अंतर्गत अर्ज करा. लक्षात ठेवा Fedora Project करीता कोड सहभागीय करण्याकसाठी तुम्ही Contributor License Agreement करीता स्वाक्षरी केले पाहिजे." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "प्रकल्प करीता संग्रहीत प्रकाशन (tgz, zip, etc) कसे प्रकाशीत करायचे?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "तुमच्या वर्कस्टेशन वर संग्रह बनवा व scp myProject-0.1.tar.gz fedorahosted.org:<Project Name> चालवा. संग्रह https://fedorahosted.org/releases/ येथे स्थीत राहेल" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "मार्ग ऐवजी प्रकाशन करीता प्रवेशसाठी योग्य मार्ग आहे का /releases/m/y/myproject?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "आहे. https://fedorahosted.org/released/myproject तेथे मार्गदर्शन करतो. याचा तोटा असा कि तुम्हाला प्रकल्पाचे नाव माहिती असायला हवे व प्रकल्प करीता संचारन करणे शक्य नाही." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "नविन git रेपॉजटिरी, push/pull कशी करायची?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "इतर वापरकर्ता द्वारे नविन रेपॉजिटरी clone/push करण्यापूर्वी एक मास्टर push खालिल आदेश (तुमच्या स्थानीय git repo पासून) चालवून केले पाहिजे: git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "प्रकल्पकरीता कमीटसाठी परवानगी कशी प्राप्त करायची?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "प्रकल्पाच्या कमीट गटकरीता तुम्ही येथे विनंती केली पाहिजे, जे <scm><प्रकल्प> असायला हवे, उ.दा. desktop-effects प्रकल्पकरीता, gitdesktop-effects गटकरीता विनंती करा." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "रेपॉजिटरी निर्माण होईपर्यंत, मी माझ्या कोडवर कार्य करू शकतो का?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "नक्की. fedorapeople.org क्षेत्र अंतर्गत तात्पूर्ते रेपॉजिटरीची मांडणी रचण्याकरीता http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org येथे भेट द्या." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "योग्य URL असल्याची खात्री असल्यावरही hg रेपॉजिटरी अस्तित्वात नाही असे मला का सांगतो?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "उपलब्ध प्रकल्प" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "सर्व प्रकल्प दाखवा" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "प्रकल्पाचे वर्णन" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "वेब" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "निनावी URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "अधिकृत URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "उजवी-क्लिक करा व निवावी VCS URI तुमच्या क्लिपबोर्डवर प्रतिकृत करा" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "उजवी-क्लिक करा व अधिप्रमाणीत VCS URI तुमच्या क्लिपबोर्डवर प्रतिकृत करा" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "या गटात कुठलेही प्रकल्प पंजीकृत नाही" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "नविन प्रकल्प करीता विनंती करा - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "नविन प्रकल्प करीता विनंती करा" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "Fedora Infrastructure Trac इन्स्टन्स् अंतर्गत नविन प्रकल्प विनंती टिकीट द्वारे नोंदणीकृत केले पाहिजे. टिकीट बनविण्याकरीता दाखलन करण्यास विसरू नका." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "गुणविशेष खालिलरित्या भरा:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<प्रकल्पाचे नाव>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "अतिआवश्यक विनंती असल्याशिवाय minor आहे. विनंती अतिआवश्यक आहे की नाही या विषयी अनिश्चीत असल्यास या गुणविशेषला minor असे निश्चित करा." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "टिकीटचे पूर्णतया वर्णन करीता खालिल प्रारूपचे वापर करा:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "वापरणी करीता अटी - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "वापरणी करीता अटी" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "Fedora Project Infrastructure समुह उत्तम-प्रयत्न धोरण द्वारे Fedora Hosted सेवा पुरविते. नियंत्रण करणारे बरेचशे सदस्य स्वयंसेवक आहेत. नविन प्रकल्प विनंती करीता प्रतिसाद वेळ सहसा 1 तास व 3 दिवस असते. आऊटेज, घडल्यास, अधिक जास्त प्राधान्यता द्वारे हाताळले जाते." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "खालिल आवश्यकता पूर्ण करत नसल्यास Fedora Project ला वापरकर्त्याच्या प्रणालीवरील कुठलिही प्रकल्प काढून टाकण्याचे हक्क आहे:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "प्रकल्प अंतर्गत समाविष्टीत कोड परवाना आवश्यकता पूर्ण करत नाही" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "किमान सहा (6) किंवा त्यापेक्षा जास्त महिने पर्यंत कुठलेही बदलाव commit किंवा लागू केले नाही" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "आम्ही संपर्क न शाधणाऱ्या डेव्हलपरशी संपर्क साधण्याचा पूर्ण प्रयत्न करू व याचा खात्री करू की कोड, Trac माहितीकोष, व संबंधित माहिती हाताशी ठेवले जाईल ज्यांस प्रकल्प काढून टाकले गेल्यास प्रकल्प मालकाला प्रस्तुत केले जाईल." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "The Fedora Project is maintained and driven by the community and sponsored by Red Hat. This is a community maintained site. Red Hat is not responsible for content." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "निर्माता" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "कायदेशीर" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "व्यापारचिन्ह मार्गदर्शन" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "संचारन" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "मुख्य" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "विषयी" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "नविन प्रकल्प" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "संकेतस्थळ भाषा" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "होस्टींग निर्माता" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "ServerBeach द्वारे निर्मीत" diff --git a/fedorahosted.org/po/nb.po b/fedorahosted.org/po/nb.po deleted file mode 100644 index 0d4e74e..0000000 --- a/fedorahosted.org/po/nb.po +++ /dev/null @@ -1,435 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Even Kristoffer Mjøs , 2012 -# Kjartan Maraas , 2012-2013 -# kjetilbmoe , 2011 -# neb , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Kjartan Maraas \n" -"Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/fedora-web/language/nb/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: nb\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "Prosjekter vi er vert for - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "Det eksisterer ikke et sånt prosjekt." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "Angitt prosjekt eksisterer ikke på Fedora Hosted." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Om - Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Om Fedora Hosted" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Hosted er en metode sponset av Fedora Prosjektet som tillater utviklere å tilby koden deres, og muligheten til å samarbeide online. Med hvert prosjekt tilbyr vi kontroll på kildekoden med git, Mercurial, bzr og andre. Dette inkluderer også en bugtracker og wiki via Trac." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "Ditt nye prosjekt er kun en ticket unna." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "OSP - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Ofte Stilte Spørsmål" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Hva er Fedora Hosted?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora Hosted er et prosjekt sponset av Fedora Prosjektet som tillater utviklere å dele koden sin, og samarbeide online." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "Hvordan kan jeg starte et nytt prosjekt?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Send inn en ticket til Fedoras Infrastruktur lag." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "Hvor kan jeg henvende meg for hjelp?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "Den beste måten å få hjelp på er å slutte seg til IRC-kanalen #fedora-adminFreenode eller sende inn en ticket til Fedoras Infrastruktur lag." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Hvordan kan jeg få en Fedora Hosted konto?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "Din normale konto på Fedora Prosjektet fungerer med Fedora Hosted. Det eneste du trenger er å sende inn en søknad på en konto hos Fedora Prosjektet, hvis du ikke allerede har en. Merk at du må signere en Contributor License Agreement med Fedora Prosjektet for å kunne sende inn kode." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "url = ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "brukernavn" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahostet.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "prosjektnavn" - -#: data/content/faq.html:22 -msgid ".git" -msgstr ".git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "Hvor:" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "er ditt brukernavn i Fedora Account System." - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "Hvordan kan jeg publisere filer som tgz, zip, osv, for mitt prosjekt?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "Opprett arkivet på din arbeiddstasjon og kjør scp mittProsjekt-0.1.tar.gz fedorahosted.org:<Navn på prosjektet>. Arkivet kommer til å befinne seg under https://fedorahosted.org/releases/" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "Hvordan kan jeg slette noe jeg lastet opp til mitt arkiv?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "Eksisterer det en enklere måte å få tilgang til utgaver enn stien /releases/m/y/myproject?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "Ja, det er det. https://fedorahosted.org/released/myproject viser deg til samme plassen. Baksiden med dette er at du må vite navnet på prosjektet og at du ikke kan søke etter andre prosjekt." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "Jeg har nettopp fått ny git repository, hvordan kan jeg utføre «push»/«pull»?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "Før noen kan klone eller utføre «push» på ditt nye repository, må en master «push» utføres med følgende kommando (fra ditt lokale git repo): git push ssh://git.fedorahosted.org/git/dittprosjekt/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "Hvordan får jeg lov til å hjelpe til med et prosjekt?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "Kan jeg arbeide med koden min andre steder mens jeg venter på at lageret mitt skal bli klart?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "Hvorfor sier hg at lageret ikke eksisterer selv om jeg bruker korrekt adresse?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "Kan jeg legge ut ferdig kompilerte binærfiler på Fedora Hosted?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "Tilgjengelige Prosjekter" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "Vis alle prosjekter" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "Prosjektbeskrivelse" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "Nettside" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "Anonym URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "URL med autentisering" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "Høyre-klikk og kopier den anonyme VCS URI til utklippstavlen din" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "Høyre-klikk og kopier den autoriserte VCS URI til utklippstavlen din" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "Ingen prosjekter registrert i denne gruppen" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "Forespør et Nytt Prosjekt - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "Forespør et Nytt Prosjekt" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "Forespørsler om nye prosjekter må gjøres via en ticket i Fedoras Infrastruktur Trac instanse. Sørg for at du er innlogget før du oppretter en ticket." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "Fyll inn feltene som følger:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<navn på prosjektet>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "minor med mindre dette er en forespørsel som haster. Hvis du er usikker på om forespørselen haster eller ei, sett dette feltet til minor." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "Bruk følgende mal for en full beskrivelse av ticketen:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "Vilkår for Bruk - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "Vilkår for Bruk" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "Fedora Prosjektets Infrastruktur lag tilbyr Fedora Hosted tjenester så langt de kan. Mange av personene som administrerer dette er frivillige. Responstid for et nytt prosjekt er vanligvis alt fra 1 time til 3 dager. Strømbrudd, skulle det oppstå, blir håndtert med en høyere prioritet." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "Fedora Prosjektet reserverer seg retten til å fjerne hvilket som helst prosjekt fra vårt system som ikke imøtekommer følgende krav:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "Kode i prosjektet imøtekommer ikke våre lisensierings krav" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "Ingen viktige endringer har blitt sendt eller lagt til de siste seks (6) månedene." - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "Vi vil alltid gjøre vårt beste for å ta kontakt med utviklere og forsikre oss om at koden, Trac databasene, og annen relevant data er tilgjengelig slik at det kan presenteres til prosjektets eier i den begivenhet der et prosjekt skal fjernes, skulle det skje." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "Fedora Prosjektet blir vedlikeholdt og drevet av fellesskapet og sponset av Red Hat. Denne siden er et samfunnsdrevet. Red Hat er ikke ansvarlig for innholdet." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Sponsorer" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Det Lovlige" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Retningslinjer på Varemerket" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Navigasjon" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Hjem" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "Om" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "Nytt Prosjekt" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Webside Språk" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Hosting Sponsor" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "Sponset av ServerBeach" diff --git a/fedorahosted.org/po/nds.po b/fedorahosted.org/po/nds.po deleted file mode 100644 index 824d792..0000000 --- a/fedorahosted.org/po/nds.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2012-07-03 23:12+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Low German (http://www.transifex.com/projects/p/fedora-web/language/nds/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: nds\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/nl.po b/fedorahosted.org/po/nl.po deleted file mode 100644 index 4a6b95b..0000000 --- a/fedorahosted.org/po/nl.po +++ /dev/null @@ -1,435 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Geert Warrink , 2011 -# neb , 2011 -# Richard E. van der Luit , 2012 -# Richard E. van der Luit , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Richard E. van der Luit \n" -"Language-Team: Dutch (http://www.transifex.com/projects/p/fedora-web/language/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "Hosted Projecten - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "Zo'n project is niet aanwezig." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "Het gezochte project is niet op Fedora Hosted aanwezig." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Over - Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Over Fedora Hosted" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Hosted is een door het Fedora Project gesponsorde mogelijkheid om code voor ontwikkelaars te hosten en om online samen te werken. We bieden elk project controle over hun bronbestanden via git, Mercurial, bzr, en op andere manieren; ook worden een bug tracker en een wiki via Trac beschikbaar gesteld." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "Jouw nieuwe project is slechts een werkticket van jou vandaan." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "FAQs - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "FAQ" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Wat is Fedora Hosted?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora Hosted is een project gesponsord door het Fedora Project dat upstream ontwikkelaars in de gelegenheid stelt hun code te hosten en online samen te werken." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "Hoe kan ik om een nieuw project verzoeken?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Dien een werkticket in bij het Fedora Infrastructure team." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "Waar kan ik hulp krijgen?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "De beste manier om hulp te krijgen is om je aan te sluiten bij het #fedora-admin IRC kanaal op Freenode of een ticket bij het Fedora Infrastructure-team te openen." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Hoe kan ik een Fedora Hosted account openen?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "Jouw normale Fedora Project account geldt ook voor Fedora Hosted. Meld je simpelweg aan voor een Fedora Project account als je er geen hebt. Bedenk goed dat het verplicht is de Contributor License Agreement te tekenen als je code wilt bijdragen aan het Fedora Project." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "Hoe stel ik git zo in dat ik kan pushen naar mijn Fedora Hosted repo? " - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "Maak een git-kloon van je repo. Bewerk in de map van je repo op je systeem het bestand .git/config. In dat bestand onder de sectie [remote \"origin\"] pas je de URL verwijzing als volgt aan: " - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "url = ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "gebruikersnaam" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahosted.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "projectnaam" - -#: data/content/faq.html:22 -msgid ".git" -msgstr ".git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "Waar:" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr " jouw Fedora Account System-gebruikersnaam is." - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr " de naam van je fedorahosted.org-project is, zoals deze getoond wordt op fedorahosted.org" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "Hoe kan ik archief releases (tgz, zip, etc) publiceren voor mijn project?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "Creëer het archief op jouw workstation en draai scp myProject-0.1.tar.gz fedorahosted.org:<Project Naam>. Het archief zal staan in https://fedorahosted.org/releases/" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "Hoe kan ik iets verwijderen dat ik heb ge-upload naar mijn archief?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "Vul een ticket in bij fedora-infrastructure trac, waarbij je nauwkeurig aangeeft om welk bestand het gaat en waarom" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "Is er een handigere manier om releases te benaderen dan het pad /releases/m/y/myproject?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "Die is er. https://fedorahosted.org/released/myproject verwijst naar dezelfde plek. Het nadeel van zo'n verwijzing is, dat de projectnaam bekend moet zijn om het te kunnen vinden en er niet door de projecten gebladerd kan worden." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "Ik heb net een nieuwe git repository, hoe kan ik een push/pull uitvoeren?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "Voordat iemand de nieuwe repository kan klonen/pushen moet er een masterpush uitgevoerd worden met de volgende opdracht (vanuit jouw lokale git repo): git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "Hoe krijg ik rechten om aan een project iets toe te voegen?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "Je moet apply je wenden tot de groep die zich met dit project bezig houdt, dit zou moeten zijn <scm><project>, bijvoorbeeld voor het desktop-effects project, wend je tot de gitdesktop-effects-groep." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "Kan ik ergens aan mijn code werken terwijl mijn repository aangemaakt wordt?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "Natuurlijk. Bezoek http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org voor instructies hoe je een tijdelijke repository kunt opzetten in jouw fedorapeople.org omgeving." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "Waarom zegt hg mij dat de repository niet bestaat, ook al heb ik de correcte URL?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "Helaas maakt hg geen gebruik van echte URL's. Je moet een \"/\" als scheidingsteken gebruiken tussen de hostnaam en het pad en een tweede \"/\" als de root van het bestandssysteem pad. Bijvoorbeeld, als je toegang wilt hebben tot de repository van authconfig moet je \"hg clone ssh://hg.fedorahosted.org//hg/authconfig\" gebruiken." - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "Kan ik geprecompileerde binaire bestanden op Fedora Hosted aanbieden?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "Dat kan, mits aan de volgende voorwaarden wordt voldaan:
      1. Het codeproject moet onder een vrije softwarelicentie geschikt voor Fedora beschikbaar zijn.
      2. Je moet de broncode die je gebruikt om de binaire bestanden te bouwen beschikbaar maken en niet verspreiden in dezelfde tarball, of tenminste beschikbaar maken als een \"alleen bron\" tarball.
      3. Geef duidelijke instructies voor het bouwen van de software.
      " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "Beschikbare projecten" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "Laat alle projecten zien" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "Projectbeschrijving" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "Web" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "Anon URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "Auth URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "Klik met rechter muisknop en kopieer de anonieme VCS URI naar het prikbord." - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "Klik met rechter muisknop en kopieer de geautoriseerde VCS URI naar het prikbord." - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "In deze groep zijn geen projecten geregistreerd" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "Vraag een nieuw project aan - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "Vraag een nieuw project aan" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "Nieuwe projectaanvragen moeten worden ingediend met een ticket bij de Fedora Infrastructure Trac instantie. Let op dat je bent ingelogd wanneer je een ticket probeert aan te maken." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "Vul de velden als volgt in:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<naam van project>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "minor tenzij dit een dringend verzoek is. Als je er niet zeker van bent of dit een dringend verzoek is, zet dit veld dan op minor." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "Gebruik de volgende sjabloon voor de volledige beschrijving van het ticket:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "Gebruiksvoorwaarden - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "Gebruiksvoorwaarden" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "Het Fedora Project Infrastructure-team biedt Fedora Hosted services aan op een zogenaamde best-effort basis. Velen die het onderhouden zijn vrijwilligers. De reactietijd op nieuwe projectaanvragen is in het algemeen 1 tot 3 uur. Niet-beschikbaarheid, mocht dat het geval zijn, wordt met een veel hogere prioriteit behandeld." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "Het Fedora Project behoudt zich het recht voor om welk project dan ook van het systeem te verwijderen, indien het niet voldoet aan de volgende voorwaarden:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "Code in het project voldoet niet aan onze licentie-eisen" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "Er zijn geen noemenswaardige veranderingen aangeboden of toegevoegd in tenminste zes (6) maanden" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "We zullen altijd onze best doen contact te zoeken met afwezige ontwikkelaars en ons ervan verzekeren dat de code, de Trac databases, en alle relevante data zodanig bij ons worden gehouden, dat alles netjes aan de eigenaar van het project kan worden teruggegeven nadat een project is verwijderd." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© 2012 Red Hat, Inc. en anderen. Stuur commentaar en correcties naar het websites team." - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "De Fedora Project wordt onderhouden en gedreven door de gemeenschap en gesponsord door Red Hat. Dit is een door de gemeenschap onderhouden site. Red Hat is niet verantwoordelijk voor de inhoud." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Sponsors" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Legaal" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Handelsmerkrichtlijnen - Engels" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Navigatie" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Home" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "Over" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "Nieuw project" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Taal website" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Hosting sponsor" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "Gesponsord door ServerBeach" diff --git a/fedorahosted.org/po/nn.po b/fedorahosted.org/po/nn.po deleted file mode 100644 index 6251583..0000000 --- a/fedorahosted.org/po/nn.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2012-07-03 23:12+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Norwegian Nynorsk (http://www.transifex.com/projects/p/fedora-web/language/nn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: nn\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/or.po b/fedorahosted.org/po/or.po deleted file mode 100644 index 1de59a4..0000000 --- a/fedorahosted.org/po/or.po +++ /dev/null @@ -1,432 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# neb , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Oriya (http://www.transifex.com/projects/p/fedora-web/language/or/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: or\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "ହୋଷ୍ଟେଡ଼ ପ୍ରକଳ୍ପ - Fedora ହୋଷ୍ଟେଡ଼" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "ଏପରି କୌଣସି ପ୍ରକଳ୍ପ ନାହିଁ।" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "ଫେଡ଼ୋରା ହୋଷ୍ଟେଡ଼ରେ ଅନୁରୋଧ କରାଯାଇଥିବା ପ୍ରକଳ୍ପ ଅବସ୍ଥିତ ନାହିଁ।" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "ବିବରଣୀ - ଫେଡ଼ୋରା ହୋଷ୍ଟେଡ଼" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "ଫେଡ଼ୋରା ହୋଷ୍ଟେଡ଼ ବିଷୟରେ" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "ଫେଡ଼ୋରା ହୋଷ୍ଟେଡ଼ ବିକାଶକାରୀମାନଙ୍କୁ ସେମାନଙ୍କର ସଂକେତ ହୋଷ୍ଟ କରିବା ପାଇଁ ଏବଂ ଏକା ସହିତ ଅନଲାଇନ କାର୍ଯ୍ୟ କରିବା ପାଇଁ ଗୋଟିଏ ଫେଡ଼ୋରା ପ୍ରକଳ୍ପ-ପ୍ରାୟୋଜିତ ପଥ. ଆମ୍ଭେମାନେ ପ୍ରତ୍ୟେକ ପ୍ରକଳ୍ପକୁ git, Mercurial, bzr, ଏବଂ ଅନ୍ୟମାନଙ୍କ ମାଧ୍ଯମରେ ଉତ୍ସ ନିୟନ୍ତ୍ରଣ ପ୍ରଦାନ କରିଥାଉ, ସେହିପରି ଟ୍ରାକ ମାଧ୍ଯମରେ ତ୍ରୁଟି ସନ୍ଧାନକାରୀ ଏବଂ ୱିକି ପ୍ରଦତ୍ତ." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "ଆପଣଙ୍କର ନୂତନ ପ୍ରକଳ୍ପଟି କେବଳ କାର୍ଯ୍ୟ ଟିକଟ ପାଇବା ପର୍ଯ୍ୟନ୍ତ." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "FAQs - ଫେଡ଼ୋରା ହୋଷ୍ଟେଡ଼" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "ବାରମ୍ବାର ପଚରାଯାଉଥିବା ପ୍ରଶ୍ନଗୁଡ଼ିକ" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "ଫେଡ଼ୋରା ହୋଷ୍ଟେଡ଼ କଣ?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "ଫେଡ଼ୋରା ହୋଷ୍ଟେଡ଼ ଅପଷ୍ଟ୍ରିମ ବିକାଶକାରୀମାନଙ୍କୁ ସେମାନଙ୍କର ସଂକେତ ହୋଷ୍ଟ କରିବା ପାଇଁ ଏବଂ ଏକା ସହିତ ଅନଲାଇନ କାର୍ଯ୍ୟ କରିବା ପାଇଁ ଫେଡ଼ୋରା ପ୍ରକଳ୍ପ ଦ୍ୱାରା ପ୍ରାୟୋଜିତ ଗୋଟିଏ ପ୍ରକଳ୍ପ." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "ମୁଁ କେମିତି ଗୋଟିଏ ନୂତନ ପ୍ରକଳ୍ପ ପାଇଁ ଅନୁରୋଧ କରିପାରିବି?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "ଫେଡ଼ୋରା ସଂରଚନା ଦଳ ସହିତ ଗୋଟିଏ କାର୍ଯ୍ୟ ଟିକଟ ଫାଇଲ କରନ୍ତୁ." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "ସହାୟତା ପାଇଁ ମୁଁ କେଉଁଠାକୁ ଯାଇପାରିବି?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "ସହାୟତା ପାଇବାର ଉତ୍ତମ ପନ୍ଥା ହେଉଛି #fedora-admin IRC channel on Freenode କିମ୍ବା open a ticket ଫେଡ଼ୋରା ସଂରଚନା ଦଳ ସହିତ ସମ୍ମିଳିତ ହେବା." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "ମୁଁ କିପରି ଗୋଟିଏ ଫେଡ଼ୋରା ହୋଷ୍ଟେଡ଼ ଖାତା ଖୋଲିପାରିବି?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "ଆପଣଙ୍କର ସାଧାରଣ ଫେଡ଼ୋରା ପ୍ରକଳ୍ପ ଖାତା ଫେଡ଼ୋରା ହୋଷ୍ଟେଡ଼ ସହିତ କାର୍ଯ୍ୟ କରିଥାଏ. ଗୋଟିଏ ଫେଡ଼ୋରା ପ୍ରକଳ୍ପ ଖାତା ପାଇଁ ଅନୁରୋଧ କରନ୍ତୁ ଯଦି ଆପଣଙ୍କ ପାଖରେ ପୂର୍ବରୁ ନାହିଁ. ମନେରଖନ୍ତୁ ଯେ ଫେଡ଼ୋରା ପ୍ରକଳ୍ପରେ ସଂକେତ ସହଯୋଗ କରିବା ପାଇଁ ଆପଣଙ୍କୁ ଗୋଟିଏ ସହଯୋଗୀ ସହମତି ପତ୍ରରେ ହସ୍ତାକ୍ଷର କରିବାକୁ ହେବ." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "ମୁଁ ଆଲେଖି ପ୍ରକାଶନଗୁଡ଼ିକୁ ମୋର ପ୍ରକଳ୍ପ ପାଇଁ କେମିତି ପ୍ରକାଶିତ କରିବି (tgz, zip, etc)?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "ଆପଣଙ୍କର କାର୍ଯ୍ୟକ୍ଷେତ୍ରରେ ଗୋଟିଏ ଆଲେଖି ପ୍ରସ୍ତୁତ କରନ୍ତୁ ଏବଂ scp myProject-0.1.tar.gz fedorahosted.org:<Project Name> କୁ ଚଲାନ୍ତୁ. ଆଲେଖିଟି https://fedorahosted.org/releases/ ମାଧ୍ଯମରେ ଦେଖାଯାଇଥାଏ." - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "ପ୍ରକାଶଗୁଡ଼ିକୁ ଅଭିଗମ୍ୟ କରିବା ପାଇଁ ସେଠାରେ ପଥ ଠାରୁ ଅନ୍ୟ କୌଣସି ସହଜମୟ ଉପାୟ ଅଛି କି /releases/m/y/myproject?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "ସେଠାରେ. https://fedorahosted.org/released/myproject ସମାନ ସ୍ଥାନକୁ ଯିବ। ଏହାର ଅପକାରିତା ହେଉଛି, ଆପଣ ପ୍ରକଳ୍ପ ନାମଟି ଜାଣିଥିବା ଉଚିତ ଏବଂ ପ୍ରକଳ୍ପ ବ୍ରାଉଜ କରିପାରୁ ନଥିବେ।" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "ମୁଁ ଗୋଟିଏ ନୂତନ git ସଂଗ୍ରହାଳୟ ପାଇଛି, କେମିତି ଠେଲିବି/ଟାଣିବି?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "ନୂତନ ସଂଗ୍ରହାଳୟକୁ କେହି ଜଣେ କ୍ଲୋନ/ପୁସ କରିବା ପୂର୍ବରୁ ନିର୍ଦ୍ଦେଶ (ଆପଣଙ୍କର ସ୍ଥାନୀୟ git ସଂଗ୍ରହାଳୟରୁ): git push ssh://git.fedorahosted.org/git/yourproject.git/ master ମାଧ୍ଯମରେ ଗୋଟିଏ ମୂଖ୍ୟ ପୁସ କରାଯିବା ଉଚିତ" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "ଗୋଟିଏ ପ୍ରକଲ୍ପରେ ଦାଖଲ କରିବା ପାଇଁ ମୋତେ କିପରି ଅନୁମତି ମିଳିବ?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "ଆପଣଙ୍କୁ ପ୍ରକଳ୍ପର ଦାଖଲ ଶ୍ରେଣୀରେ ଆବେଦନ କରିବାକୁ ହେବ, ଯାହାକି <scm><project>, ହୋଇଥିବା ଉଚିତ। ।ଯେପରିକି, ଡେସ୍କଟପ ପ୍ରଭାବ ପ୍ରକଳ୍ପ ପାଇଁ, gitdesktop-effects ଶ୍ରେଣୀରେ ଆବେଦନ କରନ୍ତୁ।" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "ଯେତେବେଳେ ମୁଁ ମୋର ସଂଗ୍ରହାଳୟକୁ ନିର୍ମାଣ କରିବା ପାଇଁ ଅପେକ୍ଷା କରିଥାଏ, ସେତେବେଳେ ମୋର ସଂକେତରେ ଅନ୍ୟ କେଉଁଠି କାର୍ଯ୍ୟ କରିପାରେ କି?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "ନିଷ୍ଚିତ ଭାବରେ। ଆପଣଙ୍କର fedorapeople.org ସ୍ଥାନରେ କିପରି ଅସ୍ଥାୟୀ ସଂଗ୍ରହାଳୟ ସ୍ଥାପନ କରିବେ ତାହାର ନିର୍ଦ୍ଦେଶ ପାଇଁ http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org କୁ ପରିଦର୍ଶନ କରନ୍ତୁ।" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "hg କଣ ପାଇଁ କହୁଅଛି ଯେ ସଂଗ୍ରହାଳୟ ଅବସ୍ଥିତ ନାହିଁ ଯଦିଚ ମୁଁ ଜାଣିଛି ଯେ ଏହା ସଠିକ URL ଅଟେ?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "ଉପଲବ୍ଧ ପ୍ରକଳ୍ପଗୁଡ଼ିକ" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "ସମସ୍ତ ପ୍ରକଳ୍ପଗୁଡ଼ିକୁ ଦର୍ଶାନ୍ତୁ" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "ପ୍ରକଳ୍ପ ବର୍ଣ୍ଣନା" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "ୱେବ" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "Anon URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "Auth URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "ଡ଼ାହାଣ-କ୍ଲିକ କରନ୍ତୁ ଏବଂ ବେନାମି VCS URI କୁ ଆପଣଙ୍କର କ୍ଲିପବୋର୍ଡ଼ରେ ନକଲକରନ୍ତୁ" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "ଡ଼ାହାଣ-କ୍ଲିକ କରନ୍ତୁ ଏବଂ ଅଧିକାରପ୍ରାପ୍ତ VCS URI କୁ ଆପଣଙ୍କର କ୍ଲିପବୋର୍ଡ଼ରେ ନକଲକରନ୍ତୁ" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "ଏହି ଶ୍ରେଣୀରେ କୌଣସି ପ୍ରକଳ୍ପ ପଞ୍ଜିକୃତ ହୋଇନାହିଁ" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "ଗୋଟିଏ ନୂତନ ପ୍ରକଲ୍ପ ପାଇଁ ଅନୁରୋଧ କରନ୍ତୁ - ଫେଡ଼ୋରା ହୋଷ୍ଟେଡ଼" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "ଗୋଟିଏ ନୂତନ ପ୍ରକଲ୍ପ ପାଇଁ ଅନୁରୋଧ କରନ୍ତୁ" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "ଫେଡ଼ୋରା ସଂରଚନା ଟ୍ରାକ ପରିସ୍ଥିତି ରେ ଗୋଟିଏ ଟିକଟ ମାଧ୍ଯମରେ ନୂତନ ପ୍ରକଳ୍ପ ଅନୁରୋଧକୁ ଫାଇଲ କରିହେବ. ଟିକଟ ପ୍ରସ୍ତୁତ କରିବା ପୂର୍ବରୁ ନିଶ୍ଚିତଭାବେ ଲଗଇନ କରନ୍ତୁ." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "ନିମ୍ନଲିଖିତ ଭାବରେ ଏହି କ୍ଷେତ୍ରଗୁଡ଼ିକୁ ପୁରଣ କରନ୍ତୁ:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<name of project>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "minor ଯଦିଚ ଏହା ଗୋଟିଏ ଜରୁରୀ ଅନୁରୋଧ. ଯଦି ଆପଣ ଅନିଶ୍ଚିତ ଅଛନ୍ତି ଯେ ଅନୁରୋଧଟି ଜରୁରୀ କି ନୁହଁ ତେବେ ଏହି କ୍ଷେତ୍ରକୁ minor ସେଟ କରନ୍ତୁ." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "ଟିକଟର ସମ୍ପୂର୍ଣ୍ଣ ବର୍ଣ୍ଣନା ପାଇଁ ନିମ୍ନଲିଖିତ ଢାଞ୍ଚାଗୁଡ଼ିକୁ ବ୍ୟବହାର କରନ୍ତୁ:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "ବ୍ୟବହାର ବିଧି - ଫେଡ଼ୋରା ହୋଷ୍ଟେଡ଼" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "ବ୍ୟବହାର ବିଧି" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "ଫେଡ଼ୋରା ପ୍ରକଳ୍ପ ସଂରଚନା ଦଳ ଉତ୍ତମ ଉଦ୍ୟମ ଫଳରେ ଫେଡ଼ୋରା ହୋଷ୍ଟେଡ଼ ସର୍ଭିସ ପ୍ରଦାନ କରିଥାଏ. ଏହାକୁ ପରିଚାଳନା କରୁଥିବା ଅଧିକାଂଶ ବ୍ୟକ୍ତିମାନେ ହେଉଛନ୍ତି ସ୍ୱୟଂସେବକ. ନୂତନ ପ୍ରକଳ୍ପ ଅନୁରୋଧ ପାଇଁ ଉତ୍ତର ପାଇବା ସମୟ ହେଉଛି 1 ଘଣ୍ଟାରୁ 3ଦିନ. ଅନୁପୋଯୋଗିତା, ଘଟିଲେ, ତାହା ଅଧିକ ଗୁରୁତ୍ୱପୂର୍ଣ୍ଣତାର ସହିତ ନିୟନ୍ତ୍ରଣ କରାଯାଇଥାଏ." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "ଫେଡ଼ୋରା ପ୍ରକଳ୍ପ ପାଖରେ କୌଣସି ଏକ ପ୍ରକଳ୍ପକୁ ଆମ ତନ୍ତ୍ରରୁ ଅପସାରଣ କରିବାର ଅଧିକାର ଥାଏ ଯାହାକି ନିମ୍ନଲିଖିତ ମାନଦଣ୍ଡକୁ ପୁରଣ କରିନଥାଏ:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "ପ୍ରକଳ୍ପରେ ରହିଥିବା ସଂକେତ ଆମର ଅନୁମତିପତ୍ର ଆବଶ୍ୟକତାକୁ କୁ ପୁରଣ କରିନଥାଏ" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "ଅତିକମରେ (6) ମାସ ପାଇଁ କୌଣସି ଉଲ୍ଲେଖନୀୟ ପରିବର୍ତ୍ତନକୁ ଦାଖଲ କିମ୍ବା ପ୍ରୟୋଗ କରାଯାଇନାହିଁ" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "ଆମ୍ଭେମାନେ ସର୍ବଦା ଅନୁପସ୍ଥିତ ବିକାଶକାରୀମାନଙ୍କୁ ଯୋଗାଯୋଗ କରିବାକୁ ଶକ୍ତିମୁତାବକ ଚେଷ୍ଟା କରିଥାଉ ଏବଂ ସଂକେତ, ଟ୍ରାକ ତଥ୍ୟାବଳୀ, ଏବଂ କୌଣସି ସମ୍ପର୍କୀୟ ତଥ୍ୟକୁ ହାତରେ ରଖିବା ପାଇଁ ନିଶ୍ଚିତ କରିଥାଉ, ଯାହାଫଳରେ ଗୋଟିଏ ପ୍ରକଳ୍ପ ଅପସାରଣ ସମୟରେ ଏହାକୁ ପ୍ରକଳ୍ପ ମାଲିକଙ୍କ ସାମ୍ନାରେ ଉପସ୍ଥାପନ କରାଯାଇପାରିବ." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "ଫେଡ଼ୋରା ପ୍ରକଳ୍ପଟି ସମ୍ପ୍ରଦାୟ ଦ୍ୱାରା ନିର୍ବାହ ଏବଂ ପରିଚାଳିତ ହୋଇଥାଏ ଏବଂ Red Hat ଦ୍ୱାରା ପ୍ରାୟୋଜିତ ହୋଇଥାଏ. ଏହା ଗୋଟିଏ ସମ୍ପ୍ରଦାୟ ପରିଚାଳିତ ସାଇଟ. ବିଷୟବସ୍ତୁ ପାଇଁ Red Hat ଦାୟୀ ନୁହଁ." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "ପ୍ରାୟୋଜକମାନେ" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "ନୈତିକ" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "ବ୍ୟାପାରିକ ମାର୍ଗଦର୍ଶନ" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "ଫେଡ଼ୋରା" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "ସଂଚାଳନ" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "ଘର" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "ବିବରଣୀ" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "ନୂତନ ପ୍ରକଳ୍ପ" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "ୱେବସାଇଟ ଭାଷା" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "ହୋଷ୍ଟିଙ୍ଗ ପ୍ରାୟୋଜକ" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "ServerBeach ଦ୍ୱାରା ପ୍ରାୟୋଜିତ" diff --git a/fedorahosted.org/po/pa.po b/fedorahosted.org/po/pa.po deleted file mode 100644 index f9b2293..0000000 --- a/fedorahosted.org/po/pa.po +++ /dev/null @@ -1,432 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# neb , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/fedora-web/language/pa/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: pa\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "ਹੋਸਟਡ ਪਰੋਜੈਕਟ - ਫੇਡੋਰਾ ਉੱਤੇ ਹੋਸਟ ਕੀਤਾ" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "ਕੋਈ ਅਜਿਹਾ ਪਰੋਜੈਕਟ ਨਹੀਂ।" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "ਮੰਗੇ ਗਏ ਪਰੋਜੈਕਟ ਫੇਡੋਰਾ ਹੋਸਟਡ ਉੱਤੇ ਮੌਜੂਦ ਨਹੀਂ ਹਨ।" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "ਇਸ ਬਾਰੇ - ਫੇਡੋਰਾ ਹੋਸਟਡ" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "ਫੇਡੋਰਾ ਹੋਸਟਡ ਬਾਰੇ" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "ਫੇਡੋਰਾ ਹੋਸਟਡ ਇੱਕ ਫੇਡੋਰਾ ਪਰੋਜੈਕਟ- ਹੈ ਜੋ ਡਿਵੈਲਪਰਾਂ ਨੂੰ ਆਪਣਾ ਕੋਡ ਅਤੇ ਯੋਗਦਾਨ ਆਨਲਾਈਨ ਰੱਖਣ ਲਈ ਮਨਜੂਰੀ ਦਿੰਦਾ ਹੈ। ਅਸੀਂ ਹਰੇਕ ਪਰੋਜੈਕਟ ਦਾ ਸੋਰਸ ਕੰਟਰੋਲ git, Mercurial, bzr, ਅਤੇ ਹੋਰ ਤਰੀਕਿਆਂ ਨਾਲ ਦਿੰਦੇ ਹਾਂ, ਨਾਲ ਹੀ Trac ਰਾਹੀਂ ਇੱਕ ਬੱਗ ਟਰੈਕ ਅਤੇ ਵਿਕਿ।" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "ਤੁਹਾਡਾ ਨਵਾਂ ਪਰੋਜੈਕਟ ਸਿਰਫ ਇੱਕ ਵਰਕ ਟਿਕਟ ਹੈ।" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "ਆਮ ਪੁੱਛੇ ਸਵਾਲ - ਫੇਡੋਰਾ ਹੋਸਟਡ" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "ਆਮ ਪੁੱਛੇ ਸਵਾਲ" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "ਫੇਡੋਰਾ ਹੋਸਟਡ ਕੀ ਹੈ?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "ਫੇਡੋਰਾ ਹੋਸਟਡ ਇੱਕ ਪਰੋਜੈਕਟ ਹੈ ਜੋ ਫੇਡੋਰਾ ਪਰੋਜੈਕਟ ਵਲੋਂ ਸਹਿਯੋਗੀ ਹੈ ਤਾਂ ਜੋ ਅੱਪਸਟਰੀਮ ਡਿਵੈਲਪਰ ਆਪਣਾ ਕੋਡ ਅਤੇ ਹਿੱਸੇਦਾਰੀ ਆਨਲਾਈਨ ਰੱਖ ਸਕਣ।" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "ਮੈਂ ਨਵੇਂ ਪਰੋਜੈਕਟ ਲਈ ਕਿਵੇਂ ਬੇਨਤੀ ਕਰ ਸਕਦਾ ਹਾਂ?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "ਫੇਡੋਰਾ ਢਾਂਚਾ ਟੀਮ ਨੂੰ ਇੱਕ ਵਰਕ ਟਿਕਟ ਫਾਇਲ ਕਰੋ।" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "ਮੈਂ ਮੱਦਦ ਲਈ ਕਿੱਥੇ ਜਾ ਸਕਦਾ ਹਾਂ?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "ਮੱਦਦ ਲੈਣ ਦਾ ਵਧੀਆ ਤਰੀਕਾ ਹੈ Freenode ਉੱਤੇ #fedora-admin IRC ਚੈਨਲ ਨਾਲ ਜੁੜੋ ਜਾਂ ਫੇਡੋਰਾ ਢਾਂਚਾ ਟੀਮ ਲਈ ਟਿਕਟ ਖੋਲ੍ਹੋ।" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "ਮੈਂ ਫੇਡੋਰਾ ਹੋਸਟਡ ਅਕਾਊਂਟ ਕਿਵੇਂ ਪ੍ਰਾਪਤ ਕਰ ਸਕਦਾ ਹਾਂ?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "ਤੁਹਾਡਾ ਆਮ ਫੇਡੋਰਾ ਪਰੋਜੈਕਟ ਅਕਾਊਂਟ ਫੇਡੋਰਾ ਹੋਸਟਡ ਨਾਲ ਕੰਮ ਕਰਦਾ ਹੈ। ਜੇ ਤੁਹਾਡੇ ਕੋਲ ਨਹੀਂ ਹੈ ਤਾਂ ਫੇਡੋਰਾ ਪਰੋਜੈਕਟ ਅਕਾਊਂਟ ਲਈ ਅਪਲਾਈ ਕਰੋ। ਇਹ ਯਾਦ ਰੱਖੋ ਕਿ ਤੁਹਾਨੂੰ ਕੋਡ ਵਿੱਚ ਹਿੱਸਾ ਪਾਉਣ ਲਈ ਫੇਡੋਰਾ ਪਰੋਜੈਕਟ ਨਾਲ ਹਿੱਸੇਦਾਰੀ ਲਾਈਸੈਂਸ ਇਕਰਾਰਨਾਮੇ ਤੇ ਦਸਤਖਤ ਕਰਨੇ ਜਰੂਰੀ ਹਨ।" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "ਮੈਂ ਆਪਣੇ ਪਰੋਜੈਕਟ ਲਈ ਕਿਸ ਤਰਾਂ ਆਰਚੀਵ ਰੀਲੀਜ਼ (tgz, zip, ਆਦਿ) ਪਬਲਿਸ਼ ਕਰ ਸਕਦਾ ਹਾਂ?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "ਆਪਣੇ ਵਰਕਸਟੇਸ਼ਨ ਤੇ ਇੱਕ ਅਕਾਇਵ ਬਣਾਓ ਅਤੇ scp myProject-0.1.tar.gz fedorahosted.org:<Project Name> ਚਲਾਓ। ਅਕਾਇਵ ਨੂੰ https://fedorahosted.org/releases/ ਵਿੱਚ ਰੱਖਿਆ ਜਾਵੇਗਾ।" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "ਰੀਲੀਜ਼ ਨੂੰ ਵਰਤਣ ਲਈ ਮਾਰਗ /releases/m/y/myproject ਤੋਂ ਬਿਨਾਂ ਕੋਈ ਹੋਰ ਸੌਖਾ ਤਰੀਕਾ ਹੈ?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "ਇਹ ਹੈ। https://fedorahosted.org/released/myproject ਵੀ ਉਸੇ ਥਾਂ ਤੇ ਜਾਏਗਾ। ਇਸ ਦਾ ਨੁਕਸਾਨ ਹੈ ਕਿ ਤੁਹਾਨੂੰ ਪਰੋਜੈਕਟ ਦਾ ਨਾਂ ਪਤਾ ਹੋਣਾ ਜਰੂਰੀ ਹੈ ਅਤੇ ਪਰੋਜੈਕਟਾਂ ਲਈ ਨਹੀਂ ਵੇਖ ਸਕਦੇ।" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "ਮੈਨੂੰ ਨਵੀਂ git ਰਿਪੋਜ਼ਟਰੀ ਮਿਲੀ ਹੈ, ਮੈਂ ਕਿਵੇਂ push/pull ਕਰ ਸਕਦਾ ਹਾਂ?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "ਕਿਸੇ ਵਲੋਂ ਨਵੀਂ ਡਾਇਰੈਕਟਰੀ clone/push ਕਰਨ ਤੋਂ ਪਹਿਲਾਂ ਮਾਸਟਰ push (ਤੁਹਾਡੀ ਲੋਕਲ git repo ਤੋਂ) ਕਰਨ ਲਈ ਇਹ ਕਮਾਂਡ ਚਲਾਉਣੀ ਜਰੂਰੀ ਹੈ: git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "ਮੈਂ ਇੱਕ ਪਰੋਜੈਕਟ ਵਿੱਚ ਕਮਿੱਟ ਕਰਨ ਦੀ ਮਨਜੂਰੀ ਕਿਵੇਂ ਲੈ ਸਕਦਾ ਹਾਂ?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "ਤੁਹਾਨੂੰ ਪਰੋਜੈਕਟ ਦੇ ਕਮਿੱਟ ਗਰੁੱਪ ਲਈ ਅਪਲਾਈ ਕਰਨਾ ਚਾਹੀਦਾ ਹੈ, ਜੋ <scm><project> ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ, ਜਿਵੇਂ ਡੈਸਕਟਾਪ-ਪ੍ਰਭਾਵਾਂ ਲਈ, gitdesktop-effects ਗਰੁੱਪ ਵਿੱਚ ਅਪਲਾਈ ਕਰੋ।" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "ਜਦੋਂ ਮੈਂ ਮੇਰੀ ਰਿਪੋਜ਼ਟਰੀ ਬਣਨ ਲਈ ਉਡੀਕ ਕਰਦਾ ਹਾਂ, ਕੀ ਮੈਂ ਕਿਤੇ ਹੋਰ ਆਪਣੇ ਕੋਡ ਤੇ ਕੰਮ ਕਰ ਸਕਦਾ?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "ਕਿਉਂ ਨਹੀਂ। ਆਪਣੀ fedorapeople.org ਸਪੇਸ ਵਿੱਚ ਆਰਜੀ ਰਿਪੋਜ਼ਟਰੀ ਸੈੱਟ ਅੱਪ ਕਰਨ ਬਾਰੇ ਹਦਾਇਤਾਂ ਲਈ http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org ਵੇਖੋ।" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "hg ਮੈਨੂੰ ਕਿਉਂ ਕਹਿੰਦਾ ਹੈ ਕਿ ਰਿਪੋਜ਼ਟਰੀ ਮੌਜੂਦ ਨਹੀਂ ਹੈ ਪਰ ਮੈਨੂੰ ਪਤਾ ਹੈ ਕਿ ਮੈਂ ਠੀਕ URL ਦਿੱਤਾ ਹੈ?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "ਕੀ ਮੈਂ ਫੇਡੋਰਾ ਹੋਸਟਡ ਉੱਪਰ ਪਰੀ-ਕੰਪਾਈਲਡ ਬਾਇਨਰੀ ਦੇ ਸਕਦਾ ਹਾਂ?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "ਹਾਂ ਤੁਸੀਂ ਕਰ ਸਕਦੇ ਹੋ, ਜਦੋਂ ਤੱਕ ਹੇਠਲੀਆਂ ਹਾਲਤਾਂ ਮੌਜੂਦ ਹਨ:
      1. ਫੇਡੋਰਾ ਸੰਬੰਧੀ ਫਰੀ ਸਾਫਟਵੇਅਰ ਲਾਈਸਿੰਸ ਅਧੀਨ ਕੋਡ ਪਰੋਜੈਕਟ ਉਪਲੱਬਧ ਹੋਣਾ ਜਰੂਰੀ ਹੈ।
      2. ਤੁਹਾਨੂੰ ਸੋਰਸ ਕੋਡ ਲੈਣਾ ਪਵੇਗਾ ਤਾਂ ਜੋ ਉਪਲੱਬਧ ਬਾਇਨਰੀ ਬਿਲਡ ਕੀਤੇ ਜਾ ਸਕਣ, ਅਤੇ ਉਸੇ ਟਾਰਬਾਲ (tarball) ਵਿੱਚ ਡਿਸਟਰੀਬਿਊਟ ਨਾਲ ਕੀਤੇ ਹੋਣ, ਜਾਂ ਘੱਟੋ-ਘੱਟ ਇੱਕ \"source only\" ਟਾਰਬਾਲ ਉਪਲੱਬਧ ਕਰਾਈ ਹੋਵੇ।
      3. ਤੁਹਾਨੂੰ ਸਾਫਟਵੇਅਰ ਬਿਲਡ ਕਰਨ ਲਈ ਹਦਾਇਤਾਂ ਦੇਣੀਆਂ ਜਰੂਰੀ ਹਨ।
      " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "ਉਪਲੱਬਧ ਪਰੋਜੈਕਟ" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "ਸਭ ਪਰੋਜੈਕਟ ਵੇਖਾਓ" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "ਪਰੋਜੈਕਟ ਜਾਣਕਾਰੀ" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "ਵੈੱਬ" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "ਅਣਜਾਣ URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "ਪ੍ਰਮਾਣਿਤ URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "ਸੱਜਾ-ਕਲਿੱਕ ਕਰੋ ਅਤੇ ਅਣਜਾਣਾ VCS URI ਨੂੰ ਆਪਣੇ ਕਲਿੱਪਬੋਰਡ ਵਿੱਚ ਕਾਪੀ ਕਰੋ" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "ਸੱਜਾ-ਕਲਿੱਕ ਕਰੋ ਅਤੇ ਪ੍ਰਮਾਣਿਤ VCS URI ਨੂੰ ਆਪਣੇ ਕਲਿੱਪਬੋਰਡ ਵਿੱਚ ਕਾਪੀ ਕਰੋ" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "ਇਸ ਗਰੁੱਪ ਵਿੱਚ ਕੋਈ ਪਰੋਜੈਕਟ ਰਜਿਸਟਰ ਨਹੀਂ ਹੈ" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "ਨਵੇਂ ਪਰੋਜੈਕਟ ਲਈ ਬੇਨਤੀ ਕਰੋ - ਫੇਡੋਰਾ ਹੋਸਟਡ" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "ਨਵੇਂ ਪਰੋਜੈਕਟ ਲਈ ਬੇਨਤੀ ਕਰੋ" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "ਨਵੀਂ ਬੇਨਤੀ Fedora Infrastructure Trac instance ਰਾਹੀਂ ਭੇਜਣੀ ਜਰੂਰੀ ਹੈ। ਟਿਕਟ ਬਣਾਉਣ ਤੋਂ ਪਹਿਲਾਂ ਲਾਗਇਨ ਕਰਨਾ ਜਰੂਰੀ ਹੈ।" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "ਹੇਠਲੇ ਕਾਲਮ ਭਰੋ:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<ਪਰੋਜੈਕਟ ਦਾ ਨਾਂ>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "minor ਜਦੋਂ ਤੱਕ ਇਹ ਜਰੂਰੀ ਬੇਨਤੀ ਹੈ। ਜੇ ਤੁਹਾਨੂੰ ਇਹ ਨਹੀਂ ਪਤਾ ਕਿ ਬੇਨਤੀ ਜਰੂਰੀ ਹੈ ਜਾਂ ਨਹੀਂ ਤਾਂ ਇਸ ਕਾਲਮ ਨੂੰ minor ਨਿਰਧਾਰਤ ਕਰੋ।" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "ਟਿਕਟ ਦੇ ਪੂਰੇ ਵੇਰਵੇ ਲਈ ਹੇਠਲਾ ਟੈਪਲੇਟ ਭਰੋ:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "ਵਰਤਣ ਲਈ ਸ਼ਰਤਾਂ - ਫੇਡੋਰਾ ਹੋਸਟਡ" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "ਵਰਤਣ ਲਈ ਸ਼ਰਤਾਂ" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "ਫੇਡੋਰਾ ਪਰੋਜੈਕਟ ਢਾਂਚਾ ਟੀਮ ਵਧੀਆ ਤਰੀਕੇ ਨਾਲ ਫੇਡੋਰਾ ਹੋਸਟਡ ਸਰਵਿਸ ਦਿੰਦੀ ਹੈ। ਇਸ ਦਾ ਪਰਬੰਧ ਕਰਨ ਵਾਲੇ ਬਹੁਤੇ ਲੋਕ ਵਲੰਟੀਅਰ ਹੀ ਹਨ। ਨਵੀਂ ਪਰੋਜੈਕਟ ਬੇਨਤੀ ਲਈ ਜਵਾਬ ਸਮਾਂ 1 ਘੰਟੇ ਤੋਂ 3 ਦਿਨ ਦਾ ਹੈ। ਆਊਟੇਜ ਜਲਦੀ ਤੋਂ ਜਲਦੀ ਠੀਕ ਕੀਤੀ ਜਾਂਦੀ ਹੈ।" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "ਫੇਡੋਰਾ ਪਰੋਜੈਕਟ ਸਾਡੇ ਸਿਸਟਮ ਤੋਂ ਕਿਸੇ ਪਰੋਜੈਕਟ ਨੂੰ ਹਟਾਉਣ ਦੇ ਹੱਕ ਰਾਖਵੇਂ ਰੱਖਦਾ ਹੈ, ਜਿਸ ਵਿੱਚ ਹੇਠਲੀਆਂ ਸ਼ਰਤਾਂ ਪੂਰੀਆਂ ਨਹੀਂ ਹੁੰਦੀਆਂ ਹਨ:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "ਪਰੋਜੈਕਟ ਵਿਚਲਾ ਕੋਡ ਸਾਡੀ ਲਾਈਸੈਂਸ ਲੋੜ ਪੂਰੀ ਨਹੀਂ ਕਰਦਾ ਹੈ" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "ਘੱਟੋ-ਘੱਟ ਛੇ (6) ਮਹੀਨੇ ਕੋਈ ਖਾਸ ਤਬਦੀਲੀ ਲਈ ਸਲਾਹ ਜਾਂ ਲਾਗੂ ਨਹੀਂ ਕੀਤੀ ਜਾਂਦੀ ਹੈ।" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "ਅਸੀਂ ਹਮੇਸ਼ਾ ਗੈਰ-ਮੌਜੂਦ ਡਿਵੈਲਪਰਾਂ ਨਾਲ ਸੰਪਰਕ ਕਰਨ ਦੀ ਪੂਰੀ ਕੋਸ਼ਿਸ਼ ਕਰਾਂਗੇ ਤਾਂ ਕਿ ਕੋਡ, Trac ਡਾਟਾਬੇਸ, ਅਤੇ ਹੋਰ ਸੰਬੰਧਿਤ ਡਾਟਾ ਹੱਥ ਵਿੱਚ ਰੱਖਿਆ ਜਾਏ ਜੋ ਪਰੋਜੈਕਟ ਹਟਾਉਣ ਸਮੇਂ ਉਸ ਦੇ ਮਾਲਕ ਨੂੰ ਦਿੱਤਾ ਜਾ ਸਕੇ।" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "ਫੇਡੋਰਾ ਪਰੋਜੈਕਟ ਦਾ ਪਰਬੰਧਨ ਅਤੇ ਚਾਲ-ਚੱਲਣ ਕਮਿਊਨਿਟੀ ਕਰਦੀ ਹੈ ਅਤੇ Red Hat ਵਲੋਂ ਸਪਾਂਸਰ ਕੀਤਾ ਗਿਆ ਹੈ। ਇਹ ਕਮਿਊਨਿਟੀ ਵਲੋਂ ਪਰਬੰਧਿਤ ਸਾਈਟ ਹੈ। ਸਮੱਗਰੀ ਲਈ Red Hat ਜ਼ਿੰਮੇਵਾਰ ਨਹੀਂ ਹੈ।" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "ਸਪਾਂਸਰ" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "ਕਾਨੂੰਨੀ" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "ਟਰੇਡਮਾਰਕ ਹਦਾਇਤਾਂ" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "ਫੇਡੋਰਾ" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "ਨੇਵੀਗੇਸ਼ਨ" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "ਘਰ" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "ਇਸ ਬਾਰੇ" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "ਨਵਾਂ ਪਰੋਜੈਕਟ" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "ਵੈੱਬਸਾਈਟ ਭਾਸ਼ਾ" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "ਹੋਸਟਿੰਗ ਸਪਾਂਸਰ" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "ServerBeach ਵਲੋਂ ਸਪਾਂਸਰ" diff --git a/fedorahosted.org/po/pl.po b/fedorahosted.org/po/pl.po deleted file mode 100644 index 7b6382e..0000000 --- a/fedorahosted.org/po/pl.po +++ /dev/null @@ -1,433 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# neb , 2011 -# Piotr Drąg , 2011, 2012 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Piotr Drąg \n" -"Language-Team: Polish (http://www.transifex.com/projects/p/fedora-web/language/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "Hostowane projekty - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "Brak projektu." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "Żądany projekt nie istnieje na Fedora Hosted." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Informacje o - Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Informacje o Fedora Hosted" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Hosted to sponsorowane przez Projekt Fedora miejsce do przechowywania kodu i pracowania z nim online. Każdemu projektowi dostarczana jest kontrola źródła przez systemy git, Mercurial, bzr i inne, a także śledzenie błędów i wiki przez narzędzie Trac." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "Założenie nowego projektu jest bardzo proste, wystarczy się zgłosić." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "FAQ - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Często zadawane pytania" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Co to jest Fedora Hosted?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora Hosted to projekt sponsorowany przez Projekt Fedora, umożliwiający programistom przechowywanie kodu i pracowanie z nim online." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "Jak można założyć nowy projekt?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Należy zgłosić chęć zespołowi Infrastruktury Fedory (w języku angielskim)." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "Jak można uzyskać pomoc?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "Najlepiej dołączyć do kanału IRC #fedora-admin w sieci Freenode lub zgłosić problem (w języku angielskim) zespołowi Infrastruktury Fedory." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Jak można dostać konto na Fedora Hosted?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "Normalne konto Projektu Fedora działa z Fedora Hosted. Należy po prostu założyć konto Projektu Fedora, jeśli się go jeszcze nie ma. Proszę zauważyć, że należy podpisać warunki licencyjne współtwórcy Projektu Fedora, aby móc wysyłać kod." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "Jak skonfigurować program git, aby można było wysyłać zmiany do repozytorium Fedora Hosted?" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "Najpierw należy wykonać polecenie \"git clone\" na repozytorium. Następnie należy przejść do katalogu repozytorium w komputerze i zmodyfikować plik .git/config w sekcji [remote \"origin\"], aby ustawienie adresu URL używało poniższego formatu: " - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "url = ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "nazwa-użytkownika" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahosted.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "nazwa-projektu" - -#: data/content/faq.html:22 -msgid ".git" -msgstr ".git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "Gdzie:" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr " jest nazwą użytkownika w Systemie kont Fedory." - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr " jest nazwą projektu w formie używanej na głównej stronie fedorahosted.org." - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "Jak można publikować wydania (tgz, zip itp.) projektu?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "Należy utworzyć archiwum na własnym komputerze i wykonać polecenie scp mójProjekt-0.1.tar.gz fedorahosted.org:<Nazwa projektu>. Archiwum zostanie umieszczone na https://fedorahosted.org/releases/" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "Jak usunąć coś z archiwum?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "Proszę wypełnić zgłoszenie w systemie trac projektu fedora-infrastructure wymieniając dokładnie które pliki mają zostać usunięte i dlaczego" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "Czy jest jakiś bardziej wygodny sposób na dostęp do wydań od ścieżki /releases/m/y/mój_projekt?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "Jest taki. https://fedorahosted.org/released/mój_projekt prowadzi do tego samego miejsca. Wada tego rozwiązania jest taka, że trzeba znać nazwę projektu, i nie można przeglądać innych projektów." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "Jak można wykonać polecenia push/pull po założeniu repozytorium git?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "Zanim ktokolwiek będzie mógł wykonać polecenia clone/push na nowym repozytorium, należy wykonać polecenie push na gałęzi master (z lokalnego repozytorium git): git push ssh://git.fedorahosted.org/git/mój_projekt.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "Jak uzyskać uprawnienie do wysyłania do projektu?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "Należy wysłać aplikację do grupy z uprawnieniami do wysyłania do projektu, czyli <VCS><projekt>, czyli dla projektu desktop-effects należy dołączyć do grupy gitdesktop-effects." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "Czy można pracować nad kodem, kiedy repozytorium jeszcze nie zostało utworzone?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "Oczywiście. Proszę odwiedzić http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org, aby zobaczyć instrukcje ustawiania tymczasowego repozytorium w przestrzeni fedorapeople.org." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "Dlaczego hg twierdzi, że repozytorium nie istnieje, mimo że podano poprawny adres URL?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "Niestety hg nie używa prawdziwych adresów URL. Należy użyć znaku \"/\" do oddzielenia nazwy komputera i ścieżki oraz drugi znak \"/\" jako root ścieżki w systemie plików. Na przykład, jeśli uzyskiwany jest dostęp do repozytorium authconfig, należy użyć adresu \"hg clone ssh://hg.fedorahosted.org//hg/authconfig\"" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "Czy można udostępniać skompilowane programy w serwisie Fedora Hosted?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "Można, dopóki spełnione są następujące warunki:
      1. kod projektu musi być dostępny na wolnej licencji odpowiedniej dla Fedory.
      2. Kod źródłowy użyty do skompilowania programu musi być dostępny i rozprowadzany w tym samym archiwum tar, a co najmniej w formie archiwum z samym kodem.
      3. Należy dostarczać przejrzyste instrukcje kompilowania programu.
      " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "Dostępne projekty" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "Wyświetla wszystkie projekty" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "Opis projektu" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "WWW" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "Anonimowy adres URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "Adres URL uwierzytelnienia" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "Można nacisnąć prawym przyciskiem i skopiować adres anonimowego VCS do schowka" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "Można nacisnąć prawym przyciskiem i skopiować adres upoważnionego VCS do schowka" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "Brak projektów zarejestrowanych w tej grupie" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "Założenie nowego projektu - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "Założenie nowe projektu" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "Prośby o nowe projekty muszą być zgłaszane za pomocą oprogramowania Trac Infrastruktury Fedory (w języku angielskim). Proszę upewnić się, że zalogowano się przez utworzeniem zgłoszenia." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "Należy wypełnić pola tak, jak opisano poniżej (w języku angielskim):" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<nazwa projektu>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "minor, chyba, że to ważne zgłoszenie. W przypadku braku pewności, czy zgłoszenie jest ważne, należy ustawić to pole na minor." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "Należy użyć poniższego szablonu, aby w pełni opisać zgłoszenie:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "Warunki używania - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "Warunki używania" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "Zespół Infrastruktury Fedory dostarcza usługi Fedora Hosted w jak najlepszej intencji. Większość jego członków to wolontariusze. Czas odpowiedzi na prośbę o nowy projekt to zwykle od jednej godziny do trzech dni. Przerwy w działaniu, jeśli wystąpią, są traktowane z dużo większym priorytetem." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "Projekt Fedora zastrzega sobie prawo do usuwania wszystkich projektów ze swojego systemu, które nie spełniają poniższych warunków:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "Kod zawarty w projekcie nie spełnia warunków licencyjnych" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "Żadne większe zmiany nie zostały wysłane lub zastosowane od co najmniej sześciu (6) miesięcy" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "Zawsze staramy się skontaktować z zagubionymi programistami i upewnić się, że kod, baza danych Trac i wszystkie ważne dane są przechowywane, aby mogły zostać przekazane właścicielowi projektu w przypadku, gdy zostaną usunięte." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© 2012 Red Hat, Inc. i inni. Proszę wysyłać wszelkie komentarze i korekty do zespołu stron WWW (w języku angielskim)." - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "Projekt Fedora jest zarządzany i rozwijany przez społeczność, a sponsorowany przez firmę Red Hat. Ta strona jest zarządzana przez społeczność. Firma Red Hat nie odpowiada za jej treść." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Sponsorzy" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Kwestie prawne" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Wskazówki dotyczące używania znaków handlowych" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Menu" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Strona główna" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "Informacje o" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "Nowy projekt" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Język strony WWW" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Sponsor hostingu" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "Sponsorowane przez ServerBeach" diff --git a/fedorahosted.org/po/pt.po b/fedorahosted.org/po/pt.po deleted file mode 100644 index c53aade..0000000 --- a/fedorahosted.org/po/pt.po +++ /dev/null @@ -1,435 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# alfalb_mansil, 2014 -# neb , 2011 -# Ricardo Pinto , 2012 -# Rui Gouveia , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: alfalb_mansil\n" -"Language-Team: Portuguese (http://www.transifex.com/projects/p/fedora-web/language/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "Projetos Alojados - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "Não existe tal projeto." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "O projeto solicitado não existe em Fedora Hosted." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Sobre - Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Sobre o Fedora Hosted" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "O Fedora Hosted é um Projeto Fedora patrocinado para os programadores alojarem o seu código e colaborar on-line. Nós fornecemos cada projeto com um controle da fonte via git, Mercurial, bzr, e outros, bem como, com um rastreador de bugs, e wiki via Trac." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "O seu novo projeto está à distância de um passe de trabalho." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "Perguntas Mais Frequentes - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Perguntas Mais Frequentes" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "O que é o Fedora Hosted?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "O Fedora Hosted é um projeto patrocinado pelo Projeto Fedora para permitir que os programadores 'upstream' possam alojar os seus códigos e colaborar on-line." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "Como é que eu posso solicitar um novo projeto?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Crie um ticket com a equipa de infraestrutura do Fedora." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "Onde é que eu posso ir para ter ajuda?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "As melhores maneiras de obter ajuda são acedendo ao canal IRC #fedora-admin no Freenode ou abrindo um ticket com a equipa de infraestrutura do Fedora." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Como é que eu posso ter uma conta no Fedora Hosted?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "A conta do Projecto Fedora funciona com o Fedora Hosted. Simplesmente registe uma conta no Projecto Fedora, se ainda não o fez. Note que para contribuir código para o Projecto Fedora tem de assinar um acordo de contribuidor (CLA)." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "Como configuro o git de modo a trabalhar com o meu repositório Fedora Hosted?" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "Faça um clone do git no seu repositório. Depois, no directório do repositório no seu sistema, edite .git/config dentro da secção [remote \"origin\"] para seguir o padrão seguinte para a definição do URL:" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "url = ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "nome de utilizador" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahosted.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "nome do projeto" - -#: data/content/faq.html:22 -msgid ".git" -msgstr ".git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "Onde:" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr " é o seu nome de utilizador do Sistema de Conta Fedora" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr " é o nome do seu projeto fedorahosted.org como listado no início do fedorahosted.org." - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "Como posso publicar lançamentos de ficheiros (tgz, zip, etc) para o meu projecto?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "Crie o ficheiro na sua máquina de trabalho e execute scp myProject-0.1.tar.gz fedorahosted.org:<Nome do Projecto>. O ficheiro ficará localizado sobre https://fedorahosted.org/releases/" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "Como é que eu posso apagar algo que eu carreguei para o meu arquivo?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "Por favor coloque um ticket no fedora-infrastructure trac explicando o ficheiro exacto que pretende remover e porquê" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "Existe alguma forma mais conveniente de aceder aos lançamentos do que o caminho /releases/m/y/myproject?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "Há. https://fedorahosted.org/released/myproject irá para o mesmo local. A desvantagem disto é que precisa de saber o nome do projecto e não pode navegar pelos projectos." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "Acabei de obter um novo repositório git. Como posso push/pull?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "Antes que alguém possa realizar um clone/push do novo repositório, tem de ser efectuado um push do master com o comando (a partir do repo git local): git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "Como é que obtenho permissões para submeter para um projecto?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "Deve inscrever-se no grupo de submissão do projecto, que deve ser <scm><projecto>, por exemplo, para o projecto desktop-effects, inscreva-se no grupo gitdesktop-effects." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "Enquanto espero que o meu repositório seja criado, posso trabalhar no meu código noutro sítio?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "Claro! Visite http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org para instruções de como configurar um repositório temporário na sua área em fedorapeople.org." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "Porque é que o hg diz que o repositório não existe, tendo eu a certeza que tenho o URL correcto?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "Infelizmente hg não utiliza URLs verdadeiros. Tem que utilizar uma \"/\" como delimitador entre o nome do servidor e um caminho e uma segunda \"/\" como raiz do sistema de ficheiros. Por exemplo, se está a aceder ao repositório do authconfig precisa de utilizar \"hg clone ssh://hg.fedorahosted.org//hg/authconfig\"" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "Posso oferecer binários pré-compilados no Fedora Hosted?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "Pode, desde que as seguintes condições sejam respeitadas:
      1. O código do projecto tem de estar disponível com uma licença de Software Livre apropriada para o Fedora.
      2. Tem de disponibilizar o código fonte utilizado para construir os binários, que não seja distribuído no mesmo ficheiro tarball, ou no mínimo disponibilizar um ficheiro tarball apenas com as fontes do código.
      3. Tem de disponibilizar instruções claras para construir o software.
      " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "Projectos Disponíveis" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "Mostrar todos os projetos" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "Descrição do Projeto" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "Web" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "URL Anónimo" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "URL Aut" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "Clique com o botão direito e copie o URI VCS anónimo para a área de transferência" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "Clique com o botão direito e copie o URI VCS autorizado para a área de transferência" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "Sem projectos registados neste grupo" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "Solicitar um Novo Projeto - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "Solicitar um Novo Projeto" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "Pedidos de novos projectos têm de ser inseridos via ticket na Instância Trac da Infraestrutura Fedora. Tenha a certeza que iniciou a sessão antes de tentar criar o ticket." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "Preencha os campos como a seguir:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<nome do projecto>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "minor a não ser que isto seja um pedido urgente. Se não tem a certeza se o pedido é urgente ou não defina este campo como minor." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "Utilize o seguinte modelo para a descrição completa do ticket:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "Termos de Utilização - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "Termos de Utilização" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "A equipa de Infraestrutura do Projecto Fedora fornece serviços ao Fedora Hosted na base do melhor serviço possível. Muitas das pessoas da equipa são voluntárias. O tempo de resposta a pedidos de novos projectos é de, tipicamente, entre 1 hora a 3 dias. Quebras de serviço, caso ocorram, são tratadas com uma prioridade muito superior." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "O Projecto Fedora reserva o direito de remover qualquer projecto do sistema que não reúna os seguintes critérios:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "O código contido no projecto não respeita os requisitos da nossa licença" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "Nos últimos seis (6) meses não foram submetidas ou aplicadas alterações significativas." - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "Nós fazemos sempre o nosso melhor para contactar programadores desaparecidos e garantir que o código, base de dados Trac, e quaisquer dados relevantes são mantidos disponíveis de modo a serem apresentados ao dono do projecto na eventualidade do projecto ser removido." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© 2012 Red Hat, Inc. e outros. Por favor envie comentários e correcções para a equipa de sítios web." - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "O Projecto Fedora é mantido e dirigido pela comunidade e patrocinado pela Red Hat. Este é um site mantido pela comunidade. A Red Hat não é responsável pelo seu conteúdo." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Patrocinadores" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Legal" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Linhas das Diretrizes da Marca Regista" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Navegação" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Início" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "Sobre" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "Novo Projecto" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Idioma do Site da Web" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Patrocinador do Alojamento" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "Patrocinado por ServerBeach" diff --git a/fedorahosted.org/po/pt_BR.po b/fedorahosted.org/po/pt_BR.po deleted file mode 100644 index bbe3dd0..0000000 --- a/fedorahosted.org/po/pt_BR.po +++ /dev/null @@ -1,436 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# ataliba , 2012 -# Cleiton Lima , 2011 -# itamarjp , 2013 -# Marcel Ribeiro Dantas, 2013 -# neb , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Daniel Lara \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/fedora-web/language/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "Projetos Hospedados - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "Nenhum desses projetos." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "O projeto requisitado não existe no Fedora Hosted." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Sobre - Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Sobre o Fedora Hosted" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "O Fedora Hosted é um projeto patrocinado pelo Projeto Fedora para os desenvolvedores hospedarem seus código e ter uma colaboração online. Nós fornecemos cada projeto com um sistema de controle de versão usando git, Mercurial, bzr e outros, bem como um bug tracker e também uma wiki via Trac." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "Seu novo projeto é apenas um ticket de trabalho." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "FAQs - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Perguntas Frequentes" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "O que é o Fedora Hosted?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora Hosted é uma projeto patrocinado pelo Projeto Fedora que permite que desenvolvedores hospedem seus códigos e colaborem online." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "Como eu posso requisitar um novo projeto?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Registre um ticket de trabalho para o time de Infra-estrutura do Fedora." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "Onde eu posso obter ajuda?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "A melhor maneira de obter ajuda é entrar no IRC no canal #fedora-admin no servidor Freenode ou abrir um ticket junto ao time de Infra-estrutura do Fedora." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Como eu posso obter uma conta no Fedora Hosted?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "Sua conta normal do Projeto Fedora funciona junto ao Fedora Hosted. Basta aplicar a uma conta no Projeto Fedora, caso você já não tenha. Note que você deve assinar uma Licença (Contributor License Agreement) com o Projeto Fedora, afim de que você possa contribuir." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "Como eu posso configurar o git para que eu possa fazer upload do meu projeto para o repositório do Fedora Hosted ?" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "Clone o seu repositório com o Git, executando git clone. Então, no diretório do repositório no seu sistema, edite o .git/config sob a seção [remote \"origin\"] para seguir o seguinte padrão para configuração da URL:" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "url = ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "nome de usuário " - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahosted.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "Nome do projeto" - -#: data/content/faq.html:22 -msgid ".git" -msgstr ".git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "Onde: " - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "é o seu nome de usuário no sistema de contas do Fedora" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "é o nome do seu projeto no fedorahosted.org, como listado na página principal do fedorahosted.org." - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "Como posso publicar arquivo de versões (tgz, zip, etc) para o meu projeto?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "Crie o arquivo na sua máquina local e execute scp meuProjeto-0.1.tar.gz fedorahosted.org:<Nome do Projeto>. O arquivo estará localizado abaixo de https://fedorahosted.org/releases/" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "Como eu deleto alguma coisa que eu mandei para o meu arquivo ? " - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "Por favor abra um ticket em fedora-infrastructure trac listando o arquivo exato que você precisa remover e porque " - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "Existe uma maneira mais conveniente para acessar os comunicados do que o caminho /releases/m/y/myproject?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "Existe. https://fedorahosted.org/released/myproject irá para o mesmo local. A desvantagem disso é que você precisa conhecer o nome do projeto e não poderá navegar pelos projetos." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "Eu obtive um novo repositório git, como eu posso enviar/resgatar (push/pull) arquivos?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "Antes de qualquer \"clone/push\" de um novo repositório um \"push master\" deve ser feito com o comando (a partir de um repo git local): git push ssh://git.fedorahosted.org/git/seuprojeto.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "Como eu posso obter permissão submeter para o projeto?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "Você deve entrar no grupo de commit do projeto, que deve ser <scm><project>, ex: Para o projeto desktop-effects, entre para o grupo gitdesktop-effects." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "Enquanto eu espero pelo meu repositório ser criado, posso trabalhar no meu código noutro local?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "É claro. Visite http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org para obter instruções sobre como configurar um repositório temporário no seu espaço fedorapeople.org." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "Por que hg disse-me que o repositório não existe, embora eu sei que eu tenho a URL correta?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "Infelizmente o hg não utiliza URLs verdadeiras. Você precisa utilizar um \"/\" como um delimitador entre o hostname e o caminho e um segundo \"/\" como raíz do caminho do sistema de arquivo. Por exemplo, se você estiver acessando o repositório do authconfig você precisa utilizar \"hg clone ssh://hg.fedorahosted.org//hg/authconfig\"" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "Posso oferecer binários précompilados no Fedora Hosted?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "Você pode, desde que as seguintes condições sejam satisfeitas:
      1. O código do projeto precisa estar disponível sobre uma licensa de Software Livre apropriada para o Fedora.
      2. Você precisa fazer o código fonte que você utilizou para criar os binários disponíveis, e não distribuí-los no mesmo pacote, ou no mínimo disponibilizar um pacote \"apenas fonte\".
      3. Você precisar disponibilizar instruções claras para compilar o software.
      " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "Projetos Disponíveis" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "Exibe todos os projetos" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "Descrição do Projeto" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "Web" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "Anon URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "Auth URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "Clique com o botão direito e copie a URI anônima do VCS para sua área de transferência." - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "Clique com o botão direito e copie a URI autorizada do VCS para sua área de tranferência." - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "Nenhum projeto registrado nesse grupo" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "Requisitar um Novo Projeto - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "Requisitar um Novo Projeto" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "Novas requisições de projetos devem ser pedidas via ticket no Fedora Infrastructure Trac. Certifique-se de efetuar login antes de tentar criar um ticket." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "Preencha os campos como segue:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<nome do projeto>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "minor a menos que seja uma requisição urgente. Se você não tem certeza se esta requisição é urgente ou não, então defina esse campo como minor." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "Use o seguinte modelo para a descrição completa do ticket:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "Termos de Uso - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "Termos de Uso" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "O Time do Projeto de Infra-Estrutura do Fedora fornece o serviço Fedora Hosted em uma boa base de trabalho. Muitas pessoas que gerenciam esse projeto são voluntários. A resposta do time para uma nova requisição de projeto é tipicamente entre 1 hora e 3 dias. Períodos de inatividade, caso eles ocorram, são tratados com uma prioridade muito maior." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "O Projeto Fedora reserva o direito de remover qualquer projeto do nosso sistema que não esteja em conformidade com os seguintes critérios:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "O código contido no projeto não está em conformidade com nossos requerimentos de licença" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "Não houveram mudanças significativas enviadas ou aplicadas durante seis (6) meses, no mínimo." - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "Nós sempre iremos fazer o melhor possível para contatar desenvolvedores ausentes e garantir que o código, banco de dados Trac, bem como quaisquer dados relevantes sejam mantidos à mão para que se possa apresentar ao proprietário do projeto, em caso de um projeto ser removido." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© 2012 Red Hat, Inc. and others. Favor enviar comentários ou correções para o time do site." - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "O Projeto Fedora é mantido e dirigido pela comunidade e patrocinado pela Red Hat. Este site é mantido pela comunidade. A Red Hat não é responsável pelo seu conteúdo" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Patrocinadores" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Legal" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Diretrizes de Marca Registrada" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Navegação" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Home" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "Sobre" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "Novo Projeto" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Língua do Website" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Patrocinadores de Hospedagem" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "Patrocinado por ServerBeach" diff --git a/fedorahosted.org/po/ro.po b/fedorahosted.org/po/ro.po deleted file mode 100644 index 0c638d0..0000000 --- a/fedorahosted.org/po/ro.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Romanian (http://www.transifex.com/projects/p/fedora-web/language/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Sponsori" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Navigare" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Acasă" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Limba saitului" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Sponsor cu găzduirea" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/ru.po b/fedorahosted.org/po/ru.po deleted file mode 100644 index fac6553..0000000 --- a/fedorahosted.org/po/ru.po +++ /dev/null @@ -1,436 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Artyom Kunyov , 2012 -# triplepointfive , 2012 -# Mikhail Zholobov , 2013 -# Misha Shnurapet , 2011 -# neb , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Mikhail Zholobov \n" -"Language-Team: Russian (http://www.transifex.com/projects/p/fedora-web/language/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "Доступные проекты — Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "Такого проекта нет." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "Запрошенный проект отсутствует в Fedora Hosted." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "О ресурсе — Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "О ресурсе Fedora Hosted" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Hosted — это возможность размещения исходного кода в сети и сотрудничества в режиме онлайн, предоставяемая разработчикам проектом Fedora. Мы обеспечиваем каждый проект системой контроля версий через git, Mercurial, bzr и пр., а также возможности регистрации ошибок и Wiki на движке Trac." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "Ваш новый проект всего в одной заявке от вас." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "Вопросы и ответы — Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Частые вопросы" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Что такое Fedora Hosted?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora Hosted — это возможность размещения исходного кода в сети и сотрудничества в режиме онлайн, предоставяемая разработчикам проектом Fedora." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "Как подать заявку на создание нового проекта?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Отправьте заявку команде Fedora Infrastructure." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "Где искать помощь?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "Два способа попросить о помощи — посетить канал IRC #fedora-admin в сети Freenode или отправить заявку команде Fedora Infrastructure." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Как получить учетную запись Fedora Hosted?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "В Fedora Hosted действуют учетные записи, созданные на fedoraproject.org. Просто создайте учетную запись Fedora, если у вас ее еще нет. Обратите внимание, что предварительно потребуется принять условия лицензионного соглашения." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "Как настроить git для отправки изменений в свой репозиторий на Fedora Hosted?" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "Выполните клонирование вашего репозитория (git clone). Затем в полученной директории на вашей системе откройте файл .git/config и в секции [remote \"origin\"] измените URL в соответствии с примером:" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "url = ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "имя пользователя" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahosted.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "название проекта" - -#: data/content/faq.html:22 -msgid ".git" -msgstr ".git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "Где:" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "- ваше имя в системе учетных записей Fedora" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "- название вашего проекта, как оно указано на главной странице fedorahosted.org" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "Как опубликовать архив выпуска (tgz, zip, etc) моего проекта?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "Создайте архив и выполните команду scp myProject-0.1.tar.gz fedorahosted.org:<имя_проекта>, в результате чего архив будет отправлен в https://fedorahosted.org/releases/" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "Как удалить помещенные в мой архив данные?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "Пожалуйста, сообщите здесь, fedora-infrastructure trac какой именно файл вы хотите удалить и почему" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "Существует ли более простой метод доступа, чем использование пути в формате /releases/m/y/myproject?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "Да, https://fedorahosted.org/released/myproject. Недостатком в этом случае является то, что вам необходимо знать имя проекта, кроме того, вы не сможете просматривать проекты." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "Я получил новый репозитарий git, как я могу выполнить push/pull?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "Прежде чем вы сможете дублировать или выполнять push нового репозитария, из локального репозитария git сначала надо выполнить команду «git push ssh://git.fedorahosted.org/git/yourproject.git/ master»" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "Как вносить изменения?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "Вам следует подать заявку на участие в группе, вносящей изменения в этот проект. Ее название формируется по образцу: <scm><project>. То есть, например, для того, чтобы вносить изменения в проект «desktop-effects», нужно вступить в группу gitdesktop-effects." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "Можно ли работать над проектом, пока создается репозиторий?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "Конечно. На странице http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org вы найдете инструкции по настройке временного репозитория в пространстве fedorapeople.org." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "Почему hg сообщает, что репозитория не существует, когда я точно знаю, что URL действителен?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "К сожалению, hg не поддерживает прямые ссылки. Следует ставить один знак «/», чтобы отделить имя узла от пути и тут же второй «/» для обозначения корневого каталога файловой системы. К примеру, для доступа к репозиторию authconfig следует указать: «hg clone ssh://hg.fedorahosted.org//hg/authconfig»." - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "Могу ли я разместить пре-компилированные бинарные пакеты на Fedora Hosted?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "Можете, если соблюдены следующие условия:
      1. Исходный код проекта доступен по свободной лицензии, совместимой с Fedora.
      2. Исходный код, использованный при сборке двоичных файлов, доступен, причем отдельно от них, или, как минимум, предоставлен отдельный «архив с исходниками».
      3. Четко расписаны инструкции по самостоятельной сборке файлов.
      " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "Доступные проекты" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "Показать все проекты" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "Описание проекта" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "Web" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "Anon URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "Auth URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "Щелкните правой кнопкой мыши и скопируйте анонимный URI VCS в буфер обмена." - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "Щелкните правой кнопкой мыши и скопируйте анонимный URI VCS в буфер обмена" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "В этой группе проектов не зарегистрировано" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "Заявка на новый проект — Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "Подать заявку на создание нового проекта" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "Запросы на создание новых проектов должны быть зарегистрированы в заявке в Fedora Trac. Не забудьте авторизоваться прежде чем попробуете создать заявку." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "Заполните поля следующим образом:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<имя проекта>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "Не изменяйте значение minor, если вы не уверены насколько срочным является ваш запрос." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "Используйте следующий шаблон для оформления заявки." - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "Условия обслуживания — Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "Условия обслуживания" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "Команда инфраструктуры проекта Fedora предоставляет службы Fedora Hosted на общественных началах. Время ответа обычно составляет от одного часа до трех дней. Перебоям в работе уделяется особое внимание." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "Проект Fedora сохраняет за собой право исключения проектов из нашей системы, если они не удовлетворяют следующим требованиям:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "Код в проекте не удовлетворяет лицензионным требованиям" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "Проект не обновлялся на протяжении шести месяцев." - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "Мы всегда пытаемся поддерживать связь с разработчиками и предоставить код, базы данных Trac и прочие данные владельцу проекта в случае его исключения из нашей базы." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© 2012 Red Hat, Inc. и др. Пожалуйста, отправляйте любые комментарии и замечания администраторам." - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "Проект Fedora поддерживается сообществом и спонсируется компанией Red Hat. Сайт поддерживается сообществом, и Red Hat не отвечает за содержимое." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Спонсоры" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Правовые положения" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Использование торговой марки" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Навигация" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Начало" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "О ресурсе" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "Новый проект" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Выбрать язык" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Хостинг" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "Спонсор: компания ServerBeach" diff --git a/fedorahosted.org/po/ru_RU.po b/fedorahosted.org/po/ru_RU.po deleted file mode 100644 index 002f997..0000000 --- a/fedorahosted.org/po/ru_RU.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2011-03-04 00:29+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/fedora-web/language/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/si.po b/fedorahosted.org/po/si.po deleted file mode 100644 index 8a5aff5..0000000 --- a/fedorahosted.org/po/si.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2012-07-03 23:12+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Sinhala (http://www.transifex.com/projects/p/fedora-web/language/si/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: si\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/sk.po b/fedorahosted.org/po/sk.po deleted file mode 100644 index 518777f..0000000 --- a/fedorahosted.org/po/sk.po +++ /dev/null @@ -1,434 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# feonsu , 2013 -# feonsu , 2012 -# FIRST AUTHOR , 2008, 2009 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: feonsu \n" -"Language-Team: Slovak (http://www.transifex.com/projects/p/fedora-web/language/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: sk\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "Hosťované projekty - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "Žiadny projekt." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "Požadovaný projekt na Fedora Hosted neexistuje." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Informácie o - Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Informácie o Fedora Hosted" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Hosted je sponzorovaný Projektom Fedora umožňujúci vývojárom hosťovať ich kód a spolupracovať online. Každému projektu poskytujeme správu zdrojových kódov cez git, Mercurial, bzr a ďalšie, tak ako aj nástroj na sledovanie chýb a wiki cez Trac." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "Nový projekt vytvoríte vyplnením nového pracovného tiketu." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "FAQ - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Často kladené otázky" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Čo je Fedora Hosted?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora Hosted je projekt sponzorovaný projektom Fedora umožňujúci vývojárom hosťovať ich kód a spolupracovať online." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "Ako môžem požiadať o nový projekt?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Zašlite pracovný tiket tímu starajúceho sa o infraštruktúru Fedory." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "Kde môžem získať pomoc?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "Najlepšou cestou k získaniu pomoci je pripojiť sa do #fedora-admin kanálu IRC na Freenode alebo otvorením tiketu u tímu infraštruktúry Fedory." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Ako môžem získať účet na Fedora Hosted?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "Váš bežný Fedora účet funguje s Fedora Hosted. Jednoducho si vytvorte účet Fedora Project, ak ho ešte nemáte. Poznámka: na prispievanie kódom musíte podpísať licenčnú zmluvu prispievateľa s projektom Fedora." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "Ako nastavím git, aby som mohol nahrávať do svojho repozitára na Fedora Hosted?" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "Urobte git clone svojho repozitára. Potom v adresári repozitára na svojom systéme upravte .git/config pod sekciou [remote \"origin\"] tak, aby ste nastavili URL podľa nasledujúcej šablóny:" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "url = ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "username" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahosted.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "projectname" - -#: data/content/faq.html:22 -msgid ".git" -msgstr ".git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "Kde:" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "je vaše používateľské meno v systéme účtov Fedora." - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "je názov vášho projektu ako je zobrazený na úvodnej stránke fedorahosted.org." - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "Ako môžem publikovať vydania môjho projektu (tgz, zip, atď)?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "Vytvorte na svojom počítači archív a spustite príkaz scp mojProjekt-0.1.tar.gz fedorahosted.org:<Názov projektu>. Archív sa bude nachádzať v https://fedorahosted.org/releases/" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "Ako môžem niečo odstrániť z môjho archívu?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "Vyplňte tiket v systéme Trac infraštruktúry Fedory s presným názvom súboru, ktorý chcete odstrániť, a prečo" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "Existuje pohodlnejšia cesta ako pristupovať k jednotlivým vydaniam než cez cestu /releases/m/y/myproject?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "Existuje. https://fedorahosted.org/released/myproject vás zavedie na rovnaké miesto. Nevýhodou je, že musíte poznať názov projektu a nemôžete prezerať ďalšie projekty." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "Mám nový git repozitár, ako môžem urobiť push/pull?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "Predtým ako môže ktokoľvek urobiť clone/push z/do nového repozitára, musí byť hotový master push pomocou príkazu (z vášho lokálneho git repozitára): git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "Ako získam povolenie na nahrávanie do projektu?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "Mali by ste požiadať o členstvo v skupine projektu, ktorá má toto oprávnenie, čo by mala byť <scm><project>, napr. pre projekt desktop-effects žiadajte o členstvo v skupine gitdesktop-effects." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "Zatiaľ čo čakám na vytvorenie môjho repozitára, môžem pracovať na svojom kóde niekde inde?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "Samozrejme. Pre bližšie informácie navštívte http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org, kde nájdete informácie ako vytvoriť dočasný repozitár vo svojom priestore fedorapeople.org." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "Prečo mi hq tvrdí, že repozitár neexistuje aj keď som si istý, že mám správne URL?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "Nanešťastie hg nepoužíva skutočné URL. Ako oddeľovač medzi názvom hostiteľa a cestou musíte používať \"/\" a druhé \"/\" ako koreň cesty súborového systému. Napríklad, ak pristupujete k repozitáru pre authconfig, musíte použiť \"hg clone ssh://hg.fedorahosted.org//hg/authconfig\"" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "Môžem poskytovať na Fedora Hosted pred-kompilované programy?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "Môžete, pokiaľ sú splnené nasledujúce podmienky:
      1. Zdrojový kód projektu musí byť dostupný pod licenciou slobodného softvéru vhodnou pre Fedoru.
      2. Musíte sprístupniť zdrojový kód, ktorý ste použili na zostavenie binárneho kódu, a nie je distribuovaný v rovnakom tar balíčku, alebo minimálne sprístupniť tar balíček \"iba so zdrojákmi\".
      3. Musíte poskytnúť jasné inštrukcie na zostavenie softvéru.
      " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "Dostupné projekty" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "Zobraziť všetky projekty" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "Popis projektu" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "Web" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "Anonymné URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "Autorizovaná URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "Stlačte pravé tlačidlo a skopírujte si do schránky anonymnú adresu VCS URI" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "Stlačte pravé tlačidlo a skopírujte si do schránky autorizovanú adresu VCS URI" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "V tejto skupine nie sú registrované žiadne projekty" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "Požiadať o nový projekt - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "Požiadať o nový projekt" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "Požiadavky na nový projekt musia byť zaslané cez tiket do systému Trac infraštruktúry Fedory. Pred pokusom o vytvorenie tiketu sa presvedčte, že ste prihlásený." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "Vyplňte polia nasledovne (v angličtine):" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<názov projektu>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "minor pokiaľ sa nejedná o urgentnú požiadavku. Ak si nie ste istý, či je požiadavka urgentná alebo nie, potom nastavte toto pole na minor." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "Pre úplný popis tiketu použite nasledujúcu šablónu:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "Podmienky používania - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "Podmienky používania" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "Tím starajúci sa o infraštruktúru Projektu Fedora poskytuje služby Fedora Hosted na najvyššej úrovni. Veľa ľudí, ktorí spravujú tento projekt, sú dobrovoľníci. Čas odozvy na požiadavky na nový projekt je typicky medzi 1 hodinou a 3 dňami. Ak sa objavia výpadky, tie sú riešené s omnoho vyššou prioritou." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "Projekt Fedora si vyhradzuje právo na odstránenie ľubovoľného projektu z nášho systému, ktorý nezodpovedá nasledujúcim kritériám:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "Kód obsiahnutý v projekte nespĺňa naše licenčné požiadavky" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "Neboli nahraté alebo aplikované žiadne významné zmeny v uplynulých šiestich (6) mesiacoch" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "Vždy sa snažíme kontaktovať neprítomných vývojárov a zaistiť tak, aby kód, databázy Trac a akékoľvek relevantné dáta zostali na mieste, teda boli dostupné vlastníkovi projektu v prípade, že je projekt odstránený." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© 2012 Red Hat, Inc. a ďalší. Svoje komentáre a opravy pošlite na adresu tímu webových stránok." - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "Fedora projekt, ktorý spozoruje spoločnosť Red Hat, je udržovaný a riadený komunitou. Tato stránka je tiež udržovaná komunitou. Red Hat nie je zodpovedný za jej obsah." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Sponzori" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Právne poznámky" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Smernice ochrannej známky" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Navigácia" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Domov" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "Informácie o" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "Nový projekt" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Jazyk WWW stránok" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Sponzor hostingu" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "Sponzoruje ServerBeach" diff --git a/fedorahosted.org/po/sl.po b/fedorahosted.org/po/sl.po deleted file mode 100644 index fb58c2c..0000000 --- a/fedorahosted.org/po/sl.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2011-03-04 00:29+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (http://www.transifex.com/projects/p/fedora-web/language/sl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/sq.po b/fedorahosted.org/po/sq.po deleted file mode 100644 index a3705df..0000000 --- a/fedorahosted.org/po/sq.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Besnik \n" -"Language-Team: Albanian (http://www.transifex.com/projects/p/fedora-web/language/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "Projekte të Strehuara - Strehuar nga Fedora" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "S’ka projekt të tillë." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "Projekti i kërkuar nuk gjendet te Strehuar nga Fedora." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Rreth - Strehuar nga Fedora" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Rreth Strehuar nga Fedora" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Strehuar nga Fedora është një rrugë e sponsorizuar si Projekt Fedora që programuesit të strehojnë kod dhe të bashkëpunojnë online. Furnizojmë për çdo projekt kontroll të burimit përmes git-it, Mercurial-it, bzr-së, dhe të tjera, si dhe një ndjekës të metash dhe wiki përmes Trac-ut." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "Projekti juaj i ri është vetëm një pusullë pune larg." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "FAQ - Strehuar nga Fedora" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Pyetje të Bëra Shpesh" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Çfarë është Strehuar nga Fedora?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Strehuar nga Fedora është një projekt i sponsorizuar nga Projekti Fedora që t’ju lejojë programuesve në projektin kryesor të strehojnë diku kodin e tyre dhe të bashkëpunojnë online." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "Si mund të kërkoj një projekt të ri?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Krijoni një pusullë pune për ekipin e infrastrukturës së Fedora-s." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "Ku mund të kërkoj ndihmë?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "Mënyra më e mirë për të pasur ndihmë është të hyni te #fedora-admin kanali IRC te Freenode ose të krijoni një pusullë për ekipin e Infrastrusturës së Fedora-s." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Si mund të kem një llogari Strehuar nga Fedora?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "Llogaria juaj normale te Projekti Fedora funksionon me Strehuar nga Fedora. Kërkoni një llogari Projekti Fedora vetëm nëse nuk keni një të tillë. Kini parasysh se duhet të nënshkruani një Marrëveshje Licence Kontribuesi me Projektin Fedora që të mund të kontribuoni me kod." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "Si ta formësoj git-in që të mund të kaloj material te depoja ime në Strehuar nga Fedora?" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "Kryeni një git clone të depos suaj. Mandej, te drejtoria e depos, në sistemin tuaj vendor, përpunoni .git/config, tek ndarja [remote \"origin\"] që të ndjekë rregullsinë vijuese lidhur me rregullime të URL-së: " - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "url = ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "emër përdoruesi" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahosted.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "emër projekti" - -#: data/content/faq.html:22 -msgid ".git" -msgstr ".git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "Ku:" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "është emri juaj i përdoruesit te Sistemi i Llogarive Fedora." - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr " është emri i projektit tuaj te fedorahosted.org, siç do të tregohet tek ballina e fedorahosted.org." - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "Si mund të publikoj versione arkiv (tgz, zip, etj) për projektin tim?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "Krijojeni arkivin në kompjuterin tuaj dhe xhironi scp myProject-0.1.tar.gz fedorahosted.org:<Emër Projekti>. Arkiva do të gjendet nën https://fedorahosted.org/releases/" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "Si mund të fshij diçka që e ngarkova te arkivi im?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "Ju lutemi, krijoni një pusullë tek fedora-infrastructure trac duke treguar saktësisht kartelën që dëshironi të hiqni dhe pse" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "Ka ndonjë rrugë më të volitshme për të hyrë te versionet, veç shtegut /releases/m/y/myproject?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "Ka. https://fedorahosted.org/released/myproject do t’ju shpjerë te i njëjti vend. Disavantazhi i kësaj është se duhet të dini emrin e projektit dhe nuk mund të shfletoni për projekte." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "Sapo mora një depo të re git, si mund të tërheq prej saj/hedh në të gjëra?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "Para se dikush të mund të klonojë/hedhë gjëra te depoja e re lypset të kryhet një master push përmes urdhrit (prej depos suaj vendore git): git push ssh://git.fedorahosted.org/git/projektijuaj.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "Si mund ta marr lejen për të depozituar punë te një projekt?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "Do të duhej kërkonit të drejta te grupi i parashtrimeve te projekti, që do të duhej të ishte <scm><project>, p.sh. për projektin desktop-effects, kërkoni të bëheni pjesë e grupit gitdesktop-effects." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "Teksa pres që të krijohet depoja ime, a mund të merrem me kodin tim gjetiu?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "Sigurisht. Vizitoni http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org për udhëzime se si të rregulloni një depo të përkohshme te hapësira juaj në fedorapeople.org." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "Pse më thotë hg-ja që depoja ime nuk ekziston, edhe pse e di që URL-ja që kam është e sakta?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "Për fat të keq hg-ja nuk përdor URL të vërteta. Lypset të përdorni një \"/\" si kufizues mes emërstrehës dhe shtegut, dhe një \"/\" të dytë si rrënjë të shtegut për te sistemi i kartelave. Për shembull, nëse po hyni te depoja për authconfig lypset të përdorni \"hg clone ssh://hg.fedorahosted.org//hg/authconfig\"" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "A mund të ofroj që prej Strehuar nga Fedora dyorë të parapërpiluar?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "Mundeni, për sa kohë që plotësohen kushtet vijuese:
      1. Projekti i kodit duhet të jetë i passhëm sipas një licence Software-i të Lirë të përshtatshme për Fedora-n.
      2. Duhet të bëni të passhëm kodin burim që përdorët për të montuar dyorët, dhe jo brenda të njëjtit paketim të dyorit vetë, ose më e pakta të bëni të passhëm një paketim \"vetëm burim\".
      3. Duhet të jepni udhëzime të qarta për krijimin e software-it prej burimit.
      " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "Projekte të Mundshëm" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "Shfaq krejt projektet" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "Përshkrimi i Projektit" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "Web" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "URL anonime" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "URL Mirëfilltësimi" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "Djathtasklikoni dhe kopjoni te kujtesa e përkohshme URI VCS-në anonime" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "Djathtasklikoni dhe kopjoni te kujtesa e përkohshme URI VCS-në e autorizuar " - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "Nuk ka projekte të regjistruara për këtë grup" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "Kërkoni një Projekt të Ri - Strehuar nga Fedora " - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "Kërkoni një Projekt të Ri" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "Kërkesat për projekte të rinj duhen bërë përmes një pusulle te instalimi Trac i Fedora Infrastructure-s. Mos harroni të bëni hyrjen, përpara se të krijoni një pusullë." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "Plotësoni fushat si vijon:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<emri i projektit>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "minor, veç nëse kjo kërkesë është urgjente. Nëse jeni i pasigurt se është apo jo kërkesa juaj urgjente, atëherë vëreni këtë fushë si minor." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "Përdorni gjedhen vijuese për përshkrim të plotë të rastit:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "Kushte Përdorimi - Strehuar nga Fedora" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "Kushte Përdorimi" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "Ekipi i Infrastrukturës së Projektit Fedora i ofron shërbimet Strehuar nga Fedora duke u përpjekur për më të mirën. Mjaft nga personat që e administrojnë janë vullnetarë. Koha e pritjes së një përgjigjeje për një kërkesë projekti të ri është zakonisht 1 orë deri në 3 ditë. Shkëputjet ose ndalesat, në ndodhshin, trajtohen me përparësi shumë më të madhe." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "Projekti Fedora rezervon të drejtën të heqë prej sistemit çfarëdo projekti që nuk pajtohet me kushtet vijuese:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "Kodi që përmban projekti nuk pajtohet me kërkesat e domosdoshme të licencës sonë" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "Gjatë gjashtë (6) muajve të fundit nuk janë parashtruar apo zbatuar ndryshime domethënëse" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "Do të bëjmë ç’mundemi që të lidhemi me programues që nuk duken më, për të bërë të mundur që kodi, bazat e të dhënave Trac, dhe çfarëdo e dhënë me rëndësi të ruhen, e kështu të mund t’i paraqiten të zotit të projektit, në rast se projekti hiqet." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© 2012 Red Hat, Inc. dhe të tjerë. Ju lutemi, çfarëdo komenti apo ndreqje dërgojeni te ekipi i sajteve." - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "Projekti Fedora mirëmbahet dhe shpihet përpara nga bashkësia dhe sponsorizohet nga Red Hat-i. Ky është një sajt që mirëmbahet nga bashkësia. Red Hat nuk mban përgjegjësi për lëndën e tij." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Sponsorë" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Ligjore" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Udhëzime mbi Shenjat Tregtare" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Lëvizje" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Kreu" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "Rreth" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "Projekt i Ri" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Gjuhë e Sajtit" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Sponsor Strehues" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "Sponsorizuar nga ServerBeach" diff --git a/fedorahosted.org/po/sr.po b/fedorahosted.org/po/sr.po deleted file mode 100644 index 467d953..0000000 --- a/fedorahosted.org/po/sr.po +++ /dev/null @@ -1,433 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Momcilo Medic , 2014 -# neb , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Momcilo Medic \n" -"Language-Team: Serbian (http://www.transifex.com/projects/p/fedora-web/language/sr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "Угошћени пројекти - Fedora угошћавање" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "Не постоји такав пројекат." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "Тражени пројекат не постоји при Fedora угошћавању." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "О систему - Fedora угошћавање" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "О Fedora угошћавању" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora угошћавање је начин за програмере да угосте свој код и сарађују на мрежи под спонзорством Fedora пројекта. Ми снабдевамо сваки пројекат контролом изворног кода користећи git, Mercurial, bzr, и других, као и праћење грешака и вики користећи Trac." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "Ваш нови пројекат је удаљен само за радни захтев." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "ЧПП - Fedora угошћавање" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Често постављана питања" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Шта је Fedora угошћавање?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora угошћавање је пројекат кога спонзорише Fedora пројекат за омогућавање програмерима у развоју да угосте свој код и сарађују на мрежи." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "Како могу да затражим нови пројекат?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Поднесите радни захтев тиму Fedora инфраструктуре." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "Где могу да добијем помоћ?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "Најбољи начини да добијете помоћ је да се придружите #fedora-admin IRC каналу на Freenode-у или отворите захтев код Fedora тима за инфраструктуру." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Како могу да добијем налог за Fedora угошћавање?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "Ваш стандардни налог Fedora пројекта ради за Fedora угошћавање. Једноставно се пријавите за налог Fedora пројекта ако га немате. Знајте да морате потписати Лиценцни споразум за сараднике са Fedora пројектом како бисте могли да приложите код." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "Како да подесим git тако да могу да гурам на мој Fedora Hosted репозиторијум?" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "Урадите git clone вашег репозиторијума. Онда, у директријуму вашег репозиторијума на вашем систему, измените .git/config у одељку [remote \"origin\"] да прати следећу шему за URL подешавање:" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "url = ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "корисничкоиме" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahosted.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "имепројекта" - -#: data/content/faq.html:22 -msgid ".git" -msgstr ".git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "Где:" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "је ваш Fedora Account System корисничко име." - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "је име вашег fedorahosted.org пројекта како је излистан на почетку fedorahosted.org." - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "Како могу да објавим издања архива (tgz, zip, итд.) за мој пројекат?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "Направите архиву на вашој радној станици и покрените scp myProject-0.1.tar.gz fedorahosted.org:<Име пројекта>. Архива ће се налазити под https://fedorahosted.org/releases/" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "Како да обришем нешто што сам послао у моју архиву?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "Пријавите тикет на fedora-infrastructure trac наводећи тачну датотеку коју желите обрисати и зашто" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "Да ли постоји неки згоднији начин за приступање издањима него путањом /releases/m/o/mojprojekat?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "Постоји. https://fedorahosted.org/released/mojprojekat ће водити на исто место. Мана овога је што морате знати назив пројекта и што не можете разгледати пројекте." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "Управо сам добио ново git спремиште, како могу да шаљем/преузимам?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "Пре него што било ко може да клонира/пошаље ново спремиште мора се извршити главно слање командом (из вашег локалног git спремишта): git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "Како да добијем дозволу да предам код неком пројекту?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "Треба да се пријавите у групу за предају тог пројекта, која би требало да буде <scm><projekat>, нпр. за пројекат desktop-effects, пријавите се у групу gitdesktop-effects." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "Док чекам да ми се направи спремиште, да ли могу да радим на свом коду негде другде?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "Наравно. Посетите http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org за упутства о томе како поставити привремено спремиште у вашем fedorapeople.org простору." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "Зашто ми hg јавља да спремиште не постоји иако знам да имам исправни УРЛ?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "На жалост, hg не користи праве URL-ове. Морате користити \"/\" као граничник између имена хоста и путање и други \"/\" као корен путање система датотека. На пример, ако приступате репозиторијуму за authconfig морате користити \"hg clone ssh://hg.fedorahosted.org//hg/authconfig\"" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "Да ли могу да понудим унапред компилиране извршне програме преко Fedora угошћавања?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "Можете, све док су испуњени следећи услови:
      1. Код пројекта мора да буде доступан под лиценцом за слободан софтвер прикладном за Fedora пројекат.
      2. Морате ставити изворни код који се користи за изградњу извршног програма на располагање, и не дистрибуирати га у истој таргли, или у најмању руку ставити на располагање тарглу „само извора“.
      3. Морате пружити јасна упутства за изградњу софтвера.
      " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "Доступни пројекти" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "Прикажи све пројекте" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "Опис пројекта" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "Веб" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "Анон. УРЛ" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "Аутор. УРЛ" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "Кликните десним тастером миша и копирајте анонимни VCS УРИ на клипборд" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "Кликните десним тастером миша и копирајте овлашћени VCS УРИ на клипборд" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "Нема регистрованих пројеката у овој групи" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "Затражи нови пројекат - Fedora угошћавање" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "Затражи нови пројекат" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "Захтеви за нови пројекат се морају попунити преко захтева на Trac инстанце за Fedora инфраструктуру. Будите сигурни да сте пријављени пре покушаја прављења захтева." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "Попуните поља као што следи:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<име пројекта>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "minor осим ако ово није хитан захтев. Ако нисте сигурни да ли је ваш захтев хитан поставите ово поље на minor." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "Користите следећи шаблон за пуни опис захтева:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "Услови коришћења - Fedora угошћавање" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "Услови коришћења" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "Тим за инфраструктуру Fedora пројекта пружа услуге Fedora угошћавања на основу најбољег доприноса. Многи људи који руководе су добровољци. Време за одговор на захтев је обично између 1 или 3 дана. Проблеми, ако се десе, се исправљају са далеко вишим приоритетом." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "Fedora пројекат задржава право да уклони било који пројекат са нашег система уколико не задовољава следеће критеријуме:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "Код садржан у пројекту не испуњава наше услове лиценцирања" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "Значајне промене нису начињене или пријављене у последњих шест (6) месеци" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "Увек ћемо се трудити да контактирамо одсутне програмере и обезбедимо да код, Trac база података, и било који битан податак буде расположив како би био доступан власнику пројекта у случају да пројекат буде уклоњен." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© 2012 Red Hat, Inc. и остали. Молим пошаљите ваш коментар или исправке тиму за страницу." - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "Fedora пројекат одржава и води заједница и спонзорише Red Hat. Ово веб место одржава заједница. Red Hat није одговоран за садржај." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Спонзори" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Правне ствари" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Смернице о трговачким ознакама" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Навигација" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Почетна" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "О сајту" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "Нови пројекат" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Језик веб странице" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Спонзор угошћавања" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "Спонзорисао ServerBeach" diff --git a/fedorahosted.org/po/sv.po b/fedorahosted.org/po/sv.po deleted file mode 100644 index 0be5f04..0000000 --- a/fedorahosted.org/po/sv.po +++ /dev/null @@ -1,432 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# neb , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Swedish (http://www.transifex.com/projects/p/fedora-web/language/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "Värdproject - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "Inget sånt projekt." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "Det efterfrågade projektet finns inte på Fedora Hosted." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Om - Fedora Project" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Om Fedora Hosted" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "FAQs - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Vanligt förekommande frågor" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Vad är Fedora Hosted?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "Hur kan jag begära ett nytt projekt?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Registrera en uppdragsbiljett för Fedoras Infrastrukturlag." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "Var kan jag få hjälp?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Hur kan jag skaffa ett konto på Fedora Hosted?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "Medan jag väntar på att mitt datalager ska skapas, kan jag arbeta på min kod någon annanstans?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "Tillgängliga projekt" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "Begär ett nytt projekt - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "Begär ett nytt projekt" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "Fyll i fälten enligt följande:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<namn på projekt>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "Regler för användning - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "Regler för användning" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "Fedoraprojektet underhålls och drivs av gemenskapen och är sponsrad av Red Hat. Denna webbsida underhålls av gemenskapen. Red Hat är inte ansvarig för innehållet." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Sponsorer" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Juridik" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Vägledning för varumärken" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Navigering" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Hem" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "Om" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "Nytt projekt" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Webbplatsspråk" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Värdsponsorer" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "Sponsrad av ServerBeach" diff --git a/fedorahosted.org/po/ta.po b/fedorahosted.org/po/ta.po deleted file mode 100644 index af7820e..0000000 --- a/fedorahosted.org/po/ta.po +++ /dev/null @@ -1,434 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Arun Prakash , 2012 -# Felix I , 2011 -# neb , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Tamil (http://www.transifex.com/projects/p/fedora-web/language/ta/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: ta\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "நிறுவப்பட்ட திட்டங்கள் - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "இது போன்ற திட்டம் இல்லை." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "கோரப்பட்ட திட்டம் Fedora Hostedல் இல்லை." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Fedora Hosted - பற்றி" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Fedora Hosted பற்றி" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Hosted என்பது ஒரு Fedora திட்டத்தில்- வல்லுனர்கள் தங்கள் குறியீடுகளை இணையத்தில் ஒருங்கிணைப்பதற்கு வழங்கப்படுகிறது. நாங்கள் ஒவ்வொரு திட்டத்தின் மூலக்கட்டுப்பாடுயும் git, Mercurial, bzr, மற்றும் மற்றவற்றாலும், Trac வழியாக ஒரு பிழை தேடியின் மூலம் விக்கியில் கொடுப்படுகிறது." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "உங்கள் புதிய திட்டம் ஒரு பணி டிக்கட் ஆகும்." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "வினாக்கள் - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "அடிக்கடி கேட்கப்படும் வினாக்கள்" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Fedora Hosted என்றால் என்ன?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora Hosted என்ற திட்டம் Fedora திட்டத்தால் நிதியளிக்கப்பட்டு அப்ஸ்டீரிம் வல்லுநர்கள் தங்கள் குறியீடுகளை நிறுவி இணையத்தில் ஒருங்கிணைப்பதாகும்." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "நான் எவ்வாறு புதிய திட்டத்திற்கு கோருவது?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "ஒரு பணி டிக்கெட்டை Fedora வடிவமைப்பு குழுவுடன் அறிக்கையிடவும்." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "உதவிக்கு எங்கு நாடுவது?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "உதவி பெறவும் #fedora-admin IRC சேனலில் Freenode அல்லது ஒரு டிக்கெட்டை Fedora குழுவுடன் திறக்க சிறந்த வழி." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "ஒரு Fedora Hosted கணக்கை எவ்வாறு பெறுவது?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "உங்கள் சாதாரண Fedora திட்ட கணக்கு Fedora Hosted உடன் வேலை செய்யும். உங்களிடம் கணக்கு இல்லையெனில் வெறுமனே ஒரு Fedora திட்டத்தை விண்ணப்பிக்கவும். நீங்கள் ஒரு கொடையாளர் உரிம ஒப்பந்தத்தில் Fedora திட்டத்தில் குறியீட்டை கொடுக்க கையெழுத்திட வேண்டும்." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "என் திட்டத்தில் எவ்வாறு காப்பு வெளியீடுகளை பதிப்பது (tgz, zip, முதலியவை)?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "உங்கள் கணினியில் ஒரு காப்பினை உருவாக்க scp myProject-0.1.tar.gz fedorahosted.org:<Project Name>ஐ இயக்கவும். காப்பு https://fedorahosted.org/releases/இன் கீழ் வைக்கப்பட வேண்டும்" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "எனது ஆவணக்காப்பகத்தில் பதிவேற்றிய ஏதோவொன்றை நான் எப்படி அழிப்பேன்?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "நீங்கள் எந்த கோப்பை அழிக்க விரும்புகிறீர்கள் மற்றும் எதற்க்காக என்பதை குறிப்பிட்டு fedora-infrastructure tracத்தில் ஒரு சீட்டை பதிவு செய்யவும்" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "பாதை /releases/m/y/myprojectஐ விட வெளியீடுகளை அணுக வேறு வழிகள் உள்ளனவா?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "இது. https://fedorahosted.org/released/myproject அதே இடத்திற்கு செல்லும். இதன் தீமை என்னவென்றால் திட்டத்தை அறிய வேண்டும் திட்டங்களுக்கு உலாவ முடியாது" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "நான் ஒரு புதிய git தொகுபதிவகத்தை பெற்றேன், நான் எவ்வாறு push/pull செய்வது?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "யாராவது ஒரு புதிய தொகுபதிவகத்தை clone/push செய்யும் முன் அவர்கள் பின்வரும் கட்டளையை கொடுக்க வேண்டும் (உங்கள் உள்ளமை git repoலிருந்து): git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "ஒரு திட்டத்தை ஒப்படைக்க எப்படி அனுமதி பெறுவது?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "நீங்கள் இந்த குழுவின் திட்டத்திற்கு applyஒப்பந்தமாகி இருக்க வேண்டும், எதுவாகவெனில் <scm><project>, எ.கா. பணிமேடை- விளைவுகள் மிட்டம், இந்த gitdesktop-effects குழுவில் செயல்படுத்தலாம்." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "என்னுடைய தொகுபதிவகம் உருவாக்குவதற்கு நான் காத்திருக்கும் போது, என்னுடைய குறியீட்டை கொண்டு நான்எங்காவது பணிபுரியலாமா?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "இருந்தாலும். ஒரு தற்காலிக தொகுபதிவகத்தை உங்கள் fedorapeople.org இடத்தில் அமைப்பு பற்றிய விவரங்களை அமைப்பது பற்றி தெரிய http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org ஐ பார்க்கவும்." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "சரியான URL எனக்கு தெரிந்திருக்கும் போதே hg என்னிடம் களஞ்சியம் இல்லை என சொல்லுகிறது ?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a delimiter between hostname and path and a second \"/\" as the root of the filesystem path. For instance, if you're accessing the repository for authconfig you need to use \"hg clone ssh://hg.fedorahosted.org//hg/authconfig\"" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "Can I offer pre-compiled binaries on Fedora Hosted?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "You may, as long as the following conditions are met:
      1. The code project must be available under a Free Software license appropriate for Fedora.
      2. You must make the source code you used to build the binaries available, and not distributed in the same tarball, or at a minimum make available a \"source only\" tarball.
      3. You must provide clear instructions for building the software.
      " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "இருக்கும் திட்டங்கள்" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "அனைத்து திட்டங்களையும் காட்டு" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "திட்ட விளக்கம்" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "இணையம்" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "Anon URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "Auth URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "உங்கள் கிளிப் போர்டில் பெயரற்ற VCS URIஐ வலது சொடுக்கி நகலெடுக்கவும்" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "உங்கள் கிளிப் போர்டில் அங்கீகரிக்கப்பட்ட VCS URIஐ வலது சொடுக்கி நகலெடுக்கவும்" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "இந்தக் குழுவினுள் பதிவு செய்யப்பட்டதிட்டங்கள் இல்லை" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "ஒரு புதிய திட்டத்திற்கு விண்ணப்பித்தல் - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "ஒரு புதிய திட்டத்திற்கு விண்ணப்பித்தல்" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "புதிய திட்டத்தின் விண்ணப்பம் ஒரு டிக்கெட் வழியாக Fedora Infrastructure Trac instanceஇல் அறிக்கையிடப்பட வேண்டும். ஒரு டிக்கெட்டை உருவாக்குவதற்கு முன் புகுபதிவு செய்யவும்." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "பின்வருமாறு புலங்களை நிரப்பவும்" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<திட்டத்தின் பெயர்>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "minor இல்லையேல் இது அவசரமான விண்ணப்பம். உங்களுக்கு இந்த விண்ணப்பம் அவசரம் என தோன்றவில்லையெனில் இந்த புலத்தை minor என அமைக்கவும்." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "டிக்கெட்டின் முழு விளக்கத்திற்குப் பின்வரும் மாதிரிஉருவை பயன்படுத்தவும்:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "பயன்படுத்தும் வழிமுறை - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "பயன்படுத்தும் வழிமுறை" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "Fedora திட்ட வடிவமைப்பு குழு Fedora Hosted சேவையை முடிந்த அளவுக்கு செய்யப்படுகிறது. பலர் இங்கு தன்னார்வலராக உள்ளனர். புதிய திட்டத்தின் விண்ணங்களுக்கு 1 மணிநேரத்திலிருந்து 3 நாட்களை வரை ஆகும். செயலிழப்புகள் ஏற்பட்டால் அதற்கு அதிக முன்னுரிமை கொடுக்கப்படும்." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "Fedora திட்டம் எந்த திட்டத்தையும் அவர்களின் அமைப்பிலிருந்து நீக்க பின்வரும் வரம்பில் உரிமையுள்ளது:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "திட்டத்தில் உள்ள குறியீடு நம் உரிம தேவைகளை பூர்த்தி செய்யவில்லை" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "ஆறு (6) மாதங்களில் எந்த குறிப்பிட்ட மாற்றங்களும் சமர்பிக்கப்படவில்லை அல்லது செயல்படுத்தப்படவில்லை." - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "நாங்கள் எப்போதும் விடுபட்ட வல்லுனர்களை தொடர்பு கொண்டு அவர்களின் குறியீடு, Trac தரவுத்தளங்கள் மற்றும் வேறு தொடர்பான தரவு தங்களிடம் உள்ளதா என கேட்டு திட்டத்தின் உரிமையாளரிடம் திட்டம் நீக்கப்பட்டால் கொடுக்கப்படும்." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "The Fedora Project is maintained and driven by the community and sponsored by Red Hat. This is a community maintained site. Red Hat is not responsible for content." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "நிதியளிப்பவர்கள்" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "சட்டம்" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "வணிக முத்திரை வழிகாட்டிகள்" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "திசையமைப்பு" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "முகப்பு" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "பற்றி" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "புதிய திட்டம்" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "இணைய தள மொழிகள்" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "நிறுவ நிதியளிப்பவர்" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "ServerBeachஆல் நிதியளிக்கப்பட்டது" diff --git a/fedorahosted.org/po/te.po b/fedorahosted.org/po/te.po deleted file mode 100644 index 01a154d..0000000 --- a/fedorahosted.org/po/te.po +++ /dev/null @@ -1,433 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# neb , 2011 -# వీవెన్ , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Telugu (http://www.transifex.com/projects/p/fedora-web/language/te/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: te\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "హోస్టయిన ప్రోజెక్టులు - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "అటువంటి ప్రోజెక్ట్ యేదీలేదు." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "అభ్యర్దించినటువంటి ప్రోజెక్ట్ Fedora Hosted నందు లేదు." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Fedora Hosted - గురించి" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Fedora Hosted గురించి" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Hosted అనునది Fedora Project- అభివృద్దికారులు ఆన్‌లైన్‌లో వారియొక్క కోడును వుంచుటకు మరియు కలిసిపనిచేయుటకు యిది వొకమార్గము. మేము ప్రతి ప్రోజెక్టుకు git, Mercurial, bzr, మరియు యితరముల ద్వారా సోర్సు కంట్రోల్‌ను, అదేవిధంగా బగ్ ట్రాకర్ మరియు wikiను ట్రాక్ ద్వారా అందిస్తున్నాము." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "మీ కొత్త ప్రోజెక్టు work ticket దూరంలోవుంది." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "FAQs - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "తరచుగా-అడుగు ప్రశ్నలు" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Fedora Hosted అంటే యేమిటి?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fdora Hosted అనునది అప్‌స్ట్రీమ్ అభివృద్దికారులు ఆన్‌లైన్‌లో వారి కోడ్‌ను వుంచుటకు మరియు కలిసిపనిచేయుటకు the Fedora Project ద్వారా అందించబడే వొక ప్రోజెక్టు." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "ఎలా నేను కొత్త ప్రోజెక్టును అభ్యర్దించగలను?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Fedora నిర్మాణ టీమ్‌కు work ticketను నమోదు చేయండి." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "సహాయము కొరకు నేను యెక్కడకి వెళ్ళగలను?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "సహాయము పొందుటకు వుత్తమమైన మార్గము Freenode నందుగల #fedora-admin IRC చానల్‌నందు చేరటము లేదా Fedora నిర్మాణ టీమ్‌కు టికెట్ తెరువుము." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "నేను Fedora Hosted ఖాతాను యెలా పొందగలను?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "మీ సాధారణ Fedora Project ఖాతా Fedora Hostedతో పనిచేస్తుంది. మీకు యిప్పటికే Fedora Project ఖాతా లేకపోతే దరఖాస్తు చేయండి. కొడ్ సహాయము చేయుటకు మీరు Fedora Projectతో సహాయకుని లైసెన్సు ఒప్పందం(Contibutor License Agreement)పై సంతకం చేయాలి." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "నా ప్రోజెక్టు కొరకు నేను ఆర్చివ్ విడుదలలు (tgz, zip, మొదలగునవి) యెలా ప్రచురించగలను?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "మీ ఆర్చివ్‌ను వర్కుస్టేషన్‌నందు సృష్టించుకొని మరియు scp myProject-0.1.tar.gz fedorahosted.org:<Project Name>ను నడుపుము. ఆర్చివ్ దీని క్రిందన వుంచబడుతుంది. https://fedorahosted.org/releases/" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "విడుదలలను యాక్సెస్ చేయుటకు పాత్ /releases/m/y/myproject కన్నా యింకా అనువైన మార్గము యేమైనావుందా?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "ఉంది. https://fedorahosted.org/released/myproject కూడా అదే స్థానమునకు వెళుతుంది. దీనిలో వున్న అసౌకర్యం యేమిటంటే మీకు ప్రోజెక్ట్ నామము తప్పక తెలిసివుండాలి మరియు ప్రోజెక్టు కొరకు అన్వేషణ(బ్రౌజ్) చేయలేరు." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "నేను కొత్త git రిపోజిటరీని పొందాను, నేను యెలా push/pull చేయగలను?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "కొత్త రిపోజిటరీకి యెవరైనా clone/push చేయుటకు ముందుగా వొక మాస్టర్ pushను (మీ స్థానిక git repo)నుండి ఈ కమాండ్‌తో తప్పకచేయాలి: git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "ప్రోజెక్టుకు కమిట్ చేయుటకు నేను అనుమతిని యెలా పొందగలను?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "మీరు ప్రోజెక్టు యొక్క కమిట్ గ్రూప్‌నకు దరఖాస్తు పెట్టుకొనవలెను, అది <scm><project> వలె వుండాలి, ఉ.దా. desktop-effects ప్రోజెక్టు కొరకు, gitdesktop-effects గ్రూప్‌నకు ధరఖాస్తు పెట్టుకొనుము." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "నా రిపోజిటరీ సృష్టించబడుటకు నేను వేచివుండునపుడు, మరెక్కడైనా నేను నా కోడ్‌పై పనిచేయగలనా?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "తప్పకుండా. మీ fedorapeople.org స్పేస్‌నందు తాత్కాలిక రిపోజిటరీ యెలా అమర్చాలో సూచనలకొరకుhttp://fedoraproject.org/wiki/Infrastructure/fedorapeople.orgను సందర్శించండి." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "నేను సరైన URLను కలిగివున్నానని నాకుతెలిసనప్పటికి యెందుకు hg నాతో రిపోజిటరీ లేదు అని చెపుతోంది?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "అందుబాటులోవున్న ప్రోజెక్టులు" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "అన్ని ప్రోజెక్టులను ప్రదర్శించుము" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "ప్రోజెక్టు వివరణ" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "Web" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "ఎనాన్ URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "ఆథ్ URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "పేరులేని(ఎనానిమస్) VCS URIను మీ క్లిప్‌బోర్డుకు రైట్-క్లిక్‌చేసి నకలుతీయుము" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "దృవీకరించిన VCS URIను మీ క్లిప్‌బోర్డుకు రైట్-క్లిక్‌చేసి నకలుతీయుము" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "ఈ సమూహంనందు ఏ ప్రోజెక్టులు నమోదు కాలేదు" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "కొత్త ప్రోజెక్టును అభ్యర్దించుము - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "కొత్త ప్రోజెక్టును అభ్యర్దించుము" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "కొత్త ప్రోజెక్టు అభ్యర్ధనలు తప్పక Fedora Infrastructure Trac instance నందలి టికెట్ ద్వారా నమోదు కావాలి. టికెట్ సృష్టించుటకు ముందు తప్పక లాగిన్ అవ్వండి." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "ఈ క్రిందివిధంగా క్షేత్రములను(ఫీల్డ్స్‍) నింపుము:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<ప్రోజెక్టు నామము>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "ఇది అత్యవసరమైన అభ్యర్ధన కాకపోతే minor. మీకు అభ్యర్దన అత్యవసరమో కాదో తెలియకపోతే ఈ క్షేత్రమును minorకు అమర్చుము." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "టికెట్‌యొక్క పూర్తి విశదీకరణకు ఈక్రింది మాదిరి(టెంప్లేట్)ను వుపయోగించుము:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "ఉపయోగించుటకు నియమాలు: Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "ఉపయోగించుటకు నియమాలు" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "Fedora Project వ్యవస్థ సమూహం చాలా సమర్ధవంతంగా Fedora Hosted సేవలను అందిస్తోంది. దీనిని నిర్వహించేది చాలామంది దీని కార్యకర్తలు. సాదారణంగా కొత్త ప్రోజెక్టు అభ్యర్దనలకు స్పందించు సంమయం 1 గంటనుండి 3 రోజుల మధ్య వుంటుంది. అంతరాయాలు(ఔటేజస్), అవీ వస్తే, ఎక్కవ ప్రాముఖ్యతతో సంభాలించ(హాండిల్) బడతాయి." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "ఈ క్రింది ప్రామాణికత(క్రైటీరియా)ను చేరని ప్రోజెక్టును మా సిస్టమ్‌నుండి తొలగించు హాక్కును Fedora Project కలిగివుంది." - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "ప్రోజెక్టునందు కలిగివున్న కోడ్ మా లైసెన్సు అవసరాలును చేరక పోయినా." - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "గత ఆరు (6) నెలలనుండి యెటువంటి గుర్తించదగిన మార్పులు సమర్పించ(కమిట్)కపోయినా." - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "ప్రోజెక్టును తొలగించునప్పుడు ప్రోజెక్టు యజమానికి చూపుటకు మేము యెల్లప్పుడూ సాధ్యమైనంతవరకూ అందుబాటులోలేని అభివృద్దికారులను సంప్రదించుటకు మరియు వారికోడ్‌ను , ట్రాక్ డాటాబేసెస్‌ను, మరియు తత్సంబదమైన డాటాను చేతిలోవుంచుకొనుటకు ప్రయత్నిస్తాము." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© ; 2012 Red Hat, Inc. మరియు ఇతరులు. ఏ ఏ వ్యాఖ్యలు లేదా దిద్దుబాట్లు దీనికి పంపండి" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "Fedora Project అనునది కమ్యూనిటి చేత నడుపబడుతుంది మరియు Red Hat చేత సమకూర్చబడుతోంది. ఇది కమ్యూనిటి చేత నడుపబడుతున్న సైటు. దీని లోపలి విషయసంగ్రహమునకు Red Hat భాద్యతవహించదు." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "ప్రాయోజకులు" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "చట్టబద్దత" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "వ్యాపారగుర్తు మార్గదర్శకాలు" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "ఫెడోరా" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "మార్గదర్శకం" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "ముంగిలి" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "గురించి" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "కొత్త ప్రాజెక్టు" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "వెబ్‌సైటు భాష" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "హోస్టింగుచేయు ప్రాయోజకులు" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "ServerBeach చేత ప్రాయోజనం చేయబడింది" diff --git a/fedorahosted.org/po/tg.po b/fedorahosted.org/po/tg.po deleted file mode 100644 index 7e6b81a..0000000 --- a/fedorahosted.org/po/tg.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-07-04 01:02+0200\n" -"PO-Revision-Date: 2012-07-03 23:12+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Tajik (http://www.transifex.com/projects/p/fedora/language/tg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: tg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Идоракунӣ" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Саҳифаи асосӣ" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Забони сомона" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/th.po b/fedorahosted.org/po/th.po deleted file mode 100644 index ae87437..0000000 --- a/fedorahosted.org/po/th.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2011-03-04 00:29+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Thai (http://www.transifex.com/projects/p/fedora-web/language/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "ผู้สนับสนุน" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/tr.po b/fedorahosted.org/po/tr.po deleted file mode 100644 index 44464d2..0000000 --- a/fedorahosted.org/po/tr.po +++ /dev/null @@ -1,434 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Emin Tufan , 2013 -# Muhammet Kara , 2012 -# Onuralp SEZER , 2012 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Emin Tufan \n" -"Language-Team: Turkish (http://www.transifex.com/projects/p/fedora-web/language/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "Barındırılan Projeler - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "Böyle bir proje yok." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "İstenilen proje Fedora Hosted'da mevcut değildir." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Hakkında - Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Fedora Hosted Hakkında" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "SSS - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Sıkça Sorulan Sorular" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Fedora Hosted Nedir?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "Nasıl yeni bir proje isteyebilirim?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "Yardım için nereye gidebilirim?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Fedora Hosted üyeliği nasıl alabilirim? " - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "Projem için arşiv sürümlerini (tgz, zip gibi) nasıl yayınlayabilirim?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "Arşivime yüklemiş olduğum herhangi bir şeyi nasıl silebilirim?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "Bir projeye katkıda bulunmak için nasıl izin alabilirim? " - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "Çevirinizi buraya yazın" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "Mevcut Projeler" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "Tüm projeleri göster" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "Proje Açıklaması" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "Web" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "Anonim URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "Yetkili URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "Bu grup içinde kayıtlı proje yok" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "Yeni Bir Proje İste - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "Yeni Bir Proje İste" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<projenin ismi>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "Kullanım Şartları - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "Kullanım Şartları" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "Fedora Projesi topluluk tarafından sürdürülür ve yönetilir. Bu bir topluluğun yönettiği sitedir. Red Hat içeriğinden sorumlu değildir." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Sponsorlar" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Yasal" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Navigasyon" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Ana Sayfa" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "Hakkında" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "Yeni Proje" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Web Sitesi Dili" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Barındırma Sponsoru" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "ServerBeach tarafından sponsorludur" diff --git a/fedorahosted.org/po/uk.po b/fedorahosted.org/po/uk.po deleted file mode 100644 index 3490ad8..0000000 --- a/fedorahosted.org/po/uk.po +++ /dev/null @@ -1,433 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# neb , 2011 -# Yuri Chornoivan , 2011, 2012 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:06+0000\n" -"Last-Translator: Yuri Chornoivan \n" -"Language-Team: Ukrainian (http://www.transifex.com/projects/p/fedora-web/language/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "Доступні проекти — Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "Такого проекту немає." - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "Запитаний проект відсутній у Fedora Hosted." - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "Про ресурс — Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "Про ресурс Fedora Hosted" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Hosted — це можливість розміщення первинного коду у мережі та співробітництва у режимі онлайн, що надається розробкам проектом Fedora. Ми забезпечуємо кожен проект системою контролю версій через git, Mercurial, bzr та інше, а також можливості реєстрації помилок та Wiki через Trac." - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "Ваш новий проект всього за однією заявою від вас." - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "Часті питання — Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "Часті питання" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Що таке Fedora Hosted?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora Hosted — це можливість розміщення первинного коду у мережі та співробітництва у режимі онлайн, надається розробникам проектом Fedora." - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "Як подати заявку на створення нового проекту?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "Надішліть заявку команді Fedora Infrastructure." - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "Де отримати допомогу?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "Два способи запитати про допомогу — відвідати канал IRC #fedora-admin у мережі Freenode чи надіслати заявку команді Fedora Infrastructure." - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "Як отримати обліковий запис Fedora Hosted?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "У Fedora Hosted діють облікові записи, створені на fedoraproject.org. Просто створіть обліковий запис Fedora, якщо ви його не маєте. Зверніть увагу, що попередньо потрібно прийняти умови ліцензійної угоди." - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "Як налаштувати git так, щоб уможливити мої внески до сховища проекту, заснованого на Fedora?" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "Отримайте клон потрібного вам сховища (git clone). Після цього у каталозі сховища у вашій системі внесіть зміни до файла .git/config, розділ [remote \"origin\"], щоб адреса відповідала такому шаблону: " - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "url = ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "користувач" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahosted.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "назва_проекту" - -#: data/content/faq.html:22 -msgid ".git" -msgstr ".git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "Де" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr " назва вашого облікового запису у системі облікових записів Fedora." - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr " назва проекту fedorahosted.org, яку вказано не першій сторінці fedorahosted.org." - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "Як опублікувати архів випуску (tgz, zip, etc) мого проекту?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "Створіть архів та виконайте команду scp myProject-0.1.tar.gz fedorahosted.org:<назва_проекту>, в результаті чого архів буде надіслано до https://fedorahosted.org/releases/" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "Як вилучити дані, вивантажені мною до архіву?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "Будь ласка, створіть повідомлення у системі стеження за інфраструктурою fedora з назвою файла та причиною його вилучення." - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "Чи існує простіший метод доступу, ніж використання шляху у форматі /releases/m/y/myproject?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "Так, https://fedorahosted.org/released/myproject. Недолік цього способу, потрібно знати назву проекту, окрім того, ви не зможете переглядати проекти." - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "Я отримати новий репозиторій git, як я можу виконати push/pull?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "Перш ніж ви зможете дублювати чи виконувати push для нового репозиторію, з локального репозиторію git, спочатку треба виконати команду «git push ssh://git.fedorahosted.org/git/yourproject.git/ master»" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "Як вносити зміни?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "Слід подати заявку на участь у групі, що вносить зміни до цього проекту. Її назва формується за зразком: <scm><project>. Тобто, наприклад, щоб вносити зміни у проект «desktop-effects», потрібно вступити до групи gitdesktop-effects." - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "Чи можна працювати над проектом, поки створюється репозиторій?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "Конечно. На сторінці http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org ви знайдете інструкції з налаштовування тимчасового репозиторію у просторі fedorapeople.org." - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "Чому hg повідомляє, що репозиторій не існує, коли я впевнений, що URL коректний?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "На жаль, у hg не використовуються справжні адреси. Вам слід додати «/» для відокремлення назви вузла від шляху у сховищі і ще один символ «/» для позначення кореневої теки у файловій системі. Наприклад, для доступу до сховища authconfig вам слід скористатися командою \"hg clone ssh://hg.fedorahosted.org//hg/authconfig\"" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "Чи можу я розміщувати прекомпільовані бінарні пакети на Fedora Hosted?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "Можете, якщо дотримані наступні умови:
      1. Первинний код проекту доступний за вільною ліцензією, сумісною з Fedora.
      2. Первинний код, використаний при збиранні двійкових файлів, доступний, причому окремо від них, чи, як мінімум, наданий окремий «архів з первинним кодом».
      3. Чітко розписані інструкції з самостійного збирання файлів.
      " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "Доступні проекти" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "Показати всі проекти" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "Опис проекту" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "Web" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "Anon URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "Auth URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "Клацніть правою кнопкою миші та скопіюйте анонімний URI VCS у буфер обміну." - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "Клацніть правою кнопкою миші та скопіюйте авторизований URI VCS у буфер обміну." - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "У цій групі проектів не зареєстровано" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "Заявка на новий проект — Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "Подати заявку на створення нового проекту" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "Запити на створення нових проектів мають бути зареєстровані у заявці у Fedora Trac. Не забудьте авторизуватися перш створювати заявку." - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "Заповніть поля наступним чином:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<назва проекту>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "Не змінюйте значення minor, якщо ви не впевнені наскільки терміновим є ваш запит." - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "Використовуйте наступний шаблон для оформлення заявки." - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "Умови обслуговування — Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "Умови обслуговування" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "Команда інфраструктури проекту Fedora надає служби Fedora Hosted на суспільних засадах. Час відповіді зазвичай складає від однієї години до трьох діб. Збоям у роботі приділяється особлива увага." - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "Проект Fedora зберігає за собою право виключення проектів з нашої системи, якщо вини не відповідають наступним вимогам:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "Код у проекті не відповідає ліцензійним вимогам" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "Проект не оновлювався протягом шести місяців." - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "Мм завжди намагаємось підтримувати зв'язок з розробниками та надавати код, бази даних Trac та інші дані власнику проекту у випадку його виключення з нашої бази." - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© Red Hat, Inc. та інші, 2012. Будь ласка, надсилайте ваші коментарі та виправлення команді супровідників сайта." - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "Проект Fedora підтримується спільнотою та спонсорується компанією Red Hat. Сайт підтримується спільнотою і Red Hat не відповідає за його зміст." - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Спонсори" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "Правові положення" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "Використання торгової марки" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "Навігація" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Початок" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "Про ресурс" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "Новий проект" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Мова сайту" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "Хостинг" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "Спонсор: компанія ServerBeach" diff --git a/fedorahosted.org/po/ur.po b/fedorahosted.org/po/ur.po deleted file mode 100644 index 2d8f1dd..0000000 --- a/fedorahosted.org/po/ur.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2012-07-03 23:12+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Urdu (http://www.transifex.com/projects/p/fedora-web/language/ur/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: ur\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/uz.po b/fedorahosted.org/po/uz.po deleted file mode 100644 index 8c9990b..0000000 --- a/fedorahosted.org/po/uz.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2014-03-24 14:43+0000\n" -"Last-Translator: Jared Smith \n" -"Language-Team: Uzbek (http://www.transifex.com/projects/p/fedora-web/language/uz/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: uz\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/vi.po b/fedorahosted.org/po/vi.po deleted file mode 100644 index 114e48a..0000000 --- a/fedorahosted.org/po/vi.po +++ /dev/null @@ -1,432 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Hien , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Vietnamese (http://www.transifex.com/projects/p/fedora-web/language/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "Tôi có thể yêu cầu một dự án mới như thế nào ?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "Bảo trợ" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "Trang chủ" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "Trang web ngôn ngữ " - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/zh_CN.GB2312.po b/fedorahosted.org/po/zh_CN.GB2312.po deleted file mode 100644 index 271f49c..0000000 --- a/fedorahosted.org/po/zh_CN.GB2312.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2011-03-04 00:29+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/fedora-web/language/zh_CN.GB2312/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/zh_CN.po b/fedorahosted.org/po/zh_CN.po deleted file mode 100644 index 324bf41..0000000 --- a/fedorahosted.org/po/zh_CN.po +++ /dev/null @@ -1,436 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Christopher Meng , 2012 -# Ubuntuchen , 2012 -# neb , 2011 -# Tiansworld , 2012 -# yusuf , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Tiansworld \n" -"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/fedora-web/language/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "驻留的项目 - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "没有该项目。" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "Fedora Hosted 中不存在该项目。" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "关于 - Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "关于 Fedora Hosted" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Hosted 是一个由 Fedora 项目资助的让开发人员存放代码和在线协作的平台。我们为每个项目提供 git, Mercurial, bzr 和其它方式的版本控制系统,以及由 Trac 管理的 bug 跟踪和 wiki 系统。" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "您新建的项目只差一个 work ticket 了。" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "常见问题解答 - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "常见问题解答" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "什么是 Fedora Hosted?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora Hosted 是一个由 Fedora 项目资助的允许上游开发人员存放代码和在线协作的项目。" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "我该如何申请一个新项目?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "向 Fedora 基础设施团队申请一个 新项目。" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "我可以从哪里得到帮助?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "获得帮助的最好方式是加入Freenode上的#fedora-adminIRC 频道,或者给 Fedora 基础设施团队留下一个 ticket。" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "我该如何获得一个 Fedora Hosted 帐户?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "您的 Fedora 项目的账户就可以在 Fedora Hosted 中使用。如果您还没有,只需申请一个 Fedora 项目账户。请注意:为了贡献代码您必须和 Fedora 项目签署一个贡献者许可协议。" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "我该如何设置 git 以便提交我的内容至 Fedora Hosted 源?" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "将您的软件库做 git clone。然后在您系统中的软件库目录下编辑 .git/config 文件。在 [remote \"origin\"] 部分下将 URL 设置按以下方式修改:" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "url = ssh://" - -#: data/content/faq.html:22 -msgid "username" -msgstr "用户名" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "@git.fedorahosted.org/git/" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "项目名称" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "git" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "位置:" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr " 是您的 Fedora 账户系统用户名。" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr " 是在 fedorahosted.org 的首页显示中您的项目的名称。" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "我如何为我的项目发布归档版本(tgz, zip, 等)?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "在您的工作站上创建一个归档文件,然后运行scp myProject-0.1.tar.gz fedorahosted.org:<项目名称>命令。这个归档文件会放在https://fedorahosted.org/releases/" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "我如何删除那些我已经上传到我文件夹里的东西?" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "请在此填写申请fedora-infrastructure trac 详细列举您希望删除的文件盒原因" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "有比路径/releases/m/y/myproject更方便的访问发行版的方法吗?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "有的。链接https://fedorahosted.org/released/myproject可转到相同的地方。这个方法的缺点是您必须知道项目名称,并且无法按项目浏览。" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "我得到一个新的 git 仓库,我如何 push/pull?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "在任何人能够 clone/push 这个新的仓库前,必须用这个命令(从您的本地git repo)完成一个 master push:git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "怎样获得提交项目的权限?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "您应该加入项目的提交小组,该小组应该是<scm><project>,例如桌面效果项目,应加入gitdesktop-effects小组。" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "在我等待仓库创建的时候,可以在其它地方编写我的代码吗?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "当然。访问http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org来了解怎样在您的 fedorapeople.org 空间内建立临时仓库。" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "尽管确定 URL 地址正确,为什么 hg 仍提示仓库不存在?" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr " 是您在 fedorahosted.org 存放的项目在名称project as listed on the front of fedorahosted.org." - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "我可以在 Fedora-Hosted 上发布预编译二进制包吗?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "可以,只要您符合以下条件:
      1. 源代码必须以适合 Fedora 的自由软件许可提供。
      2. 您必须提供构建二进制包所用的源代码,并且不能发布在同一个 tar 包里,或者最起码以 \"source only\" 的 tar 包提供。
      3. 您必须提供明确的软件构建说明。
      " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "已有的项目" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "显示所有项目" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "项目简介" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "Web" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "匿名 URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "验证 URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "点击右键,然后复制匿名的版本控制系统的 URI 到您的剪切板" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "点击右键,然后复制已授权的版本控制系统的 URI 到您的剪切板" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "本组中没有注册项目" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "申请一个新项目 - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "申请一个新项目" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "新项目需要在Fedora Infrastructure Trac instance里通过 ticket 提出。请在尝试创建一个 ticket 之前首先确保已经登录。" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "填写如下字段:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<项目的名字>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "minor 如果这不是一个紧急请求。如果您不确定请求是否紧急,那么设置 minor 字段。" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "使用下面的模板来填写申请的所有描述:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "使用条款 - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "使用条款" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "Fedora 项目的基础设施团队尽最大努力提供 Fedora Hosted 服务。管理它的人中,很多是志愿者。一个新项目申请的回应时间一般是1小时到3天。如果有停机事件,该事件将得到更高优先级的处理。" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "Fedora 项目保留从系统中删除任何没有遵循下面标准的项目的权利:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "项目中的代码没有遵循我们的license 要求" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "至少6个月没有提交或实施有效变动" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "我们将总是尽最大努力联系不见的开发者并把现有的代码,Trac 数据库和任何相关数据保留下来,这样当项目被删除时,这些数据可以被提交给项目所有者。" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "© 2012 红帽公司及其他。如有任何问题或错误修正,请发送邮件至 网站团队邮箱。" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "Fedora 项目是由社区维护和驱动的,并由 Red Hat 资助。这是一个社区维护的站点,Red Hat 不对内容负责。" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "赞助者" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "法律条款" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "商标向导" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "导航" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "主页" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "关于" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "新项目" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "网站的语言" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "资助者" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "由 ServerBeach 资助" diff --git a/fedorahosted.org/po/zh_HK.po b/fedorahosted.org/po/zh_HK.po deleted file mode 100644 index 42694d8..0000000 --- a/fedorahosted.org/po/zh_HK.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2012-07-03 23:12+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/fedora-web/language/zh_HK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: zh_HK\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/zh_TW.Big5.po b/fedorahosted.org/po/zh_TW.Big5.po deleted file mode 100644 index 0e1f4cf..0000000 --- a/fedorahosted.org/po/zh_TW.Big5.po +++ /dev/null @@ -1,431 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2011-03-04 00:29+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Chinese (Taiwan) (Big5) (http://www.transifex.com/projects/p/fedora-web/language/zh_TW.Big5/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: zh_TW.Big5\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "" - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "" - -#: data/content/index.html:19 -msgid "Web" -msgstr "" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "" diff --git a/fedorahosted.org/po/zh_TW.po b/fedorahosted.org/po/zh_TW.po deleted file mode 100644 index 95b26db..0000000 --- a/fedorahosted.org/po/zh_TW.po +++ /dev/null @@ -1,434 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Cheng-Chia Tseng , 2011 -# neb , 2011 -# Walter Cheuk , 2012 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:34+0100\n" -"PO-Revision-Date: 2015-02-03 15:16+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/fedora-web/language/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/content/410.html:7 data/content/index.html:7 -msgid "Hosted Projects - Fedora Hosted" -msgstr "已 Host 的專案 - Fedora Hosted" - -#: data/content/410.html:12 -msgid "No such project." -msgstr "無此專案。" - -#: data/content/410.html:14 -msgid "The requested project does not exist on Fedora Hosted." -msgstr "您所要求的專案不在 Fedora Hosted。" - -#: data/content/about.html:7 -msgid "About - Fedora Hosted" -msgstr "相關資訊 - Fedora Hosted" - -#: data/content/about.html:12 -msgid "About Fedora Hosted" -msgstr "關於 Fedora Hosted" - -#: data/content/about.html:13 -msgid "" -"Fedora Hosted is a Fedora " -"Project-sponsored way for developers to host their code and collaborate " -"online. We provide each project with source control via git, Mercurial, bzr," -" and others, as well as a bug tracker and wiki via Trac." -msgstr "Fedora Hosted 是藉由 Fedora 專案贊助來讓開發人員存放程式碼和線上協作的方式。我們以 git、Mercurial、bzr 以及其它方式來為各項專案提供原始碼控制,並且也提供了透過 Trac 所管理的 bug 追蹤程式以及 wiki 系統。" - -#: data/content/about.html:14 -msgid "Your new project is just a work ticket away." -msgstr "若要新建專案,您只需發送 work ticket 即可。" - -#: data/content/faq.html:7 -msgid "FAQs - Fedora Hosted" -msgstr "常見問題 - Fedora Hosted" - -#: data/content/faq.html:12 data/templates/sidebar.html:13 -msgid "Frequently-Asked Questions" -msgstr "常見問題" - -#: data/content/faq.html:13 -msgid "What is Fedora Hosted?" -msgstr "Fedora Hosted 是什麼?" - -#: data/content/faq.html:14 -msgid "" -"Fedora Hosted is a project sponsored by the Fedora Project to allow upstream " -"developers to host their code and collaborate online." -msgstr "Fedora Hosted 是由 Fedora 專案贊助專案,其可讓上游開發人員存放程式碼和進行線上協作。" - -#: data/content/faq.html:15 -msgid "How can I request a new project?" -msgstr "該如何申請新專案?" - -#: data/content/faq.html:16 -msgid "" -"File a work ticket with the Fedora Infrastructure team." -msgstr "提交 work ticket 給 Fedora Infrastructure 團隊。" - -#: data/content/faq.html:17 -msgid "Where can I go for help?" -msgstr "該如何取得協助?" - -#: data/content/faq.html:18 -msgid "" -"The best ways to get help are to join the #fedora-admin IRC channel on Freenode or to open a ticket " -"with the Fedora Infrastructure team." -msgstr "取得協助的最佳方式就是參與 Freenode#fedora-admin IRC 頻道,或是開列申請單並發送給 Fedora Infrastructure 團隊。" - -#: data/content/faq.html:19 -msgid "How can I get a Fedora Hosted account?" -msgstr "該如何取得 Fedora Hosted 的帳號?" - -#: data/content/faq.html:20 -msgid "" -"Your normal Fedora Project account works with Fedora Hosted. Simply apply for a Fedora " -"Project account if you haven't already. Do note that you must sign a " -"Contributor License Agreement with the Fedora Project in order to contribute" -" code." -msgstr "一般的 Fedora Project 帳號亦可在 Fedora Hosted 使用。若還未申請 Fedora Project 帳號的話,只需申請即可。請注意,若要貢獻程式碼,必須簽署 Fedora Project 的貢獻者授權合約。" - -#: data/content/faq.html:21 -msgid "How do I configure git so that I can push to my Fedora Hosted repo?" -msgstr "" - -#: data/content/faq.html:22 -msgid "" -"Do a git clone of your repo. Then, in your repo's directory on your system, " -"edit .git/config under the [remote \"origin\"] section to follow the " -"following pattern for the URL setting: " -msgstr "" - -#: data/content/faq.html:22 -msgid "url = ssh://" -msgstr "" - -#: data/content/faq.html:22 -msgid "username" -msgstr "" - -#: data/content/faq.html:22 -msgid "@git.fedorahosted.org/git/" -msgstr "" - -#: data/content/faq.html:22 -msgid "projectname" -msgstr "" - -#: data/content/faq.html:22 -msgid ".git" -msgstr "" - -#: data/content/faq.html:22 -msgid "Where:" -msgstr "" - -#: data/content/faq.html:22 -msgid " is your Fedora Account System username." -msgstr "" - -#: data/content/faq.html:22 -msgid "" -" is the name of your fedorahosted.org project as listed on the front of " -"fedorahosted.org." -msgstr "" - -#: data/content/faq.html:23 -msgid "How can I publish archive releases (tgz, zip, etc) for my project?" -msgstr "該如何為我的專案發佈壓縮的版本(tgz、zip 等等)?" - -#: data/content/faq.html:24 -msgid "" -"Create the archive on your workstation and run scp " -"myProject-0.1.tar.gz fedorahosted.org:<Project Name>. The " -"archive will be located under https://fedorahosted.org/releases/" -msgstr "請在您的工作站上建立這些壓縮檔並執行 scp myProject-0.1.tar.gz fedorahosted.org:<專案名稱>。這些壓縮檔會出現在 https://fedorahosted.org/releases/" - -#: data/content/faq.html:25 -msgid "How can I delete something I uploaded to my archive?" -msgstr "" - -#: data/content/faq.html:26 -msgid "" -"Please file a ticket in the fedora-infrastructure trac listing the exact file you " -"wish removed and why" -msgstr "" - -#: data/content/faq.html:27 -msgid "" -"Is there a more convenient way to access releases than the path " -"/releases/m/y/myproject?" -msgstr "是否有比透過 /releases/m/y/myproject 路徑來存取發行版要來得方便的方式呢?" - -#: data/content/faq.html:28 -msgid "" -"There is. https://fedorahosted.org/released/myproject will go " -"to the same place. The disadvantage of this is you must know the project " -"name and can't browse for projects." -msgstr "答案是有的。https://fedorahosted.org/released/myproject 也可到達相同的地方。缺點就是您必須要知道專案的名稱並且無法瀏覽其它專案。" - -#: data/content/faq.html:29 -msgid "I just got a new git repository, how can I push/pull?" -msgstr "已取得了新的 git 軟體庫,該如何 push/pull?" - -#: data/content/faq.html:30 -msgid "" -"Before anyone can clone/push the new repository a master push must be done " -"with the command (from your local git repo): git push " -"ssh://git.fedorahosted.org/git/yourproject.git/ master" -msgstr "在任何人可 clone/push 新的軟體庫之前,master push 必須先透過(由您的本地 git repo)輸入這項指令來完成:git push ssh://git.fedorahosted.org/git/yourproject.git/ master" - -#: data/content/faq.html:31 -msgid "How do I get permission to commit to a project?" -msgstr "該如何取得對專案提交的許可權?" - -#: data/content/faq.html:32 -msgid "" -"You should apply for " -"the commit group of the project, which should be " -"<scm><project>, e.g. for the desktop-effects " -"project, apply to the gitdesktop-effects group." -msgstr "" - -#: data/content/faq.html:33 -msgid "" -"While I wait for my repository to be created, can I work on my code " -"elsewhere?" -msgstr "當我在等待我的軟體庫被建立時,我可否在其它地方繼續編寫我的程式碼?" - -#: data/content/faq.html:34 -msgid "" -"Of course. Visit http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org" -" for instructions on how to set up a temporary repository in your " -"fedorapeople.org space." -msgstr "當然。請至 http://fedoraproject.org/wiki/Infrastructure/fedorapeople.org 以取得更多有關於如何在您的 fedorapeople.org space 中設定暫時軟體庫上的相關指示。" - -#: data/content/faq.html:35 -msgid "" -"Why does hg tells me the repository doesn't exist even though I know I have " -"the correct URL?" -msgstr "" - -#: data/content/faq.html:36 -msgid "" -"Unfortunately hg doesn't use true URLs. You have to use a \"/\" as a " -"delimiter between hostname and path and a second \"/\" as the root of the " -"filesystem path. For instance, if you're accessing the repository for " -"authconfig you need to use \"hg clone " -"ssh://hg.fedorahosted.org//hg/authconfig\"" -msgstr "" - -#: data/content/faq.html:37 -msgid "Can I offer pre-compiled binaries on Fedora Hosted?" -msgstr "可以在 Fedora Hosted 提供預先編譯過的二進位檔嗎?" - -#: data/content/faq.html:38 -msgid "" -"You may, as long as the following conditions are met:
      1. The code " -"project must be available under a Free Software license appropriate for " -"Fedora.
      2. You must make the source code you used to build the binaries" -" available, and not distributed in the same tarball, or at a minimum make " -"available a \"source only\" tarball.
      3. You must provide clear " -"instructions for building the software.
      " -msgstr "可以,只要符合下列條件:
      1. 代碼專案必須基於 Fedora 認可的「自由軟體」條款。
      2. 必須開放您用來建立二進位檔的源代碼,並且不能透過相同的 tarball 來發布,或者最少要開放「source only」的 tarball。
      3. 必須提供如何建制該軟體的明確指示。
      " - -#: data/content/index.html:10 -msgid "Available Projects" -msgstr "已有專案" - -#: data/content/index.html:12 -msgid "Display all projects" -msgstr "顯示所有專案" - -#: data/content/index.html:17 -msgid "Project Description" -msgstr "專案描述" - -#: data/content/index.html:18 -msgid "VCS" -msgstr "VCS" - -#: data/content/index.html:19 -msgid "Web" -msgstr "網頁" - -#: data/content/index.html:20 -msgid "Anon URL" -msgstr "Anon URL" - -#: data/content/index.html:21 -msgid "Auth URL" -msgstr "Auth URL" - -#: data/content/index.html:33 -msgid "Right-click and copy the anonymous VCS URI to your clipboard" -msgstr "請按右鍵並將匿名的 VCS URI 複製至您的剪貼簿" - -#: data/content/index.html:34 -msgid "Right-click and copy the authorized VCS URI to your clipboard" -msgstr "請按右鍵並將已授權的 VCS URI 複製至您的剪貼簿" - -#: data/content/index.html:37 -msgid "No projects registered in this group" -msgstr "這個群組無已註冊專案" - -#: data/content/new.html:7 -msgid "Request a New Project - Fedora Hosted" -msgstr "申請新專案 - Fedora Hosted" - -#: data/content/new.html:12 -msgid "Request a New Project" -msgstr "申請新專案" - -#: data/content/new.html:13 -msgid "" -"New project requests must be filed via a ticket in the Fedora " -"Infrastructure Trac instance. Be sure to log in before attempting to " -"create a ticket." -msgstr "新專案必須在 Fedora Infrastructure Trac instance 提交申請單申請。請確認您在嘗試建立申請單之前已登入。" - -#: data/content/new.html:14 -msgid "Fill in the fields as follows:" -msgstr "如下填入欄位:" - -#: data/content/new.html:16 -msgid "<name of project>" -msgstr "<專案名稱>" - -#: data/content/new.html:18 -msgid "" -"minor unless this is an urgent request. If you are uncertain " -"whether or not the request is urgent then set this field to " -"minor." -msgstr "minor:若這不是緊急要求。如果您不確定您的要求是否為緊急,請將此欄位設為 minor。" - -#: data/content/new.html:21 -msgid "Use the following template for the full description of the ticket:" -msgstr "請使用下列範本來填寫申請單的完整描述:" - -#: data/content/terms.html:7 -msgid "Terms of Use - Fedora Hosted" -msgstr "使用條款 - Fedora Hosted" - -#: data/content/terms.html:12 data/templates/sidebar.html:14 -msgid "Terms of Use" -msgstr "使用條款" - -#: data/content/terms.html:13 -msgid "" -"The Fedora Project Infrastructure team provides Fedora Hosted services on a " -"best-effort basis. Many of the people that manage it are volunteers. " -"Response time to new project requests is typically between 1 hour and 3 " -"days. Outages, should they occur, are handled with a much higher priority." -msgstr "Fedora Project Infrastructure 團隊將盡最大努力來提供 Fedora Hosted 服務。許多管理的人員都是志願者。新專案的回應時間一般會是 1 個小時至 3 天。停機狀態(outage)的發生將會有較高的處理優先等級。" - -#: data/content/terms.html:14 -msgid "" -"The Fedora Project reserves the right to remove any project from our system " -"that does not meet the following criteria:" -msgstr "Fedora Project 保留所有將未達到下列條件準則的專案由系統移除掉的權利:" - -#: data/content/terms.html:16 -msgid "" -"Code contained in the project does not meet our license " -"requirements" -msgstr "包含在專案中的程式碼未符合我們的條款要求" - -#: data/content/terms.html:17 -msgid "" -"No significant changes have been committed or applied for at least six (6) " -"months" -msgstr "至少六(6)個月沒有明顯變更被提交或是應用的專案" - -#: data/content/terms.html:19 -msgid "" -"We will always do our best to contact missing developers and ensure that the" -" code, Trac databases, and any relevant data is kept on hand so that it may " -"be presented to the project owner in the event that a project is removed." -msgstr "我們會盡最大努力來聯繫失蹤的開發人員並確保程式碼、Trac 資料庫以及任何相關資料都會被保留,如此一來當專案被移除時,這些資料將會被呈現給專案擁有者。" - -#: data/templates/foot.html:9 -msgid "" -"© 2012 Red Hat, Inc. and others. Please send any comments or " -"corrections to the websites " -"team." -msgstr "" - -#: data/templates/foot.html:12 -msgid "" -"The Fedora Project is maintained and driven by the community and sponsored " -"by Red Hat. This is a community maintained site. Red Hat is not " -"responsible for content." -msgstr "Fedora 專案是由社群維護和運作,並由 Red Hat 贊助。這是社群維護的網站。Red Hat 不為該內容負責。" - -#: data/templates/foot.html:15 -msgid "Sponsors" -msgstr "贊助商" - -#: data/templates/foot.html:16 -msgid "Legal" -msgstr "法律條款" - -#: data/templates/foot.html:17 -msgid "" -"Trademark " -"Guidelines" -msgstr "商標指南" - -#: data/templates/head.html:7 -msgid "Fedora" -msgstr "Fedora" - -#: data/templates/sidebar.html:8 -msgid "Navigation" -msgstr "瀏覽" - -#: data/templates/sidebar.html:10 -msgid "Home" -msgstr "主頁" - -#: data/templates/sidebar.html:11 -msgid "About" -msgstr "相關資訊" - -#: data/templates/sidebar.html:12 -msgid "New Project" -msgstr "新專案" - -#: data/templates/sidebar.html:16 -msgid "Website Language" -msgstr "網站語言" - -#: data/templates/sidebar.html:24 -msgid "Hosting Sponsor" -msgstr "服務贊助商" - -#: data/templates/sidebar.html:25 -msgid "Sponsored by ServerBeach" -msgstr "由 ServerBeach 贊助" diff --git a/fedorahosted.org/static/css/hosted.css b/fedorahosted.org/static/css/hosted.css deleted file mode 100644 index ed705bf..0000000 --- a/fedorahosted.org/static/css/hosted.css +++ /dev/null @@ -1,82 +0,0 @@ -#head h1 a -{ - background: url(https://fedorahosted.org/web/static/images/fedora-hosted-banner.png) 20px 50% no-repeat; - height: 88px; - width: 201px; -} - -#content img -{ - margin: 0; - height: 22px; - vertical-align: baseline; -} - -#content table -{ - width: 90%; -} - -td.desccol -{ - width: 80%; -} - -td.vcscol -{ - text-align: center; -} - -#content table th, #content table td -{ - border: 0; - padding: 0.1ex; - height: 22px; -} - -#content table tr.row:hover -{ - background-color: #abd3ff; -} - -pre -{ - padding: 1ex 1ex; - background-color: #C0DBDD; -} -#content span.question -{ - font-weight: bold; -} - -#grouplist -{ - background-color: #fbfbfb; - width: 90%; - text-align: center; - margin-top: 10px; - display: none; -} - -span.group -{ - padding: 5px; - margin-left: 5px; - font-size: large; - font-weight: bold; - cursor: pointer; - cursor: hand; -} - -span.group:hover -{ - color: #337ACC; -} - -#nodata -{ - background-color: #abd3ff; - text-align: center; - font-weight: bold; - display: none; -} diff --git a/fedorahosted.org/static/images/blank.png b/fedorahosted.org/static/images/blank.png deleted file mode 100644 index 7a093b2..0000000 Binary files a/fedorahosted.org/static/images/blank.png and /dev/null differ diff --git a/fedorahosted.org/static/images/copy.png b/fedorahosted.org/static/images/copy.png deleted file mode 100644 index 7628098..0000000 Binary files a/fedorahosted.org/static/images/copy.png and /dev/null differ diff --git a/fedorahosted.org/static/images/edit.png b/fedorahosted.org/static/images/edit.png deleted file mode 100644 index c40872d..0000000 Binary files a/fedorahosted.org/static/images/edit.png and /dev/null differ diff --git a/fedorahosted.org/static/images/fedora-hosted-banner.png b/fedorahosted.org/static/images/fedora-hosted-banner.png deleted file mode 100644 index 4eab247..0000000 Binary files a/fedorahosted.org/static/images/fedora-hosted-banner.png and /dev/null differ diff --git a/fedorahosted.org/static/images/line.png b/fedorahosted.org/static/images/line.png deleted file mode 100644 index 5c8b73e..0000000 Binary files a/fedorahosted.org/static/images/line.png and /dev/null differ diff --git a/fedorahosted.org/static/images/serverBeach.png b/fedorahosted.org/static/images/serverBeach.png deleted file mode 100644 index 5ada051..0000000 Binary files a/fedorahosted.org/static/images/serverBeach.png and /dev/null differ diff --git a/fedorahosted.org/static/images/vcs/bzr.png b/fedorahosted.org/static/images/vcs/bzr.png deleted file mode 100644 index b4a7168..0000000 Binary files a/fedorahosted.org/static/images/vcs/bzr.png and /dev/null differ diff --git a/fedorahosted.org/static/images/vcs/git.png b/fedorahosted.org/static/images/vcs/git.png deleted file mode 100644 index c0d4975..0000000 Binary files a/fedorahosted.org/static/images/vcs/git.png and /dev/null differ diff --git a/fedorahosted.org/static/images/vcs/hg.png b/fedorahosted.org/static/images/vcs/hg.png deleted file mode 100644 index 63aa52c..0000000 Binary files a/fedorahosted.org/static/images/vcs/hg.png and /dev/null differ diff --git a/fedorahosted.org/static/images/vcs/mtn.png b/fedorahosted.org/static/images/vcs/mtn.png deleted file mode 100644 index 4d0c8b6..0000000 Binary files a/fedorahosted.org/static/images/vcs/mtn.png and /dev/null differ diff --git a/fedorahosted.org/static/images/vcs/svn.png b/fedorahosted.org/static/images/vcs/svn.png deleted file mode 100644 index f4798b6..0000000 Binary files a/fedorahosted.org/static/images/vcs/svn.png and /dev/null differ diff --git a/fedorahosted.org/static/images/web.png b/fedorahosted.org/static/images/web.png deleted file mode 100644 index 1ad1e59..0000000 Binary files a/fedorahosted.org/static/images/web.png and /dev/null differ diff --git a/fedorahosted.org/static/js/jquery-1.4.2.min.js b/fedorahosted.org/static/js/jquery-1.4.2.min.js deleted file mode 100644 index 7c24308..0000000 --- a/fedorahosted.org/static/js/jquery-1.4.2.min.js +++ /dev/null @@ -1,154 +0,0 @@ -/*! - * jQuery JavaScript Library v1.4.2 - * http://jquery.com/ - * - * Copyright 2010, John Resig - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * Includes Sizzle.js - * http://sizzlejs.com/ - * Copyright 2010, The Dojo Foundation - * Released under the MIT, BSD, and GPL Licenses. - * - * Date: Sat Feb 13 22:33:48 2010 -0500 - */ -(function(A,w){function ma(){if(!c.isReady){try{s.documentElement.doScroll("left")}catch(a){setTimeout(ma,1);return}c.ready()}}function Qa(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalEval(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.removeChild(b)}function X(a,b,d,f,e,j){var i=a.length;if(typeof b==="object"){for(var o in b)X(a,o,b[o],f,e,d);return a}if(d!==w){f=!j&&f&&c.isFunction(d);for(o=0;o)[^>]*$|^#([\w-]+)$/,Ua=/^.[^:#\[\.,]*$/,Va=/\S/, -Wa=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,Xa=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,P=navigator.userAgent,xa=false,Q=[],L,$=Object.prototype.toString,aa=Object.prototype.hasOwnProperty,ba=Array.prototype.push,R=Array.prototype.slice,ya=Array.prototype.indexOf;c.fn=c.prototype={init:function(a,b){var d,f;if(!a)return this;if(a.nodeType){this.context=this[0]=a;this.length=1;return this}if(a==="body"&&!b){this.context=s;this[0]=s.body;this.selector="body";this.length=1;return this}if(typeof a==="string")if((d=Ta.exec(a))&& -(d[1]||!b))if(d[1]){f=b?b.ownerDocument||b:s;if(a=Xa.exec(a))if(c.isPlainObject(b)){a=[s.createElement(a[1])];c.fn.attr.call(a,b,true)}else a=[f.createElement(a[1])];else{a=sa([d[1]],[f]);a=(a.cacheable?a.fragment.cloneNode(true):a.fragment).childNodes}return c.merge(this,a)}else{if(b=s.getElementById(d[2])){if(b.id!==d[2])return T.find(a);this.length=1;this[0]=b}this.context=s;this.selector=a;return this}else if(!b&&/^\w+$/.test(a)){this.selector=a;this.context=s;a=s.getElementsByTagName(a);return c.merge(this, -a)}else return!b||b.jquery?(b||T).find(a):c(b).find(a);else if(c.isFunction(a))return T.ready(a);if(a.selector!==w){this.selector=a.selector;this.context=a.context}return c.makeArray(a,this)},selector:"",jquery:"1.4.2",length:0,size:function(){return this.length},toArray:function(){return R.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this.slice(a)[0]:this[a]},pushStack:function(a,b,d){var f=c();c.isArray(a)?ba.apply(f,a):c.merge(f,a);f.prevObject=this;f.context=this.context;if(b=== -"find")f.selector=this.selector+(this.selector?" ":"")+d;else if(b)f.selector=this.selector+"."+b+"("+d+")";return f},each:function(a,b){return c.each(this,a,b)},ready:function(a){c.bindReady();if(c.isReady)a.call(s,c);else Q&&Q.push(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(R.apply(this,arguments),"slice",R.call(arguments).join(","))},map:function(a){return this.pushStack(c.map(this, -function(b,d){return a.call(b,d,b)}))},end:function(){return this.prevObject||c(null)},push:ba,sort:[].sort,splice:[].splice};c.fn.init.prototype=c.fn;c.extend=c.fn.extend=function(){var a=arguments[0]||{},b=1,d=arguments.length,f=false,e,j,i,o;if(typeof a==="boolean"){f=a;a=arguments[1]||{};b=2}if(typeof a!=="object"&&!c.isFunction(a))a={};if(d===b){a=this;--b}for(;b
      a"; -var e=d.getElementsByTagName("*"),j=d.getElementsByTagName("a")[0];if(!(!e||!e.length||!j)){c.support={leadingWhitespace:d.firstChild.nodeType===3,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/red/.test(j.getAttribute("style")),hrefNormalized:j.getAttribute("href")==="/a",opacity:/^0.55$/.test(j.style.opacity),cssFloat:!!j.style.cssFloat,checkOn:d.getElementsByTagName("input")[0].value==="on",optSelected:s.createElement("select").appendChild(s.createElement("option")).selected, -parentNode:d.removeChild(d.appendChild(s.createElement("div"))).parentNode===null,deleteExpando:true,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null};b.type="text/javascript";try{b.appendChild(s.createTextNode("window."+f+"=1;"))}catch(i){}a.insertBefore(b,a.firstChild);if(A[f]){c.support.scriptEval=true;delete A[f]}try{delete b.test}catch(o){c.support.deleteExpando=false}a.removeChild(b);if(d.attachEvent&&d.fireEvent){d.attachEvent("onclick",function k(){c.support.noCloneEvent= -false;d.detachEvent("onclick",k)});d.cloneNode(true).fireEvent("onclick")}d=s.createElement("div");d.innerHTML="";a=s.createDocumentFragment();a.appendChild(d.firstChild);c.support.checkClone=a.cloneNode(true).cloneNode(true).lastChild.checked;c(function(){var k=s.createElement("div");k.style.width=k.style.paddingLeft="1px";s.body.appendChild(k);c.boxModel=c.support.boxModel=k.offsetWidth===2;s.body.removeChild(k).style.display="none"});a=function(k){var n= -s.createElement("div");k="on"+k;var r=k in n;if(!r){n.setAttribute(k,"return;");r=typeof n[k]==="function"}return r};c.support.submitBubbles=a("submit");c.support.changeBubbles=a("change");a=b=d=e=j=null}})();c.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};var G="jQuery"+J(),Ya=0,za={};c.extend({cache:{},expando:G,noData:{embed:true,object:true, -applet:true},data:function(a,b,d){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var f=a[G],e=c.cache;if(!f&&typeof b==="string"&&d===w)return null;f||(f=++Ya);if(typeof b==="object"){a[G]=f;e[f]=c.extend(true,{},b)}else if(!e[f]){a[G]=f;e[f]={}}a=e[f];if(d!==w)a[b]=d;return typeof b==="string"?a[b]:a}},removeData:function(a,b){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var d=a[G],f=c.cache,e=f[d];if(b){if(e){delete e[b];c.isEmptyObject(e)&&c.removeData(a)}}else{if(c.support.deleteExpando)delete a[c.expando]; -else a.removeAttribute&&a.removeAttribute(c.expando);delete f[d]}}}});c.fn.extend({data:function(a,b){if(typeof a==="undefined"&&this.length)return c.data(this[0]);else if(typeof a==="object")return this.each(function(){c.data(this,a)});var d=a.split(".");d[1]=d[1]?"."+d[1]:"";if(b===w){var f=this.triggerHandler("getData"+d[1]+"!",[d[0]]);if(f===w&&this.length)f=c.data(this[0],a);return f===w&&d[1]?this.data(d[0]):f}else return this.trigger("setData"+d[1]+"!",[d[0],b]).each(function(){c.data(this, -a,b)})},removeData:function(a){return this.each(function(){c.removeData(this,a)})}});c.extend({queue:function(a,b,d){if(a){b=(b||"fx")+"queue";var f=c.data(a,b);if(!d)return f||[];if(!f||c.isArray(d))f=c.data(a,b,c.makeArray(d));else f.push(d);return f}},dequeue:function(a,b){b=b||"fx";var d=c.queue(a,b),f=d.shift();if(f==="inprogress")f=d.shift();if(f){b==="fx"&&d.unshift("inprogress");f.call(a,function(){c.dequeue(a,b)})}}});c.fn.extend({queue:function(a,b){if(typeof a!=="string"){b=a;a="fx"}if(b=== -w)return c.queue(this[0],a);return this.each(function(){var d=c.queue(this,a,b);a==="fx"&&d[0]!=="inprogress"&&c.dequeue(this,a)})},dequeue:function(a){return this.each(function(){c.dequeue(this,a)})},delay:function(a,b){a=c.fx?c.fx.speeds[a]||a:a;b=b||"fx";return this.queue(b,function(){var d=this;setTimeout(function(){c.dequeue(d,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var Aa=/[\n\t]/g,ca=/\s+/,Za=/\r/g,$a=/href|src|style/,ab=/(button|input)/i,bb=/(button|input|object|select|textarea)/i, -cb=/^(a|area)$/i,Ba=/radio|checkbox/;c.fn.extend({attr:function(a,b){return X(this,a,b,true,c.attr)},removeAttr:function(a){return this.each(function(){c.attr(this,a,"");this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(c.isFunction(a))return this.each(function(n){var r=c(this);r.addClass(a.call(this,n,r.attr("class")))});if(a&&typeof a==="string")for(var b=(a||"").split(ca),d=0,f=this.length;d-1)return true;return false},val:function(a){if(a===w){var b=this[0];if(b){if(c.nodeName(b,"option"))return(b.attributes.value||{}).specified?b.value:b.text;if(c.nodeName(b,"select")){var d=b.selectedIndex,f=[],e=b.options;b=b.type==="select-one";if(d<0)return null;var j=b?d:0;for(d=b?d+1:e.length;j=0;else if(c.nodeName(this,"select")){var u=c.makeArray(r);c("option",this).each(function(){this.selected= -c.inArray(c(this).val(),u)>=0});if(!u.length)this.selectedIndex=-1}else this.value=r}})}});c.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(a,b,d,f){if(!a||a.nodeType===3||a.nodeType===8)return w;if(f&&b in c.attrFn)return c(a)[b](d);f=a.nodeType!==1||!c.isXMLDoc(a);var e=d!==w;b=f&&c.props[b]||b;if(a.nodeType===1){var j=$a.test(b);if(b in a&&f&&!j){if(e){b==="type"&&ab.test(a.nodeName)&&a.parentNode&&c.error("type property can't be changed"); -a[b]=d}if(c.nodeName(a,"form")&&a.getAttributeNode(b))return a.getAttributeNode(b).nodeValue;if(b==="tabIndex")return(b=a.getAttributeNode("tabIndex"))&&b.specified?b.value:bb.test(a.nodeName)||cb.test(a.nodeName)&&a.href?0:w;return a[b]}if(!c.support.style&&f&&b==="style"){if(e)a.style.cssText=""+d;return a.style.cssText}e&&a.setAttribute(b,""+d);a=!c.support.hrefNormalized&&f&&j?a.getAttribute(b,2):a.getAttribute(b);return a===null?w:a}return c.style(a,b,d)}});var O=/\.(.*)$/,db=function(a){return a.replace(/[^\w\s\.\|`]/g, -function(b){return"\\"+b})};c.event={add:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){if(a.setInterval&&a!==A&&!a.frameElement)a=A;var e,j;if(d.handler){e=d;d=e.handler}if(!d.guid)d.guid=c.guid++;if(j=c.data(a)){var i=j.events=j.events||{},o=j.handle;if(!o)j.handle=o=function(){return typeof c!=="undefined"&&!c.event.triggered?c.event.handle.apply(o.elem,arguments):w};o.elem=a;b=b.split(" ");for(var k,n=0,r;k=b[n++];){j=e?c.extend({},e):{handler:d,data:f};if(k.indexOf(".")>-1){r=k.split("."); -k=r.shift();j.namespace=r.slice(0).sort().join(".")}else{r=[];j.namespace=""}j.type=k;j.guid=d.guid;var u=i[k],z=c.event.special[k]||{};if(!u){u=i[k]=[];if(!z.setup||z.setup.call(a,f,r,o)===false)if(a.addEventListener)a.addEventListener(k,o,false);else a.attachEvent&&a.attachEvent("on"+k,o)}if(z.add){z.add.call(a,j);if(!j.handler.guid)j.handler.guid=d.guid}u.push(j);c.event.global[k]=true}a=null}}},global:{},remove:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){var e,j=0,i,o,k,n,r,u,z=c.data(a), -C=z&&z.events;if(z&&C){if(b&&b.type){d=b.handler;b=b.type}if(!b||typeof b==="string"&&b.charAt(0)==="."){b=b||"";for(e in C)c.event.remove(a,e+b)}else{for(b=b.split(" ");e=b[j++];){n=e;i=e.indexOf(".")<0;o=[];if(!i){o=e.split(".");e=o.shift();k=new RegExp("(^|\\.)"+c.map(o.slice(0).sort(),db).join("\\.(?:.*\\.)?")+"(\\.|$)")}if(r=C[e])if(d){n=c.event.special[e]||{};for(B=f||0;B=0){a.type= -e=e.slice(0,-1);a.exclusive=true}if(!d){a.stopPropagation();c.event.global[e]&&c.each(c.cache,function(){this.events&&this.events[e]&&c.event.trigger(a,b,this.handle.elem)})}if(!d||d.nodeType===3||d.nodeType===8)return w;a.result=w;a.target=d;b=c.makeArray(b);b.unshift(a)}a.currentTarget=d;(f=c.data(d,"handle"))&&f.apply(d,b);f=d.parentNode||d.ownerDocument;try{if(!(d&&d.nodeName&&c.noData[d.nodeName.toLowerCase()]))if(d["on"+e]&&d["on"+e].apply(d,b)===false)a.result=false}catch(j){}if(!a.isPropagationStopped()&& -f)c.event.trigger(a,b,f,true);else if(!a.isDefaultPrevented()){f=a.target;var i,o=c.nodeName(f,"a")&&e==="click",k=c.event.special[e]||{};if((!k._default||k._default.call(d,a)===false)&&!o&&!(f&&f.nodeName&&c.noData[f.nodeName.toLowerCase()])){try{if(f[e]){if(i=f["on"+e])f["on"+e]=null;c.event.triggered=true;f[e]()}}catch(n){}if(i)f["on"+e]=i;c.event.triggered=false}}},handle:function(a){var b,d,f,e;a=arguments[0]=c.event.fix(a||A.event);a.currentTarget=this;b=a.type.indexOf(".")<0&&!a.exclusive; -if(!b){d=a.type.split(".");a.type=d.shift();f=new RegExp("(^|\\.)"+d.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)")}e=c.data(this,"events");d=e[a.type];if(e&&d){d=d.slice(0);e=0;for(var j=d.length;e-1?c.map(a.options,function(f){return f.selected}).join("-"):"";else if(a.nodeName.toLowerCase()==="select")d=a.selectedIndex;return d},fa=function(a,b){var d=a.target,f,e;if(!(!da.test(d.nodeName)||d.readOnly)){f=c.data(d,"_change_data");e=Fa(d);if(a.type!=="focusout"||d.type!=="radio")c.data(d,"_change_data", -e);if(!(f===w||e===f))if(f!=null||e){a.type="change";return c.event.trigger(a,b,d)}}};c.event.special.change={filters:{focusout:fa,click:function(a){var b=a.target,d=b.type;if(d==="radio"||d==="checkbox"||b.nodeName.toLowerCase()==="select")return fa.call(this,a)},keydown:function(a){var b=a.target,d=b.type;if(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(d==="checkbox"||d==="radio")||d==="select-multiple")return fa.call(this,a)},beforeactivate:function(a){a=a.target;c.data(a, -"_change_data",Fa(a))}},setup:function(){if(this.type==="file")return false;for(var a in ea)c.event.add(this,a+".specialChange",ea[a]);return da.test(this.nodeName)},teardown:function(){c.event.remove(this,".specialChange");return da.test(this.nodeName)}};ea=c.event.special.change.filters}s.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(f){f=c.event.fix(f);f.type=b;return c.event.handle.call(this,f)}c.event.special[b]={setup:function(){this.addEventListener(a, -d,true)},teardown:function(){this.removeEventListener(a,d,true)}}});c.each(["bind","one"],function(a,b){c.fn[b]=function(d,f,e){if(typeof d==="object"){for(var j in d)this[b](j,f,d[j],e);return this}if(c.isFunction(f)){e=f;f=w}var i=b==="one"?c.proxy(e,function(k){c(this).unbind(k,i);return e.apply(this,arguments)}):e;if(d==="unload"&&b!=="one")this.one(d,f,e);else{j=0;for(var o=this.length;j0){y=t;break}}t=t[g]}m[q]=y}}}var f=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g, -e=0,j=Object.prototype.toString,i=false,o=true;[0,0].sort(function(){o=false;return 0});var k=function(g,h,l,m){l=l||[];var q=h=h||s;if(h.nodeType!==1&&h.nodeType!==9)return[];if(!g||typeof g!=="string")return l;for(var p=[],v,t,y,S,H=true,M=x(h),I=g;(f.exec(""),v=f.exec(I))!==null;){I=v[3];p.push(v[1]);if(v[2]){S=v[3];break}}if(p.length>1&&r.exec(g))if(p.length===2&&n.relative[p[0]])t=ga(p[0]+p[1],h);else for(t=n.relative[p[0]]?[h]:k(p.shift(),h);p.length;){g=p.shift();if(n.relative[g])g+=p.shift(); -t=ga(g,t)}else{if(!m&&p.length>1&&h.nodeType===9&&!M&&n.match.ID.test(p[0])&&!n.match.ID.test(p[p.length-1])){v=k.find(p.shift(),h,M);h=v.expr?k.filter(v.expr,v.set)[0]:v.set[0]}if(h){v=m?{expr:p.pop(),set:z(m)}:k.find(p.pop(),p.length===1&&(p[0]==="~"||p[0]==="+")&&h.parentNode?h.parentNode:h,M);t=v.expr?k.filter(v.expr,v.set):v.set;if(p.length>0)y=z(t);else H=false;for(;p.length;){var D=p.pop();v=D;if(n.relative[D])v=p.pop();else D="";if(v==null)v=h;n.relative[D](y,v,M)}}else y=[]}y||(y=t);y||k.error(D|| -g);if(j.call(y)==="[object Array]")if(H)if(h&&h.nodeType===1)for(g=0;y[g]!=null;g++){if(y[g]&&(y[g]===true||y[g].nodeType===1&&E(h,y[g])))l.push(t[g])}else for(g=0;y[g]!=null;g++)y[g]&&y[g].nodeType===1&&l.push(t[g]);else l.push.apply(l,y);else z(y,l);if(S){k(S,q,l,m);k.uniqueSort(l)}return l};k.uniqueSort=function(g){if(B){i=o;g.sort(B);if(i)for(var h=1;h":function(g,h){var l=typeof h==="string";if(l&&!/\W/.test(h)){h=h.toLowerCase();for(var m=0,q=g.length;m=0))l||m.push(v);else if(l)h[p]=false;return false},ID:function(g){return g[1].replace(/\\/g,"")},TAG:function(g){return g[1].toLowerCase()}, -CHILD:function(g){if(g[1]==="nth"){var h=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]==="even"&&"2n"||g[2]==="odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=h[1]+(h[2]||1)-0;g[3]=h[3]-0}g[0]=e++;return g},ATTR:function(g,h,l,m,q,p){h=g[1].replace(/\\/g,"");if(!p&&n.attrMap[h])g[1]=n.attrMap[h];if(g[2]==="~=")g[4]=" "+g[4]+" ";return g},PSEUDO:function(g,h,l,m,q){if(g[1]==="not")if((f.exec(g[3])||"").length>1||/^\w/.test(g[3]))g[3]=k(g[3],null,null,h);else{g=k.filter(g[3],h,l,true^q);l||m.push.apply(m, -g);return false}else if(n.match.POS.test(g[0])||n.match.CHILD.test(g[0]))return true;return g},POS:function(g){g.unshift(true);return g}},filters:{enabled:function(g){return g.disabled===false&&g.type!=="hidden"},disabled:function(g){return g.disabled===true},checked:function(g){return g.checked===true},selected:function(g){return g.selected===true},parent:function(g){return!!g.firstChild},empty:function(g){return!g.firstChild},has:function(g,h,l){return!!k(l[3],g).length},header:function(g){return/h\d/i.test(g.nodeName)}, -text:function(g){return"text"===g.type},radio:function(g){return"radio"===g.type},checkbox:function(g){return"checkbox"===g.type},file:function(g){return"file"===g.type},password:function(g){return"password"===g.type},submit:function(g){return"submit"===g.type},image:function(g){return"image"===g.type},reset:function(g){return"reset"===g.type},button:function(g){return"button"===g.type||g.nodeName.toLowerCase()==="button"},input:function(g){return/input|select|textarea|button/i.test(g.nodeName)}}, -setFilters:{first:function(g,h){return h===0},last:function(g,h,l,m){return h===m.length-1},even:function(g,h){return h%2===0},odd:function(g,h){return h%2===1},lt:function(g,h,l){return hl[3]-0},nth:function(g,h,l){return l[3]-0===h},eq:function(g,h,l){return l[3]-0===h}},filter:{PSEUDO:function(g,h,l,m){var q=h[1],p=n.filters[q];if(p)return p(g,l,h,m);else if(q==="contains")return(g.textContent||g.innerText||a([g])||"").indexOf(h[3])>=0;else if(q==="not"){h= -h[3];l=0;for(m=h.length;l=0}},ID:function(g,h){return g.nodeType===1&&g.getAttribute("id")===h},TAG:function(g,h){return h==="*"&&g.nodeType===1||g.nodeName.toLowerCase()===h},CLASS:function(g,h){return(" "+(g.className||g.getAttribute("class"))+" ").indexOf(h)>-1},ATTR:function(g,h){var l=h[1];g=n.attrHandle[l]?n.attrHandle[l](g):g[l]!=null?g[l]:g.getAttribute(l);l=g+"";var m=h[2];h=h[4];return g==null?m==="!=":m=== -"="?l===h:m==="*="?l.indexOf(h)>=0:m==="~="?(" "+l+" ").indexOf(h)>=0:!h?l&&g!==false:m==="!="?l!==h:m==="^="?l.indexOf(h)===0:m==="$="?l.substr(l.length-h.length)===h:m==="|="?l===h||l.substr(0,h.length+1)===h+"-":false},POS:function(g,h,l,m){var q=n.setFilters[h[2]];if(q)return q(g,l,h,m)}}},r=n.match.POS;for(var u in n.match){n.match[u]=new RegExp(n.match[u].source+/(?![^\[]*\])(?![^\(]*\))/.source);n.leftMatch[u]=new RegExp(/(^(?:.|\r|\n)*?)/.source+n.match[u].source.replace(/\\(\d+)/g,function(g, -h){return"\\"+(h-0+1)}))}var z=function(g,h){g=Array.prototype.slice.call(g,0);if(h){h.push.apply(h,g);return h}return g};try{Array.prototype.slice.call(s.documentElement.childNodes,0)}catch(C){z=function(g,h){h=h||[];if(j.call(g)==="[object Array]")Array.prototype.push.apply(h,g);else if(typeof g.length==="number")for(var l=0,m=g.length;l";var l=s.documentElement;l.insertBefore(g,l.firstChild);if(s.getElementById(h)){n.find.ID=function(m,q,p){if(typeof q.getElementById!=="undefined"&&!p)return(q=q.getElementById(m[1]))?q.id===m[1]||typeof q.getAttributeNode!=="undefined"&& -q.getAttributeNode("id").nodeValue===m[1]?[q]:w:[]};n.filter.ID=function(m,q){var p=typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id");return m.nodeType===1&&p&&p.nodeValue===q}}l.removeChild(g);l=g=null})();(function(){var g=s.createElement("div");g.appendChild(s.createComment(""));if(g.getElementsByTagName("*").length>0)n.find.TAG=function(h,l){l=l.getElementsByTagName(h[1]);if(h[1]==="*"){h=[];for(var m=0;l[m];m++)l[m].nodeType===1&&h.push(l[m]);l=h}return l};g.innerHTML=""; -if(g.firstChild&&typeof g.firstChild.getAttribute!=="undefined"&&g.firstChild.getAttribute("href")!=="#")n.attrHandle.href=function(h){return h.getAttribute("href",2)};g=null})();s.querySelectorAll&&function(){var g=k,h=s.createElement("div");h.innerHTML="

      ";if(!(h.querySelectorAll&&h.querySelectorAll(".TEST").length===0)){k=function(m,q,p,v){q=q||s;if(!v&&q.nodeType===9&&!x(q))try{return z(q.querySelectorAll(m),p)}catch(t){}return g(m,q,p,v)};for(var l in g)k[l]=g[l];h=null}}(); -(function(){var g=s.createElement("div");g.innerHTML="
      ";if(!(!g.getElementsByClassName||g.getElementsByClassName("e").length===0)){g.lastChild.className="e";if(g.getElementsByClassName("e").length!==1){n.order.splice(1,0,"CLASS");n.find.CLASS=function(h,l,m){if(typeof l.getElementsByClassName!=="undefined"&&!m)return l.getElementsByClassName(h[1])};g=null}}})();var E=s.compareDocumentPosition?function(g,h){return!!(g.compareDocumentPosition(h)&16)}: -function(g,h){return g!==h&&(g.contains?g.contains(h):true)},x=function(g){return(g=(g?g.ownerDocument||g:0).documentElement)?g.nodeName!=="HTML":false},ga=function(g,h){var l=[],m="",q;for(h=h.nodeType?[h]:h;q=n.match.PSEUDO.exec(g);){m+=q[0];g=g.replace(n.match.PSEUDO,"")}g=n.relative[g]?g+"*":g;q=0;for(var p=h.length;q=0===d})};c.fn.extend({find:function(a){for(var b=this.pushStack("","find",a),d=0,f=0,e=this.length;f0)for(var j=d;j0},closest:function(a,b){if(c.isArray(a)){var d=[],f=this[0],e,j= -{},i;if(f&&a.length){e=0;for(var o=a.length;e-1:c(f).is(e)){d.push({selector:i,elem:f});delete j[i]}}f=f.parentNode}}return d}var k=c.expr.match.POS.test(a)?c(a,b||this.context):null;return this.map(function(n,r){for(;r&&r.ownerDocument&&r!==b;){if(k?k.index(r)>-1:c(r).is(a))return r;r=r.parentNode}return null})},index:function(a){if(!a||typeof a=== -"string")return c.inArray(this[0],a?c(a):this.parent().children());return c.inArray(a.jquery?a[0]:a,this)},add:function(a,b){a=typeof a==="string"?c(a,b||this.context):c.makeArray(a);b=c.merge(this.get(),a);return this.pushStack(qa(a[0])||qa(b[0])?b:c.unique(b))},andSelf:function(){return this.add(this.prevObject)}});c.each({parent:function(a){return(a=a.parentNode)&&a.nodeType!==11?a:null},parents:function(a){return c.dir(a,"parentNode")},parentsUntil:function(a,b,d){return c.dir(a,"parentNode", -d)},next:function(a){return c.nth(a,2,"nextSibling")},prev:function(a){return c.nth(a,2,"previousSibling")},nextAll:function(a){return c.dir(a,"nextSibling")},prevAll:function(a){return c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return c.dir(a,"previousSibling",d)},siblings:function(a){return c.sibling(a.parentNode.firstChild,a)},children:function(a){return c.sibling(a.firstChild)},contents:function(a){return c.nodeName(a,"iframe")? -a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},function(a,b){c.fn[a]=function(d,f){var e=c.map(this,b,d);eb.test(a)||(f=d);if(f&&typeof f==="string")e=c.filter(f,e);e=this.length>1?c.unique(e):e;if((this.length>1||gb.test(f))&&fb.test(a))e=e.reverse();return this.pushStack(e,a,R.call(arguments).join(","))}});c.extend({filter:function(a,b,d){if(d)a=":not("+a+")";return c.find.matches(a,b)},dir:function(a,b,d){var f=[];for(a=a[b];a&&a.nodeType!==9&&(d===w||a.nodeType!==1||!c(a).is(d));){a.nodeType=== -1&&f.push(a);a=a[b]}return f},nth:function(a,b,d){b=b||1;for(var f=0;a;a=a[d])if(a.nodeType===1&&++f===b)break;return a},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)a.nodeType===1&&a!==b&&d.push(a);return d}});var Ja=/ jQuery\d+="(?:\d+|null)"/g,V=/^\s+/,Ka=/(<([\w:]+)[^>]*?)\/>/g,hb=/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,La=/<([\w:]+)/,ib=/"},F={option:[1,""],legend:[1,"
      ","
      "],thead:[1,"","
      "],tr:[2,"","
      "],td:[3,"","
      "],col:[2,"","
      "],area:[1,"",""],_default:[0,"",""]};F.optgroup=F.option;F.tbody=F.tfoot=F.colgroup=F.caption=F.thead;F.th=F.td;if(!c.support.htmlSerialize)F._default=[1,"div
      ","
      "];c.fn.extend({text:function(a){if(c.isFunction(a))return this.each(function(b){var d= -c(this);d.text(a.call(this,b,d.text()))});if(typeof a!=="object"&&a!==w)return this.empty().append((this[0]&&this[0].ownerDocument||s).createTextNode(a));return c.text(this)},wrapAll:function(a){if(c.isFunction(a))return this.each(function(d){c(this).wrapAll(a.call(this,d))});if(this[0]){var b=c(a,this[0].ownerDocument).eq(0).clone(true);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var d=this;d.firstChild&&d.firstChild.nodeType===1;)d=d.firstChild;return d}).append(this)}return this}, -wrapInner:function(a){if(c.isFunction(a))return this.each(function(b){c(this).wrapInner(a.call(this,b))});return this.each(function(){var b=c(this),d=b.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){c(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.appendChild(a)})}, -prepend:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this)});else if(arguments.length){var a=c(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b, -this.nextSibling)});else if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,c(arguments[0]).toArray());return a}},remove:function(a,b){for(var d=0,f;(f=this[d])!=null;d++)if(!a||c.filter(a,[f]).length){if(!b&&f.nodeType===1){c.cleanData(f.getElementsByTagName("*"));c.cleanData([f])}f.parentNode&&f.parentNode.removeChild(f)}return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++)for(b.nodeType===1&&c.cleanData(b.getElementsByTagName("*"));b.firstChild;)b.removeChild(b.firstChild); -return this},clone:function(a){var b=this.map(function(){if(!c.support.noCloneEvent&&!c.isXMLDoc(this)){var d=this.outerHTML,f=this.ownerDocument;if(!d){d=f.createElement("div");d.appendChild(this.cloneNode(true));d=d.innerHTML}return c.clean([d.replace(Ja,"").replace(/=([^="'>\s]+\/)>/g,'="$1">').replace(V,"")],f)[0]}else return this.cloneNode(true)});if(a===true){ra(this,b);ra(this.find("*"),b.find("*"))}return b},html:function(a){if(a===w)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Ja, -""):null;else if(typeof a==="string"&&!ta.test(a)&&(c.support.leadingWhitespace||!V.test(a))&&!F[(La.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Ka,Ma);try{for(var b=0,d=this.length;b0||e.cacheable||this.length>1?k.cloneNode(true):k)}o.length&&c.each(o,Qa)}return this}});c.fragments={};c.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){c.fn[a]=function(d){var f=[];d=c(d);var e=this.length===1&&this[0].parentNode;if(e&&e.nodeType===11&&e.childNodes.length===1&&d.length===1){d[b](this[0]); -return this}else{e=0;for(var j=d.length;e0?this.clone(true):this).get();c.fn[b].apply(c(d[e]),i);f=f.concat(i)}return this.pushStack(f,a,d.selector)}}});c.extend({clean:function(a,b,d,f){b=b||s;if(typeof b.createElement==="undefined")b=b.ownerDocument||b[0]&&b[0].ownerDocument||s;for(var e=[],j=0,i;(i=a[j])!=null;j++){if(typeof i==="number")i+="";if(i){if(typeof i==="string"&&!jb.test(i))i=b.createTextNode(i);else if(typeof i==="string"){i=i.replace(Ka,Ma);var o=(La.exec(i)||["", -""])[1].toLowerCase(),k=F[o]||F._default,n=k[0],r=b.createElement("div");for(r.innerHTML=k[1]+i+k[2];n--;)r=r.lastChild;if(!c.support.tbody){n=ib.test(i);o=o==="table"&&!n?r.firstChild&&r.firstChild.childNodes:k[1]===""&&!n?r.childNodes:[];for(k=o.length-1;k>=0;--k)c.nodeName(o[k],"tbody")&&!o[k].childNodes.length&&o[k].parentNode.removeChild(o[k])}!c.support.leadingWhitespace&&V.test(i)&&r.insertBefore(b.createTextNode(V.exec(i)[0]),r.firstChild);i=r.childNodes}if(i.nodeType)e.push(i);else e= -c.merge(e,i)}}if(d)for(j=0;e[j];j++)if(f&&c.nodeName(e[j],"script")&&(!e[j].type||e[j].type.toLowerCase()==="text/javascript"))f.push(e[j].parentNode?e[j].parentNode.removeChild(e[j]):e[j]);else{e[j].nodeType===1&&e.splice.apply(e,[j+1,0].concat(c.makeArray(e[j].getElementsByTagName("script"))));d.appendChild(e[j])}return e},cleanData:function(a){for(var b,d,f=c.cache,e=c.event.special,j=c.support.deleteExpando,i=0,o;(o=a[i])!=null;i++)if(d=o[c.expando]){b=f[d];if(b.events)for(var k in b.events)e[k]? -c.event.remove(o,k):Ca(o,k,b.handle);if(j)delete o[c.expando];else o.removeAttribute&&o.removeAttribute(c.expando);delete f[d]}}});var kb=/z-?index|font-?weight|opacity|zoom|line-?height/i,Na=/alpha\([^)]*\)/,Oa=/opacity=([^)]*)/,ha=/float/i,ia=/-([a-z])/ig,lb=/([A-Z])/g,mb=/^-?\d+(?:px)?$/i,nb=/^-?\d/,ob={position:"absolute",visibility:"hidden",display:"block"},pb=["Left","Right"],qb=["Top","Bottom"],rb=s.defaultView&&s.defaultView.getComputedStyle,Pa=c.support.cssFloat?"cssFloat":"styleFloat",ja= -function(a,b){return b.toUpperCase()};c.fn.css=function(a,b){return X(this,a,b,true,function(d,f,e){if(e===w)return c.curCSS(d,f);if(typeof e==="number"&&!kb.test(f))e+="px";c.style(d,f,e)})};c.extend({style:function(a,b,d){if(!a||a.nodeType===3||a.nodeType===8)return w;if((b==="width"||b==="height")&&parseFloat(d)<0)d=w;var f=a.style||a,e=d!==w;if(!c.support.opacity&&b==="opacity"){if(e){f.zoom=1;b=parseInt(d,10)+""==="NaN"?"":"alpha(opacity="+d*100+")";a=f.filter||c.curCSS(a,"filter")||"";f.filter= -Na.test(a)?a.replace(Na,b):b}return f.filter&&f.filter.indexOf("opacity=")>=0?parseFloat(Oa.exec(f.filter)[1])/100+"":""}if(ha.test(b))b=Pa;b=b.replace(ia,ja);if(e)f[b]=d;return f[b]},css:function(a,b,d,f){if(b==="width"||b==="height"){var e,j=b==="width"?pb:qb;function i(){e=b==="width"?a.offsetWidth:a.offsetHeight;f!=="border"&&c.each(j,function(){f||(e-=parseFloat(c.curCSS(a,"padding"+this,true))||0);if(f==="margin")e+=parseFloat(c.curCSS(a,"margin"+this,true))||0;else e-=parseFloat(c.curCSS(a, -"border"+this+"Width",true))||0})}a.offsetWidth!==0?i():c.swap(a,ob,i);return Math.max(0,Math.round(e))}return c.curCSS(a,b,d)},curCSS:function(a,b,d){var f,e=a.style;if(!c.support.opacity&&b==="opacity"&&a.currentStyle){f=Oa.test(a.currentStyle.filter||"")?parseFloat(RegExp.$1)/100+"":"";return f===""?"1":f}if(ha.test(b))b=Pa;if(!d&&e&&e[b])f=e[b];else if(rb){if(ha.test(b))b="float";b=b.replace(lb,"-$1").toLowerCase();e=a.ownerDocument.defaultView;if(!e)return null;if(a=e.getComputedStyle(a,null))f= -a.getPropertyValue(b);if(b==="opacity"&&f==="")f="1"}else if(a.currentStyle){d=b.replace(ia,ja);f=a.currentStyle[b]||a.currentStyle[d];if(!mb.test(f)&&nb.test(f)){b=e.left;var j=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;e.left=d==="fontSize"?"1em":f||0;f=e.pixelLeft+"px";e.left=b;a.runtimeStyle.left=j}}return f},swap:function(a,b,d){var f={};for(var e in b){f[e]=a.style[e];a.style[e]=b[e]}d.call(a);for(e in b)a.style[e]=f[e]}});if(c.expr&&c.expr.filters){c.expr.filters.hidden=function(a){var b= -a.offsetWidth,d=a.offsetHeight,f=a.nodeName.toLowerCase()==="tr";return b===0&&d===0&&!f?true:b>0&&d>0&&!f?false:c.curCSS(a,"display")==="none"};c.expr.filters.visible=function(a){return!c.expr.filters.hidden(a)}}var sb=J(),tb=//gi,ub=/select|textarea/i,vb=/color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week/i,N=/=\?(&|$)/,ka=/\?/,wb=/(\?|&)_=.*?(&|$)/,xb=/^(\w+:)?\/\/([^\/?#]+)/,yb=/%20/g,zb=c.fn.load;c.fn.extend({load:function(a,b,d){if(typeof a!== -"string")return zb.call(this,a);else if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){var e=a.slice(f,a.length);a=a.slice(0,f)}f="GET";if(b)if(c.isFunction(b)){d=b;b=null}else if(typeof b==="object"){b=c.param(b,c.ajaxSettings.traditional);f="POST"}var j=this;c.ajax({url:a,type:f,dataType:"html",data:b,complete:function(i,o){if(o==="success"||o==="notmodified")j.html(e?c("
      ").append(i.responseText.replace(tb,"")).find(e):i.responseText);d&&j.each(d,[i.responseText,o,i])}});return this}, -serialize:function(){return c.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?c.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ub.test(this.nodeName)||vb.test(this.type))}).map(function(a,b){a=c(this).val();return a==null?null:c.isArray(a)?c.map(a,function(d){return{name:b.name,value:d}}):{name:b.name,value:a}}).get()}});c.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "), -function(a,b){c.fn[b]=function(d){return this.bind(b,d)}});c.extend({get:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b=null}return c.ajax({type:"GET",url:a,data:b,success:d,dataType:f})},getScript:function(a,b){return c.get(a,null,b,"script")},getJSON:function(a,b,d){return c.get(a,b,d,"json")},post:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b={}}return c.ajax({type:"POST",url:a,data:b,success:d,dataType:f})},ajaxSetup:function(a){c.extend(c.ajaxSettings,a)},ajaxSettings:{url:location.href, -global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:A.XMLHttpRequest&&(A.location.protocol!=="file:"||!A.ActiveXObject)?function(){return new A.XMLHttpRequest}:function(){try{return new A.ActiveXObject("Microsoft.XMLHTTP")}catch(a){}},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},etag:{},ajax:function(a){function b(){e.success&& -e.success.call(k,o,i,x);e.global&&f("ajaxSuccess",[x,e])}function d(){e.complete&&e.complete.call(k,x,i);e.global&&f("ajaxComplete",[x,e]);e.global&&!--c.active&&c.event.trigger("ajaxStop")}function f(q,p){(e.context?c(e.context):c.event).trigger(q,p)}var e=c.extend(true,{},c.ajaxSettings,a),j,i,o,k=a&&a.context||e,n=e.type.toUpperCase();if(e.data&&e.processData&&typeof e.data!=="string")e.data=c.param(e.data,e.traditional);if(e.dataType==="jsonp"){if(n==="GET")N.test(e.url)||(e.url+=(ka.test(e.url)? -"&":"?")+(e.jsonp||"callback")+"=?");else if(!e.data||!N.test(e.data))e.data=(e.data?e.data+"&":"")+(e.jsonp||"callback")+"=?";e.dataType="json"}if(e.dataType==="json"&&(e.data&&N.test(e.data)||N.test(e.url))){j=e.jsonpCallback||"jsonp"+sb++;if(e.data)e.data=(e.data+"").replace(N,"="+j+"$1");e.url=e.url.replace(N,"="+j+"$1");e.dataType="script";A[j]=A[j]||function(q){o=q;b();d();A[j]=w;try{delete A[j]}catch(p){}z&&z.removeChild(C)}}if(e.dataType==="script"&&e.cache===null)e.cache=false;if(e.cache=== -false&&n==="GET"){var r=J(),u=e.url.replace(wb,"$1_="+r+"$2");e.url=u+(u===e.url?(ka.test(e.url)?"&":"?")+"_="+r:"")}if(e.data&&n==="GET")e.url+=(ka.test(e.url)?"&":"?")+e.data;e.global&&!c.active++&&c.event.trigger("ajaxStart");r=(r=xb.exec(e.url))&&(r[1]&&r[1]!==location.protocol||r[2]!==location.host);if(e.dataType==="script"&&n==="GET"&&r){var z=s.getElementsByTagName("head")[0]||s.documentElement,C=s.createElement("script");C.src=e.url;if(e.scriptCharset)C.charset=e.scriptCharset;if(!j){var B= -false;C.onload=C.onreadystatechange=function(){if(!B&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){B=true;b();d();C.onload=C.onreadystatechange=null;z&&C.parentNode&&z.removeChild(C)}}}z.insertBefore(C,z.firstChild);return w}var E=false,x=e.xhr();if(x){e.username?x.open(n,e.url,e.async,e.username,e.password):x.open(n,e.url,e.async);try{if(e.data||a&&a.contentType)x.setRequestHeader("Content-Type",e.contentType);if(e.ifModified){c.lastModified[e.url]&&x.setRequestHeader("If-Modified-Since", -c.lastModified[e.url]);c.etag[e.url]&&x.setRequestHeader("If-None-Match",c.etag[e.url])}r||x.setRequestHeader("X-Requested-With","XMLHttpRequest");x.setRequestHeader("Accept",e.dataType&&e.accepts[e.dataType]?e.accepts[e.dataType]+", */*":e.accepts._default)}catch(ga){}if(e.beforeSend&&e.beforeSend.call(k,x,e)===false){e.global&&!--c.active&&c.event.trigger("ajaxStop");x.abort();return false}e.global&&f("ajaxSend",[x,e]);var g=x.onreadystatechange=function(q){if(!x||x.readyState===0||q==="abort"){E|| -d();E=true;if(x)x.onreadystatechange=c.noop}else if(!E&&x&&(x.readyState===4||q==="timeout")){E=true;x.onreadystatechange=c.noop;i=q==="timeout"?"timeout":!c.httpSuccess(x)?"error":e.ifModified&&c.httpNotModified(x,e.url)?"notmodified":"success";var p;if(i==="success")try{o=c.httpData(x,e.dataType,e)}catch(v){i="parsererror";p=v}if(i==="success"||i==="notmodified")j||b();else c.handleError(e,x,i,p);d();q==="timeout"&&x.abort();if(e.async)x=null}};try{var h=x.abort;x.abort=function(){x&&h.call(x); -g("abort")}}catch(l){}e.async&&e.timeout>0&&setTimeout(function(){x&&!E&&g("timeout")},e.timeout);try{x.send(n==="POST"||n==="PUT"||n==="DELETE"?e.data:null)}catch(m){c.handleError(e,x,null,m);d()}e.async||g();return x}},handleError:function(a,b,d,f){if(a.error)a.error.call(a.context||a,b,d,f);if(a.global)(a.context?c(a.context):c.event).trigger("ajaxError",[b,a,f])},active:0,httpSuccess:function(a){try{return!a.status&&location.protocol==="file:"||a.status>=200&&a.status<300||a.status===304||a.status=== -1223||a.status===0}catch(b){}return false},httpNotModified:function(a,b){var d=a.getResponseHeader("Last-Modified"),f=a.getResponseHeader("Etag");if(d)c.lastModified[b]=d;if(f)c.etag[b]=f;return a.status===304||a.status===0},httpData:function(a,b,d){var f=a.getResponseHeader("content-type")||"",e=b==="xml"||!b&&f.indexOf("xml")>=0;a=e?a.responseXML:a.responseText;e&&a.documentElement.nodeName==="parsererror"&&c.error("parsererror");if(d&&d.dataFilter)a=d.dataFilter(a,b);if(typeof a==="string")if(b=== -"json"||!b&&f.indexOf("json")>=0)a=c.parseJSON(a);else if(b==="script"||!b&&f.indexOf("javascript")>=0)c.globalEval(a);return a},param:function(a,b){function d(i,o){if(c.isArray(o))c.each(o,function(k,n){b||/\[\]$/.test(i)?f(i,n):d(i+"["+(typeof n==="object"||c.isArray(n)?k:"")+"]",n)});else!b&&o!=null&&typeof o==="object"?c.each(o,function(k,n){d(i+"["+k+"]",n)}):f(i,o)}function f(i,o){o=c.isFunction(o)?o():o;e[e.length]=encodeURIComponent(i)+"="+encodeURIComponent(o)}var e=[];if(b===w)b=c.ajaxSettings.traditional; -if(c.isArray(a)||a.jquery)c.each(a,function(){f(this.name,this.value)});else for(var j in a)d(j,a[j]);return e.join("&").replace(yb,"+")}});var la={},Ab=/toggle|show|hide/,Bb=/^([+-]=)?([\d+-.]+)(.*)$/,W,va=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];c.fn.extend({show:function(a,b){if(a||a===0)return this.animate(K("show",3),a,b);else{a=0;for(b=this.length;a").appendTo("body");f=e.css("display");if(f==="none")f="block";e.remove();la[d]=f}c.data(this[a],"olddisplay",f)}}a=0;for(b=this.length;a=0;f--)if(d[f].elem===this){b&&d[f](true);d.splice(f,1)}});b||this.dequeue();return this}});c.each({slideDown:K("show",1),slideUp:K("hide",1),slideToggle:K("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(a,b){c.fn[a]=function(d,f){return this.animate(b,d,f)}});c.extend({speed:function(a,b,d){var f=a&&typeof a==="object"?a:{complete:d||!d&&b||c.isFunction(a)&&a,duration:a,easing:d&&b||b&&!c.isFunction(b)&&b};f.duration=c.fx.off?0:typeof f.duration=== -"number"?f.duration:c.fx.speeds[f.duration]||c.fx.speeds._default;f.old=f.complete;f.complete=function(){f.queue!==false&&c(this).dequeue();c.isFunction(f.old)&&f.old.call(this)};return f},easing:{linear:function(a,b,d,f){return d+f*a},swing:function(a,b,d,f){return(-Math.cos(a*Math.PI)/2+0.5)*f+d}},timers:[],fx:function(a,b,d){this.options=b;this.elem=a;this.prop=d;if(!b.orig)b.orig={}}});c.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this);(c.fx.step[this.prop]|| -c.fx.step._default)(this);if((this.prop==="height"||this.prop==="width")&&this.elem.style)this.elem.style.display="block"},cur:function(a){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];return(a=parseFloat(c.css(this.elem,this.prop,a)))&&a>-10000?a:parseFloat(c.curCSS(this.elem,this.prop))||0},custom:function(a,b,d){function f(j){return e.step(j)}this.startTime=J();this.start=a;this.end=b;this.unit=d||this.unit||"px";this.now=this.start; -this.pos=this.state=0;var e=this;f.elem=this.elem;if(f()&&c.timers.push(f)&&!W)W=setInterval(c.fx.tick,13)},show:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());c(this.elem).show()},hide:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(a){var b=J(),d=true;if(a||b>=this.options.duration+this.startTime){this.now= -this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;for(var f in this.options.curAnim)if(this.options.curAnim[f]!==true)d=false;if(d){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;a=c.data(this.elem,"olddisplay");this.elem.style.display=a?a:this.options.display;if(c.css(this.elem,"display")==="none")this.elem.style.display="block"}this.options.hide&&c(this.elem).hide();if(this.options.hide||this.options.show)for(var e in this.options.curAnim)c.style(this.elem, -e,this.options.orig[e]);this.options.complete.call(this.elem)}return false}else{e=b-this.startTime;this.state=e/this.options.duration;a=this.options.easing||(c.easing.swing?"swing":"linear");this.pos=c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||a](this.state,e,0,1,this.options.duration);this.now=this.start+(this.end-this.start)*this.pos;this.update()}return true}};c.extend(c.fx,{tick:function(){for(var a=c.timers,b=0;b
      "; -a.insertBefore(b,a.firstChild);d=b.firstChild;f=d.firstChild;e=d.nextSibling.firstChild.firstChild;this.doesNotAddBorder=f.offsetTop!==5;this.doesAddBorderForTableAndCells=e.offsetTop===5;f.style.position="fixed";f.style.top="20px";this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15;f.style.position=f.style.top="";d.style.overflow="hidden";d.style.position="relative";this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5;this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==j;a.removeChild(b); -c.offset.initialize=c.noop},bodyOffset:function(a){var b=a.offsetTop,d=a.offsetLeft;c.offset.initialize();if(c.offset.doesNotIncludeMarginInBodyOffset){b+=parseFloat(c.curCSS(a,"marginTop",true))||0;d+=parseFloat(c.curCSS(a,"marginLeft",true))||0}return{top:b,left:d}},setOffset:function(a,b,d){if(/static/.test(c.curCSS(a,"position")))a.style.position="relative";var f=c(a),e=f.offset(),j=parseInt(c.curCSS(a,"top",true),10)||0,i=parseInt(c.curCSS(a,"left",true),10)||0;if(c.isFunction(b))b=b.call(a, -d,e);d={top:b.top-e.top+j,left:b.left-e.left+i};"using"in b?b.using.call(a,d):f.css(d)}};c.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),d=this.offset(),f=/^body|html$/i.test(b[0].nodeName)?{top:0,left:0}:b.offset();d.top-=parseFloat(c.curCSS(a,"marginTop",true))||0;d.left-=parseFloat(c.curCSS(a,"marginLeft",true))||0;f.top+=parseFloat(c.curCSS(b[0],"borderTopWidth",true))||0;f.left+=parseFloat(c.curCSS(b[0],"borderLeftWidth",true))||0;return{top:d.top- -f.top,left:d.left-f.left}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent||s.body;a&&!/^body|html$/i.test(a.nodeName)&&c.css(a,"position")==="static";)a=a.offsetParent;return a})}});c.each(["Left","Top"],function(a,b){var d="scroll"+b;c.fn[d]=function(f){var e=this[0],j;if(!e)return null;if(f!==w)return this.each(function(){if(j=wa(this))j.scrollTo(!a?f:c(j).scrollLeft(),a?f:c(j).scrollTop());else this[d]=f});else return(j=wa(e))?"pageXOffset"in j?j[a?"pageYOffset": -"pageXOffset"]:c.support.boxModel&&j.document.documentElement[d]||j.document.body[d]:e[d]}});c.each(["Height","Width"],function(a,b){var d=b.toLowerCase();c.fn["inner"+b]=function(){return this[0]?c.css(this[0],d,false,"padding"):null};c.fn["outer"+b]=function(f){return this[0]?c.css(this[0],d,false,f?"margin":"border"):null};c.fn[d]=function(f){var e=this[0];if(!e)return f==null?null:this;if(c.isFunction(f))return this.each(function(j){var i=c(this);i[d](f.call(this,j,i[d]()))});return"scrollTo"in -e&&e.document?e.document.compatMode==="CSS1Compat"&&e.document.documentElement["client"+b]||e.document.body["client"+b]:e.nodeType===9?Math.max(e.documentElement["client"+b],e.body["scroll"+b],e.documentElement["scroll"+b],e.body["offset"+b],e.documentElement["offset"+b]):f===w?c.css(e,d):this.css(d,typeof f==="string"?f:f+"px")}});A.jQuery=A.$=c})(window); diff --git a/fedorahosted.org/static/robots.txt b/fedorahosted.org/static/robots.txt deleted file mode 100644 index e69de29..0000000 --- a/fedorahosted.org/static/robots.txt +++ /dev/null diff --git a/fudcon.fedoraproject.org/Makefile b/fudcon.fedoraproject.org/Makefile deleted file mode 100644 index 5641b94..0000000 --- a/fudcon.fedoraproject.org/Makefile +++ /dev/null @@ -1,5 +0,0 @@ -include ../Makefile.in - -$(LANGUAGES): % : | static po/%.mo data/templates/translations.html - $(PYTHON) $(BUILDDIR)/build.py -o out -i data/content -l $@ -p po -b $(BASEPATH) - diff --git a/fudcon.fedoraproject.org/data/content/APAC/index.html b/fudcon.fedoraproject.org/data/content/APAC/index.html deleted file mode 100644 index 014f9f8..0000000 --- a/fudcon.fedoraproject.org/data/content/APAC/index.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - -FUDCon Phnom Penh - - - - - - -
      -
      -
      -
      - - - -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -

      FUDCon Phnom Penh 2016

      -

      FUDCon is the Fedora Users and Developers Conference, a major free software event held in various regions around the world, usually annually per region. FUDCon is a combination of sessions, talks, workshops, and hackfests.
      - FUDCon is always free to attend for anyone in the world.

      -
      -
      - - Phnom Penh - -
      -
      -
      -
      -
      -
      -
      -

      FUDCon will be held in Phnom Penh, Cambodia

      -

      Phnom Penh - November 4 - 6, 2016

      -

      FUDCon (Fedora Users and Developers Conference) is an important event in the world of free software that is held in different parts of the world, typically once a year to the region. The FUDCon is a combination of sessions, talks, workshops and hackfest in which project participants can work on specific initiatives. Topics include: infrastructure, development of features, construction and / or consolidation of the community, management and governance, marketing, testing and QA, packaging, etc..

      -

      Learn more about the locations and local facilities

      -
      -
      -
      -

      The FUDCon is a free event.

      -

      A FUDCon typically includes some combination of:

      - -

      They are usually scheduled over a weekend.

      -
      -
      -
      -
      -
      -
      -
      -
      - - - -
      - - - diff --git a/fudcon.fedoraproject.org/data/content/APAC/location.html b/fudcon.fedoraproject.org/data/content/APAC/location.html deleted file mode 100644 index 813a4bb..0000000 --- a/fudcon.fedoraproject.org/data/content/APAC/location.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - -FUDCon Phnom Penh - - - - - - -
      -
      -
      -
      - -
        -
      • - Home -
      • -
      • - Location -
      • -
      - -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -

      FUDCon Phnom Penh 2016

      -

      FUDCon is the Fedora Users and Developers Conference, a major free software event held in various regions around the world, usually annually per region. FUDCon is a combination of sessions, talks, workshops, and hackfests.
      FUDCon is always free to attend for anyone in the world.

      -
      -
      -
      -
      -
      -
      -

      Phnom Penh - November 4 - 6, 2016

      -
      -

      Location

      -

      Phnom Penh, Cambodia

      -

      Phnom Penh, at the confluence of the Mekong and the Tonle Sap Rivers, is the capital of Cambodia and its largest city. The beauty that made it a 'Paris of the East' before 1970 is unfortunately well hidden, though there are a few French colonial buildings remaining. The wide boulevards and promenades envisaged by the French have become parking spaces and market stalls: pedestrians are not in favour. The most pleasant strolling is to be done along the park-like river frontage, which hosts cafés and restaurants aplenty. Phnom Penh is on its best ways to become again the Pearl of South East Asia.

      -
      - -
      Venue
      -
      Norton University (NU)
      -

      St. Keo Chenda, Sangkat Chroy Changva, Khan Russey Keo, Phnom Penh, Cambodia
      BarCamp Phnom Penh has on saturday morning their opening remark (08:30-10:30) in the largest room (500 take a look into it), we are invited to join this opening ceremony. We will have a this big hall (500 people) for the rest of the time. We will use this hall as our own dedicated room for our sessions.

      -
      -

      -

      Useful info:

      -
        -
      • Cambodia uses three kind of currency, the Riel its own currency, which is mainly used to pay smaller sums (under 1 US$), the US$ which is mainly used (1 US$ = 4.000~4.500 Riel) and also in the nothern part the Bath from Thailand is used. Credit cards are not widely used, mainly in the good hotels and restaurant but you can use them in banks to get cash in advance for a small fee. ATM from ANZ and Canadia bank are widely spreaded and pay out in US$. Fee for withdraw with credit card is between 3-4$
      • -
      • Time zone: GMT/UTC + 07:00 hour
      • -
      • Voltage: 230 V; Plugs A and C* (Sa lot of outlets are a combination of type A and C and can accept either type plug. Plug G may be found in some hotels.) You will need a voltage converter, and plug adapter in order to use U.S. appliances. We recommend getting a universal adapter and converter kit.
      • -
      -

      -
      - -
      -

      Getting to Phnom Penh

      -

      Cambodian Visa application

      -

      All visitors, except citizens of Indonesia, Malaysia, Singapore, Philippines, Laos, Thailand and Vietnam need a visa to enter Cambodia. Visas can be obtained at Cambodian embassies or consulates. Visas are also available "on arrival" at both international airports, all six international border crossings with Thailand, some international border crossings with Vietnam, and at the main border crossing with Laos.

      - -

      You will need a visa type T, which will cost 30 US$. Visa are also available as so called e-visa - https://www.evisa.gov.kh/ which you can get via internet in advance.

      - -

      Only citizens of the following countries have to apply for a visa in advance: Afghanistan, Algeria, Arab Saudi, Bangladesh, Iran, Iraq, Pakistan, Sri Lanka, Sudan, Nigeria.

      - -

      for more information consult the pages of the Cambodian Tourism Ministery

      -
      - -
      -

      Getting around

      -

      Eat

      -

      Phnom Penh offers some interesting culinary treats not found elsewhere in the country. These include French-influenced dining and Thai, Vietnamese, and Indonesian dishes. Khmer street restaurant are also found throughout the city, where a typical meal costs 2-4 Dollars. Pizzas, banana pancakes and fried rice are always easy to find. The riverfront hosts everything from stand-up stalls to fine French bistros. If you have time try an tradional khmer BBQ, its available for around 5 US$ all-you-can-eat.

      -
      - -
      -

      Weather

      -

      Phnom Penh has a tropical wet and dry climate. The climate is hot year-round with only minor variations. Temperatures typically range from 22 to 35 °C (72 to 95 °F) and weather is subject to the tropical monsoons. The southwest monsoon blows inland bringing moisture-laden winds from the Gulf of Thailand and Indian Ocean from May to October. The northeast monsoon ushers in the dry season, which lasts from November to March. The city experiences the heaviest precipitation from September to October with the driest period in January and February.

      -

      The city has two distinct seasons. The rainy season, which runs from May to October, sees high temperatures accompanied by high humidity. The dry season lasts from November to April when temperatures can drop to 22 °C (72 °F). But temperatures can approach 40 °C (104 °F) in April. The best months to visit the city are November to February when temperatures, humidity and rainfall are lower.

      -
      -
      -

      More Info

      -
      -
      - -
      -
      -
      -
      -
      - - - -
      -
      - - diff --git a/fudcon.fedoraproject.org/data/content/APAC/scheduling.html b/fudcon.fedoraproject.org/data/content/APAC/scheduling.html deleted file mode 100644 index 8a22be6..0000000 --- a/fudcon.fedoraproject.org/data/content/APAC/scheduling.html +++ /dev/null @@ -1,304 +0,0 @@ - - - - -FUDCon Beijing - - - - - - -
      -
      -
      -
      - -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -

      FUDCon Beijing 2014

      -

      FUDCon is the Fedora Users and Developers Conference, a major free software event held in various regions around the world, usually annually per region. FUDCon is a combination of sessions, talks, workshops, and hackfests.
      - FUDCon is always free to attend for anyone in the world.

      -
      -
      -
      -
      -
      -
      -

      Beijing - May 23 - May 25, 2014

      - - - -

      Agenda & Scheduling

      - -

      All times are Chinese Standard Time (local time for Beijing, UTC+8). -

      -
      - -

      Day One

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Time Main hall
      (290 seats)
      #5 Conference Room
      (30 seats)
      #4 Conference Room
      (30 seats)
      #8 Conference Room
      (80 seats) -
      08:30–09:00 - Reception -
      09:00–09:30 - Welcome Speech - Kate 10mins +Fedora 10mins+ Local team 10mins -
      09:30–10:15 - Keynote - What's cooking in GNOME - 3.12 under the hood

      Tobias Mueller -
      10:15–11:00 - Keynote - Fedora.Next: Features and Friends

      Jiri Eischmann, Jaroslav Reznik -
      11:00–11:45 - Mozilla - Firefox OS 释放移动的未来

      赵博通 -
      Managing and triaging GNOME's bug reports

      Andre Klapper -
      Libreoffice - go hand in hand with Gnome

      Yifan Jiang -
      Fedora Videos

      Nitesh Narayan Lal -
      11:45–12:30 - Bringing your GNOME application up-to-date

      David King -
      GStreamer, a state of the union

      Olivier Crête -
      Bringing Indonesian scripts and local languages to GNOME

      Ahmad Haris -
      Fedora websites, present and future

      Robert Mayr -
      12:30–14:00 - Lunch -
      14:00–14:45 - How GNOME Works

      Allan Day
      GStreamer debugging with GstPadProbe

      Wonchul Lee
      GNOME/KDE on MIPS

      Aron Xu
      Building Orchestration and Configuration with Ansible at Fedora Project

      Aditya Patawari -
      14:45–15:30 - Developing new element with GstCheck

      Jeongseok Kim
      A Life of Translator

      Tommy He
      FOSS & Education in Taiwan with Ezilla project

      Max Huang
      Brief Introduction to FirewallD

      Zamir SUN -
      15:30–16:00 - Tea Break -
      16:00–16:45 - wayland intro with i18n hacks

      Peng Wu
      GNOME Documentation: helping you learn and give back

      Ekaterina Gerasimova
      openQA and Automated Desktop Testing

      Weihua Du
      Re-rolling Fedora with Conary

      Martin Bähr -
      16:45–17:30 - Next Generation Input methods

      Daiki Ueno,Anish Patil
      embed and embrace dconf in gnome software developing

      Guo Jia
      Fedora on ARM

      Fu Wei
      Hackfest: Packaging a ROS Groovy SCL for Fedora

      Ankur Sinha -
      17:30–17:45 - Lightning Talks (3 talks) -
      17:45–18:00 - First Day close -
      -
      -
      -
      -

      Day Two

      -
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Time Main hall
      (290 seats)
      #5 Conference Room
      (30 seats)
      #4 Conference Room
      (30 seats)
      #8 Conference Room
      (80 seats)
      #3 Conference Room
      (30 seats) -
      08:30–09:00 - Reception -
      09:00–10:00 - Keynote - A perspective for systemd: What has been achieved, and what lies ahead

      Lennart Poettering -
      10:00–10:15 - Lightning Talks (3 talks) -
      10:15–10:30 - Tea Break -
      10:30–12:00 - Keynote - Free Software and Your Freedom

      Richard Matthew Stallman -
      12:00–14:00 - Lunch -
      14:00–14:45 - Workshop: A GPG key signing party

      Ankur Sinha
      GNOME Archives Integration and FreeBSD porting

      Ting-Wei Lan
      以自由軟體建置電腦教室 -- 從 NTPC 專案談起 (Creating a Free World In Computer Classroom-- What We Learned From the NTPC Project)

      Franklin Weng
      Workshop: Fedora i18n and l10n

      Tian Shixiong, Robert Lijun Li
      Workshop: LaTeX Tips

      Alick Zhao -
      14:45–15:30 - Start a relationship with OSS project

      Buddhike Kurera
      An introduction to DBus

      Aleksander Morgado
      How to ignore users' needs

      Zhang Weiwu
      Fedora Women

      Nitesh Narayan Lal
      Continuous Delivery

      Gerard Braad -
      15:30–16:00 - Tea Break -
      16:00–16:45 - What we do on promoting FOSS in China

      Tong Hui
      GNOME for Enterprise

      David Liang (Liang Chenye)
      Local weather information and GNOME shell extension

      Sammy Fung
      GSoC with Fedora

      Buddhike Kurera
      Batsh - A language that compiles to Bash and Windows Batch

      Carbo Kuo -
      16:45–17:30 - Ramblings from the governing body of the GNOME Foundation

      Tobias Mueller
      GNOME Shell extensions

      BinLi
      Integrating Open-source Hardware into School Curricula: The Community Development of Scratch and Sensors in Taiwan

      Ms. Kai-ju Tsai
      Success story of Fedora in to education

      Danishka Navin
      Elvish, a new experimental Unix shell

      肖骐 Cheer Xiao -
      17:30–18:00 - Closing speech - Local organizer & GNOME.Asia & FUDcon Committee -
      18:00:00 - End of Day 2, home sweet home. -
      - - - - -
      - -
      -
      -
      -
      -
      -
      -
      - -
      - - diff --git a/fudcon.fedoraproject.org/data/content/EMEA/index.html b/fudcon.fedoraproject.org/data/content/EMEA/index.html deleted file mode 100644 index 217fa3b..0000000 --- a/fudcon.fedoraproject.org/data/content/EMEA/index.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - -FUDCon Paris - - - - - - -
      -
      -
      -
      - -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -

      FUDCon Paris 2012

      -

      FUDCon is the Fedora Users and Developers Conference, a major free software event held in various regions around the world, usually annually per region. FUDCon is a combination of sessions, talks, workshops, and hackfests.
      - FUDCon is always free to attend for anyone in the world.

      - Register now!
      -
      La Bastille
      - -
      -
      -
      -
      -
      -
      -

      FUDCon will be held in France

      -

      Paris - October 13 through October 15, 2012

      -

      FUDCon (Fedora Users and Developers Conference) is an important event in the world of free software that is held in different parts of the world, typically once a year to the region. The FUDCon is a combination of sessions, talks, workshops and hackfest in which project participants can work on specific initiatives. Topics include: infrastructure, development of features, construction and / or consolidation of the community, management and governance, marketing, testing and QA, packaging, etc..

      -

      know more about the locations and local facilities

      -
      -
      -
      -

      The FUDCon is a free event.

      -

      A FUDCon typically includes some combination of: -

      - -

      They are usually scheduled over a weekend. -

      -
      -
      -
      -
      -
      -
      -
      -
      - -
      - - diff --git a/fudcon.fedoraproject.org/data/content/EMEA/location.html b/fudcon.fedoraproject.org/data/content/EMEA/location.html deleted file mode 100644 index b69eb2e..0000000 --- a/fudcon.fedoraproject.org/data/content/EMEA/location.html +++ /dev/null @@ -1,151 +0,0 @@ - - - - -FUDCon Paris - - - - - - -
      -
      -
      -
      - -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -

      FUDCon Paris 2012

      -

      FUDCon is the Fedora Users and Developers Conference, a major free software event held in various regions around the world, usually annually per region. FUDCon is a combination of sessions, talks, workshops, and hackfests.
      - FUDCon is always free to attend for anyone in the world.

      -
      -
      -
      -
      -
      -
      -

      Paris - October 13 through October 15, 2012

      -
      -
      -

      Location

      -

      Paris, France

      -

      Paris is the capital (and largest city) of France, at the heart of the Île-de-France region. The city of Paris has an estimated population of 2,211,297 while the Paris metropolitan area has a population of 12,089,098 and is one of the most populated metropolitan areas in Europe. Paris was the largest city in the Western world for about 1,000 years, prior to the 19th century, and the largest in the world between the 16th and 19th centuries.

      -

      Paris is today one of the world's leading business and cultural centres, and its influences in politics, education, entertainment, media, fashion, science, and the arts all contribute to its status as one of the world's major global cities. It hosts the headquarters of many international organizations such as UNESCO, the OECD, the International Chamber of Commerce or the informal Paris Club. Paris is considered one of the most beautiful cities in the world as one of the greenest and most liveable in Europe. It is the most visited city in the world.

      -
      -
      -
      Venue
      -
      Eurosites Georges V and Universciences
      - -
      -

      -

      Further useful information:

      - -

      -
      -

      -
      -

      Airports and their distance from lodging and venue

      -

      If you arrive to Paris by airplane, you are going to land at one of the following airports: -

      -

      -

      There are several services (public and private) that connect the Paris city center. Charles De Gaulle and Orly are connected to the suburbs train "RER" line B. This line goes from South to North and is connected to the rest of the public transportation infrastructure, such as tramway, buses, metro, etc. -

      -

      For more information read the estimated costs of flights major airports that attendees will travel from -

      -

      -

      Transportation

      - The RATP (Régie autonome des transports parisiens) manages the majority of the public transport service of the city of Paris and its suburbs.
      -

      -

      Metro services operate between 05:30-01:30 and cover 16 lines. Bus services is extensive and operates from 05:00 to 22:00.

      -

        -
      • 3 days ticket is at 21.60€.
      • -

      -

      -

      Detailed description of proposed venue

      -

      -

      -

        -
      • Saturday at the OWF: It's a business center fully featured, with lots of rooms. We would probably book one whole floor and a time slot on the auditorium.
      • -
      • Sunday−Monday: Universciences, that's where we are doing many release parties and monthly events. There are also building a fablab there. We are really involved in the FOSS movement with them, and we would have many rooms for us and one talk room (about 100 seats). We still need to have confirmation about the auditorium access on Sunday (should be ok for Monday). We would have wired internet access, probably with a Fedora mirror (dunno if needed, but we use it for our release parties).
      • -
      -

      -

      -

      Packing

      -

      -

      Laptop with 802.11b/g wireless

      -
        -
      • Extension cord (and European power adapter, if from outside Europe)
      • -
      • Ethernet cable (for hotel and/or hackfest)
      • -
      • Optional: Bring a Fedora Friend Finder (power strip)
      • -
      -

      Credit card (VISA or MasterCard)or small amount of cash (ATMs are nearby the hotel and venue)

      -

      Your presentation slides or anything needed for the hackfest

      -

      Casual clothes for the event

      -
        -
      • Average highs near 19C, average lows near 6C
      • -
      • Optional: umbrella, there is occasional precipitation
      • -
      -

      International visitors:

      -
        -
      • Passport/visa and any other official documentation needed
      • -
      • Converters for power (reference link)
      • -
      -

      If staying at the hotel:

      -
        -
      • Optional: swimsuit, gym clothes.
      • -
      -
      -
      -
      -
      -
      -
      -
      - -
      -
      - - diff --git a/fudcon.fedoraproject.org/data/content/EMEA/scheduling.html b/fudcon.fedoraproject.org/data/content/EMEA/scheduling.html deleted file mode 100644 index 7a7b006..0000000 --- a/fudcon.fedoraproject.org/data/content/EMEA/scheduling.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - -FUDCon Paris - - - - - - -
      -
      -
      -
      - -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -

      FUDCon Paris 2012

      -

      FUDCon is the Fedora Users and Developers Conference, a major free software event held in various regions around the world, usually annually per region. FUDCon is a combination of sessions, talks, workshops, and hackfests.
      - FUDCon is always free to attend for anyone in the world.

      -
      -
      -
      -
      -
      -
      -

      Paris - October 13 through October 15, 2012

      - -

      - -

      Agenda & Scheduling

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      timeSaturdaySundayMonday
      08:00---------
      09:00---Barcamp opening
      Auditorium
      Breakfast
      10:00Keynote: Welcome to FUDCon (by Robyn Bergeron, Fedora Project Leader)
      Auditorium
      BreakfastHackFest
      11:00Fedora 18: What's new ? (by Fedora ambassadors)
      Auditorium
      BarCampHackFest
      12:00Lunch bag (on site)Lunch (on site)Lunch (on site)
      13:00Workshop OpenShift (by Marek Jelen)
      Room Amsterdam
      Workshop RPM Packaging (by Remi Collet)
      Room Dublin
      Be ARMed ! (ARM devroom lead by Chris Tyler)
      Room London
      BarCampHackFest
      14:00Workshop OpenShift (by Marek Jelen)
      Room Amsterdam
      Workshop RPM Packaging (by Remi Collet)
      Room Dublin
      Be ARMed ! (ARM devroom lead by Chris Tyler)
      Room London
      BarCampHackFest
      15:00JBoss AS in Fedora (by Marek Goldmann)
      Room Amsterdam
      Be ARMed ! (ARM devroom lead by Chris Tyler)
      Room London
      BarCampHackFest
      16:00Workshop D Programming Language (by Jonathan Mercier)
      Room Amsterdam
      Be ARMed ! (ARM devroom lead by Chris Tyler)
      Room London
      BarCampHackFest
      17:00Workshop D Programming Language (by Jonathan Mercier)
      Room Amsterdam
      Be ARMed ! (ARM devroom lead by Chris Tyler)
      Room London
      BarCamp
      17:45 Key Signing Party
      HackFest
      18:00---end of dayHome, sweet home!
      19:00---------
      20:00Social Event, Choose a pub------
      21:00FudPub (Flam's) - 21:30------
      - - - - - -
      - -
      -

      -

      Social events

      -
        -
      • Saturday Night (October 13th): The Flam's, unlimited "French pizza" around starting from 9:30PM
      • -
      -
      -
      -
      -
      -
      -
      -
      -
      - -
      - - diff --git a/fudcon.fedoraproject.org/data/content/LATAM/index.html b/fudcon.fedoraproject.org/data/content/LATAM/index.html deleted file mode 100644 index 1650adb..0000000 --- a/fudcon.fedoraproject.org/data/content/LATAM/index.html +++ /dev/null @@ -1,106 +0,0 @@ - - - - -FUDCon Puno - - - - - - -
      -
      -
      -
      - - - -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -

      FUDCon Perù 2016

      -

      FUDCon is the Fedora Users and Developers Conference, a major free software event held in various regions around the world, usually annually per region. FUDCon is a combination of sessions, talks, workshops, and hackfests.
      - FUDCon is always free to attend for anyone in the world.

      - Register now! -
      - -
      - Puno City -
      - -
      -
      -
      -
      -
      -
      -

      The 2016 LATAM FUDCon will be held in Perù

      -

      Puno - October 13 - October 16, 2016

      -

      FUDCon (Fedora Users and Developers Conference) a major free software event held in various regions around the world, usually annually per region. FUDCon is a combination of sessions, talks, workshops, and hackfests in which contributors work on specific initiatives. Topics include infrastructure, feature development, community building, general management and governance, marketing, testing and QA, packaging, etc.
      - FUDCon is always free to attend for anyone in the world.

      -

      Learn more (Spanish)

      -
      -
      -
      -

      The FUDCon is a free event.

      -

      A FUDCon typically includes some combination of:

      - -

      They are usually scheduled over a weekend.

      -
      -
      -
      -
      -
      -
      -
      -
      - - - -
      - - - diff --git a/fudcon.fedoraproject.org/data/content/LATAM/location.html b/fudcon.fedoraproject.org/data/content/LATAM/location.html deleted file mode 100644 index 1d8346c..0000000 --- a/fudcon.fedoraproject.org/data/content/LATAM/location.html +++ /dev/null @@ -1,96 +0,0 @@ - - - - -FUDCon Córdoba - - - - - - -
      -
      -
      -
      - - - -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -

      FUDCon Perù 2016

      -

      FUDCon is the Fedora Users and Developers Conference, a major free software event held in various regions around the world, usually annually per region. FUDCon is a combination of sessions, talks, workshops, and hackfests.
      - FUDCon is always free to attend for anyone in the world.

      -
      -
      -
      -
      -
      -
      -

      Puno - October 13 - October 16, 2016

      -
      -

      Location

      -

      Puno, Perú

      -

      Universidad Nacional del Altiplano Puno - Venue

      - Google maps UNAP Universidad Nacional del Altiplano Puno
      - Official web site: UNAP
      - Audience of 500 people for the first day in the morning and last day in the evening (opening and closing) and 3 rooms of 60 people -

      Useful information about the province:

      -

      Useful info:

      - -
      -
      -
      - - - -
      - - - diff --git a/fudcon.fedoraproject.org/data/content/LATAM/scheduling.html b/fudcon.fedoraproject.org/data/content/LATAM/scheduling.html deleted file mode 100644 index 2f085a4..0000000 --- a/fudcon.fedoraproject.org/data/content/LATAM/scheduling.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - -FUDCon Managua - - - - - - - diff --git a/fudcon.fedoraproject.org/data/content/NA/index.html b/fudcon.fedoraproject.org/data/content/NA/index.html deleted file mode 100644 index 75c5d11..0000000 --- a/fudcon.fedoraproject.org/data/content/NA/index.html +++ /dev/null @@ -1,84 +0,0 @@ - - - - -FUDCon Lawrence - - - - - - -
      -
      -
      -
      - -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -

      FUDCon Lawrence

      -

      FUDCon is the Fedora Users and Developers Conference, a major free software event held in various regions around the world, usually annually per region. FUDCon is a combination of sessions, talks, workshops, and hackfests.
      - FUDCon is always free to attend for anyone in the world.

      - Register now!
      -
      University of Kansas
      -
      -
      -
      -
      -
      -
      -

      FUDCon will be held in Kansas, USA

      -

      Lawrence - January 18 through January 20, 2013

      -

      FUDCon (Fedora Users and Developers Conference) is an important event in the world of free software that is held in different parts of the world, typically once a year to the region. The FUDCon is a combination of sessions, talks, workshops and hackfest in which project participants can work on specific initiatives. Topics include: infrastructure, development of features, construction and / or consolidation of the community, management and governance, marketing, testing and QA, packaging, etc..

      -

      know more about the locations and local facilities

      -
      -
      -
      -

      The FUDCon is a free event.

      -

      A FUDCon typically includes some combination of: -

      - -

      They are usually scheduled over a weekend. -

      -
      -
      -
      -
      -
      -
      -
      -
      - -
      - - \ No newline at end of file diff --git a/fudcon.fedoraproject.org/data/content/NA/location.html b/fudcon.fedoraproject.org/data/content/NA/location.html deleted file mode 100644 index 8b767d3..0000000 --- a/fudcon.fedoraproject.org/data/content/NA/location.html +++ /dev/null @@ -1,204 +0,0 @@ - - - - -FUDCon Lawrence - - - - - - -
      -
      -
      -
      - -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -

      FUDCon Lawrence 2013

      -

      FUDCon is the Fedora Users and Developers Conference, a major free software event held in various regions around the world, usually annually per region. FUDCon is a combination of sessions, talks, workshops, and hackfests.
      - FUDCon is always free to attend for anyone in the world.

      -
      -
      -
      -
      -
      -
      -

      Lawrence - January 18 through January 20, 2013

      -
      -
      -

      Location

      -

      Lawrence, Kansas, USA

      -

      Lawrence has a rich history, filled with civil war stories, art, music, academics, and information technology advances. Lawrence is a college town, so it's pedestrian friendly. The college campus is a short walk from downtown Lawrence. Downtown offers a variety of restaurants, from world-famous bar-b-que to vegetarian and vegan offerings. You'll find live music every night downtown, fun local pubs and breweries, and plenty of shopping.

      - -
      -
      -
      Venue
      -
      University of Kansas, Eaton and Learned Halls
      -
      • Okayed by School of Engineering Dean;
      • -
      • Pending University Events Committee approval;
      • -
      -
      -

      -

      Further useful (Geek Cred) information:

      -
        -
      • Birthplace of the Django Project
      • -
      • Birthplace of Sys Admin Magazine, C/C++ User's Journal, Ubuntu User Magazine, Admin Magazine
      • -
      • Birthplace of Google Earth and its original Center of the Universe
      • -
      • Home of Linux New Media USA LLC
      • -
      • The Day After was shot here
      • -
      • Carnival of Souls (1962 independent horror movie) shot here
      • -
      • Author of Sams Teach Yourself TCP/IP in 24 Hours, 5th Edition", Joe Casad, lives here
      • -
      • "Linux in a Nutshell" author Stephen Figgins lives here
      • -
      • Jacob Kaplan-Moss, President of the Django Software Foundation, lives here
      • -
      • Home of Atipa Technologies
      • -
      • Frank Wiles, author of Instant Perl Modules, lives here
      • -
      • Gantry::Conf was written in Lawrence
      • -
      • IdentiGEN, a provider of DNA-based solutions to the agri-food industry, has its US office here (its only other office world-wide is in Dublin)
      • -
      • Greg DiVilbiss, COO of Saavi Accountability (accounting software), lives in Lawrence
      • -
      -

      Other History:

      -
        -
      • Lawrence was known as the "Free State Capital" during the Civil War
      • -
      • Location of Quantrill's Raid
      • -
      • Dr. James Naismith, inventor of basketball, was the University of Kansas' first basketball coach
      • -
      • Poet Langston Hughes grew up here
      • -
      • Beat writer William Burroughs called Lawrence home and lived here until he died
      • -
      • Punk rock music lovers will have heard of The Outhouse
      • -
      • Home of the world-famous Free State Brewing Company: "In 1989 the Free State Brewery in Lawrence opened its doors as the first licensed brewery in Kansas since 1881"
      • -
      • Printpop.com started in Lawrence
      • -
      -

      -
      -

      -
      -

      Airports and their distance from lodging and venue

      -

      If you arrive to Lawrence by airplane, you are going to land at one of the following airports: -

      -

      -

      Bus routes of Lawrence Transit System / KU on Wheels are available in Lawrence and through the KU campus. -

      -

      -

      Transportation

      -

      From everywhere to KCI

      - Some basic pricing of flights as of Tue Mar 13 2012. Round trip, Thu Jan 17 / Mon Jan 20, 1 person, prices in USD, 1-stop unless otherwise noted. Data from KAYAK (therefore does not include Southwest Airlines). -
        -
      • RDU: $327-$353
      • -
      • BOS: nonstop on Delta $218, others $249-$419
      • -
      • SJC: $485-$569
      • -
      • PHX: nonstop on US Airways $379, others $292-$444
      • -
      • IAD: nonstop on United $305, others $261-423
      • -
      • ORD: nonstops $235-$244
      • -
      • LAX: nonstops $378-$464, others $379-$499
      • -
      • PRG: $1102 and up
      • -
      • VIE: $1043 and up
      • -
      - -

      From KCI to Lawrence

      - Airport shuttles that go to Lawrence: -
        -
      • GTI shuttle between KCI and Lawrence
      • -
      • KCI RoadRunner shuttle between KCI and Lawrence
      • -
      - In theory you can get from KCI to Lawrence using a mixture of public transit and possibly Amtrak. Google suggests it will take anywhere between 4 and 5 hours. This is not recommended. - -

      -

      Packing

      -

      -

      Everybody:

      -
        -
      • Appropriately warm clothing it will possibly snow in Kansas in January
      • -
      • Laptop with 802.11b/g wireless
      • -
      • Extension cord
      • -
      • Ethernet cable (for hotel and/or hackfest)
      • -
      • Optional: Bring a Fedora Friend Finder (power strip)
      • -
      • Credit card (VISA or MasterCard) or small amount of cash
      • -
      • Your presentation slides or anything needed for the hackfest
      • -
      - -

      International visitors:

      - -

      If staying at the hotel:

      - - -

      Hotels

      - -

      SpringHill Suites

      - One Riverfront Plaza, Lawrence, Kansas -
        -
      • Approx $124 USD/night
      • -
      • Reference to actual streets: 6th and New Hampshire (one block from Mass St)
      • -
      • Three blocks north of bus stop for routes 10 and 11 (unsure if they will actually run during FUDCon dates or how often as routing has not been finalized for the 2012-2013 academic year)
      • -
      -

      The Oread

      - 1200 Oread Avenue, Lawrence, Kansas -
        -
      • Anywhere from $220-$340 USD/night
      • -
      • Just north of the Kansas Union and other buildings on east campus
      • -
      • Walking distance to KU engineering buildings (15-minute walk)
      • -
      • Very small, probably can't very many people there
      • -
      -

      Best Western

      - 2309 Iowa Street, Lawrence, Kansas, 66046 -
        -
      • Aprpox $86-$96 USD/night
      • -
      • Close to 23rd St Brewery but not much else (campus is 8 blocks north)
      • -
      - -
      -
      -
      -
      -
      -
      -
      - -
      -
      - - diff --git a/fudcon.fedoraproject.org/data/content/NA/scheduling.html b/fudcon.fedoraproject.org/data/content/NA/scheduling.html deleted file mode 100644 index 36c6ba9..0000000 --- a/fudcon.fedoraproject.org/data/content/NA/scheduling.html +++ /dev/null @@ -1,211 +0,0 @@ - - - - -FUDCon Lawrence - - - - - - -
      -
      -
      -
      - -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -

      FUDCon Lawrence 2013

      -

      FUDCon is the Fedora Users and Developers Conference, a major free software event held in various regions around the world, usually annually per region. FUDCon is a combination of sessions, talks, workshops, and hackfests.
      - FUDCon is always free to attend for anyone in the world.

      -
      -
      -
      -
      -
      -
      -

      Lawrence - January 18 through January 20, 2013

      - -

      - -

      Agenda & Scheduling

      - -
      -
      -
      time
      -
      Friday
      -
      Saturday
      -
      Sunday
      -
      -
      -
      08:00
      -
      ---
      -
      ---
      -
      ---
      -
      -
      -
      09:00
      -
      ---
      -
      ---
      -
      ---
      -
      -
      -
      10:00
      -
      ---
      -
      BarCamp
      -
      BarCamp
      -
      -
      -
      11:00
      -
      ---
      -
      BarCamp
      -
      BarCamp
      -
      -
      -
      12:00
      -
      ---
      -
      BarCamp
      -
      BarCamp
      -
      -
      -
      13:00
      -
      ---
      -
      BarCamp
      -
      BarCamp
      -
      -
      -
      14:00
      -
      ---
      -
      BarCamp
      -
      HackFest
      -
      -
      -
      15:00
      -
      ---
      -
      BarCamp
      -
      HackFest
      -
      -
      -
      16:00
      -
      ---
      -
      BarCamp
      -
      HackFest
      -
      -
      -
      17:00
      -
      ---
      -
      BarCamp
      -
      HackFest
      -
      -
      -
      18:00
      -
      ---
      -
      BarCamp
      -
      ---
      -
      -
      -
      19:00
      -
      ---
      -
      Free Time
      -
      ---
      -
      -
      -
      20:00
      -
      Social Event
      -
      Free Time
      -
      ---
      -
      -
      -
      21:00
      -
      Social Event
      -
      FudPub
      -
      ---
      -
      -
      - - - - - -
      - -
      -

      -

      Social events

      -
        -
      • Ham Radio Test Session
      • -
      -

      FUDPub

      -

      Free State Brewery

      -636 Massachusetts Street Lawrence, KS 66044 -
        -
      • At the north of Massachusetts Street, the heart of downtown Lawrence
      • -
      • Within walking distance from both proposed hotels (SpringHill Suites and The Oread)
      • -
      • Will likely be just the right size (we would definitely have to reserve the entire location)
      • -
      -

      23rd Street Brewery

      -3512 Clinton Parkway Lawrence, Kansas 66047 -
        -
      • Comparatively larger than Free State
      • -
      • Would require some sort of transportation as it's not really within walking distance of campus or proposed hotel locations
      • -
      -
      -
      -
      -
      -
      -
      -
      -
      - -
      - - diff --git a/fudcon.fedoraproject.org/data/content/index.html b/fudcon.fedoraproject.org/data/content/index.html deleted file mode 100644 index 98355fe..0000000 --- a/fudcon.fedoraproject.org/data/content/index.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - -FUDCon - - - - - - - - - - - -
      -
      -
      -
      - - - -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -

      FUDCon 2016

      -

      FUDCon is the Fedora Users and Developers Conference, a major free software event held in various regions around the world, usually annually per region.
      - FUDCon is a combination of sessions, talks, workshops, and hackfests in which project participants can work on specific initiatives.
      - FUDCon is always free to attend for anyone.

      -
      -
      - -
      -
        -
      • - 5 - FUDCon Córdoba 2015 -
      • -
      • - 2 - FUDCon Panamá 2011 -
      • -
      • - 3 - FUDCon Tempe 2011 -
      • -
      • - 4 - FUDCon Zurich 2010 -
      • -
        -
      -
      - -
      -
      -
      - - -
      -
      -
      -
      -
      - - - -
      - - - diff --git a/fudcon.fedoraproject.org/data/templates/css.html b/fudcon.fedoraproject.org/data/templates/css.html deleted file mode 100644 index ebfe858..0000000 --- a/fudcon.fedoraproject.org/data/templates/css.html +++ /dev/null @@ -1,7 +0,0 @@ - - - - diff --git a/fudcon.fedoraproject.org/data/templates/foot.html b/fudcon.fedoraproject.org/data/templates/foot.html deleted file mode 100644 index df75061..0000000 --- a/fudcon.fedoraproject.org/data/templates/foot.html +++ /dev/null @@ -1,9 +0,0 @@ - - -
    5. twitter
    6. -
    7. facebook
    8. -
    9. RSS Feed List
    10. - diff --git a/fudcon.fedoraproject.org/data/templates/head.html b/fudcon.fedoraproject.org/data/templates/head.html deleted file mode 100644 index 0d7451a..0000000 --- a/fudcon.fedoraproject.org/data/templates/head.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - -
      - -
    11. Home
    12. -
    13. News
    14. -
    15. EMEA
    16. -
    17. APAC
    18. -
    19. LATAM
    20. -
    21. NA
    22. -
      - - diff --git a/fudcon.fedoraproject.org/data/templates/js.html b/fudcon.fedoraproject.org/data/templates/js.html deleted file mode 100644 index 6708131..0000000 --- a/fudcon.fedoraproject.org/data/templates/js.html +++ /dev/null @@ -1,9 +0,0 @@ - - - - diff --git a/fudcon.fedoraproject.org/data/templates/main-head.html b/fudcon.fedoraproject.org/data/templates/main-head.html deleted file mode 100644 index 88a7cdc..0000000 --- a/fudcon.fedoraproject.org/data/templates/main-head.html +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/fudcon.fedoraproject.org/data/templates/main-index.html b/fudcon.fedoraproject.org/data/templates/main-index.html deleted file mode 100644 index 62c32cf..0000000 --- a/fudcon.fedoraproject.org/data/templates/main-index.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - -
      -
      - - ${select('*')} -
      -
      - - -
      - diff --git a/fudcon.fedoraproject.org/data/templates/master-index.html b/fudcon.fedoraproject.org/data/templates/master-index.html deleted file mode 100644 index bae6886..0000000 --- a/fudcon.fedoraproject.org/data/templates/master-index.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - -
      -
      - - ${select('*')} -
      -
      - - -
      - diff --git a/fudcon.fedoraproject.org/data/templates/master.html b/fudcon.fedoraproject.org/data/templates/master.html deleted file mode 100644 index 54de432..0000000 --- a/fudcon.fedoraproject.org/data/templates/master.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - -
      -
      - - ${select('*')} -
      -
      - - -
      - diff --git a/fudcon.fedoraproject.org/po/LINGUAS b/fudcon.fedoraproject.org/po/LINGUAS deleted file mode 100644 index b0ce799..0000000 --- a/fudcon.fedoraproject.org/po/LINGUAS +++ /dev/null @@ -1,52 +0,0 @@ -af -ar -ast -bg -bn -bn_IN -br -ca -cs -da -de -el -en -en_GB -es -eu -fa -fi -fr -gl -gu -he -hi -hu -ia -id -is -it -ja -ka -ko -lv -ml -mr -nb -nl -pa -pl -pt -pt_BR -ro -ru -sk -sq -sr -sv -te -tr -uk -vi -zh_CN -zh_TW diff --git a/fudcon.fedoraproject.org/po/af.po b/fudcon.fedoraproject.org/po/af.po deleted file mode 100644 index 1817dc4..0000000 --- a/fudcon.fedoraproject.org/po/af.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Webwerf Taal" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "OK" diff --git a/fudcon.fedoraproject.org/po/ar.po b/fudcon.fedoraproject.org/po/ar.po deleted file mode 100644 index 3e71f8d..0000000 --- a/fudcon.fedoraproject.org/po/ar.po +++ /dev/null @@ -1,29 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011 -# moceap , 2013 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:35+0100\n" -"PO-Revision-Date: 2013-08-15 20:10+0000\n" -"Last-Translator: moceap \n" -"Language-Team: Arabic \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "لغة الموقع" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "موافق" diff --git a/fudcon.fedoraproject.org/po/ast.po b/fudcon.fedoraproject.org/po/ast.po deleted file mode 100644 index 8506e4b..0000000 --- a/fudcon.fedoraproject.org/po/ast.po +++ /dev/null @@ -1,27 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-12-30 00:05+0000\n" -"Last-Translator: neb \n" -"Language-Team: Asturian (http://www.transifex.com/projects/p/fedora/language/ast/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: ast\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "OK" diff --git a/fudcon.fedoraproject.org/po/bg.po b/fudcon.fedoraproject.org/po/bg.po deleted file mode 100644 index 413c3ed..0000000 --- a/fudcon.fedoraproject.org/po/bg.po +++ /dev/null @@ -1,29 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -# Valentin Laskov , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: Bulgarian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Език на сайта" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "OK" diff --git a/fudcon.fedoraproject.org/po/bn.po b/fudcon.fedoraproject.org/po/bn.po deleted file mode 100644 index f473ae2..0000000 --- a/fudcon.fedoraproject.org/po/bn.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Mahay Alam Khan , 2012. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-10-16 19:27+0000\n" -"Last-Translator: Mahay Alam Khan \n" -"Language-Team: Bengali \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: bn\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "ওয়েবসাইটের ভাষা" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "ঠিক আছে" diff --git a/fudcon.fedoraproject.org/po/bn_IN.po b/fudcon.fedoraproject.org/po/bn_IN.po deleted file mode 100644 index ac56303..0000000 --- a/fudcon.fedoraproject.org/po/bn_IN.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-12-30 00:05+0000\n" -"Last-Translator: neb \n" -"Language-Team: Bengali (India) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: bn_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "ok" diff --git a/fudcon.fedoraproject.org/po/br.po b/fudcon.fedoraproject.org/po/br.po deleted file mode 100644 index a5462a8..0000000 --- a/fudcon.fedoraproject.org/po/br.po +++ /dev/null @@ -1,27 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2011-07-21 22:10+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Breton (http://www.transifex.com/projects/p/fedora/language/br/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: br\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "Mat eo" diff --git a/fudcon.fedoraproject.org/po/ca.po b/fudcon.fedoraproject.org/po/ca.po deleted file mode 100644 index 49b2074..0000000 --- a/fudcon.fedoraproject.org/po/ca.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: Catalan \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Idioma del lloc web" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "D'acord" diff --git a/fudcon.fedoraproject.org/po/cs.po b/fudcon.fedoraproject.org/po/cs.po deleted file mode 100644 index 934d1f7..0000000 --- a/fudcon.fedoraproject.org/po/cs.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: Czech (http://www.transifex.com/projects/p/fedora/language/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: cs\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Jazyková varianta stránek" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "OK" diff --git a/fudcon.fedoraproject.org/po/da.po b/fudcon.fedoraproject.org/po/da.po deleted file mode 100644 index a77d034..0000000 --- a/fudcon.fedoraproject.org/po/da.po +++ /dev/null @@ -1,29 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -# Kris Thomsen , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: Danish \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Sprog på netsted" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "O.k." diff --git a/fudcon.fedoraproject.org/po/de.po b/fudcon.fedoraproject.org/po/de.po deleted file mode 100644 index f19c264..0000000 --- a/fudcon.fedoraproject.org/po/de.po +++ /dev/null @@ -1,29 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -# Roman Spirgi , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: German \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Sprache" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "OK" diff --git a/fudcon.fedoraproject.org/po/el.po b/fudcon.fedoraproject.org/po/el.po deleted file mode 100644 index ffef46b..0000000 --- a/fudcon.fedoraproject.org/po/el.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: Greek \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Γλωσσα Ιστοσελιδας" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "ΟΚ" diff --git a/fudcon.fedoraproject.org/po/en.po b/fudcon.fedoraproject.org/po/en.po deleted file mode 100644 index 9d1808e..0000000 --- a/fudcon.fedoraproject.org/po/en.po +++ /dev/null @@ -1,27 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Website Language" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "OK" diff --git a/fudcon.fedoraproject.org/po/en_GB.po b/fudcon.fedoraproject.org/po/en_GB.po deleted file mode 100644 index c228342..0000000 --- a/fudcon.fedoraproject.org/po/en_GB.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:35+0100\n" -"PO-Revision-Date: 2013-07-04 17:00+0000\n" -"Last-Translator: neb \n" -"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/fedora/language/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Website Language" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "OK" diff --git a/fudcon.fedoraproject.org/po/es.po b/fudcon.fedoraproject.org/po/es.po deleted file mode 100644 index c8bc161..0000000 --- a/fudcon.fedoraproject.org/po/es.po +++ /dev/null @@ -1,30 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Claudio Rodrigo Pereyra Diaz , 2011. -# Dennis Tobar , 2011. -# FIRST AUTHOR , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: Spanish \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Idioma del Sitio" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "OK" diff --git a/fudcon.fedoraproject.org/po/eu.po b/fudcon.fedoraproject.org/po/eu.po deleted file mode 100644 index e4abfdf..0000000 --- a/fudcon.fedoraproject.org/po/eu.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Asier Iturralde Sarasola , 2012. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-04-28 20:12+0000\n" -"Last-Translator: Asier Iturralde Sarasola \n" -"Language-Team: Basque (http://www.transifex.com/projects/p/fedora/language/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Webgunearen hizkuntza" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "Ados" diff --git a/fudcon.fedoraproject.org/po/fa.po b/fudcon.fedoraproject.org/po/fa.po deleted file mode 100644 index 77480b4..0000000 --- a/fudcon.fedoraproject.org/po/fa.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: Persian (http://www.transifex.com/projects/p/fedora/language/fa/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: fa\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "زبان وبسایت" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "تأیید" diff --git a/fudcon.fedoraproject.org/po/fi.po b/fudcon.fedoraproject.org/po/fi.po deleted file mode 100644 index f928610..0000000 --- a/fudcon.fedoraproject.org/po/fi.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: Finnish (http://www.transifex.com/projects/p/fedora/language/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Verkkosivun kieli" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "OK" diff --git a/fudcon.fedoraproject.org/po/fr.po b/fudcon.fedoraproject.org/po/fr.po deleted file mode 100644 index 0c2d9f9..0000000 --- a/fudcon.fedoraproject.org/po/fr.po +++ /dev/null @@ -1,29 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# dominique bribanick , 2011 -# FIRST AUTHOR , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:35+0100\n" -"PO-Revision-Date: 2013-09-11 17:19+0000\n" -"Last-Translator: Kévin Raymond \n" -"Language-Team: French \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Langue du site" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "OK" diff --git a/fudcon.fedoraproject.org/po/fudcon.fedoraproject.org.pot b/fudcon.fedoraproject.org/po/fudcon.fedoraproject.org.pot deleted file mode 100644 index 5b48bdc..0000000 --- a/fudcon.fedoraproject.org/po/fudcon.fedoraproject.org.pot +++ /dev/null @@ -1,27 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2013. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:35+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "" - diff --git a/fudcon.fedoraproject.org/po/gl.po b/fudcon.fedoraproject.org/po/gl.po deleted file mode 100644 index 833dd4b..0000000 --- a/fudcon.fedoraproject.org/po/gl.po +++ /dev/null @@ -1,27 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2011-07-21 22:10+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Galician (http://www.transifex.com/projects/p/fedora/language/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "Aceptar" diff --git a/fudcon.fedoraproject.org/po/gu.po b/fudcon.fedoraproject.org/po/gu.po deleted file mode 100644 index d849a73..0000000 --- a/fudcon.fedoraproject.org/po/gu.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: Gujarati \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: gu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "વેબસાઇટ ભાષા" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "બરાબર" diff --git a/fudcon.fedoraproject.org/po/he.po b/fudcon.fedoraproject.org/po/he.po deleted file mode 100644 index 28acf4b..0000000 --- a/fudcon.fedoraproject.org/po/he.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: Hebrew \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "שפת האתר" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "אישור" diff --git a/fudcon.fedoraproject.org/po/hi.po b/fudcon.fedoraproject.org/po/hi.po deleted file mode 100644 index dfbecd7..0000000 --- a/fudcon.fedoraproject.org/po/hi.po +++ /dev/null @@ -1,29 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Chandan kumar , 2012. -# FIRST AUTHOR , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-07-08 06:30+0000\n" -"Last-Translator: Chandan kumar \n" -"Language-Team: Hindi \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "वेबसाइट भाषा" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "ठीक है" diff --git a/fudcon.fedoraproject.org/po/hu.po b/fudcon.fedoraproject.org/po/hu.po deleted file mode 100644 index 8584ffb..0000000 --- a/fudcon.fedoraproject.org/po/hu.po +++ /dev/null @@ -1,29 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -# Peter Borsa , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-06-01 08:59+0000\n" -"Last-Translator: Peter Borsa \n" -"Language-Team: Hungarian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Az oldal nyelve:" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "OK" diff --git a/fudcon.fedoraproject.org/po/ia.po b/fudcon.fedoraproject.org/po/ia.po deleted file mode 100644 index 27f4987..0000000 --- a/fudcon.fedoraproject.org/po/ia.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Nik Kalach , 2012. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-10-16 23:39+0000\n" -"Last-Translator: Nik Kalach \n" -"Language-Team: Interlingua \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Lingua del sito" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "OK" diff --git a/fudcon.fedoraproject.org/po/id.po b/fudcon.fedoraproject.org/po/id.po deleted file mode 100644 index 17f0229..0000000 --- a/fudcon.fedoraproject.org/po/id.po +++ /dev/null @@ -1,29 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -# Muhammad Panji , 2012. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-04-27 03:04+0000\n" -"Last-Translator: Muhammad Panji \n" -"Language-Team: Indonesian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Bahasa Situs Web" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "OK" diff --git a/fudcon.fedoraproject.org/po/is.po b/fudcon.fedoraproject.org/po/is.po deleted file mode 100644 index 8bb7912..0000000 --- a/fudcon.fedoraproject.org/po/is.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: Icelandic (http://www.transifex.com/projects/p/fedora/language/is/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: is\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Tungumál vefsíðu" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "Í lagi" diff --git a/fudcon.fedoraproject.org/po/it.po b/fudcon.fedoraproject.org/po/it.po deleted file mode 100644 index b47aeb7..0000000 --- a/fudcon.fedoraproject.org/po/it.po +++ /dev/null @@ -1,29 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011 -# Francesco D'Aluisio , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:35+0100\n" -"PO-Revision-Date: 2013-07-31 21:10+0000\n" -"Last-Translator: neb \n" -"Language-Team: Italian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Linguaggio del sito" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "OK" diff --git a/fudcon.fedoraproject.org/po/ja.po b/fudcon.fedoraproject.org/po/ja.po deleted file mode 100644 index 02ed24b..0000000 --- a/fudcon.fedoraproject.org/po/ja.po +++ /dev/null @@ -1,29 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -# Tomoyuki KATO , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: Japanese \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "他の言語を選択" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "適用" diff --git a/fudcon.fedoraproject.org/po/ka.po b/fudcon.fedoraproject.org/po/ka.po deleted file mode 100644 index ea0188d..0000000 --- a/fudcon.fedoraproject.org/po/ka.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# George Machitidze , 2013 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:35+0100\n" -"PO-Revision-Date: 2013-05-01 03:00+0000\n" -"Last-Translator: George Machitidze \n" -"Language-Team: Georgian (http://www.transifex.com/projects/p/fedora/language/ka/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: ka\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "ვებგვერდის ენა" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "OK" diff --git a/fudcon.fedoraproject.org/po/ko.po b/fudcon.fedoraproject.org/po/ko.po deleted file mode 100644 index bce9d9c..0000000 --- a/fudcon.fedoraproject.org/po/ko.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2011-07-21 22:10+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Korean (http://www.transifex.com/projects/p/fedora/language/ko/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: ko\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "확인" diff --git a/fudcon.fedoraproject.org/po/lv.po b/fudcon.fedoraproject.org/po/lv.po deleted file mode 100644 index f5cdea3..0000000 --- a/fudcon.fedoraproject.org/po/lv.po +++ /dev/null @@ -1,27 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2011-07-21 22:10+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Latvian (http://www.transifex.com/projects/p/fedora/language/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Mājaslapas valoda" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "Labi" diff --git a/fudcon.fedoraproject.org/po/ml.po b/fudcon.fedoraproject.org/po/ml.po deleted file mode 100644 index 55e52db..0000000 --- a/fudcon.fedoraproject.org/po/ml.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2011-07-21 22:10+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Malayalam \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: ml\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "OK" diff --git a/fudcon.fedoraproject.org/po/mr.po b/fudcon.fedoraproject.org/po/mr.po deleted file mode 100644 index 2c30e01..0000000 --- a/fudcon.fedoraproject.org/po/mr.po +++ /dev/null @@ -1,29 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Amod Karmarkar , 2011. -# FIRST AUTHOR , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: Marathi (http://www.transifex.com/projects/p/fedora/language/mr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: mr\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "वेबसाईट भाषा" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "ठीक" diff --git a/fudcon.fedoraproject.org/po/nb.po b/fudcon.fedoraproject.org/po/nb.po deleted file mode 100644 index ba044da..0000000 --- a/fudcon.fedoraproject.org/po/nb.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: Norwegian Bokmål \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: nb\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Språk for nettstedet" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "OK" diff --git a/fudcon.fedoraproject.org/po/nl.po b/fudcon.fedoraproject.org/po/nl.po deleted file mode 100644 index 6b9ded4..0000000 --- a/fudcon.fedoraproject.org/po/nl.po +++ /dev/null @@ -1,30 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -# Geert Warrink , 2011. -# Richard E. van der Luit , 2012. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-05-15 07:39+0000\n" -"Last-Translator: Richard E. van der Luit \n" -"Language-Team: Dutch (http://www.transifex.com/projects/p/fedora/language/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Taal Website" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "OK" diff --git a/fudcon.fedoraproject.org/po/pa.po b/fudcon.fedoraproject.org/po/pa.po deleted file mode 100644 index feb5359..0000000 --- a/fudcon.fedoraproject.org/po/pa.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: Panjabi (Punjabi) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: pa\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "ਵੈੱਬਸਾਈਟ ਭਾਸ਼ਾ" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "ਠੀਕ ਹੈ" diff --git a/fudcon.fedoraproject.org/po/pl.po b/fudcon.fedoraproject.org/po/pl.po deleted file mode 100644 index 28a40ca..0000000 --- a/fudcon.fedoraproject.org/po/pl.po +++ /dev/null @@ -1,29 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -# Piotr Drąg , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: Polish \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Język strony WWW" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "OK" diff --git a/fudcon.fedoraproject.org/po/pt.po b/fudcon.fedoraproject.org/po/pt.po deleted file mode 100644 index 50d563d..0000000 --- a/fudcon.fedoraproject.org/po/pt.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: Portuguese \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Idioma do sítio web" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "OK" diff --git a/fudcon.fedoraproject.org/po/pt_BR.po b/fudcon.fedoraproject.org/po/pt_BR.po deleted file mode 100644 index 5dd1400..0000000 --- a/fudcon.fedoraproject.org/po/pt_BR.po +++ /dev/null @@ -1,29 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -# Ricardo Gyorfy , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: Portuguese (Brazil) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Idioma do Site" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "OK" diff --git a/fudcon.fedoraproject.org/po/ro.po b/fudcon.fedoraproject.org/po/ro.po deleted file mode 100644 index 66f4e22..0000000 --- a/fudcon.fedoraproject.org/po/ro.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2011-07-21 22:10+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Romanian (http://www.transifex.com/projects/p/fedora/language/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "OK" diff --git a/fudcon.fedoraproject.org/po/ru.po b/fudcon.fedoraproject.org/po/ru.po deleted file mode 100644 index 5ef8622..0000000 --- a/fudcon.fedoraproject.org/po/ru.po +++ /dev/null @@ -1,29 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -# Misha Shnurapet , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: Russian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Выбрать язык" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "ОК" diff --git a/fudcon.fedoraproject.org/po/sk.po b/fudcon.fedoraproject.org/po/sk.po deleted file mode 100644 index 713388f..0000000 --- a/fudcon.fedoraproject.org/po/sk.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: Slovak (http://www.transifex.com/projects/p/fedora/language/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: sk\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Jazyk strány" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "OK" diff --git a/fudcon.fedoraproject.org/po/sq.po b/fudcon.fedoraproject.org/po/sq.po deleted file mode 100644 index 429f077..0000000 --- a/fudcon.fedoraproject.org/po/sq.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: Albanian (http://www.transifex.com/projects/p/fedora/language/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Gjuhë site-i Web" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "OK" diff --git a/fudcon.fedoraproject.org/po/sr.po b/fudcon.fedoraproject.org/po/sr.po deleted file mode 100644 index aa032a1..0000000 --- a/fudcon.fedoraproject.org/po/sr.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: Serbian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Језик веб странице" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "У реду" diff --git a/fudcon.fedoraproject.org/po/sv.po b/fudcon.fedoraproject.org/po/sv.po deleted file mode 100644 index 2b84dc3..0000000 --- a/fudcon.fedoraproject.org/po/sv.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-12-30 00:23+0000\n" -"Last-Translator: neb \n" -"Language-Team: Swedish (http://www.transifex.com/projects/p/fedora/language/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "OK" diff --git a/fudcon.fedoraproject.org/po/te.po b/fudcon.fedoraproject.org/po/te.po deleted file mode 100644 index 76fe92c..0000000 --- a/fudcon.fedoraproject.org/po/te.po +++ /dev/null @@ -1,29 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -# ప్రవీణ్ యిళ్ళ , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: Telugu (http://www.transifex.com/projects/p/fedora/language/te/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: te\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "వెబ్‌సైటు భాష" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "సరే" diff --git a/fudcon.fedoraproject.org/po/tr.po b/fudcon.fedoraproject.org/po/tr.po deleted file mode 100644 index 0c019a5..0000000 --- a/fudcon.fedoraproject.org/po/tr.po +++ /dev/null @@ -1,29 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -# Irmak Bıçakçıgil , 2013. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2013-02-04 12:20+0000\n" -"Last-Translator: Irmak Bıçakçıgil \n" -"Language-Team: Turkish (http://www.transifex.com/projects/p/fedora/language/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: tr\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "İnternet sitesi dili" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "Tamam" diff --git a/fudcon.fedoraproject.org/po/uk.po b/fudcon.fedoraproject.org/po/uk.po deleted file mode 100644 index ca6bc79..0000000 --- a/fudcon.fedoraproject.org/po/uk.po +++ /dev/null @@ -1,29 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -# Yuri Chornoivan , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: Ukrainian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "Мова сайту" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "Гаразд" diff --git a/fudcon.fedoraproject.org/po/vi.po b/fudcon.fedoraproject.org/po/vi.po deleted file mode 100644 index 3ffd456..0000000 --- a/fudcon.fedoraproject.org/po/vi.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2011-07-21 22:10+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "OK" diff --git a/fudcon.fedoraproject.org/po/zh_CN.po b/fudcon.fedoraproject.org/po/zh_CN.po deleted file mode 100644 index ef1eb1d..0000000 --- a/fudcon.fedoraproject.org/po/zh_CN.po +++ /dev/null @@ -1,29 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2013 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011 -# Tommy He , 2011 -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-02-14 23:35+0100\n" -"PO-Revision-Date: 2013-11-10 04:23+0000\n" -"Last-Translator: Tiansworld \n" -"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/fedora/language/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "网站语言" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "确定" diff --git a/fudcon.fedoraproject.org/po/zh_TW.po b/fudcon.fedoraproject.org/po/zh_TW.po deleted file mode 100644 index cff19ad..0000000 --- a/fudcon.fedoraproject.org/po/zh_TW.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2012 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# FIRST AUTHOR , 2011. -msgid "" -msgstr "" -"Project-Id-Version: Fedora Websites\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-02-13 09:20-0600\n" -"PO-Revision-Date: 2012-02-13 17:09+0000\n" -"Last-Translator: neb \n" -"Language-Team: Chinese (Taiwan) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/templates/sidebar.html:37 -msgid "Website Language" -msgstr "網站語言" - -#: data/templates/sidebar.html:42 -msgid "OK" -msgstr "確定" diff --git a/fudcon.fedoraproject.org/static/css/coin-slider-styles.css b/fudcon.fedoraproject.org/static/css/coin-slider-styles.css deleted file mode 100644 index 31e7d67..0000000 --- a/fudcon.fedoraproject.org/static/css/coin-slider-styles.css +++ /dev/null @@ -1,17 +0,0 @@ -/* - Coin Slider jQuery plugin CSS styles - http://workshop.rs/projects/coin-slider -*/ - - -.coin-slider { overflow: hidden; zoom: 1; position: relative; } -.coin-slider a{ text-decoration: none; outline: none; border: none; } - -.cs-buttons { font-size: 0px; padding: 10px; float: left; } -.cs-buttons a { margin-left: 5px; height: 10px; width: 10px; float: left; border: 1px solid #B8C4CF; color: #B8C4CF; text-indent: -1000px; } -.cs-active { background-color: #B8C4CF; color: #FFFFFF; } - -.cs-title { width: 545px; padding: 10px; background-color: #000000; color: #FFFFFF; } - -.cs-prev, -.cs-next { background-color: #000000; color: #FFFFFF; padding: 0px 10px; } diff --git a/fudcon.fedoraproject.org/static/css/css.css b/fudcon.fedoraproject.org/static/css/css.css deleted file mode 100644 index 5654acf..0000000 --- a/fudcon.fedoraproject.org/static/css/css.css +++ /dev/null @@ -1,107 +0,0 @@ -body { - font:16px/1.4 Arial, Helvetica, sans-serif; - color:#666; - background-color:#FFF; - text-shadow:0 1px 0 #666; -} - - -#body-news { - background-image: url("../images/header.png"); - background-repeat: repeat-x; - font-family: arial, verdana; -} - -#body-main { - background-image: url("../images/splash_bg.png"); - background-repeat: repeat-x; - font-family: arial, verdana; -} - -#content { - width: 950px; - margin: auto; -} - -#header-menu { - height: 100px; -} - -#header-menu li { - border-right: 1px solid #555; - display: inline; - float: right; - vertical-align: middle; - padding-top: 30px; - padding-bottom: 30px; - margin-top: 7px; - padding-right: 20px; - padding-left: 20px; -} - -#header-menu li a { - text-decoration: none; - color: #0956a4; -} - -#slideshow { - color: #fff; - height: 300px; -} - -#sl-text { - width: 300px; -} - -#slideshow img { - float: right; - height: 380px; -} - -#news-1 { - width: 910px; - height: 150px; -} - -#news-1 h2 { - color: #0956a4; - font-weight: bold; -} - -#news-1 img { - float: left; - margin-right: 15px; -} - -#news-2 { - width: 910px; - padding-top: 7px; -} - -#news-2 h2 { - color: #fff; - font-weight: bold; - text-align: center; -} - -#news-2 img { - float: left; - margin-right: 15px; -} - -#footer { - background: url("../images/splash_bg.png"); - background-repeat: repeat-x; - background-position: 0 -100px; - height: 60px; - padding-top: 40px; - text-align: center; -} - -#footer li { - display: inline; - padding-right: 50px; - padding-left: 50px; - color: #fff; - font-weight: bold; -} diff --git a/fudcon.fedoraproject.org/static/css/fudcon.css b/fudcon.fedoraproject.org/static/css/fudcon.css deleted file mode 100644 index dfc3b81..0000000 --- a/fudcon.fedoraproject.org/static/css/fudcon.css +++ /dev/null @@ -1,695 +0,0 @@ -@charset "UTF-8"; -/* CSS Document */ - - -html, body, div, span, applet, object, iframe, -h3, h4, h5, h6, p, blockquote, pre, -a, abbr, acronym, address, big, cite, code, -del, dfn, em, font, img, ins, kbd, q, s, samp, -small, strike, sub, sup, tt, var, -dl, dt, dd, ol, ul, li, -fieldset, form, label, legend, -table, caption, tbody, tfoot, thead, tr, th, td { - margin:0; - padding:0; - border:0; - outline:0; - font-weight:inherit; - font-style:inherit; - font-size:100%; - font-family:inherit; - vertical-align:baseline; -} - - -body { - font:14px/1.5 Arial, Helvetica, sans-serif; - color:#888; - background-color:#FFF; -} - -a, a:visited { - color:#0956A4; - text-decoration:none; - /*border-bottom:1px dotted #CCC;*/ -} -a:hover, a:active { - color:#0956A4; - text-decoration:none; -} - - -h1 { - font-family:Arial, Helvetica, sans-serif; - font-weight:bold; - font-size:28px; - color:#FFF; - margin-top:10px; - margin-left:15px; - margin-right:0px; - margin-bottom:0px; - padding:0px; -} - -h2 { - font:14px/1.6 Arial, Helvetica, sans-serif; - color:#729FCF; - padding:0px; - margin-left:15px; - margin-top:5px; - margin-bottom:10px; -} - -h3 { - font:21px Arial, Helvetica, sans-serif; - color:#0956A4; - margin-bottom:8px; - padding:0px; -} - -h4 { - font:21px Arial, Helvetica, sans-serif; - font-weight:bold; - color:#0956A4; - margin-bottom:6px; - padding:0px; -} - -h5 { - font:16px Arial, Helvetica, sans-serif; - color:#FFF; - margin-bottom:6px; - padding:0px; -} - -h6 { - font:21px Arial, Helvetica, sans-serif; - font-weight:bold; - color:#3FA9F5; - margin-bottom:6px; - padding:0px; -} - -p { - margin-bottom:10px; -} - -li { - list-style:square; - font:14px/1.5 Arial, Helvetica, sans-serif; -} - -ul { -} - -.container { - width:100%; - height:100%; -} - - -/* ========================== HEADER ===================================*/ - -.header_bar { - width:100%; - /* background-image:url(../images/header_bar.png); */ - height:102px; -} - -.header { - width:955px; - margin-left:auto; - margin-right:auto; - height:82px; - padding-top:10px; - padding-left:5px; -} - -.logo_top { - width:auto; - height:100%; - float:left; -} - -.header_bar_content { - height:40px; - width:10%; - margin-right:10px; - padding-left:10px; - padding-top:22px; - padding-bottom:10px; - float:right; - color:#0956A4 !important; - font: 14px/1.6 Arial, Helvetica, sans-serif !important; - text-shadow:0 1px 0 #CCC; -} - -.top_menu { - list-style:none; - float:right; - margin-top:32px; -} - -.top_menu_element { - display:inline; - padding:8px 10px 8px 10px; - border-right:dotted thin #036; - color:#729FCF; - font-size:14px; - font-weight:bold; - text-shadow:none; -} - -.top_menu_element:hover { - color:#729FCF; -} - -/* ============================== FLAG ROW =========================== */ - -.flag_row_container { - width:100%; - height:0px; - border-bottom:#CCC thin solid; - float:left; -} - -.flag_first_color { - background-color:#090; - height:3px; -} - -.flag_second_color { - background-color:#FFF; - height:3px; -} - -.flag_third_color { - background-color:#C00; - height:3px; -} - -/* ============================== SPLASH BANNER =========================== */ - -.splash_container { - margin-top:0px; - float:left; - width:100%; - /* background-color:#E8DCC4; */ - background:url(../images/splash_bg.png); - border-bottom:#999 thin solid; -} - -#index_splash { - height:282px; -} - -.splash_content { - width:960px; - margin-left:auto; - margin-right:auto; -} - -.splash_text { - width:35%; - height:100%; - float:left; -} - -.splash_text_section { - padding:12px; - height:100%; - float:left; -} - -.splash_img { - width:64%; - height:342px; - float:right; - margin-top: 10px; -} - -.splash_img_mil { - width:64%; - height:342px; - float:right; - margin-top: -20px; -} - -/*============================ CENTRAL CONTENT =========================*/ - -.central_container { - width:100%; - /*height:422px;*/ - border-bottom:#999 thin solid; - float:left; - padding-bottom: 20px; -} - -.central_container_mil { - width:100%; - /*height:422px;*/ - border-bottom:#999 thin solid; - float:left; - padding-bottom: 20px; - margin-top: 30px; -} - -.central_content { - width:960px; - margin-left:auto; - margin-right:auto; - margin-top:1px; -} - -#home { - padding-top:10px; -} - -/*============================== 1 COLUMN DIVISION ========================*/ - -.one_column_division { - width:960px; - /*margin-top:20px;*/ - margin-right:22px; - margin-bottom:20px; - padding-bottom:25px; - padding-left:10px; - text-align:justify; - border-bottom:#CCC dotted thin; - overflow: hidden; -} - -#venue { - width:90%; - background-image:url(../images/venue_bg.png); - background-repeat:repeat-x; - color:#FFF; - padding:20px 20px 5px; - margin:20px; - border:#072B61 dashed medium; - border-radius:14px; - box-shadow:#888 2px 0px 4px; -} - -/*============================== 2 COLUMN DIVISION ========================*/ - -.two_column_left { - width:45%; - margin-right:22px; - float:left; - padding-left:10px; - text-align:justify; -} - -.two_column_right { - width:45%; - margin-right:22px; - float:right; - padding-left:10px; - text-align:justify; -} - -/*============================== 3 COLUMN DIVISION ========================*/ - -.three_column_division { - width:30%; - margin-right:22px; - float:left; - padding-left:10px; - text-align:justify; -} - -.column_row_img { - float:left; - margin-bottom:14px; - padding:0px; -} - -img.center { - display: block; - margin-left: auto; - margin-right: auto; - padding-top: 25px; -} - -#imgbox { - height: 250px; -} - -#column_one { - text-align: center; - width: 49%; - float: left; - padding-left:20; -} - -#column_two { - text-align: center; - width: 49%; - float: right; - padding-left:20; - border-left:#CCC dotted thin; -} - -#column_one_pune { - width:260px; - height:200px; - background-image:url(../images/logo_pune_2015.png); - background-repeat:no-repeat; - padding-left:20px; - margin-top: 20px; - margin-left: 40px; -} - -#column_two_pune { - width:320px; - background-image:url(../images/f_free_promo.png); - background-repeat:no-repeat; - height:140px; -} - -#column_one_cordoba { - width:214px; - height:200px; - background-image:url(../images/logo_cordoba_2015.jpg); - background-repeat:no-repeat; - padding-left:40px; - margin-top: 20px; - margin-left: 15px; -} - -#column_one_mil { - width:300px; - height:200px; - background-image:url(../images/logo_paris.png); - background-repeat:no-repeat; - padding-left:20px; -} - -#column_two_mil { - width:320px; - background-image:url(../images/f_free_promo.png); - background-repeat:no-repeat; - height:140px; -} - -#column_one_latam { - width:300px; - height:175px; - background-image:url(../images/logo_valencia.png); - background-repeat:no-repeat; - padding-left:20; -} - -#venue_img { - width:225px; - height:149px; - background-image:url(../images/location_photo.png); - background-repeat:no-repeat; - background-position:center left; -} - -#venue_img_managua { - background-image:url(../images/ucc_managua.png); - background-repeat:no-repeat; - background-position:center left; - width:220px; - height:149px; -} - -#column_one_puno { - width:214px; - height:200px; - background-image:url(../images/logo_puno_2016.jpg); - background-repeat:no-repeat; - padding-left:40px; - margin-top: 20px; - margin-left: 15px; -} - -#column_one_pp { - width:260px; - height:200px; - background-image:url(../images/logo_phnompenh_2016.png); - background-repeat:no-repeat; - padding-left:20px; - margin-top: 20px; - margin-left: 40px; -} - -/*========================= SOCIAL LINE =============================*/ - -.social_line_container { - margin-top:0px; - float:left; - width:100%; - height:251px; - background-color:#E8DCC4; - border-bottom:#999 thin solid; -} - -.social_line_content { - width:960px; - margin-right:auto; - margin-left:auto; -} - -.three_column_social { - width:30%; - height:221px; - float:left; - padding-right:14px; - padding-top:20px; - padding-left:14px; - padding-bottom:10px; - text-align:justify; - font:12px/1.2 Arial, Helvetica, sans-serif; - color:#333; -} - -.border_gray { - border-right:#999 thin solid; -} - -.border_white { - border-left:#FFF thin solid; -} - -.social_row_img { - width:160px; - height:114px; - padding-left:20px; - float:right; -} - -/*============================== FOOTER ==========================*/ - -.footer_container { - width:100%; - background-image:url(../images/footer_bg.png); - background-repeat:repeat-x; - height:132px; - float:left; -} - -.footer_content { - width:960px; - margin-left:auto; - margin-right:auto; - padding-top:38px; -} - -.footer_contact_item { - width:200px; - height:24px; - float:left; - /*padding-right:4px;*/ - margin-right:20px; - padding-bottom:20px; - padding-top:4px; - margin-top:10px; - font-family:Arial, Helvetica, sans-serif; - color:#FFF; - font-size:14px; - font-weight:bold; - vertical-align:middle; -} - -#tel { - background-image:url(../images/tel_footer.png); - background-repeat:no-repeat; - padding-left:30px; -} - -#twitter { - background-image:url(../images/twitter_footer.png); - background-repeat:no-repeat; - padding-left:30px; -} - -#facebook { - background-image:url(../images/facebook_footer.png); - background-repeat:no-repeat; - padding-left:30px; -} - -#mail { - background-image:url(../images/mailto_footer.png); - background-repeat:no-repeat; - padding-left:30px; -} - -#rss { - background-image:url(../images/rssfeed_footer.png); - background-repeat:no-repeat; - padding-left:30px; -} - -.button_container { - float:right; - position:relative; - height:100%; -} - -.newsletter_input { - width:200px; - height:40px; - border-radius:10px; - border:#06C medium solid; -} - - -/*========================= BUTTON ============================*/ - -a.button_big { - height:18px; - border-radius:8px; - border:#0956A4 dashed medium; - background-color:#0F7BBA; - background-image:url(../images/button_bg.png); - background-repeat:repeat-x; - background-position:top; - padding:10px 20px 14px 20px; - -moz-box-shadow: 0 0 8px 4px #333; - -webkit-box-shadow: 0 0 8px 4px#333; - box-shadow: 0 0px 8px #333; - font:15px/1.6 Arial, Helvetica, sans-serif; - text-shadow:0 1px 0 #000; - font-weight:bold; - color:#FFF; - float:right; -} - -a:hover.button_big { - background-color:#0956A4; - border:#0F7BBA dashed medium; -} - -.button_icon { - vertical-align:middle; -} - -#register_footer { - padding:18px 30px 22px 30px; - font-size:18px; - background-image:url(../images/footer_button_bg.png); -} - -/*====================== SCHEDULING ========================*/ - -.agenda { - width:920px; - border:#CCC dotted thin; - padding:4px; - padding-bottom:10px; - margin-left:20px; - text-align:center; - color:#555; - border-collapse: collapse; -} - -.table_row { - margin:4px 6px; -} - -.table_cell { - width:22.5%; - padding:10px; - border:#CCC solid thin; - background-color:inherit; - color:inherit; -} - -th.table_cell { - font-weight: bold; -} - -.first_row { - background-color:#375d78; - color:#FFF; - font:14px/1.6 Georgia, "Times New Roman", Times, serif; -} - -.row_b_type { - background-color:#d0e4f2; -} - -.time { - color:#333; -} - -.google_maps { - float:left; - width:300px; - margin-right:20px; -} - - -/*========================= SLIDER ==========================*/ - -#slider { - width: 620px; /* important to be same as image width */ - height: 250px; /* important to be same as image height */ - position: relative; /* important */ - overflow: hidden; /* important */ -} -#sliderContent { - width: 620px; /* important to be same as image width or wider */ - position: absolute; - top: 0; - margin-left: 0; -} -.sliderImage { - float: left; - position: relative; - display: none; -} -.sliderImage span { - position: absolute; - font: 10px/15px Arial, Helvetica, sans-serif; - padding: 10px 13px; - width: 384px; - color: #fff; - display: none; -} -.clear { - clear: both; -} -.sliderImage span strong { - font-size: 14px; -} -.top { - top: 0; - left: 0; -} -.bottom { - bottom: 0; - left: 0; -} -ul { list-style-type: none;} - -/*========================= OTHERS ==========================*/ - -.heading-title { - margin-bottom: 32px; -} \ No newline at end of file diff --git a/fudcon.fedoraproject.org/static/images/1.jpg b/fudcon.fedoraproject.org/static/images/1.jpg deleted file mode 100644 index ff3927c..0000000 Binary files a/fudcon.fedoraproject.org/static/images/1.jpg and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/2.jpg b/fudcon.fedoraproject.org/static/images/2.jpg deleted file mode 100644 index 6d61087..0000000 Binary files a/fudcon.fedoraproject.org/static/images/2.jpg and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/3.jpg b/fudcon.fedoraproject.org/static/images/3.jpg deleted file mode 100644 index 07f124a..0000000 Binary files a/fudcon.fedoraproject.org/static/images/3.jpg and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/3steps.png b/fudcon.fedoraproject.org/static/images/3steps.png deleted file mode 100644 index 8bfc70a..0000000 Binary files a/fudcon.fedoraproject.org/static/images/3steps.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/4.jpg b/fudcon.fedoraproject.org/static/images/4.jpg deleted file mode 100644 index fcf3f13..0000000 Binary files a/fudcon.fedoraproject.org/static/images/4.jpg and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/5.jpg b/fudcon.fedoraproject.org/static/images/5.jpg deleted file mode 100644 index b2f246d..0000000 Binary files a/fudcon.fedoraproject.org/static/images/5.jpg and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/FudconPune.png b/fudcon.fedoraproject.org/static/images/FudconPune.png deleted file mode 100644 index ed4ee6c..0000000 Binary files a/fudcon.fedoraproject.org/static/images/FudconPune.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/airport.jpg b/fudcon.fedoraproject.org/static/images/airport.jpg deleted file mode 100644 index a37d7c7..0000000 Binary files a/fudcon.fedoraproject.org/static/images/airport.jpg and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/airport_pune.png b/fudcon.fedoraproject.org/static/images/airport_pune.png deleted file mode 100644 index 2f75b5b..0000000 Binary files a/fudcon.fedoraproject.org/static/images/airport_pune.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/beijing-collage.png b/fudcon.fedoraproject.org/static/images/beijing-collage.png deleted file mode 100644 index 019df70..0000000 Binary files a/fudcon.fedoraproject.org/static/images/beijing-collage.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/beijing_logo.png b/fudcon.fedoraproject.org/static/images/beijing_logo.png deleted file mode 100644 index 5baf9bf..0000000 Binary files a/fudcon.fedoraproject.org/static/images/beijing_logo.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/best_western.png b/fudcon.fedoraproject.org/static/images/best_western.png deleted file mode 100644 index d327838..0000000 Binary files a/fudcon.fedoraproject.org/static/images/best_western.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/button_bg.png b/fudcon.fedoraproject.org/static/images/button_bg.png deleted file mode 100644 index 89f6a7b..0000000 Binary files a/fudcon.fedoraproject.org/static/images/button_bg.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/cocoon.jpg b/fudcon.fedoraproject.org/static/images/cocoon.jpg deleted file mode 100644 index cb8c297..0000000 Binary files a/fudcon.fedoraproject.org/static/images/cocoon.jpg and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/coep-venue.png b/fudcon.fedoraproject.org/static/images/coep-venue.png deleted file mode 100644 index 1a8f7f7..0000000 Binary files a/fudcon.fedoraproject.org/static/images/coep-venue.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/cordoba.jpg b/fudcon.fedoraproject.org/static/images/cordoba.jpg deleted file mode 100644 index b1a6f01..0000000 Binary files a/fudcon.fedoraproject.org/static/images/cordoba.jpg and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/cusco_logo.png b/fudcon.fedoraproject.org/static/images/cusco_logo.png deleted file mode 100644 index 2c56e35..0000000 Binary files a/fudcon.fedoraproject.org/static/images/cusco_logo.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/f_free_promo.png b/fudcon.fedoraproject.org/static/images/f_free_promo.png deleted file mode 100644 index d35976c..0000000 Binary files a/fudcon.fedoraproject.org/static/images/f_free_promo.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/facebook_footer.png b/fudcon.fedoraproject.org/static/images/facebook_footer.png deleted file mode 100644 index 7f85e83..0000000 Binary files a/fudcon.fedoraproject.org/static/images/facebook_footer.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/flock_logo.png b/fudcon.fedoraproject.org/static/images/flock_logo.png deleted file mode 100644 index fabf1a5..0000000 Binary files a/fudcon.fedoraproject.org/static/images/flock_logo.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/flockprague_logo.png b/fudcon.fedoraproject.org/static/images/flockprague_logo.png deleted file mode 100644 index 5d449a8..0000000 Binary files a/fudcon.fedoraproject.org/static/images/flockprague_logo.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/flockrochester_logo.png b/fudcon.fedoraproject.org/static/images/flockrochester_logo.png deleted file mode 100644 index f7b9b21..0000000 Binary files a/fudcon.fedoraproject.org/static/images/flockrochester_logo.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/footer_bg.png b/fudcon.fedoraproject.org/static/images/footer_bg.png deleted file mode 100644 index 51c8f20..0000000 Binary files a/fudcon.fedoraproject.org/static/images/footer_bg.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/footer_button_bg.png b/fudcon.fedoraproject.org/static/images/footer_button_bg.png deleted file mode 100644 index 70c1c91..0000000 Binary files a/fudcon.fedoraproject.org/static/images/footer_button_bg.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/header_bg.png b/fudcon.fedoraproject.org/static/images/header_bg.png deleted file mode 100644 index 92b37b1..0000000 Binary files a/fudcon.fedoraproject.org/static/images/header_bg.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/hotel_perugino.png b/fudcon.fedoraproject.org/static/images/hotel_perugino.png deleted file mode 100644 index 623a2fc..0000000 Binary files a/fudcon.fedoraproject.org/static/images/hotel_perugino.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/lawrence_banner.png b/fudcon.fedoraproject.org/static/images/lawrence_banner.png deleted file mode 100644 index 5a354f9..0000000 Binary files a/fudcon.fedoraproject.org/static/images/lawrence_banner.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/location_photo.png b/fudcon.fedoraproject.org/static/images/location_photo.png deleted file mode 100644 index b848093..0000000 Binary files a/fudcon.fedoraproject.org/static/images/location_photo.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/logo-pune-long.png b/fudcon.fedoraproject.org/static/images/logo-pune-long.png deleted file mode 100644 index 8b174b1..0000000 Binary files a/fudcon.fedoraproject.org/static/images/logo-pune-long.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/logo.png b/fudcon.fedoraproject.org/static/images/logo.png deleted file mode 100644 index 470ec7f..0000000 Binary files a/fudcon.fedoraproject.org/static/images/logo.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/logo_beijing.png b/fudcon.fedoraproject.org/static/images/logo_beijing.png deleted file mode 100644 index b46e478..0000000 Binary files a/fudcon.fedoraproject.org/static/images/logo_beijing.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/logo_cordoba_2015.jpg b/fudcon.fedoraproject.org/static/images/logo_cordoba_2015.jpg deleted file mode 100644 index 39f9618..0000000 Binary files a/fudcon.fedoraproject.org/static/images/logo_cordoba_2015.jpg and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/logo_lawrence.png b/fudcon.fedoraproject.org/static/images/logo_lawrence.png deleted file mode 100644 index 81d1853..0000000 Binary files a/fudcon.fedoraproject.org/static/images/logo_lawrence.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/logo_lawrence_index.png b/fudcon.fedoraproject.org/static/images/logo_lawrence_index.png deleted file mode 100644 index 8eb1d15..0000000 Binary files a/fudcon.fedoraproject.org/static/images/logo_lawrence_index.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/logo_managua.png b/fudcon.fedoraproject.org/static/images/logo_managua.png deleted file mode 100644 index bf7929e..0000000 Binary files a/fudcon.fedoraproject.org/static/images/logo_managua.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/logo_paris.png b/fudcon.fedoraproject.org/static/images/logo_paris.png deleted file mode 100644 index 3195e0c..0000000 Binary files a/fudcon.fedoraproject.org/static/images/logo_paris.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/logo_phnompenh_2016.png b/fudcon.fedoraproject.org/static/images/logo_phnompenh_2016.png deleted file mode 100644 index f1018f3..0000000 Binary files a/fudcon.fedoraproject.org/static/images/logo_phnompenh_2016.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/logo_promo.png b/fudcon.fedoraproject.org/static/images/logo_promo.png deleted file mode 100644 index d700f15..0000000 Binary files a/fudcon.fedoraproject.org/static/images/logo_promo.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/logo_pune.png b/fudcon.fedoraproject.org/static/images/logo_pune.png deleted file mode 100644 index aefe91a..0000000 Binary files a/fudcon.fedoraproject.org/static/images/logo_pune.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/logo_pune_2015.png b/fudcon.fedoraproject.org/static/images/logo_pune_2015.png deleted file mode 100644 index a85f960..0000000 Binary files a/fudcon.fedoraproject.org/static/images/logo_pune_2015.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/logo_puno_2016.jpg b/fudcon.fedoraproject.org/static/images/logo_puno_2016.jpg deleted file mode 100644 index fd5e3d8..0000000 Binary files a/fudcon.fedoraproject.org/static/images/logo_puno_2016.jpg and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/logo_scitta.png b/fudcon.fedoraproject.org/static/images/logo_scitta.png deleted file mode 100644 index eb889ef..0000000 Binary files a/fudcon.fedoraproject.org/static/images/logo_scitta.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/logo_scitta_latam.png b/fudcon.fedoraproject.org/static/images/logo_scitta_latam.png deleted file mode 100644 index 5e6c699..0000000 Binary files a/fudcon.fedoraproject.org/static/images/logo_scitta_latam.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/logo_valencia.png b/fudcon.fedoraproject.org/static/images/logo_valencia.png deleted file mode 100644 index 5500147..0000000 Binary files a/fudcon.fedoraproject.org/static/images/logo_valencia.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/magarpatta.jpg b/fudcon.fedoraproject.org/static/images/magarpatta.jpg deleted file mode 100644 index f54bc41..0000000 Binary files a/fudcon.fedoraproject.org/static/images/magarpatta.jpg and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/panoramic_landmarks.jpg b/fudcon.fedoraproject.org/static/images/panoramic_landmarks.jpg deleted file mode 100644 index 4137e04..0000000 Binary files a/fudcon.fedoraproject.org/static/images/panoramic_landmarks.jpg and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/panoramica_piazza.jpg b/fudcon.fedoraproject.org/static/images/panoramica_piazza.jpg deleted file mode 100644 index 71ec07a..0000000 Binary files a/fudcon.fedoraproject.org/static/images/panoramica_piazza.jpg and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/phnom_penh.png b/fudcon.fedoraproject.org/static/images/phnom_penh.png deleted file mode 100644 index b9c5d63..0000000 Binary files a/fudcon.fedoraproject.org/static/images/phnom_penh.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/puneviewstaciblaine1s4ig.jpg b/fudcon.fedoraproject.org/static/images/puneviewstaciblaine1s4ig.jpg deleted file mode 100644 index b291000..0000000 Binary files a/fudcon.fedoraproject.org/static/images/puneviewstaciblaine1s4ig.jpg and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/puno.jpg b/fudcon.fedoraproject.org/static/images/puno.jpg deleted file mode 100644 index b8e133c..0000000 Binary files a/fudcon.fedoraproject.org/static/images/puno.jpg and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/rssfeed_footer.png b/fudcon.fedoraproject.org/static/images/rssfeed_footer.png deleted file mode 100644 index dc42ca4..0000000 Binary files a/fudcon.fedoraproject.org/static/images/rssfeed_footer.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/sinhagad.jpg b/fudcon.fedoraproject.org/static/images/sinhagad.jpg deleted file mode 100644 index 1094d19..0000000 Binary files a/fudcon.fedoraproject.org/static/images/sinhagad.jpg and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/splash_bg.png b/fudcon.fedoraproject.org/static/images/splash_bg.png deleted file mode 100644 index 1cbdbf6..0000000 Binary files a/fudcon.fedoraproject.org/static/images/splash_bg.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/twitter_footer.png b/fudcon.fedoraproject.org/static/images/twitter_footer.png deleted file mode 100644 index a993a5c..0000000 Binary files a/fudcon.fedoraproject.org/static/images/twitter_footer.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/una_mediterraneo.jpg b/fudcon.fedoraproject.org/static/images/una_mediterraneo.jpg deleted file mode 100644 index 3fc6482..0000000 Binary files a/fudcon.fedoraproject.org/static/images/una_mediterraneo.jpg and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/university-of-pune.png b/fudcon.fedoraproject.org/static/images/university-of-pune.png deleted file mode 100644 index c4d6a3b..0000000 Binary files a/fudcon.fedoraproject.org/static/images/university-of-pune.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/venue_bg.png b/fudcon.fedoraproject.org/static/images/venue_bg.png deleted file mode 100644 index 433d524..0000000 Binary files a/fudcon.fedoraproject.org/static/images/venue_bg.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/images/yguana.png b/fudcon.fedoraproject.org/static/images/yguana.png deleted file mode 100644 index 1792449..0000000 Binary files a/fudcon.fedoraproject.org/static/images/yguana.png and /dev/null differ diff --git a/fudcon.fedoraproject.org/static/js/s3Slider.js b/fudcon.fedoraproject.org/static/js/s3Slider.js deleted file mode 100644 index 66988c8..0000000 --- a/fudcon.fedoraproject.org/static/js/s3Slider.js +++ /dev/null @@ -1,107 +0,0 @@ -/* ------------------------------------------------------------------------ - s3Slider - - Developped By: Boban Karišik -> http://www.serie3.info/ - CSS Help: Mészáros Róbert -> http://www.perspectived.com/ - Version: 1.0 - - Copyright: Feel free to redistribute the script/modify it, as - long as you leave my infos at the top. -------------------------------------------------------------------------- */ - - -(function($){ - - $.fn.s3Slider = function(vars) { - - var element = this; - var timeOut = (vars.timeOut != undefined) ? vars.timeOut : 4000; - var current = null; - var timeOutFn = null; - var faderStat = true; - var mOver = false; - var items = $("#" + element[0].id + "Content ." + element[0].id + "Image"); - var itemsSpan = $("#" + element[0].id + "Content ." + element[0].id + "Image span"); - - items.each(function(i) { - - $(items[i]).mouseover(function() { - mOver = true; - }); - - $(items[i]).mouseout(function() { - mOver = false; - fadeElement(true); - }); - - }); - - var fadeElement = function(isMouseOut) { - var thisTimeOut = (isMouseOut) ? (timeOut/2) : timeOut; - thisTimeOut = (faderStat) ? 10 : thisTimeOut; - if(items.length > 0) { - timeOutFn = setTimeout(makeSlider, thisTimeOut); - } else { - console.log("Poof.."); - } - } - - var makeSlider = function() { - current = (current != null) ? current : items[(items.length-1)]; - var currNo = jQuery.inArray(current, items) + 1 - currNo = (currNo == items.length) ? 0 : (currNo - 1); - var newMargin = $(element).width() * currNo; - if(faderStat == true) { - if(!mOver) { - $(items[currNo]).fadeIn((timeOut/6), function() { - if($(itemsSpan[currNo]).css('bottom') == 0) { - $(itemsSpan[currNo]).slideUp((timeOut/6), function() { - faderStat = false; - current = items[currNo]; - if(!mOver) { - fadeElement(false); - } - }); - } else { - $(itemsSpan[currNo]).slideDown((timeOut/6), function() { - faderStat = false; - current = items[currNo]; - if(!mOver) { - fadeElement(false); - } - }); - } - }); - } - } else { - if(!mOver) { - if($(itemsSpan[currNo]).css('bottom') == 0) { - $(itemsSpan[currNo]).slideDown((timeOut/6), function() { - $(items[currNo]).fadeOut((timeOut/6), function() { - faderStat = true; - current = items[(currNo+1)]; - if(!mOver) { - fadeElement(false); - } - }); - }); - } else { - $(itemsSpan[currNo]).slideUp((timeOut/6), function() { - $(items[currNo]).fadeOut((timeOut/6), function() { - faderStat = true; - current = items[(currNo+1)]; - if(!mOver) { - fadeElement(false); - } - }); - }); - } - } - } - } - - makeSlider(); - - }; - -})(jQuery); diff --git a/fudcon.fedoraproject.org/static/js/s3SliderPacked.js b/fudcon.fedoraproject.org/static/js/s3SliderPacked.js deleted file mode 100644 index 23f9969..0000000 --- a/fudcon.fedoraproject.org/static/js/s3SliderPacked.js +++ /dev/null @@ -1 +0,0 @@ -(function($){$.fn.s3Slider=function(vars){var element=this;var timeOut=(vars.timeOut!=undefined)?vars.timeOut:4000;var current=null;var timeOutFn=null;var faderStat=true;var mOver=false;var items=$("#"+element[0].id+"Content ."+element[0].id+"Image");var itemsSpan=$("#"+element[0].id+"Content ."+element[0].id+"Image span");items.each(function(i){$(items[i]).mouseover(function(){mOver=true});$(items[i]).mouseout(function(){mOver=false;fadeElement(true)})});var fadeElement=function(isMouseOut){var thisTimeOut=(isMouseOut)?(timeOut/2):timeOut;thisTimeOut=(faderStat)?10:thisTimeOut;if(items.length>0){timeOutFn=setTimeout(makeSlider,thisTimeOut)}else{console.log("Poof..")}}var makeSlider=function(){current=(current!=null)?current:items[(items.length-1)];var currNo=jQuery.inArray(current,items)+1 currNo=(currNo==items.length)?0:(currNo-1);var newMargin=$(element).width()*currNo;if(faderStat==true){if(!mOver){$(items[currNo]).fadeIn((timeOut/6),function(){if($(itemsSpan[currNo]).css('bottom')==0){$(itemsSpan[currNo]).slideUp((timeOut/6),function(){faderStat=false;current=items[currNo];if(!mOver){fadeElement(false)}})}else{$(itemsSpan[currNo]).slideDown((timeOut/6),function(){faderStat=false;current=items[currNo];if(!mOver){fadeElement(false)}})}})}}else{if(!mOver){if($(itemsSpan[currNo]).css('bottom')==0){$(itemsSpan[currNo]).slideDown((timeOut/6),function(){$(items[currNo]).fadeOut((timeOut/6),function(){faderStat=true;current=items[(currNo+1)];if(!mOver){fadeElement(false)}})})}else{$(itemsSpan[currNo]).slideUp((timeOut/6),function(){$(items[currNo]).fadeOut((timeOut/6),function(){faderStat=true;current=items[(currNo+1)];if(!mOver){fadeElement(false)}})})}}}}makeSlider()}})(jQuery); \ No newline at end of file diff --git a/fudcon.fedoraproject.org/static/robots.txt b/fudcon.fedoraproject.org/static/robots.txt deleted file mode 100644 index e69de29..0000000 --- a/fudcon.fedoraproject.org/static/robots.txt +++ /dev/null From f5646276cf629ffa32b87cb23afb99823d498510 Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Jan 14 2021 12:05:20 +0000 Subject: [PATCH 2/2] Remove website that no longer exist --- diff --git a/serverbeach1.fedoraproject.org/404.html b/serverbeach1.fedoraproject.org/404.html deleted file mode 100644 index 80ff786..0000000 --- a/serverbeach1.fedoraproject.org/404.html +++ /dev/null @@ -1,6 +0,0 @@ - -

      Error 404

      - -

      Sorry, the file you are looking for probably no longer exists.

      - - diff --git a/serverbeach1.fedoraproject.org/FOOTER.html b/serverbeach1.fedoraproject.org/FOOTER.html deleted file mode 100644 index ab240e7..0000000 --- a/serverbeach1.fedoraproject.org/FOOTER.html +++ /dev/null @@ -1,17 +0,0 @@ - - -
      - -
      - - - diff --git a/serverbeach1.fedoraproject.org/HEADER.html b/serverbeach1.fedoraproject.org/HEADER.html deleted file mode 100644 index 3717b32..0000000 --- a/serverbeach1.fedoraproject.org/HEADER.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Fedora People - - - - -
      - - -
      -
      -
      diff --git a/serverbeach1.fedoraproject.org/css/fedora.css b/serverbeach1.fedoraproject.org/css/fedora.css deleted file mode 100644 index 175dc65..0000000 --- a/serverbeach1.fedoraproject.org/css/fedora.css +++ /dev/null @@ -1,155 +0,0 @@ -* -{ - margin: 0; - padding: 0; -} - -html, body -{ - height: 100%; -} - -body -{ - height: 100%; - font-size: 76%; - background: #FFFFFF url(http://fedoraproject.org/static/images/border-left.png) 0 0 repeat-y; -} - -a img -{ - border: none; -} - -#wrapper -{ - margin-left: 18px; - font: normal 2.3ex/1.5 sans-serif; - min-height: 100%; - background: #FFFFFF url(http://fedoraproject.org/static/images/border-right.png) 100% 0 repeat-y; - padding-right: 18px; -} - -#head -{ - border-top: 10px solid #337ACC; - padding: 1ex 2ex 17px; - background: #FFFFFF url(http://fedoraproject.org/static/images/line.png) 0 100% repeat-x; -} - -#head h1 a -{ - display: block; - text-indent: -9999px; - background: url(http://fedoraproject.org/static/images/fedora-logo.png) 20px 50% no-repeat; - height: 73px; - width: 138px; - overflow: hidden; -} - -#content -{ - margin: 0 2ex; - height: 1%; /* Haslayout fix */ - background: red; - padding: 1ex 1ex 120px; - color: #666666; - background: #FFFFFF; -} - -#content h2 -{ - font-size: 3.25ex; -} - -#content h2 div { - font-size: 1ex; - font-weight: normal; -} - -#content h3 -{ - color: #337acc; - margin: 1.5ex 0; - font-size: 2.5ex; -} - -#content p -{ - margin: 1ex 5ex 1ex 0; -} - -#content img -{ - margin: 2ex 0; -} - -#content a -{ - color: #337ACC; -} - -#footer -{ - position: relative; - font: normal 1.5ex/1.5 sans-serif; - clear: both; - text-align: center; - background: #FFFFFF url(http://fedoraproject.org/static/images/line-bottom.png) 0 0 repeat-x; - margin: -90px 0 0; - border-bottom: 10px solid #337ACC; - height: 80px; - color: #AAAAAA; -} - -#bottom -{ - background: #FFFFFF url(http://fedoraproject.org/static/images/border-right.png) 100% 0 repeat-y; - margin-left: 18px; - padding-right: 18px; -} - -#footer ul -{ - list-style: none; -} - -#footer li -{ - display: inline; - border-left: 1px solid #AAAAAA; - padding: 0 0.75ex; - margin-left: -1px; -} - -#footer li.first -{ - border-left: none; -} - -#footer a -{ - color: #223344; -} - -#footer a:hover -{ - color: #112233; -} - -#footer .copy -{ - padding-top: 3ex; -} - -.ToolTip { - display: block; - position: absolute; - border: 1px solid black; - background-color: lightyellow; - width: 200px; -} - -.invisible { - display: none; -} diff --git a/serverbeach1.fedoraproject.org/css/style.css b/serverbeach1.fedoraproject.org/css/style.css deleted file mode 100644 index 1b7bf87..0000000 --- a/serverbeach1.fedoraproject.org/css/style.css +++ /dev/null @@ -1,122 +0,0 @@ -#sidebar -{ - float: left; - width: 25ex; - margin: 2ex 0; - background: #FFFFFF; -} - -#content -{ - margin-left: 25ex!important; - height: auto; -} - -#content ul -{ - list-style: square; - margin: 1ex 3ex; - line-height: 1; -} - -#content table -{ - border-collapse: collapse; -} - -#content th, #content td -{ - border: 1px solid #DDDDDD; - padding: 0.5ex 2ex; -} - -.nav, #hosting-sponsor -{ - margin: 0 10px; - padding: 0 1.5ex; -} - -.nav h2, #hosting-sponsor h2 -{ - border-bottom: 1px dotted #AAAAAA; - color: #444444; - font-size: 1.5ex; - margin: 2ex 0 1ex; - text-transform: uppercase; - font-weight: normal; -} - -.nav ul -{ - list-style: url(http://fedoraproject.org/static/images/arrow.png); - margin-left: 15px; -} - -.nav li -{ - margin: 0.25ex 1ex; - color: #777777; - font-size: 1.5ex; -} - -.nav a -{ - font-weight: bold; - margin-right: 0.75ex; - color: #729FCF; -} - -#content h3 -{ - margin: 0!important; -} - -#pageLogin -{ - float: right; -} - -.pkglist -{ - border: 1px solid #CCCCCC; - width: 100%; - margin: 1.5ex 0; - text-align: center; -} - -.pkglist th, .pkglist td -{ - border: none!important; -} - -.pkglist table th, .pkglist table td -{ - border: 1px solid #CCCCCC; -} - -.actions -{ - list-style: none; - line-height: 1; - margin: 1ex 0!important; -} - -.actions li -{ - display: inline; - margin-right: 1ex; -} - -a.bodhi -{ - padding-left: 20px; - background: url(../images/bodhi.png) 0 50% no-repeat; -} - -a.koji -{ - padding-left: 20px; - background: url(../images/koji.png) 0 50% no-repeat; -} - - diff --git a/serverbeach1.fedoraproject.org/images/serverBeach.png b/serverbeach1.fedoraproject.org/images/serverBeach.png deleted file mode 100644 index f9f871c..0000000 Binary files a/serverbeach1.fedoraproject.org/images/serverBeach.png and /dev/null differ